:root {
  --blue: #159bff;
  --blue-deep: #0b45f5;
  --ink: #08101e;
  --muted: #5d6b7f;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dbe6f2;
  --radius-card: 32px;
  --radius-control: 18px;
  --shadow-phone: 0 34px 90px rgba(0, 44, 112, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1280px, calc(100% - 64px));
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  min-width: 112px;
  min-height: 44px;
  align-items: center;
}

.brand img {
  display: block;
  width: 104px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a,
.site-header nav button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.site-header nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.nav-cta {
  padding: 0 20px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  padding: 150px max(32px, calc((100vw - 1280px) / 2)) 80px;
  color: var(--white);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(64px, 7.2vw, 116px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero-lead {
  max-width: 580px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.waitlist-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 28px;
  padding: 9px 12px 9px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 31, 78, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.waitlist-button span {
  display: grid;
  gap: 1px;
}

.waitlist-button small {
  color: #66758a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.waitlist-button b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 18px;
}

.waitlist-button:hover {
  box-shadow: 0 18px 42px rgba(7, 31, 78, 0.24);
  transform: translateY(-2px);
}

.waitlist-button:active { transform: scale(0.985); }

.app-store-badge {
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.app-store-badge:active { transform: scale(0.98); }

.app-store-badge img {
  display: block;
  width: auto;
  height: 52px;
}

.google-play-badge {
  width: 151px;
  overflow: hidden;
  border-radius: 8px;
  cursor: default;
}

.google-play-badge img {
  display: block;
  width: auto;
  height: 62px;
  filter: grayscale(1) brightness(0.66);
  opacity: 0.78;
}

.google-play-badge::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(5, 7, 11, 0.3);
  content: "";
}

.google-play-badge small {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 7, 11, 0.86);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.store-badges-centered {
  justify-content: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.text-link span {
  font-size: 19px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 660px;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(356px, 76vw);
  aspect-ratio: 393 / 852;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 58px;
  background: linear-gradient(145deg, #68717d 0%, #171c23 18%, #06090e 64%, #59616b 100%);
  box-shadow:
    0 0 0 1px rgba(8, 12, 18, 0.82),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    var(--shadow-phone);
  transform: rotate(4deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 12px 19px 30px;
  border-radius: 49px;
  background: var(--paper);
  color: var(--ink);
}

.phone-status {
  display: grid;
  min-height: 34px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5px;
  color: #05070b;
  font-size: 11px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.phone-status time {
  justify-self: start;
  padding-left: 2px;
}

.dynamic-island {
  width: 92px;
  height: 27px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.status-icons {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}

.status-icons svg {
  display: block;
  fill: currentColor;
}

.cellular-icon { width: 16px; height: 11px; }
.wifi-icon { width: 15px; height: 11px; }
.battery-icon { width: 24px; height: 11px; }

.battery-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.42;
}

.battery-level { fill: currentColor; }

.iphone-button {
  position: absolute;
  z-index: -1;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, #171b21, #6d7580);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.2);
}

.iphone-button-action {
  top: 112px;
  left: -4px;
  height: 32px;
}

.iphone-button-volume-up {
  top: 166px;
  left: -4px;
  height: 58px;
}

.iphone-button-volume-down {
  top: 235px;
  left: -4px;
  height: 58px;
}

.iphone-button-power {
  top: 190px;
  right: -4px;
  height: 92px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #6d7580, #171b21);
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.phone-heading > div {
  display: grid;
  gap: 4px;
}

.phone-kicker,
.focus-label,
.ritual-preview small {
  color: #66758a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phone-heading strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.focus-card {
  display: flex;
  min-height: 386px;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
  padding: 32px 20px 22px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(25, 63, 110, 0.09);
}

.focus-time {
  margin-top: 22px;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.app-bubbles {
  display: flex;
  margin-top: 28px;
}

.app-bubble {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(8, 16, 30, 0.12);
}

.app-bubble + .app-bubble {
  margin-left: -10px;
}

.app-pink { background: linear-gradient(145deg, #ff8bd1, #8a2be2); }
.app-black { background: #111318; }
.app-red { background: #ff3545; }

.mock-button {
  display: grid;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  place-items: center;
  border-radius: var(--radius-control);
  background: var(--blue-deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
}

.ritual-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.ritual-preview > span:last-child {
  display: grid;
  gap: 4px;
}

.ritual-preview strong {
  font-size: 13px;
}

.ritual-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: #e9f3ff;
  color: var(--blue-deep);
}

.ritual-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-indicator {
  position: absolute;
  right: 50%;
  bottom: 9px;
  width: 116px;
  height: 4px;
  border-radius: 999px;
  background: #080a0d;
  transform: translateX(50%);
}

.phone-screen-screenshot {
  padding: 0;
  background: #05070b;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-dynamic-island {
  position: absolute;
  width: 88px;
  height: 26px;
  top: 8px;
  left: 50%;
  z-index: 3;
  background: #000;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 1px 3px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.phone-dynamic-island i {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #162848, #030711 68%);
  opacity: 0.78;
}

.phone-screen-screenshot::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.phone-screen-screenshot .home-indicator {
  z-index: 5;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.orbit,
.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit {
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.orbit-large { width: 590px; height: 590px; }
.orbit-small { width: 450px; height: 450px; }

.bubble {
  z-index: 0;
  background: rgba(255, 255, 255, 0.13);
}

.bubble-one { top: 12%; left: -80px; width: 210px; height: 210px; }
.bubble-two { right: 38%; bottom: -78px; width: 190px; height: 190px; }
.bubble-three { top: 16%; right: 2%; width: 78px; height: 78px; }

.review-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 70px 0 76px;
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
}

.review-strip-inner {
  position: relative;
  z-index: 1;
}

.review-strip-intro {
  margin-bottom: 36px;
  text-align: center;
}

.review-strip-intro > span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.review-strip-intro h2 {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: clamp(42px, 4.7vw, 70px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-align: center;
}

.review-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 252px;
  flex-direction: column;
  margin: 0;
  padding: 28px 28px 24px;
  border: 1px solid rgba(8, 16, 30, 0.08);
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(5, 24, 94, 0.18);
}

.review-card-stars {
  display: block;
  margin-top: 22px;
  color: #f7bd19;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.review-card p {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 18px 0 0;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.32;
  text-align: center;
}

.review-card-author {
  display: grid;
  gap: 3px;
  text-align: center;
}

.review-card-author strong {
  font-size: 15px;
  font-weight: 900;
}

.review-card-author span {
  color: #708097;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-bubble {
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.review-bubble-one {
  top: -210px;
  left: 8%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(21, 155, 255, 0.24);
}

.review-bubble-two {
  right: -70px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  background: rgba(21, 155, 255, 0.18);
}

.section-wrap {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.section-light,
.section-white,
.section-soft {
  color: var(--ink);
}

.section-light { background: #eef7ff; }
.section-white { background: var(--white); }
.section-soft { background: var(--paper); }
.section-ink { background: var(--ink); color: var(--white); }

.section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-label-blue { color: var(--blue-deep); }

.manifesto {
  padding: 132px 0 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 72px;
  align-items: start;
}

.manifesto-grid > .section-label {
  padding-top: 15px;
  color: var(--blue-deep);
}

.manifesto h2,
.feature-copy h2,
.section-heading-center h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(46px, 5.3vw, 78px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.manifesto-grid > div > p {
  max-width: 760px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.55;
}

.principle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 112px;
  padding: 32px max(32px, calc((100vw - 1200px) / 2));
  overflow: hidden;
  border-top: 1px solid #d5e9fa;
  color: #386b94;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  white-space: nowrap;
}

.principle-row i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.feature-section {
  padding: 140px 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 92px;
  align-items: center;
}

.feature-layout-reverse {
  grid-template-columns: minmax(500px, 1.15fr) minmax(0, 0.85fr);
}

.feature-layout-reverse .feature-copy { order: 2; }

.feature-copy h2 {
  margin-top: 22px;
  font-size: clamp(44px, 4.5vw, 68px);
}

.feature-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 28px 0 0;
  color: #aeb8c7;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.6;
}

.section-white .feature-copy > p:not(.section-label),
.section-soft .feature-copy > p:not(.section-label) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: #dce4ee;
  font-size: 15px;
  font-weight: 700;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(21, 155, 255, 0.15);
  color: #59bbff;
  font-size: 12px;
}

.feature-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid #253449;
  border-radius: 48px;
  background: #0c1523;
}

.feature-stage-blocks {
  display: grid;
  place-items: center;
  padding: 56px;
}

.mini-card {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  border: 1px solid #dae5f0;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.mini-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transform: translate(-44px, 18px) rotate(-4deg);
}

.mini-card-top > span:nth-child(2),
.mini-card-head > span:first-child,
.block-row > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.mini-card small,
.block-row small,
.ritual-node small,
.progress-card small {
  color: #6b788b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mini-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
}

.mini-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.blue-icon { background: #e9f3ff; color: var(--blue-deep); }

.status-pill {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #16834a;
  font-size: 11px;
  font-weight: 850;
}

.mini-card-main {
  margin-top: -2px;
  padding: 24px;
  transform: translate(36px, 6px) rotate(3deg);
}

.mini-card-head,
.block-row,
.schedule-bar,
.progress-head,
.progress-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plus {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 21px;
}

.block-row {
  gap: 13px;
  margin-top: 19px;
  padding: 14px 0;
  border-top: 1px solid #edf1f5;
}

.block-row > span:nth-child(2) { margin-right: auto; }

.color-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
}

.pink-dot { background: linear-gradient(145deg, #ff8bd1, #8a2be2); }
.red-dot { background: #ff3545; }

.toggle-on {
  display: flex;
  width: 42px;
  height: 25px;
  align-items: center;
  justify-content: flex-end;
  padding: 3px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.toggle-on i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--white);
}

.schedule-bar {
  margin-top: 18px;
  padding: 15px;
  border-radius: 16px;
  background: #eef4fc;
  color: #627086;
  font-size: 10px;
  font-weight: 850;
}

.schedule-bar strong { color: var(--ink); }

.stage-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.72;
}

.stage-bubble-a { top: -78px; right: -58px; width: 230px; height: 230px; }
.stage-bubble-b { bottom: 26px; left: 28px; width: 84px; height: 84px; opacity: 0.23; }

.ritual-stage {
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--blue);
}

.ritual-orbit {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.ritual-node {
  position: relative;
  z-index: 2;
  display: flex;
  width: 150px;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 29px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 50, 120, 0.2);
}

.ritual-node-main {
  width: 185px;
  min-height: 250px;
  transform: translateY(-18px);
}

.ritual-node small { margin-top: 15px; }
.ritual-node strong { margin-top: 7px; font-size: 18px; }
.ritual-node-main strong { font-size: 26px; }

.ritual-node-main > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.node-index,
.breath-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  color: var(--blue-deep);
  font-weight: 900;
}

.node-check { background: #e7f8ef; color: #16834a; }

.breath-mark { width: 70px; height: 70px; }

.breath-mark svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ritual-arrow {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.progress-card {
  min-height: 500px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(30, 66, 104, 0.1);
}

.progress-head strong {
  display: block;
  margin-top: 8px;
  font-size: 48px;
  letter-spacing: -0.06em;
}

.trend {
  padding: 9px 13px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #16834a;
  font-size: 12px;
  font-weight: 900;
}

.bar-chart {
  display: grid;
  height: 270px;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 35px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.bar-chart > span {
  position: relative;
  display: block;
  height: var(--bar);
  border-radius: 12px 12px 5px 5px;
  background: #dceafa;
}

.bar-chart > span.active { background: var(--blue-deep); }

.bar-chart i {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  color: #718095;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.progress-foot {
  margin-top: 28px;
  color: #718095;
  font-size: 11px;
  font-weight: 750;
}

.progress-foot span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.progress-foot strong { color: var(--ink); }

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-deep);
}

.steps { padding: 140px 0; }
.section-heading-center { text-align: center; }
.section-heading-center h2 { margin-top: 22px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.steps-grid article {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
}

.steps-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 76px 0 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.steps-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.shift-difference {
  padding: 150px 0;
  background: #eef7ff;
  color: var(--ink);
}

.difference-intro {
  display: grid;
  max-width: 1040px;
  justify-items: center;
  text-align: center;
}

.difference-intro h2,
.suite-heading h2,
.ritual-lab-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 900;
  letter-spacing: -0.066em;
  line-height: 0.95;
}

.difference-intro > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 560;
  line-height: 1.55;
}

.behavior-compare {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  margin-top: 74px;
}

.behavior-card {
  min-height: 235px;
  padding: 30px;
  border-radius: 32px;
}

.behavior-before {
  border: 1px solid #d7e2ed;
  background: rgba(255, 255, 255, 0.64);
  color: #758294;
}

.behavior-after {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(10, 25, 45, 0.16);
}

.behavior-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.behavior-before .behavior-tag { color: #8b97a7; }
.behavior-after .behavior-tag { color: #64beff; }

.behavior-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 760;
}

.behavior-flow span,
.behavior-flow strong {
  padding: 13px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.behavior-before .behavior-flow span,
.behavior-before .behavior-flow strong { background: #e5ebf1; }
.behavior-after .behavior-flow span { background: #172438; }
.behavior-after .behavior-flow strong { background: var(--blue-deep); }

.behavior-flow i {
  font-style: normal;
  opacity: 0.55;
}

.behavior-card > p {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 650;
}

.behavior-after > p { color: #aab7c8; }

.focus-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 180px;
  color: #07101e;
  background:
    radial-gradient(circle at 20% 16%, rgba(46, 167, 255, 0.08), transparent 24%),
    radial-gradient(circle at 80% 62%, rgba(34, 71, 222, 0.06), transparent 30%),
    #fff;
}

.showcase-glow {
  position: absolute;
  top: 440px;
  left: 50%;
  width: 1150px;
  height: 1150px;
  border: 1px solid rgba(24, 142, 230, 0.12);
  border-radius: 50%;
  transform: translateX(-50%);
}

.showcase-bubble {
  position: absolute;
  z-index: 0;
  display: block;
  border: 1px solid rgba(83, 164, 255, 0.24);
  border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%;
  background:
    radial-gradient(circle at 32% 27%, rgba(255, 255, 255, 0.82) 0 3%, rgba(178, 224, 255, 0.7) 16%, transparent 42%),
    linear-gradient(145deg, #dff3ff 5%, #94d1ff 46%, #4d9bf4 100%);
  box-shadow:
    inset 22px 18px 55px rgba(255, 255, 255, 0.38),
    inset -28px -30px 70px rgba(17, 77, 187, 0.16),
    0 28px 80px rgba(43, 124, 218, 0.1);
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-8deg);
}

.showcase-bubble-one {
  top: 250px;
  left: -430px;
  width: 860px;
  height: 820px;
  opacity: 0.58;
}

.showcase-bubble-two {
  top: 1120px;
  right: -330px;
  width: 700px;
  height: 660px;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, 0.72) 0 4%, rgba(137, 202, 255, 0.68) 18%, transparent 43%),
    linear-gradient(145deg, #c9eaff 5%, #6bb4ff 48%, #225cd7 100%);
  opacity: 0.48;
  transform: rotate(11deg);
}

.showcase-bubble-three {
  bottom: 230px;
  left: 6%;
  width: 230px;
  height: 220px;
  opacity: 0.68;
  transform: rotate(17deg);
}

.showcase-bubble-four {
  top: 980px;
  left: 14%;
  width: 112px;
  height: 106px;
  opacity: 0.78;
  transform: rotate(24deg);
}

.showcase-bubble-five {
  top: 1840px;
  right: 5%;
  width: 290px;
  height: 275px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.82) 0 3%, rgba(153, 214, 255, 0.72) 18%, transparent 43%),
    linear-gradient(145deg, #d9f2ff 4%, #74bfff 50%, #2d70dd 100%);
  opacity: 0.62;
  transform: rotate(-18deg);
}

.showcase-bubble-six {
  right: 17%;
  bottom: 590px;
  width: 96px;
  height: 90px;
  opacity: 0.82;
  transform: rotate(9deg);
}

.showcase-heading {
  position: relative;
  z-index: 2;
  max-width: 930px;
  text-align: center;
}

.showcase-heading .section-label { color: #087bd1; }

.showcase-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(56px, 6.6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.showcase-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  margin-top: 76px;
}

.showcase-row {
  --showcase-step: "01";
  position: relative;
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(440px, 1fr) minmax(0, 0.82fr);
  gap: 58px;
  align-items: center;
}

.showcase-row::after {
  position: absolute;
  right: 0;
  bottom: 76px;
  z-index: 0;
  color: rgba(10, 87, 205, 0.055);
  content: var(--showcase-step);
  font-size: 240px;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.showcase-row:nth-child(2) { --showcase-step: "02"; }
.showcase-row:nth-child(3) { --showcase-step: "03"; }

.showcase-row-right {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
}

.showcase-row-right::after {
  right: auto;
  left: 0;
}

.showcase-row > * {
  position: relative;
  z-index: 1;
}

.showcase-copy { max-width: 510px; }
.showcase-row-left .showcase-copy { justify-self: start; }
.showcase-row-right .showcase-copy { justify-self: end; }

.showcase-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid #d4dce7;
  border-radius: 999px;
  color: #526172;
  background: rgba(15, 115, 221, 0.035);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.showcase-copy h3 {
  margin: 26px 0 0;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.062em;
  line-height: 0.96;
}

.showcase-copy p {
  max-width: 500px;
  margin: 25px 0 0;
  color: #596777;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.55;
}

.showcase-device-stage {
  position: relative;
  display: grid;
  height: 700px;
  place-items: center;
  overflow: visible;
}

.showcase-device {
  position: relative;
  width: 330px;
  aspect-ratio: 393 / 808;
  padding: 8px;
  border: 1px solid #68717c;
  border-radius: 57px;
  background: linear-gradient(145deg, #7e8792 0%, #20252c 17%, #05070b 61%, #676f79 100%);
  box-shadow:
    0 0 0 2px #080a0e,
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 55px 110px rgba(0, 0, 0, 0.72),
    0 0 90px rgba(51, 190, 255, 0.07);
  transform-origin: center center;
}

.showcase-device::before {
  position: absolute;
  z-index: 3;
  top: 3px;
  right: 42px;
  left: 42px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.showcase-device::after {
  position: absolute;
  z-index: -1;
  top: 182px;
  right: -6px;
  width: 6px;
  height: 88px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #66707b, #171b21 84%);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.18);
  content: "";
}

.showcase-row-left .showcase-device { transform: rotate(-9deg); }
.showcase-row-right .showcase-device { transform: rotate(9deg); }
.showcase-row-last .showcase-device { transform: rotate(-6deg); }

.showcase-side-button {
  position: absolute;
  z-index: -1;
  left: -6px;
  width: 6px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(180deg, #59616b, #14181d);
}

.showcase-side-one { top: 134px; height: 56px; }
.showcase-side-two { top: 207px; height: 84px; }

.showcase-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 12px 17px 26px;
  border-radius: 49px;
  color: #08101e;
  background: #f4f7fb;
}

.showcase-status {
  display: grid;
  height: 39px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.showcase-time {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.showcase-status > i {
  position: relative;
  width: 92px;
  height: 27px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.showcase-status > i::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #183767 0 14%, #07101f 36%, #010205 72%);
  box-shadow: 0 0 0 1px rgba(48, 92, 145, 0.22);
  content: "";
}

.showcase-system {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}

.showcase-system b:first-child {
  width: 16px;
  height: 11px;
  background:
    linear-gradient(currentColor, currentColor) 0 8px / 3px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 4.4px 6px / 3px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 8.8px 3px / 3px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 0 / 3px 11px no-repeat;
  border-radius: 1px;
}

.showcase-system b:nth-child(2) {
  position: relative;
  width: 17px;
  height: 12px;
  overflow: visible;
}

.showcase-system b:nth-child(2)::before {
  content: none;
}

.showcase-system b:nth-child(2) svg {
  display: block;
  width: 17px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.showcase-system em {
  position: relative;
  display: grid;
  width: 25px;
  height: 12px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 3.5px;
  font-style: normal;
}

.showcase-system em::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.showcase-system em::after {
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 6px;
  border-radius: 0 1px 1px 0;
  background: currentColor;
  content: "";
}

.showcase-system em strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.showcase-status-light .showcase-system em strong { color: #07101e; }

.showcase-app-head {
  display: grid;
  min-height: 46px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 14px;
}

.showcase-app-head > span:first-child { font-size: 27px; font-weight: 500; }
.showcase-app-head > span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  color: #fff;
  background: #0d8bff;
  font-size: 20px;
}

.showcase-segments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid #dbe4ef;
  border-radius: 15px;
  background: #e9eef5;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.showcase-segments span { padding: 9px; border-radius: 11px; color: #768398; }
.showcase-segments .active { color: #08101e; background: #fff; box-shadow: 0 3px 8px rgba(8, 16, 30, 0.09); }

.rules-hero-card {
  margin-top: 14px;
  padding: 17px;
  border: 1px solid #dbe4ee;
  border-radius: 23px;
  background: #fff;
}

.screen-eyebrow {
  color: #0d5bff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.rules-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 11px;
}

.rules-title > strong { font-size: 26px; letter-spacing: -0.05em; }
.rules-title > span { font-size: 23px; font-weight: 900; }
.rules-title small { color: #718095; font-size: 7px; }
.rules-hero-card > p { margin: 8px 0 0; color: #718095; font-size: 10px; }

.screen-app-stack {
  display: flex;
  align-items: center;
}

.rules-hero-card > .screen-app-stack { margin-top: 18px; }

.screen-app-stack img,
.ritual-phone-flow img,
.ritual-phone-card img {
  display: block;
  width: 33px;
  height: 33px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 10px;
}

.screen-app-stack img + img { margin-left: -7px; }
.screen-app-stack > span { margin-left: auto; color: #258659; font-size: 8px; font-weight: 800; }

.screen-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  font-size: 12px;
}

.screen-section-title span { color: #748196; font-size: 8px; font-weight: 700; }

.quick-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.quick-groups > div {
  min-height: 115px;
  padding: 13px;
  border: 1px solid #dbe4ee;
  border-radius: 19px;
  background: #fff;
}

.quick-groups strong,
.quick-groups small { display: block; }
.quick-groups strong { margin-top: 13px; font-size: 12px; }
.quick-groups small { margin-top: 3px; color: #7b8798; font-size: 8px; }

.screen-primary {
  display: grid;
  min-height: 46px;
  place-items: center;
  margin-top: 14px;
  border-radius: 15px;
  color: #fff;
  background: #0d5bff;
  font-size: 10px;
  font-weight: 850;
}

.timer-screen { color: #fff; background: #159bff; }
.showcase-status-light { color: #fff; }

.timer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.timer-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #159bff;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
}

.timer-top > div { display: flex; gap: 6px; }
.timer-top i { padding: 7px 9px; border-radius: 999px; color: #08101e; background: rgba(255,255,255,.82); font-size: 9px; font-style: normal; font-weight: 900; }

.timer-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 20px;
  font-size: 7px;
  font-weight: 750;
  text-align: center;
}

.timer-week span { padding: 9px 3px; border-radius: 13px; color: #d9f0ff; background: rgba(255,255,255,.1); }
.timer-week small { display: block; margin-top: 5px; font-size: 10px; }
.timer-week .active { color: #0d5bff; background: #fff; }

.timer-card {
  margin-top: 18px;
  padding: 19px 17px 17px;
  border-radius: 26px;
  color: #08101e;
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 62, 139, 0.18);
}

.timer-state {
  display: table;
  margin: 11px auto 0;
  padding: 7px 9px;
  border-radius: 999px;
  color: #8490a0;
  background: #edf1f5;
  font-size: 7px;
  font-weight: 900;
}

.timer-value { display: block; margin-top: 22px; font-size: 43px; letter-spacing: -0.075em; text-align: center; }
.timer-labels { display: grid; grid-template-columns: repeat(3, 1fr); color: #9ba5b2; font-size: 7px; text-align: center; }
.timer-durations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 21px; }
.timer-durations span { padding: 9px 4px; border-radius: 999px; color: #778397; background: #eef2f6; font-size: 8px; font-weight: 850; text-align: center; }
.timer-durations .active { color: #0d5bff; background: #ddeaff; }
.timer-selection { display: flex; gap: 8px; margin-top: 13px; }
.timer-selection span { flex: 1; padding: 10px; border: 1px solid #dfe6ef; border-radius: 13px; color: #596679; font-size: 8px; font-weight: 800; text-align: center; }
.timer-selection b { color: #0d5bff; }
.timer-button { display: flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; margin-top: 13px; border-radius: 15px; color: #fff; background: #0d5bff; font-size: 11px; font-weight: 900; }

.timer-button i {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.timer-ritual-preview {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px 22px 0 0;
  color: #08101e;
  background: #fff;
}

.timer-ritual-preview span { color: #0d5bff; font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.timer-ritual-preview strong { font-size: 11px; }

.rituals-phone-hero {
  margin-top: 13px;
  padding: 18px;
  border: 1px solid #dbe4ee;
  border-radius: 24px;
  background: #fff;
}

.rituals-phone-hero > div:first-child { display: flex; align-items: center; justify-content: space-between; }
.rituals-phone-hero > div:first-child small { color: #258659; font-size: 7px; font-weight: 900; letter-spacing: .08em; }
.ritual-cycle { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 13px; color: #fff; background: #0d8bff; font-size: 18px; }
.rituals-phone-hero > strong { display: block; margin-top: 18px; font-size: 26px; letter-spacing: -.055em; line-height: .96; }
.rituals-phone-hero > p { margin: 9px 0 0; color: #687689; font-size: 9px; line-height: 1.45; }

.ritual-phone-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 11px;
  border-radius: 16px;
  background: #f1f5f9;
}

.ritual-phone-flow > span { color: #8793a3; font-size: 11px; }
.ritual-phone-flow > b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 12px; color: #0d5bff; background: #ddecff; font-size: 10px; }
.ritual-phone-flow > em { color: #7d5900; font-size: 12px; font-style: normal; font-weight: 900; }
.ritual-phone-flow em small { display: block; font-size: 5px; text-align: center; }

.ritual-phone-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #fff;
}

.ritual-phone-card > span { display: grid; gap: 3px; }
.ritual-phone-card small { color: #0d5bff; font-size: 6px; font-weight: 900; letter-spacing: .06em; }
.ritual-phone-card strong { font-size: 10px; }
.ritual-phone-card > b { margin-left: auto; padding: 7px; border-radius: 999px; color: #7d5900; background: #fff0ba; font-size: 7px; }

.feature-suite {
  padding: 150px 0;
  background: #f8fafc;
  color: var(--ink);
}

.suite-heading {
  display: grid;
  max-width: 880px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.suite-heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 76px;
}

.bento-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #dce5ef;
  border-radius: 38px;
  background: var(--white);
}

.bento-schedule {
  grid-column: span 7;
  min-height: 570px;
  background: #eaf5ff;
}

.bento-quick {
  grid-column: span 5;
  min-height: 570px;
  color: var(--white);
  background: var(--ink);
}

.bento-strict {
  grid-column: span 5;
  background: #fff;
}

.bento-progress {
  grid-column: span 7;
  background: #e7f7ed;
}

.bento-copy { position: relative; z-index: 2; }

.bento-index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.bento-quick .bento-index { background: var(--blue-deep); }

.bento-copy h3 {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.bento-copy p {
  max-width: 550px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.55;
}

.bento-quick .bento-copy p { color: #aeb9c8; }

.routine-panel {
  position: absolute;
  right: 34px;
  bottom: -18px;
  left: 34px;
  min-height: 292px;
  padding: 26px;
  border: 1px solid #dbe6f0;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 24px 55px rgba(39, 98, 148, 0.16);
}

.routine-panel-head,
.routine-time,
.routine-apps {
  display: flex;
  align-items: center;
}

.routine-panel-head { justify-content: space-between; }

.routine-panel-head > span:first-child { display: grid; gap: 5px; }

.routine-panel small,
.builder-head small,
.builder-step small,
.time-saved > span {
  color: #748196;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.live-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: #177d48;
  background: #e4f7ec;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.routine-time {
  gap: 12px;
  margin-top: 25px;
}

.routine-time strong {
  font-size: 30px;
  letter-spacing: -0.05em;
}

.routine-time span { color: var(--muted); font-size: 12px; }

.routine-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 22px;
}

.routine-days span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 9px;
  font-weight: 900;
}

.routine-days .off { color: #929daa; background: #edf1f5; }

.routine-apps {
  margin-top: 22px;
}

.routine-apps i,
.app-selection i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #cf44cf;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.routine-apps i:nth-child(2),
.app-selection i:nth-child(2) { margin-left: -8px; background: #11131a; }
.routine-apps i:nth-child(3),
.app-selection i:nth-child(3) { margin-left: -8px; background: #ff3448; }
.routine-apps span { margin-left: 10px; color: #758195; font-size: 11px; font-weight: 750; }

.quick-dial {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #29364a;
  border-radius: 30px;
  background: #111d2e;
}

.quick-dial::before,
.quick-dial::after {
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(70, 178, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.quick-dial::after { width: 210px; height: 210px; }

.quick-dial > span,
.quick-dial > strong { position: relative; z-index: 1; }
.quick-dial > span { align-self: end; color: #7ebfe9; font-size: 9px; font-weight: 900; letter-spacing: 0.14em; }
.quick-dial > strong { align-self: start; font-size: 66px; letter-spacing: -0.08em; }
.quick-dial > strong small { font-size: 25px; }

.quick-dial > i {
  position: absolute;
  bottom: 18px;
  width: 58%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #2c3a4f;
}

.quick-dial > i::after {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  content: "";
}

.strict-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 74px;
  padding: 7px;
  border-radius: 18px;
  background: #eef2f6;
}

.strict-options span {
  padding: 14px 6px;
  border-radius: 13px;
  color: #7a8797;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.strict-options .selected {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 7px 16px rgba(8, 16, 30, 0.18);
}

.strict-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.time-saved {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.time-saved strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(44px, 5vw, 67px);
  letter-spacing: -0.07em;
}

.spark-bars {
  display: grid;
  height: 92px;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
  align-items: end;
  margin-top: 24px;
}

.spark-bars i {
  height: 42%;
  border-radius: 7px 7px 3px 3px;
  background: rgba(20, 139, 87, 0.25);
}

.spark-bars i:nth-child(2) { height: 66%; }
.spark-bars i:nth-child(3) { height: 49%; }
.spark-bars i:nth-child(4) { height: 82%; background: #1b9a61; }
.spark-bars i:nth-child(5) { height: 70%; }
.spark-bars i:nth-child(6) { height: 55%; }
.spark-bars i:nth-child(7) { height: 75%; }

.daily-shift {
  position: relative;
  overflow: hidden;
  padding: 160px 0 140px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 46%, rgba(11, 69, 245, 0.2), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #040a13 100%);
}

.daily-orb {
  position: absolute;
  border: 1px solid rgba(69, 172, 255, 0.32);
  border-radius: 50%;
  background: rgba(21, 155, 255, 0.08);
  pointer-events: none;
}

.daily-orb-two {
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
}

.daily-shift-inner {
  position: relative;
  z-index: 1;
}

.daily-shift-heading {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.daily-shift-heading .section-label {
  color: #62bfff;
}

.daily-shift-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.daily-shift-heading > p:last-child {
  max-width: 720px;
  margin: 28px auto 0;
  color: #aeb9c8;
  font-size: 18px;
  line-height: 1.6;
}

.daily-timeline {
  position: relative;
  display: grid;
  width: calc(100% - 130px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 58px auto 0;
}

.daily-timeline::before {
  position: absolute;
  top: 7px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 191, 255, 0.22), #62bfff, rgba(98, 191, 255, 0.22));
  content: "";
}

.daily-timeline span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #fff;
}

.daily-timeline i {
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 4px solid #07111f;
  border-radius: 50%;
  background: #62bfff;
  box-shadow: 0 0 0 1px rgba(98, 191, 255, 0.52), 0 0 22px rgba(98, 191, 255, 0.44);
}

.daily-timeline b {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.daily-timeline small {
  color: #738399;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.daily-moments {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.08fr) minmax(0, 0.94fr);
  gap: 0;
  align-items: center;
  margin-top: 34px;
}

.daily-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  color: var(--ink);
  background: #f7f9fc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.daily-card::before {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(21, 155, 255, 0.12);
  content: "";
  pointer-events: none;
}

.daily-card-morning::before {
  top: -105px;
  right: -70px;
}

.daily-card-morning {
  z-index: 1;
  transform: translate(16px, 28px) rotate(-0.45deg);
}

.daily-card-evening::before {
  right: -85px;
  bottom: -110px;
  background: rgba(11, 69, 245, 0.1);
}

.daily-card-evening {
  z-index: 1;
  transform: translate(-16px, 28px) rotate(0.45deg);
}

.daily-card-focus {
  z-index: 2;
  min-height: 530px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(113, 205, 255, 0.46), transparent 28%),
    linear-gradient(155deg, #159bff 0%, #0b45f5 76%);
  box-shadow:
    0 36px 95px rgba(1, 38, 131, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: scale(1.035);
}

.daily-card-focus::before {
  right: -55px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.daily-card-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.daily-card-kicker > span:last-child {
  display: grid;
  gap: 4px;
}

.daily-card-kicker small {
  color: #7b899d;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.daily-card-focus .daily-card-kicker small {
  color: rgba(255, 255, 255, 0.7);
}

.daily-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #dce8f6;
  border-radius: 16px;
  color: var(--blue-deep);
  background: #e9f4ff;
}

.daily-card-focus .daily-card-icon {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.daily-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.daily-card h3 {
  position: relative;
  z-index: 1;
  margin: 54px 0 0;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.daily-card > p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #69778a;
  font-size: 16px;
  line-height: 1.55;
}

.daily-card-focus > p {
  color: rgba(255, 255, 255, 0.78);
}

.morning-pause,
.focus-session-card,
.evening-ritual {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: 24px;
}

.morning-pause {
  padding: 20px;
  border: 1px solid #dce8f6;
  background: #edf6ff;
}

.morning-pause > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.morning-pause small,
.evening-ritual > small,
.focus-session-card > small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1bab6f;
  box-shadow: 0 0 0 4px rgba(27, 171, 111, 0.1);
}

.morning-pause > strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.paused-apps {
  display: flex;
  margin-top: 18px;
}

.paused-apps img {
  display: block;
  width: 34px;
  height: 34px;
  margin-right: -5px;
  border: 3px solid #edf6ff;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.focus-session-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(1, 30, 105, 0.22);
}

.focus-session-card > small {
  color: #738298;
}

.focus-session-card > strong {
  display: block;
  margin-top: 12px;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.focus-session-card > strong span {
  margin-left: 5px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.focus-progress {
  height: 7px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7f5;
}

.focus-progress i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-deep);
}

.focus-session-card > div:last-child {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #69778a;
  font-size: 12px;
  font-weight: 760;
}

.evening-ritual {
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 20px 45px rgba(7, 16, 30, 0.2);
}

.evening-ritual > small {
  color: #68c1ff;
}

.evening-ritual > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 800;
}

.evening-ritual > div span,
.evening-ritual > div strong {
  padding: 8px 9px;
  border-radius: 10px;
  background: #17243a;
}

.evening-ritual > div strong {
  color: #07111f;
  background: #e5f8ad;
}

.evening-ritual > div i {
  color: #718098;
  font-style: normal;
}

.evening-ritual > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #bac7d7;
  font-size: 13px;
  font-weight: 750;
}

.evening-ritual > p span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #07111f;
  background: #52d99a;
  font-size: 10px;
}

.daily-shift > .section-cta {
  position: relative;
  z-index: 1;
}

.ritual-lab {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: var(--white);
  background: #07111f;
}

.ritual-glow {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-deep);
  filter: blur(2px);
  opacity: 0.24;
}

.ritual-glow-one { top: -230px; left: -170px; width: 580px; height: 580px; }
.ritual-glow-two { right: -270px; bottom: -330px; width: 720px; height: 720px; opacity: 0.18; }

.ritual-lab-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: 88px;
  align-items: center;
}

.ritual-lab-copy .section-label { color: #62bfff; }
.ritual-lab-copy h2 { font-size: clamp(52px, 5.3vw, 78px); }

.ritual-lab-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 28px 0 0;
  color: #aeb9c8;
  font-size: 18px;
  line-height: 1.6;
}

.ritual-benefits {
  display: grid;
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: #dae3ed;
  font-size: 14px;
  font-weight: 700;
}

.ritual-benefits li { display: flex; align-items: center; gap: 13px; }

.ritual-benefits span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #31445c;
  border-radius: 50%;
  color: #64beff;
  font-size: 10px;
}

.ritual-builder {
  position: relative;
  display: grid;
  width: min(100%, 660px);
  aspect-ratio: 1.18;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-self: center;
  gap: 14px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 15%, rgba(40, 151, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #111d30 0%, #08111f 58%, #050b14 100%);
  box-shadow:
    0 46px 100px rgba(0, 0, 0, 0.42),
    0 10px 30px rgba(19, 89, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: none;
  isolation: isolate;
}

.ritual-builder::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(24, 145, 255, 0.18);
  filter: blur(42px);
  content: "";
  pointer-events: none;
}

.ritual-builder-topline,
.ritual-builder-summary,
.ritual-screen-window {
  position: relative;
  z-index: 1;
}

.ritual-builder-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.ritual-live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ritual-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52d99a;
  box-shadow: 0 0 0 4px rgba(82, 217, 154, 0.1);
}

.ritual-screen-window {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  background: #f4f7fb;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ritual-builder-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.ritual-builder-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 760;
}

.ritual-builder-summary i {
  color: rgba(255, 255, 255, 0.32);
  font-style: normal;
}

.ritual-builder-summary strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: #07111f;
  background: #dff8a6;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 22px;
  border-bottom: 1px solid #dbe3ec;
}

.builder-head > span:first-child { display: grid; gap: 5px; }
.builder-head strong { font-size: 21px; letter-spacing: -0.03em; }

.builder-status {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: #e4f2ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.builder-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 4px;
}

.builder-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.builder-step > div { min-width: 0; }

.app-selection,
.ritual-selection,
.choice-preview {
  display: flex;
  align-items: center;
  margin-top: 11px;
  padding: 15px;
  border: 1px solid #dce4ed;
  border-radius: 18px;
  background: #fff;
}

.app-selection strong { margin-left: 11px; }
.app-selection > span,
.ritual-selection > span:last-child { margin-left: auto; color: #748196; font-size: 11px; font-weight: 750; }

.builder-connector {
  display: block;
  width: 1px;
  height: 12px;
  margin: -15px 0 -15px 24px;
  background: #c8d3df;
}

.breath-symbol {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid #b8dcfb;
  border-radius: 50%;
}

.breath-symbol::before,
.breath-symbol::after,
.breath-symbol i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--blue-deep);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.breath-symbol::before { width: 9px; height: 9px; background: var(--blue-deep); }
.breath-symbol::after { width: 22px; height: 22px; }
.breath-symbol i { width: 32px; height: 32px; opacity: 0.35; }
.ritual-selection strong { margin-left: 12px; }

.ritual-choices {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  overflow: hidden;
}

.ritual-choices span {
  padding: 9px 11px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  color: #69778a;
  background: #f9fbfd;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.choice-preview { justify-content: space-between; font-size: 13px; }

.choice-preview > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1a9b61;
  font-size: 11px;
}

.builder-save {
  display: grid;
  min-height: 56px;
  place-items: center;
  margin-top: 7px;
  border-radius: 18px;
  color: #fff;
  background: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
}

.faq-section {
  padding: 145px 0;
  color: var(--ink);
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 110px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 44px;
}

.faq-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(52px, 5.4vw, 78px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.faq-heading > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid #ccd9e7;
}

.faq-list details {
  border-bottom: 1px solid #ccd9e7;
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 55, 96, 0.08);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 20px;
  left: 13px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-deep);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0deg); }

.faq-list summary:focus-visible {
  outline: 3px solid #63beff;
  outline-offset: 6px;
}

.faq-list details > p {
  max-width: 660px;
  margin: -6px 66px 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.download-pill {
  min-height: 62px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(11, 69, 245, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.download-pill:hover {
  background: #073ad3;
  box-shadow: 0 18px 36px rgba(11, 69, 245, 0.28);
  transform: translateY(-2px);
}

.download-pill:active { transform: scale(0.98); }

.section-cta-on-dark .download-pill {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.section-cta-on-dark .download-pill:hover { background: #edf7ff; }

.section-cta-subtle {
  margin-top: 52px;
}

.download-link-subtle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease;
}

.download-link-subtle span {
  transition: transform 180ms ease;
}

.download-link-subtle:hover {
  border-color: rgba(101, 190, 255, 0.85);
  color: #8fd2ff;
}

.download-link-subtle:hover span {
  transform: translateX(3px);
}

.download-pill:focus-visible,
.download-link-subtle:focus-visible,
.app-store-badge:focus-visible,
.waitlist-button:focus-visible,
.nav-cta:focus-visible,
.download-modal-close:focus-visible,
.legal-modal-close:focus-visible,
.footer-legal button:focus-visible {
  outline: 3px solid #63beff;
  outline-offset: 4px;
}

.modal-open { overflow: hidden; }

.download-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.download-modal[hidden] { display: none; }

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 30, 0.72);
  backdrop-filter: blur(10px);
}

.download-modal-card {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100svh - 64px);
  overflow: auto;
  padding: 64px;
  border-radius: 34px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.download-modal-card h2 {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.waitlist-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.waitlist-modal-copy > p:last-child {
  max-width: 480px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.waitlist-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  background: #f4f8ff;
  box-shadow: 0 20px 56px rgba(22, 79, 150, 0.11);
}

.waitlist-form > label:first-child {
  color: #42516a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist-form-row {
  display: grid;
  gap: 10px;
}

.waitlist-form-row input {
  width: 100%;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid #cbd9e8;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-form-row input:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(11, 69, 245, 0.12);
}

.waitlist-form-row button {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-deep);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  transition: filter 160ms ease, transform 160ms ease;
}

.waitlist-form-row button:hover { filter: brightness(1.08); }
.waitlist-form-row button:active { transform: scale(0.985); }
.waitlist-form-row button:disabled { cursor: wait; opacity: 0.66; }

.waitlist-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #66758a;
  font-size: 12px;
  line-height: 1.5;
}

.waitlist-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue-deep);
}

.waitlist-consent button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue-deep);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.waitlist-status[data-type="error"] { color: #b42318; }

.waitlist-success {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px;
  border: 1px solid #b9e7d0;
  border-radius: 28px;
  background: #ebfaf2;
}

.waitlist-success[hidden] { display: none; }

.waitlist-success > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: #17965d;
  font-size: 26px;
  font-weight: 900;
}

.waitlist-success strong { font-size: 24px; letter-spacing: -0.035em; }

.waitlist-success p {
  margin: 8px 0 0;
  color: #436052;
  font-size: 14px;
  line-height: 1.55;
}

.download-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #edf2f7;
  cursor: pointer;
}

.download-modal-close span::before,
.download-modal-close span::after {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.download-modal-close span::before { transform: rotate(45deg); }
.download-modal-close span::after { transform: rotate(-45deg); }

.download-modal-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.download-qr {
  display: block;
  width: 280px;
  height: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.download-modal-side {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.download-modal-side > img {
  width: auto;
  height: 64px;
}

.download-modal-side p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.legal-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.legal-modal[hidden],
.legal-panel[hidden] { display: none; }

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 30, 0.72);
  backdrop-filter: blur(10px);
}

.legal-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100svh - 64px);
  overflow: auto;
  padding: 58px;
  border: 1px solid rgba(11, 69, 245, 0.1);
  border-radius: 34px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.legal-note a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #edf2f7;
  cursor: pointer;
}

.legal-modal-close span::before,
.legal-modal-close span::after {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.legal-modal-close span::before { transform: rotate(45deg); }
.legal-modal-close span::after { transform: rotate(-45deg); }

.legal-panel h2 {
  max-width: 620px;
  margin: 16px 0 0;
  padding-right: 42px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.legal-intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.legal-points article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f6f9fd;
}

.legal-points strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.legal-points p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.legal-note {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #8390a2;
  font-size: 13px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.final-cta-content { position: relative; z-index: 2; }

.final-cta h2 {
  margin-top: 24px;
  font-size: clamp(64px, 8vw, 116px);
  line-height: 0.88;
}

.final-cta-content > p:not(.section-label) {
  margin: 30px auto 0;
  font-size: 19px;
  font-weight: 650;
}

.cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-bubble-one { top: -100px; left: -90px; width: 330px; height: 330px; }
.cta-bubble-two { right: -60px; bottom: -130px; width: 390px; height: 390px; }

footer {
  padding: 42px 0;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-inner img { width: 92px; height: auto; }
.footer-center {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.footer-center p { margin: 0; color: var(--ink); }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9aa5b4;
  font-size: 12px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease;
}

.footer-legal button:hover { color: var(--blue-deep); }
.footer-inner > span { text-align: right; }

@media (min-width: 961px) {
  .hero {
    height: 100svh;
    min-height: 680px;
    padding-top: 104px;
    padding-bottom: 32px;
  }

  .hero-visual {
    min-height: 0;
  }

  .phone-shell {
    width: auto;
    height: min(690px, calc(100svh - 120px));
    aspect-ratio: 393 / 820;
    transform: translateX(10px) rotate(6deg);
  }
}

@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 140px 24px 72px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 720px;
  }

  .section-wrap {
    width: min(100% - 40px, 680px);
  }

  .review-strip-inner {
    width: min(100% - 40px, 820px);
  }

  .review-strip-intro h2 { font-size: 52px; }

  .review-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .review-card:last-child { grid-column: 1 / -1; }

  .daily-shift { padding: 120px 0; }

  .daily-shift-heading h2 { font-size: 64px; }

  .daily-timeline { display: none; }

  .daily-moments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
  }

  .daily-card,
  .daily-card-focus {
    min-height: 460px;
    transform: none;
  }

  .daily-card-evening {
    min-height: 420px;
    grid-column: 1 / -1;
    transform: none;
  }

  .manifesto-grid,
  .feature-layout,
  .feature-layout-reverse {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .feature-layout-reverse .feature-copy {
    order: 0;
  }

  .manifesto-grid > .section-label {
    padding-top: 0;
  }

  .feature-copy {
    text-align: center;
  }

  .feature-copy > p:not(.section-label) {
    margin-inline: auto;
  }

  .feature-list {
    max-width: 470px;
    margin-inline: auto;
    text-align: left;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .steps-grid h3 {
    margin-top: 48px;
  }

  .behavior-compare,
  .ritual-lab-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .feature-bento { grid-template-columns: 1fr; }

  .bento-schedule,
  .bento-quick,
  .bento-strict,
  .bento-progress { grid-column: auto; }

  .ritual-lab-grid { gap: 64px; }

  .ritual-lab-copy {
    max-width: 680px;
    text-align: center;
  }

  .ritual-lab-copy > p:not(.section-label) { margin-inline: auto; }
  .ritual-benefits { max-width: 520px; margin-inline: auto; text-align: left; }
  .ritual-builder { max-width: 660px; margin-inline: auto; }

  .faq-layout { gap: 58px; }

  .faq-heading {
    position: static;
    max-width: 680px;
    text-align: center;
  }

  .faq-heading > p:last-child { margin-inline: auto; }

  .showcase-row,
  .showcase-row-right {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 72px 0 42px;
  }

  .showcase-copy,
  .showcase-row-left .showcase-copy,
  .showcase-row-right .showcase-copy {
    order: 1;
    max-width: 600px;
    justify-self: center;
    text-align: center;
  }

  .showcase-copy p { margin-inline: auto; }

  .showcase-device-stage {
    order: 2;
    width: 100%;
    height: 690px;
  }

  .showcase-row::after,
  .showcase-row-right::after {
    right: 28px;
    bottom: 12px;
    left: auto;
    font-size: 170px;
  }

  .showcase-bubble-one {
    top: 390px;
    left: -410px;
    width: 760px;
    height: 720px;
  }

  .showcase-bubble-two {
    top: 1430px;
    right: -410px;
    width: 700px;
    height: 660px;
  }

  .showcase-bubble-four {
    top: 1240px;
    left: 6%;
  }

  .showcase-bubble-five {
    top: 2330px;
    right: -105px;
  }

  .showcase-row-left .showcase-device,
  .showcase-row-right .showcase-device,
  .showcase-row-last .showcase-device {
    transform: rotate(0deg);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 88px;
  }

  .nav-cta {
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero {
    gap: 26px;
    padding-top: 116px;
  }

  .review-strip { padding: 52px 0 58px; }

  .review-strip-intro {
    display: block;
    margin-bottom: 28px;
  }

  .review-strip-intro h2 {
    margin-top: 12px;
    font-size: 42px;
    text-align: center;
  }

  .review-strip-grid { grid-template-columns: 1fr; }

  .review-card,
  .review-card:last-child {
    min-height: 220px;
    grid-column: auto;
    padding: 24px;
  }

  .review-card p { font-size: 18px; }

  .review-bubble-one {
    top: -110px;
    right: -120px;
    left: auto;
    width: 260px;
    height: 260px;
  }

  .review-bubble-two {
    right: -90px;
    bottom: -70px;
    width: 180px;
    height: 180px;
  }

  .daily-shift { padding: 96px 0; }

  .daily-shift-heading h2 {
    font-size: 48px;
    line-height: 0.96;
  }

  .daily-shift-heading > p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

  .daily-moments {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .daily-card,
  .daily-card-focus,
  .daily-card-evening {
    min-height: 420px;
    grid-column: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .daily-card h3 {
    margin-top: 40px;
    font-size: 32px;
  }

  .daily-card > p { font-size: 15px; }

  .daily-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(56px, 19vw, 76px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .store-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .waitlist-button {
    min-height: 54px;
    gap: 16px;
    padding: 7px 9px 7px 16px;
  }

  .store-badge { height: 44px; }

  .app-store-badge img { height: 44px; }

  .google-play-badge { width: 128px; }

  .google-play-badge img { height: 53px; }

  .button {
    width: min(100%, 320px);
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone-shell {
    width: 310px;
    transform: rotate(2deg) scale(0.9);
  }

  .phone-screen {
    min-height: 640px;
  }

  .section-wrap {
    width: calc(100% - 32px);
  }

  .manifesto,
  .feature-section,
  .steps,
  .final-cta {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .manifesto {
    padding-bottom: 0;
  }

  .manifesto h2,
  .feature-copy h2,
  .section-heading-center h2 {
    font-size: 44px;
  }

  .shift-difference,
  .feature-suite,
  .ritual-lab,
  .faq-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .faq-heading h2 { font-size: 44px; }

  .faq-list summary {
    min-height: 82px;
    gap: 16px;
    font-size: 19px;
  }

  .faq-list summary span {
    width: 38px;
    height: 38px;
  }

  .faq-list summary span::before,
  .faq-list summary span::after {
    top: 18px;
    left: 12px;
    width: 14px;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 15px;
  }

  .focus-showcase {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .showcase-heading h2 { font-size: 48px; }

  .showcase-list {
    gap: 8px;
    margin-top: 30px;
  }

  .showcase-row,
  .showcase-row-right {
    gap: 0;
    padding: 42px 0 14px;
  }

  .showcase-copy h3 { font-size: 38px; }
  .showcase-copy p { font-size: 16px; }
  .showcase-device-stage { height: 560px; }
  .showcase-device { width: 270px; border-radius: 46px; }
  .showcase-screen { border-radius: 39px; }

  .showcase-row::after,
  .showcase-row-right::after {
    right: 16px;
    bottom: 0;
    font-size: 108px;
  }

  .showcase-bubble-one {
    top: 370px;
    left: -325px;
    width: 540px;
    height: 520px;
  }

  .showcase-bubble-two {
    top: 1320px;
    right: -315px;
    width: 520px;
    height: 500px;
  }

  .showcase-bubble-three {
    bottom: 170px;
    left: -60px;
    width: 170px;
    height: 162px;
  }

  .showcase-bubble-four {
    top: 1160px;
    left: -35px;
    width: 105px;
    height: 105px;
  }

  .showcase-bubble-five {
    top: 2200px;
    right: -95px;
    width: 210px;
    height: 200px;
  }

  .showcase-bubble-six {
    right: 7%;
    bottom: 620px;
    width: 74px;
    height: 74px;
  }

  .difference-intro h2,
  .suite-heading h2,
  .ritual-lab-copy h2 {
    font-size: 44px;
  }

  .difference-intro > p:last-child,
  .suite-heading > p:last-child,
  .ritual-lab-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .behavior-compare { margin-top: 52px; }

  .behavior-card {
    min-height: 220px;
    padding: 24px;
    border-radius: 26px;
  }

  .behavior-flow {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
  }

  .behavior-flow span,
  .behavior-flow strong { padding: 11px 13px; }

  .feature-bento { margin-top: 52px; }

  .bento-card {
    min-height: 410px;
    padding: 24px;
    border-radius: 29px;
  }

  .bento-schedule,
  .bento-quick { min-height: 520px; }

  .bento-copy h3 { font-size: 32px; }

  .routine-panel,
  .quick-dial {
    right: 22px;
    left: 22px;
  }

  .routine-panel { padding: 21px; }
  .quick-dial { bottom: 22px; }
  .strict-options { margin-top: 54px; }

  .ritual-builder {
    width: min(100%, 370px);
    aspect-ratio: 1.04;
    gap: 10px;
    padding: 14px;
    border-radius: 30px;
    transform: none;
  }

  .ritual-screen-window { border-radius: 20px; }

  .ritual-builder-summary {
    min-height: 44px;
    gap: 7px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .ritual-builder-summary strong { padding: 6px 8px; font-size: 9px; }

  .builder-head { align-items: flex-start; gap: 14px; }
  .builder-step { grid-template-columns: 36px 1fr; gap: 12px; padding-inline: 0; }
  .builder-number { width: 36px; height: 36px; }
  .builder-connector { margin-left: 18px; }
  .ritual-choices { flex-wrap: wrap; }
  .app-selection { flex-wrap: wrap; }
  .app-selection > span { margin-left: 8px; }

  .section-cta { margin-top: 50px; }

  .section-cta-subtle { margin-top: 38px; }

  .download-pill {
    width: min(100%, 320px);
    min-height: 58px;
  }

  .download-modal { padding: 16px; }

  .download-modal-card {
    max-height: calc(100svh - 32px);
    padding: 54px 24px 30px;
    border-radius: 26px;
  }

  .waitlist-modal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .download-modal-card h2 {
    padding-right: 28px;
    font-size: 38px;
  }

  .download-modal-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .download-modal-close span::before,
  .download-modal-close span::after {
    top: 20px;
    left: 12px;
    width: 18px;
  }

  .waitlist-modal-copy > p:last-child { margin-top: 18px; }

  .waitlist-form {
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
  }

  .waitlist-success {
    grid-template-columns: 42px 1fr;
    padding: 22px;
    border-radius: 22px;
  }

  .waitlist-success > span { width: 42px; height: 42px; border-radius: 13px; }

  .download-qr {
    width: min(230px, 76vw);
    height: auto;
  }

  .download-modal-side { justify-items: center; text-align: center; }
  .download-modal-side > img { height: 54px; }

  .legal-modal { padding: 16px; }

  .legal-modal-card {
    max-height: calc(100svh - 32px);
    padding: 54px 24px 30px;
    border-radius: 26px;
  }

  .legal-modal-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .legal-modal-close span::before,
  .legal-modal-close span::after {
    top: 20px;
    left: 12px;
    width: 18px;
  }

  .legal-panel h2 {
    padding-right: 28px;
    font-size: 38px;
  }

  .legal-intro { font-size: 16px; }

  .legal-points { grid-template-columns: 1fr; }

  .manifesto-grid > div > p,
  .feature-copy > p:not(.section-label) {
    font-size: 17px;
  }

  .principle-row {
    justify-content: flex-start;
    gap: 20px;
    margin-top: 72px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .principle-row i {
    width: 6px;
    height: 6px;
  }

  .feature-stage,
  .ritual-stage {
    min-height: 520px;
    border-radius: 36px;
  }

  .feature-stage-blocks {
    padding: 22px;
  }

  .mini-card-top,
  .mini-card-main {
    transform: none;
  }

  .mini-card-main {
    margin-top: 14px;
  }

  .ritual-stage {
    flex-direction: column;
    gap: 9px;
    padding: 36px 20px;
  }

  .ritual-node,
  .ritual-node-main {
    width: min(100%, 230px);
    min-height: 130px;
    transform: none;
  }

  .ritual-node-main {
    min-height: 200px;
  }

  .ritual-arrow {
    transform: rotate(90deg);
  }

  .progress-card {
    min-height: 460px;
    padding: 26px 20px;
  }

  .progress-head strong {
    font-size: 40px;
  }

  .bar-chart {
    gap: 8px;
  }

  .progress-foot {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .steps-grid {
    margin-top: 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
