@font-face {
  font-family: Manrope;
  src: url('assets/manrope.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --paper: #f7f8f2;
  --ink: #202d2a;
  --muted: #4c534f;
  --blue: #416ce5;
  --line: #e1e5dc;
  --mint: #e4efe4;
  --radius: 24px;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
}
p {
  color: var(--muted);
}
a,
button {
  -webkit-user-select: none;
  user-select: none;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
::selection {
  background: #d6e1ff;
}
.container {
  width: min(1192px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  gap: 9px;
  align-items: center;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6c956c;
  display: inline-block;
  flex-shrink: 0;
}
.button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px #15232612;
}
.button-blue {
  color: white;
  background: var(--blue);
}
.button-blue:hover {
  background: #315acb;
}
.button-ink {
  background: var(--ink);
  color: white;
}
.button-ink:hover {
  background: #35483f;
}
.button-small {
  min-height: 44px;
  padding: 10px 18px;
  gap: 15px;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 12px;
}
.text-link:hover {
  color: var(--blue);
}
.site-header {
  background: #f7f8f2ed;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.4;
}
.brand img {
  object-fit: contain;
}
.brand-caption {
  display: block;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 31px;
}
nav > a:not(.button) {
  font-size: 11px;
  font-weight: 700;
}
nav > a:not(.button):hover {
  color: var(--blue);
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 740px;
  padding-block: 64px 76px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.hero-copy > .eyebrow {
  margin-bottom: 26px;
}
h1 {
  position: relative;
  font-size: clamp(60px, 6.1vw, 88px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.064em;
}
h1 > span {
  color: var(--blue);
}
.headline-spark {
  position: absolute;
  width: 57px;
  height: 57px;
  stroke: #7e9873;
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  bottom: 13px;
  margin-left: 22px;
}
.hero-description {
  font-size: 15px;
  line-height: 1.9;
  max-width: 390px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}
.hero-actions .button {
  padding-inline: 20px;
  gap: 13px;
}
.play-circle {
  border: 1px solid #cdd3c7;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.play-circle .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 0;
}
.hero-notes {
  display: flex;
  gap: 22px;
  margin-top: 22px;
  font-size: 10px;
  color: var(--muted);
}
.hero-notes span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-notes .icon {
  width: 14px;
  height: 14px;
  stroke: #74846e;
}
.hero-art {
  height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1px;
}
.art-orbit {
  position: absolute;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6eadf;
}
.orbit-two {
  border: 1px solid #cdd5c3;
  background: none;
  width: 544px;
  height: 544px;
  top: 30px;
}
.orbit-one:after {
  content: '';
  position: absolute;
  inset: 27px;
  border: 1px dashed #bdc9b570;
  border-radius: 50%;
}
.phone-frame {
  position: relative;
  z-index: 2;
  width: 275px;
  height: 560px;
  border: 7px solid #24322f;
  box-shadow:
    0 22px 40px #23372b24,
    0 0 0 1px #83907e;
  border-radius: 39px;
  background: #111b2a;
  transform: rotate(-6deg);
  overflow: hidden;
}
.phone-frame:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 4px;
  background: #ffffff8c;
}
.phone-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #070d14;
  z-index: 2;
}
.phone-screen {
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  padding-top: 5px;
}
.phone-screen > img {
  width: 100%;
  height: auto;
  transform: translateY(-28px);
  clip-path: inset(33px 0 0);
  transition: opacity 0.2s;
}
.floating-card {
  position: absolute;
  display: flex;
  gap: 11px;
  align-items: center;
  z-index: 4;
  background: white;
  border: 1px solid #e5e8dd;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 10px 25px #35442f0b;
}
.floating-card strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-block: 2px;
}
.floating-card div > span:last-child {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.tiny-label {
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #585e56;
}
.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.peach {
  background: #fff0d7;
  color: #bb9043;
}
.mint {
  background: #e9f1df;
  color: #6e884f;
}
.next-card {
  top: 74px;
  left: -19px;
  transform: rotate(-3deg);
}
.tiny-check {
  width: 18px;
  height: 18px;
  color: #719060;
  margin-left: 8px;
}
.life-card {
  right: -4px;
  bottom: 97px;
  transform: rotate(4deg);
}
.art-star {
  position: absolute;
  font-size: 54px;
  font-weight: 400;
  color: #7e9674;
  line-height: 1;
}
.star-one {
  right: 40px;
  top: 18px;
  transform: rotate(8deg);
}
.star-two {
  left: 2px;
  bottom: 108px;
  color: #c0cd94;
  font-size: 38px;
}
.theme-switch {
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  border: 1px solid #d9dfd0;
  background: var(--paper);
  padding: 4px;
  border-radius: 30px;
  gap: 2px;
}
.theme-switch button {
  border: 0;
  background: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 10px;
}
.theme-switch button .icon {
  width: 13px;
  height: 13px;
}
.theme-switch button.active {
  color: white;
  background: var(--ink);
}
.art-caption {
  position: absolute;
  right: 3px;
  bottom: 37px;
  font-size: 9px;
  color: #5b6553;
  transform: rotate(-6deg);
}
.people-strip {
  border-block: 1px solid var(--line);
  background: #f1f3eb;
}
.people-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 23px;
  min-height: 106px;
}
.people-inner p {
  font-size: 10px;
  line-height: 1.6;
}
.people-inner p strong {
  font-weight: 700;
  color: var(--ink);
}
.people-inner > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #555a50;
}
.people-inner > span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.people-inner .icon {
  width: 17px;
  height: 17px;
}
.section {
  padding-block: 105px;
}
h2 {
  font-size: clamp(32px, 3.45vw, 47px);
  font-weight: 800;
  line-height: 1.18;
}
h2 span {
  color: #5e6658;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 42px;
}
.section-heading .eyebrow,
.rhythm-copy > .eyebrow,
.life-copy > .eyebrow,
.faq-section .eyebrow {
  margin-bottom: 18px;
}
.section-heading > p {
  max-width: 295px;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 6px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 28px 27px 23px;
  border: 1px solid #e4e7dc;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-calendar {
  background: #edf1e8;
}
.feature-patterns {
  background: #efedf5;
}
.feature-reminders {
  background: #f6eee3;
}
.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.feature-icon {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  background: #ffffff80;
  display: grid;
  place-items: center;
}
.feature-icon .icon {
  width: 21px;
  height: 21px;
}
.feature-number {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #5c5e53;
  font-weight: 700;
}
.feature-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.feature-card > p {
  flex-grow: 1;
  font-size: 13px;
  line-height: 1.9;
  min-height: 68px;
  max-width: 265px;
}
.mini-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  padding-top: 25px;
}
.mini-week > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  color: #858b80;
}
.mini-week b {
  width: 100%;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}
.day {
  background: #dce6fe;
  color: #436ddb;
}
.night {
  background: #e1dcf2;
  color: #8368b1;
}
.off {
  background: #dcebdd;
  color: #688960;
}
.cycle-visual {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 34px 0 8px;
}
.cycle-visual > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 10px;
  color: #5173c8;
  background: #dce4fc;
}
.cycle-visual > span:nth-child(3),
.cycle-visual > span:nth-child(4) {
  background: #ded7f0;
  color: #8863ad;
}
.cycle-visual > span:nth-child(5),
.cycle-visual > span:nth-child(6) {
  background: #dce9d9;
  color: #688a5d;
}
.cycle-visual > .icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  color: #929384;
}
.notification-visual {
  background: #fffaf4;
  border: 1px solid #e5dece;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 9px;
  margin-top: 26px;
  position: relative;
}
.notification-visual strong {
  font-size: 9px;
  display: block;
}
.notification-visual div > span {
  font-size: 8px;
  color: #626058;
  display: block;
}
.notification-now {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 7px;
  color: #6a665c;
}
.little-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 37px;
}
.little-features > div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.little-features .icon {
  color: #7c8d6f;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.little-features strong {
  display: block;
  font-size: 12px;
  letter-spacing: -0.2px;
}
.little-features span > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.rhythm-section {
  background: #eaf0e6;
  padding-block: 90px;
}
.rhythm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.rhythm-copy > p:not(.eyebrow):not(.rhythm-footnote) {
  font-size: 13px;
  max-width: 354px;
  line-height: 1.9;
  margin-top: 22px;
}
.rhythm-tabs {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 338px;
}
.rhythm-tabs button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border: 1px solid transparent;
  background: none;
  padding: 13px 17px;
  text-align: left;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  color: #585f53;
  transition: background 0.2s;
}
.rhythm-tabs button[aria-selected='true'] {
  background: #f9faf5;
  border-color: #dce4d5;
  color: var(--ink);
  box-shadow: 0 3px 10px #52684404;
}
.rhythm-tabs button > .icon {
  width: 20px;
  height: 20px;
}
.rhythm-tabs .tab-arrow {
  margin-left: auto;
  opacity: 0;
}
.rhythm-tabs button[aria-selected='true'] .tab-arrow {
  opacity: 1;
}
.rhythm-tabs button:hover {
  background: #f7f8f277;
}
.rhythm-footnote {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #55604c;
  margin-top: 20px;
}
.rhythm-footnote .icon {
  width: 13px;
  height: 13px;
}
.schedule-demo {
  background: #fcfdf9;
  padding: 29px;
  border: 1px solid #dce4d3;
  box-shadow: 0 20px 45px #5f754d08;
  border-radius: 20px;
  transform: rotate(2deg);
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.demo-header h3 {
  font-size: 20px;
  margin-top: 6px;
}
.demo-header > .icon {
  color: #93a284;
  width: 23px;
  height: 23px;
}
.demo-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 9px;
  color: #939b8c;
  margin-bottom: 10px;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.demo-cell {
  height: 49px;
  position: relative;
  border: 1px solid #edf0e6;
  border-radius: 7px;
  background: #f4f6ef;
  color: #909787;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition:
    background 0.2s,
    transform 0.2s,
    opacity 0.2s;
}
.demo-cell > span {
  font-size: 7px;
  line-height: 1.1;
  opacity: 0.85;
}
.demo-cell.day {
  background: #e5ecfd;
  border-color: #d8e1f7;
  color: #395289;
}
.demo-cell.night {
  background: #eee7f8;
  border-color: #e2d9f0;
  color: #68517f;
}
.demo-cell.off {
  background: #e7efe1;
  border-color: #dce6d5;
  color: #56694c;
}
.demo-cell.muted {
  opacity: 1;
  background: #f4f6ef;
  border-color: #edf0e6;
  color: #606b58;
}
.demo-cell.selected {
  border: 2px solid var(--ink);
  opacity: 1;
  transform: translateY(-2px);
}
.demo-cell:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.demo-cell.outside {
  border-color: transparent;
  background: transparent;
  color: #697062;
  pointer-events: none;
}
.demo-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-block: 15px 20px;
  font-size: 8px;
  color: #5c6554;
}
.demo-legend > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
}
.day-dot {
  background: #86a4ed;
}
.night-dot {
  background: #b498cb;
}
.off-dot {
  background: #91ab7d;
}
.demo-detail {
  border-radius: 10px;
  border: 1px solid #e1e7da;
  background: #f2f5ed;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 13px;
  min-height: 89px;
}
.detail-icon {
  display: grid;
  place-items: center;
  background: #e7eddc;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 9px;
  color: #7c9366;
}
.demo-detail strong {
  display: block;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: -0.2px;
}
.demo-detail div > span {
  font-size: 8px;
  color: #5a6253;
  display: block;
}
.demo-caption {
  font-size: 8px;
  text-align: center;
  margin-top: 14px;
  color: #6d7364;
}
.life-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  padding-block: 113px;
}
.life-art {
  height: 398px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at center, #edf0e1 0%, #edf0e1 53%, transparent 54%);
}
.time-off-card {
  width: 282px;
  background: #fbf8ee;
  border: 1px solid #e1e3d2;
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
  transform: rotate(-6deg);
  box-shadow: 0 13px 30px #69774c0d;
}
.time-off-card .tiny-label {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.time-off-illustration {
  position: relative;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 9px;
}
.umbrella-large {
  width: 95px;
  height: 95px;
  fill: none;
  stroke: #879971;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 2;
  transform: rotate(-13deg);
}
.sun-disk {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #efd199;
  border-radius: 50%;
  top: 10px;
  right: 26px;
}
.ground-line {
  position: absolute;
  bottom: 10px;
  left: 35px;
  right: 25px;
  background: #cfdbc0;
  height: 1px;
  transform: rotate(-4deg);
}
.time-off-card h3 {
  font-size: 22px;
  line-height: 1.2;
}
.off-days {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  justify-content: center;
}
.off-days > span {
  display: flex;
  flex-direction: column;
  background: #eaf0df;
  border: 1px solid #dee6d1;
  width: 55px;
  padding: 8px;
  border-radius: 8px;
  font-size: 7px;
  color: #606854;
  gap: 3px;
}
.off-days b {
  font-size: 18px;
  font-weight: 600;
  color: #4e5c3e;
}
.example-label {
  font-size: 7px;
  color: #666c5c;
  display: block;
  margin-top: 12px;
}
.life-note {
  position: absolute;
  right: -7px;
  top: 29px;
  color: #8a9874;
  font-size: 15px;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.5;
  transform: rotate(9deg);
}
.life-note svg {
  display: block;
  width: 53px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  margin-top: 10px;
  transform: rotate(15deg);
}
.life-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 23px;
  max-width: 390px;
}
.check-list {
  margin: 25px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  font-size: 11px;
}
.check-list li {
  display: flex;
  gap: 9px;
  align-items: center;
}
.check-list .icon {
  width: 16px;
  height: 16px;
  color: #8fa177;
}
.life-copy > .text-link {
  margin-top: 5px;
}
.essentials-section {
  padding-block: 55px 23px;
  border-block: 1px solid var(--line);
  background: #f1f3eb;
}
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
.essential-icon {
  display: inline-flex;
  margin-bottom: 19px;
  color: #839176;
}
.essential-icon .icon {
  width: 25px;
  height: 25px;
}
.essentials-grid h3 {
  font-size: 18px;
  margin-bottom: 11px;
}
.essentials-grid p {
  font-size: 13px;
  line-height: 1.9;
  max-width: 280px;
}
.language-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  font-size: 8px;
  color: #61685a;
  margin-top: 37px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.language-line > span {
  color: #bdc5b0;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 70px;
}
.faq-section h2 {
  font-size: 40px;
}
.faq-section > div:first-child > p:not(.eyebrow) {
  font-size: 12px;
  margin-top: 22px;
}
.faq-section .text-link {
  margin-top: 12px;
}
.faq-list details {
  border-bottom: 1px solid #dfe4d8;
}
.faq-list details:first-child {
  border-top: 1px solid #dfe4d8;
}
.faq-list summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 17px;
  height: 17px;
  color: #8b9880;
  transition: transform 0.2s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 13px;
  line-height: 1.9;
  padding: 0 28px 22px 0;
}
.faq-list p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-list summary:hover {
  color: var(--blue);
}
.get-app-section {
  padding-bottom: 66px;
}
.get-app-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 24px;
  background: #e3edcf;
  padding: 51px 24px 43px;
  isolation: isolate;
}
.cta-logo {
  margin: 0 auto 23px;
  object-fit: contain;
  width: 55px;
  height: 60px;
  transform: rotate(-9deg);
}
.get-app-card .eyebrow {
  justify-content: center;
  font-size: 8px;
  color: #49553b;
}
.get-app-card h2 {
  font-size: 44px;
  margin-top: 17px;
  line-height: 1.2;
}
.get-app-card h2 > span {
  color: #6d8653;
}
.get-app-card > p:not(.eyebrow) {
  font-size: 12px;
  color: #566248;
  margin-top: 18px;
}
.button-white {
  background: #fcfdf7;
  color: var(--ink);
  margin-top: 25px;
  min-height: 51px;
  border: 1px solid #d6e1c7;
  font-size: 12px;
}
.launch-status {
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #566248;
  margin-top: 16px;
}
.launch-status .status-dot {
  width: 5px;
  height: 5px;
  background: #91a372;
}
.cta-orbit {
  position: absolute;
  width: 800px;
  height: 800px;
  border: 1px solid #d3dfbf;
  border-radius: 50%;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.cta-orbit:before,
.cta-orbit:after {
  content: '';
  position: absolute;
  inset: -100px;
  border: 1px solid #d3dfbf;
  border-radius: 50%;
}
.cta-orbit:after {
  inset: 100px;
}
.site-footer {
  padding-bottom: 27px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 28px;
}
.footer-top > .brand {
  font-size: 13px;
}
.footer-top p {
  font-size: 10px;
}
.footer-top > a:last-child {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}
.footer-top > a:last-child .icon {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #61665b;
}
.footer-bottom > div {
  display: flex;
  gap: 28px;
}
.privacy-link {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.footer-bottom a:hover,
.privacy-link:hover {
  color: var(--blue);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  width: min(540px, calc(100% - 32px));
  padding: 0;
  box-shadow: 0 25px 90px #15232640;
}
dialog::backdrop {
  background: #17252070;
  backdrop-filter: blur(5px);
}
.dialog-inner {
  padding: 38px;
  position: relative;
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 7px;
  font-size: 30px;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
}
.dialog-inner h2 {
  font-size: 30px;
  margin-top: 13px;
}
.dialog-inner p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 18px;
}
.dialog-inner p > a {
  text-decoration: underline;
}
.dialog-done {
  margin-top: 25px;
}
.no-scroll {
  overflow: hidden;
}
@media (min-width: 1450px) {
  .hero {
    min-height: 780px;
  }
  .hero-art {
    height: 620px;
    padding-top: 12px;
  }
  .phone-frame {
    width: 286px;
    height: 580px;
  }
  .art-orbit {
    top: 65px;
  }
  .orbit-two {
    top: 43px;
  }
  .next-card {
    top: 85px;
  }
  .life-card {
    bottom: 110px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  nav {
    gap: 22px;
  }
  .hero {
    gap: 18px;
    min-height: 680px;
    padding-block: 60px;
  }
  .hero-art {
    height: 550px;
  }
  .phone-frame {
    width: 250px;
    height: 509px;
  }
  .art-orbit {
    width: 380px;
    height: 380px;
    top: 82px;
  }
  .orbit-two {
    width: 420px;
    height: 420px;
    top: 62px;
  }
  .next-card {
    left: -13px;
    top: 66px;
    padding: 12px;
  }
  .life-card {
    right: -5px;
    bottom: 102px;
    padding: 12px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .floating-card div > span:last-child {
    font-size: 8px;
  }
  .floating-card .mini-icon {
    width: 33px;
    height: 33px;
  }
  .tiny-check {
    display: none;
  }
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .headline-spark {
    width: 45px;
    height: 45px;
    margin-left: 12px;
  }
  .star-one {
    right: 15px;
  }
  .art-caption {
    right: 8px;
    bottom: 49px;
  }
  .people-inner {
    gap: 15px;
  }
  .people-inner > span {
    font-size: 10px;
  }
  .feature-card {
    padding: 23px 20px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card > p {
    font-size: 13px;
    min-height: 83px;
  }
  .mini-week {
    gap: 5px;
  }
  .cycle-visual {
    gap: 5px;
  }
  .notification-visual {
    gap: 6px;
  }
  .notification-visual img {
    width: 22px;
  }
  .notification-visual strong {
    font-size: 8px;
  }
  .notification-visual div > span {
    font-size: 7px;
  }
  .rhythm-grid {
    gap: 60px;
  }
  .life-section {
    gap: 65px;
  }
  .life-note {
    right: -6px;
    font-size: 13px;
  }
  .essentials-grid {
    gap: 40px;
  }
  .faq-section {
    gap: 45px;
  }
  .faq-section h2 {
    font-size: 34px;
  }
  .hero-notes {
    gap: 13px;
    font-size: 9px;
  }
}
@media (max-width: 850px) {
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    height: 83px;
  }
  .brand {
    font-size: 14px;
  }
  .brand img {
    width: 33px;
    height: 36px;
  }
  .brand-caption {
    font-size: 8px;
  }
  nav {
    gap: 19px;
  }
  nav > a:not(.button) {
    font-size: 10px;
  }
  nav > .button {
    font-size: 10px;
    padding-inline: 13px;
    gap: 7px;
  }
  .hero {
    padding-block: 44px 60px;
    min-height: 650px;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 21px;
  }
  .hero-art {
    height: 500px;
  }
  .phone-frame {
    width: 225px;
    height: 458px;
    border-width: 6px;
    border-radius: 32px;
  }
  .phone-screen {
    border-radius: 25px;
  }
  .art-orbit {
    width: 300px;
    height: 350px;
    top: 67px;
  }
  .orbit-two {
    width: 331px;
    height: 390px;
    top: 47px;
  }
  .next-card {
    left: -3px;
    top: 47px;
    gap: 8px;
  }
  .next-card .mini-icon {
    width: 28px;
    height: 28px;
  }
  .floating-card strong {
    font-size: 9px;
  }
  .floating-card .tiny-label {
    font-size: 6px;
  }
  .floating-card div > span:last-child {
    font-size: 7px;
  }
  .life-card {
    bottom: 92px;
    right: -4px;
    gap: 8px;
  }
  .mini-icon > .icon {
    width: 18px;
    height: 18px;
  }
  .art-caption {
    display: none;
  }
  .star-one {
    right: 0;
    top: 0;
    font-size: 38px;
  }
  .star-two {
    left: 0;
    bottom: 56px;
    font-size: 30px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 22px;
  }
  .hero-actions .button {
    min-height: 48px;
    font-size: 11px;
    padding-inline: 15px;
  }
  .hero-notes {
    flex-direction: column;
    gap: 3px;
    margin-top: 18px;
  }
  .people-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 24px;
    gap: 15px 25px;
  }
  .people-inner p {
    flex-basis: 100%;
    text-align: center;
  }
  .people-inner p br {
    display: none;
  }
  .people-inner p strong {
    margin-left: 4px;
  }
  .section {
    padding-block: 76px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 225px;
    font-size: 13px;
  }
  .eyebrow {
    font-size: 8px;
  }
  h2 {
    font-size: 33px;
  }
  .feature-grid {
    gap: 12px;
  }
  .feature-card {
    padding: 20px 16px;
  }
  .feature-card h3 {
    font-size: 17px;
    line-height: 1.25;
  }
  .feature-number {
    font-size: 6px;
  }
  .feature-icon {
    width: 32px;
    height: 32px;
  }
  .feature-card > p {
    font-size: 13px;
    min-height: 100px;
  }
  .mini-week {
    gap: 3px;
  }
  .mini-week b {
    height: 28px;
    font-size: 8px;
  }
  .cycle-visual > span {
    height: 26px;
    font-size: 8px;
  }
  .cycle-visual {
    gap: 4px;
    padding-top: 34px;
  }
  .cycle-visual .icon {
    width: 15px;
  }
  .notification-visual {
    padding: 14px 8px;
    margin-top: 25px;
  }
  .notification-visual img {
    display: none;
  }
  .notification-visual strong {
    font-size: 8px;
  }
  .notification-now {
    font-size: 6px;
  }
  .little-features {
    gap: 20px;
  }
  .little-features > div {
    gap: 9px;
  }
  .little-features strong {
    font-size: 12px;
  }
  .little-features span > span {
    font-size: 11px;
  }
  .little-features .icon {
    width: 18px;
    height: 18px;
  }
  .rhythm-section {
    padding-block: 65px;
  }
  .rhythm-grid {
    gap: 35px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  .rhythm-copy > p:not(.eyebrow):not(.rhythm-footnote) {
    font-size: 13px;
  }
  .rhythm-tabs button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .schedule-demo {
    padding: 20px;
  }
  .demo-cell {
    height: 42px;
    font-size: 10px;
  }
  .demo-cell > span {
    font-size: 6px;
  }
  .demo-header h3 {
    font-size: 17px;
  }
  .demo-detail {
    padding: 10px;
    gap: 8px;
  }
  .demo-detail strong {
    font-size: 9px;
  }
  .detail-icon {
    width: 29px;
    height: 29px;
  }
  .detail-icon .icon {
    width: 20px;
    height: 20px;
  }
  .demo-detail div > span {
    font-size: 7px;
  }
  .demo-caption {
    font-size: 7px;
  }
  .life-section {
    gap: 42px;
  }
  .life-art {
    height: 335px;
  }
  .time-off-card {
    width: 230px;
    padding: 20px;
  }
  .time-off-card h3 {
    font-size: 19px;
  }
  .life-note {
    top: 6px;
    right: -7px;
    font-size: 10px;
  }
  .life-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .check-list {
    font-size: 11px;
    gap: 9px;
  }
  .life-copy > .text-link {
    font-size: 10px;
  }
  .essentials-grid {
    gap: 30px;
  }
  .essentials-grid h3 {
    font-size: 16px;
  }
  .essentials-grid p {
    font-size: 13px;
  }
  .faq-section {
    gap: 34px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .faq-section h2 {
    font-size: 30px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 18px;
  }
  .faq-list details > p {
    font-size: 13px;
  }
  .get-app-card h2 {
    font-size: 37px;
  }
  .footer-top p {
    font-size: 9px;
  }
  .footer-top > .brand {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 30px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 80px;
  }
  .brand {
    font-size: 14px;
    gap: 9px;
  }
  .brand-caption {
    font-size: 8px;
  }
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid #dce2d3;
    border-radius: 9px;
    background: transparent;
  }
  .menu-toggle > span {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] > span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    padding: 17px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 20px #2533240a;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  nav.is-open {
    display: flex;
  }
  nav > a:not(.button) {
    font-size: 13px;
    padding: 13px 5px;
  }
  nav > .button {
    font-size: 12px;
    margin-top: 10px;
    min-height: 46px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 45px 40px;
    gap: 32px;
    min-height: 0;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-copy > .eyebrow {
    justify-content: center;
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-bottom: 23px;
  }
  h1 {
    font-size: clamp(59px, 15.3vw, 78px);
    letter-spacing: -0.065em;
    line-height: 1.04;
  }
  .headline-spark {
    width: 40px;
    height: 40px;
    bottom: 9px;
    margin-left: 8px;
  }
  .hero-description {
    max-width: 320px;
    margin: 24px auto 0;
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    margin-top: 24px;
    gap: 17px;
  }
  .hero-actions .button {
    min-height: 52px;
    padding-inline: 24px;
    font-size: 12px;
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-notes {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    margin-top: 21px;
    font-size: 9px;
  }
  .hero-art {
    width: min(390px, 100%);
    height: 510px;
    margin: 7px auto 0;
    padding-top: 12px;
  }
  .phone-frame {
    width: 229px;
    height: 468px;
    transform: rotate(-5deg);
  }
  .art-orbit {
    width: calc(100% - 30px);
    height: 355px;
    top: 81px;
  }
  .orbit-two {
    width: 100%;
    height: 393px;
    top: 62px;
  }
  .next-card {
    top: 58px;
    left: -6px;
    padding: 11px;
    gap: 8px;
    text-align: left;
    max-width: 239px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .floating-card div > span:last-child {
    font-size: 7px;
  }
  .floating-card .tiny-label {
    font-size: 6px;
  }
  .floating-card .mini-icon {
    width: 30px;
    height: 30px;
  }
  .life-card {
    right: -5px;
    bottom: 97px;
    text-align: left;
    padding: 12px;
    gap: 9px;
  }
  .theme-switch {
    bottom: -1px;
  }
  .theme-switch button {
    padding: 8px 14px;
  }
  .star-one {
    right: 12px;
    top: 9px;
    font-size: 37px;
  }
  .star-two {
    left: 3px;
    bottom: 60px;
    font-size: 33px;
  }
  .people-inner {
    gap: 14px 22px;
    padding-block: 24px;
  }
  .people-inner > span {
    font-size: 10px;
  }
  .people-inner p {
    font-size: 9px;
  }
  .people-inner > span:last-child {
    font-size: 9px;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .section-heading > .eyebrow,
  .section-heading .eyebrow {
    margin-bottom: 17px;
  }
  .section-heading > p {
    max-width: 320px;
    font-size: 13px;
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 23px;
  }
  .feature-top {
    margin-bottom: 19px;
  }
  .feature-icon {
    width: 37px;
    height: 37px;
  }
  .feature-number {
    font-size: 8px;
  }
  .feature-card > p {
    font-size: 13px;
    min-height: 0;
    max-width: none;
  }
  .mini-week {
    gap: 9px;
    max-width: 340px;
    padding-top: 24px;
  }
  .mini-week b {
    height: 37px;
    font-size: 10px;
  }
  .mini-week > div {
    font-size: 9px;
  }
  .cycle-visual {
    padding-top: 24px;
    gap: 9px;
    max-width: 340px;
  }
  .cycle-visual > span {
    height: 37px;
    width: 37px;
    font-size: 10px;
  }
  .cycle-visual > .icon {
    width: 22px;
    height: 22px;
  }
  .notification-visual {
    padding: 15px 12px;
    margin-top: 24px;
    gap: 10px;
  }
  .notification-visual img {
    display: block;
    width: 29px;
  }
  .notification-visual strong {
    font-size: 10px;
  }
  .notification-visual div > span {
    font-size: 8px;
  }
  .notification-now {
    font-size: 8px;
  }
  .little-features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .little-features > div {
    gap: 15px;
  }
  .little-features .icon {
    width: 23px;
    height: 23px;
  }
  .little-features strong {
    font-size: 12px;
  }
  .little-features span > span {
    font-size: 11px;
    margin-top: 3px;
  }
  .rhythm-section {
    padding-block: 57px;
  }
  .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rhythm-copy h2 {
    font-size: 33px;
  }
  .rhythm-copy > p:not(.eyebrow):not(.rhythm-footnote) {
    font-size: 13px;
    max-width: 330px;
    margin-top: 20px;
  }
  .rhythm-tabs {
    max-width: none;
    flex-direction: row;
    gap: 5px;
    margin-top: 24px;
  }
  .rhythm-tabs button {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 13px 6px;
    gap: 6px;
    font-size: 9px;
  }
  .rhythm-tabs .tab-arrow {
    display: none;
  }
  .rhythm-tabs button > .icon {
    width: 20px;
    height: 20px;
  }
  .rhythm-footnote {
    font-size: 8px;
    margin-top: 15px;
  }
  .schedule-demo {
    padding: 22px;
    transform: rotate(1deg);
  }
  .demo-header h3 {
    font-size: 20px;
  }
  .demo-grid {
    gap: 5px;
  }
  .demo-cell {
    height: 47px;
    font-size: 11px;
  }
  .demo-cell > span {
    font-size: 7px;
  }
  .demo-days {
    font-size: 9px;
  }
  .demo-detail {
    min-height: 84px;
    padding: 12px;
    gap: 10px;
  }
  .detail-icon {
    width: 32px;
    height: 32px;
  }
  .demo-detail strong {
    font-size: 10px;
  }
  .demo-detail div > span {
    font-size: 8px;
  }
  .demo-caption {
    font-size: 8px;
  }
  .life-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 47px;
  }
  .life-art {
    height: 345px;
    grid-row: 2;
    margin-top: 12px;
  }
  .life-note {
    right: 0;
    top: 26px;
    font-size: 12px;
  }
  .time-off-card {
    width: 255px;
    padding: 24px;
  }
  .time-off-card h3 {
    font-size: 21px;
  }
  .life-copy h2 {
    font-size: 32px;
  }
  .life-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .check-list {
    font-size: 11px;
    margin-block: 24px;
  }
  .life-copy > .text-link {
    font-size: 11px;
  }
  .essentials-section {
    padding-block: 43px 25px;
  }
  .essentials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .essentials-grid > div {
    position: relative;
    padding-left: 47px;
  }
  .essential-icon {
    position: absolute;
    left: 0;
    top: 0;
  }
  .essentials-grid h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .essentials-grid p {
    font-size: 13px;
    max-width: none;
  }
  .language-line {
    gap: 8px 10px;
    font-size: 8px;
    margin-top: 27px;
    padding-top: 25px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-section h2 {
    font-size: 33px;
  }
  .faq-section > div:first-child > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 11px;
  }
  .faq-section .text-link {
    font-size: 11px;
    margin-top: 8px;
  }
  .faq-list summary {
    font-size: 13px;
    line-height: 1.7;
    padding-block: 20px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 12px;
  }
  .get-app-section {
    width: calc(100% - 24px);
    padding-bottom: 40px;
  }
  .get-app-card {
    padding: 35px 21px 34px;
    border-radius: 20px;
  }
  .cta-logo {
    width: 49px;
    height: 54px;
    margin-bottom: 21px;
  }
  .get-app-card .eyebrow {
    font-size: 7px;
    letter-spacing: 0.1em;
  }
  .get-app-card h2 {
    font-size: 30px;
    letter-spacing: -0.05em;
    line-height: 1.2;
  }
  .get-app-card > p:not(.eyebrow) {
    font-size: 11px;
    max-width: 220px;
    margin-inline: auto;
  }
  .button-white {
    font-size: 11px;
    gap: 14px;
    margin-top: 22px;
  }
  .launch-status {
    font-size: 8px;
    margin-top: 14px;
  }
  .cta-orbit {
    width: 480px;
    height: 480px;
    top: 60px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 23px;
  }
  .footer-top > .brand {
    font-size: 12px;
    gap: 9px;
  }
  .footer-top > .brand img {
    width: 30px;
    height: 33px;
  }
  .footer-top > p {
    order: 3;
    flex-basis: 100%;
    font-size: 10px;
  }
  .footer-top > a:last-child {
    font-size: 10px;
    margin-left: auto;
    gap: 6px;
  }
  .footer-bottom {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
    font-size: 8px;
    padding-top: 18px;
  }
  .footer-bottom > div {
    width: 100%;
    justify-content: space-between;
  }
  .dialog-inner {
    padding: 33px 25px;
  }
  .dialog-inner h2 {
    font-size: 27px;
  }
  .dialog-inner p:not(.eyebrow) {
    font-size: 12px;
  }
  .dialog-inner .eyebrow {
    font-size: 8px;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: 57px;
  }
  .headline-spark {
    width: 32px;
    margin-left: 4px;
  }
  .hero-notes {
    gap: 11px;
    font-size: 8px;
  }
  .hero-art {
    height: 480px;
  }
  .phone-frame {
    width: 217px;
    height: 444px;
  }
  .next-card {
    left: -3px;
  }
  .life-card {
    right: -3px;
  }
  .floating-card strong {
    font-size: 9px;
  }
  .floating-card div > span:last-child {
    font-size: 6px;
  }
  .floating-card .mini-icon {
    width: 27px;
    height: 27px;
  }
  .feature-card {
    padding: 21px;
  }
  .schedule-demo {
    padding: 17px;
  }
  .demo-cell {
    height: 42px;
  }
  .rhythm-tabs button {
    font-size: 8px;
  }
  .life-note {
    right: -2px;
    font-size: 10px;
  }
  .get-app-card h2 {
    font-size: 27px;
  }
  .site-footer .brand {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .feature-card:hover {
    transform: none;
  }
}

/* Keep language selection visible at every width, outside the collapsible menu. */
.header-inner { gap: 18px; }
.header-inner > .brand { order: 1; flex-shrink: 0; }
.header-inner > nav { order: 2; gap: 20px; }
.language-switcher {
  order: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--paper);
}
.language-switcher > .icon { width: 17px; height: 17px; flex-shrink: 0; }
.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.language-switcher select {
  width: 145px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.language-switcher:focus-within { outline: 2px solid var(--blue); outline-offset: 3px; }
.language-switcher select:focus { outline: 0; }
.language-links { display: flex; flex-wrap: wrap; gap: 12px 20px; padding-block: 24px; font-size: 12px; border-top: 1px solid var(--line); }
.language-links a:hover, .language-links a[aria-current='page'] { color: var(--blue); }
.hero-copy, .rhythm-copy, .life-copy, .feature-card { min-width: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }
.button { white-space: normal; text-align: center; }
.demo-cell > span { max-width: 100%; font-size: 7px; overflow-wrap: anywhere; }
html:not([lang='en']) h1 { font-size: clamp(42px, 5.8vw, 84px); }
html[lang='ja'] h1 { font-size: clamp(32px, 3.8vw, 55px); line-height: 1.5; letter-spacing: -0.03em; }
html[lang='ja'] { --font: Manrope, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif; }
html[lang='ja'] h2 { line-height: 1.5; }

@media (max-width: 1100px) {
  .header-inner > nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 17px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 20px #2533240a;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .header-inner > nav.is-open { display: flex; }
  .header-inner > nav > a:not(.button) { font-size: 13px; padding: 13px 5px; }
  .header-inner > nav > .button { margin-top: 10px; min-height: 46px; }
  .language-switcher { margin-left: auto; order: 2; }
  .header-inner > .menu-toggle {
    order: 3;
    display: flex;
    width: 42px;
    height: 44px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
  }
  .menu-toggle > span { width: 17px; height: 1.5px; background: var(--ink); transition: transform 0.2s; }
  .menu-toggle[aria-expanded='true'] > span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] > span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}
@media (max-width: 650px) {
  .header-inner { gap: 8px; flex-wrap: wrap; height: auto; min-height: 104px; padding-block: 12px; }
  .header-inner > .brand { width: calc(100% - 52px); }
  .header-inner > .brand img { width: 32px; height: 35px; }
  .header-inner > .menu-toggle { position: absolute; right: 20px; top: 12px; }
  .language-switcher { margin-left: 0; padding-inline: 8px; border-radius: 8px; }
  .language-switcher select { min-height: 34px; width: 145px; font-size: 10px; }
  .hero-notes { flex-wrap: wrap; justify-content: center; }
  html:not([lang='en']):not([lang='ja']) h1 { font-size: clamp(37px, 9.4vw, 58px); }
  html[lang='ja'] h1 { font-size: clamp(29px, 7.5vw, 46px); }
  .floating-card { max-width: 68%; }
  .floating-card strong, .floating-card div > span:last-child { white-space: normal; }
  .rhythm-tabs { flex-wrap: wrap; }
  .rhythm-tabs button { flex: 1; min-width: 0; white-space: normal; }
  .demo-cell > span { font-size: 6px; }
}
