:root {
  --yellow: #ffc21c;
  --yellow-deep: #eea800;
  --yellow-soft: #ffe58b;
  --cream: #fff8e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #1f1a10;
  --ink-soft: #332b1d;
  --muted: #756e61;
  --muted-light: #a39a89;
  --line: rgba(31, 26, 16, 0.12);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --shadow-sm: 0 12px 28px rgba(67, 48, 4, 0.1);
  --shadow-md: 0 28px 70px rgba(67, 48, 4, 0.16);
  --shadow-device: 0 44px 90px rgba(42, 31, 6, 0.3), 0 10px 28px rgba(42, 31, 6, 0.2);
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 48px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--ink);
  color: var(--yellow);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid #7b4f00;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 12vw, 160px);
}

.section-heading {
  max-width: 660px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.faq-heading h2,
.founder-copy h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.section-heading > p:last-child,
.faq-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #6b4d00;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(31, 26, 16, 0.09);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding-block: 14px;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 9px;
  border-bottom-color: var(--line);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 8px 32px rgba(54, 40, 9, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 1.02rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(113, 76, 0, 0.2);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 31px;
  color: #514b40;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 780;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

.button:active {
  transform: translateY(0);
}

.button--nav {
  min-height: 44px;
  padding: 10px 15px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.77rem;
  box-shadow: 0 8px 20px rgba(31, 26, 16, 0.15);
}

.button--nav:hover,
.button--dark:hover {
  background: #000;
  box-shadow: 0 13px 28px rgba(31, 26, 16, 0.24);
}

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(31, 26, 16, 0.2);
}

.button--primary:hover {
  background: #000;
  box-shadow: 0 19px 38px rgba(31, 26, 16, 0.28);
}

.button--secondary {
  border-color: rgba(31, 26, 16, 0.22);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.button--dark {
  align-self: flex-start;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(31, 26, 16, 0.2);
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 96px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 31%, rgba(255, 255, 255, 0.9) 0 7%, transparent 33%),
    linear-gradient(155deg, #ffd75e 0%, #ffc21c 45%, #ffb700 100%);
}

.hero::before {
  position: absolute;
  right: -18%;
  bottom: -34%;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -120px;
  left: -10vw;
  width: 45vw;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 250, 230, 0.35);
  content: "";
  filter: blur(2px);
  transform: rotate(8deg);
}

.hero-glow {
  position: absolute;
  top: 14%;
  right: 3%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255, 250, 224, 0.48);
  filter: blur(70px);
}

.hero-sun {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-sun--one {
  top: 18%;
  left: -46px;
  width: 92px;
  height: 92px;
}

.hero-sun--two {
  right: 7%;
  bottom: 7%;
  width: 26px;
  height: 26px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 8px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.83;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 650;
  letter-spacing: -0.026em;
  line-height: 1.35;
}

.hero-note {
  margin-bottom: 30px;
  color: rgba(31, 26, 16, 0.68);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 26px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 760;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.promise-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(31, 26, 16, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.33);
  color: rgba(31, 26, 16, 0.7);
  font-size: clamp(0.67rem, 2.6vw, 0.78rem);
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.promise-flow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 540px);
  margin-inline: auto;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(122vw, 590px);
  aspect-ratio: 1;
  border: 1px dashed rgba(31, 26, 16, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.hero-orbit::before {
  top: 14%;
  right: 8%;
  width: 12px;
  height: 12px;
}

.hero-orbit::after {
  bottom: 18%;
  left: 5%;
  width: 7px;
  height: 7px;
}

.device {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  padding: 7px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 48px;
  background: #15130e;
  box-shadow: var(--shadow-device);
}

.device::before,
.device::after {
  position: absolute;
  left: -10px;
  width: 7px;
  border-radius: 5px 0 0 5px;
  background: #2a251d;
  content: "";
}

.device::before {
  top: 20%;
  height: 54px;
}

.device::after {
  top: 32%;
  height: 84px;
}

.device-screen {
  overflow: hidden;
  border-radius: 41px;
  background: var(--cream);
}

.device-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 2174;
  object-fit: cover;
}

.device--hero {
  width: min(76vw, 380px);
  animation: device-float 5.8s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 11px 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-sm);
  color: #5d5548;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-note > span:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
}

.floating-note--top {
  top: 7%;
  left: -2%;
  animation: note-float 5s ease-in-out 600ms infinite;
}

.floating-note--bottom {
  right: 0;
  bottom: 13%;
  animation: note-float 5.4s ease-in-out 1.2s infinite reverse;
}

.floating-note .mini-check {
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.visual-caption {
  position: relative;
  z-index: 3;
  margin: 18px 0 0;
  color: rgba(31, 26, 16, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  color: rgba(31, 26, 16, 0.78);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes device-float {
  0%,
  100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-13px) rotate(0.5deg); }
}

@keyframes note-float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes cue-bounce {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Promise strip */

.proof-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: var(--white);
}

.proof-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.proof-group {
  display: flex;
  flex: 0 0 max(100vw, 620px);
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  min-width: max(100vw, 620px);
  padding: 15px 12px;
}

.proof-track i {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Cinematic sequence */

.morning-sequence {
  position: relative;
  min-height: 350svh;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 194, 28, 0.11), transparent 35%),
    #1a1711;
  color: var(--white);
}

.sequence-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}

.sequence-sticky::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 194, 28, 0.25), transparent);
  content: "";
}

.sequence-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 26px;
  padding-block: 88px 30px;
}

.sequence-copy {
  max-width: 520px;
}

.sequence-copy h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7.5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.sequence-copy > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.98rem;
}

.sequence-device {
  position: relative;
  justify-self: center;
  width: min(54vw, 240px);
  aspect-ratio: 1000 / 2174;
}

.sequence-halo {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 155%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 194, 28, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255, 194, 28, 0.035),
    0 0 0 85px rgba(255, 194, 28, 0.018);
  transform: translate(-50%, -50%);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.story-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px) scale(0.94) rotate(2deg);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.story-frame.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1) rotate(0);
}

.sequence-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sequence-steps li {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 6px;
  padding-top: 13px;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  transition:
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.sequence-steps li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: width 420ms ease;
}

.sequence-steps li.is-active {
  border-color: rgba(255, 194, 28, 0.25);
  color: var(--white);
}

.sequence-steps li.is-active::before {
  width: 100%;
}

.step-index {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.sequence-steps strong {
  display: block;
  overflow: visible;
  font-size: clamp(0.65rem, 2.5vw, 0.78rem);
  line-height: 1.12;
  text-overflow: clip;
  white-space: normal;
}

.sequence-steps small {
  display: none;
}

/* How it works */

.how-it-works {
  background: var(--paper);
}

.how-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(48px, 7vw, 80px);
}

.how-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(61, 43, 5, 0.07);
}

.how-shot {
  position: relative;
  height: 370px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.95), transparent 38%),
    #ffdc72;
}

.how-shot::before {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 7px 20px rgba(61, 43, 5, 0.12);
  color: var(--ink);
  content: "✦";
  font-size: 0.8rem;
}

.how-shot img {
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(75%, 320px);
  height: auto;
  border: 6px solid #17140f;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 24px 48px rgba(55, 39, 3, 0.22);
  transform: translateX(-50%);
}

.how-shot--puzzle {
  background: #1f1a10;
}

.how-shot--puzzle::before {
  background: var(--yellow);
}

.how-shot--morning {
  background: #fff2c8;
}

.how-copy {
  display: flex;
  gap: 16px;
  padding: 25px 23px 28px;
}

.how-copy > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
}

.how-copy h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.how-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Difficulty */

.difficulty {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 194, 28, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 194, 28, 0.06) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
}

.difficulty-grid {
  display: grid;
  align-items: center;
  gap: 76px;
}

.difficulty-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.difficulty-visual .sun-disc {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(92vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 24px rgba(255, 194, 28, 0.12);
  transform: translateX(-50%);
}

.device--large {
  width: min(74vw, 365px);
}

.difficulty-visual .device-caption,
.ritual-visual .device-caption {
  position: relative;
  z-index: 3;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.difficulty-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.difficulty-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.75);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.difficulty-list article:hover {
  transform: translateX(4px);
}

.difficulty-list .is-recommended {
  grid-template-columns: auto 1fr auto;
  border: 2px solid var(--yellow-deep);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(152, 102, 0, 0.12);
}

.difficulty-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #f4efe4;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
}

.is-recommended .difficulty-mark {
  background: var(--yellow);
}

.difficulty-list h3 {
  margin-bottom: 2px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.difficulty-list h3 em {
  display: inline-block;
  padding: 3px 7px;
  margin-left: 5px;
  border-radius: 999px;
  background: #fff2bb;
  color: #705000;
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.difficulty-list p {
  margin-bottom: 0;
  color: #4e483e;
  font-size: 0.87rem;
}

.difficulty-list p span {
  color: var(--muted);
}

.difficulty-list svg {
  width: 31px;
  height: 31px;
  padding: 7px;
  border-radius: 50%;
  background: var(--yellow-deep);
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Assistance */

.kindness {
  background: var(--white);
}

.kindness-grid {
  display: grid;
  align-items: center;
  gap: 70px;
}

.kindness h2 span {
  color: #8b5c00;
}

.assist-list {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.assist-list article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.assist-icon {
  display: grid;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 15px;
  background: var(--yellow);
}

.assist-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.assist-list h3 {
  margin-bottom: 1px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.assist-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.assist-card {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 20px;
  border: 1px solid rgba(238, 168, 0, 0.24);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.92), transparent 47%),
    #fff0bd;
  box-shadow: var(--shadow-md);
}

.assist-card::before {
  position: absolute;
  right: -55px;
  bottom: -70px;
  color: rgba(117, 77, 0, 0.07);
  content: "♞";
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  transform: rotate(-9deg);
}

.assist-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #6c6458;
  font-size: 0.77rem;
  font-weight: 750;
}

.assist-label span {
  color: var(--yellow-deep);
  font-size: 1rem;
}

.assist-crop {
  position: relative;
  z-index: 2;
  height: 500px;
  overflow: hidden;
  border: 6px solid #1c1811;
  border-radius: 37px;
  background: var(--cream);
  box-shadow: 0 24px 48px rgba(66, 46, 4, 0.22);
}

.assist-crop img {
  position: absolute;
  top: -205px;
  left: 50%;
  width: 360px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.assist-footnote {
  position: relative;
  z-index: 2;
  margin: 17px 0 0;
  color: #665c4e;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Offline */

.offline {
  padding-top: 0;
  background: var(--white);
}

.offline-card {
  position: relative;
  display: grid;
  gap: 42px;
  padding: clamp(32px, 7vw, 78px);
  overflow: hidden;
  border-radius: clamp(30px, 5vw, 54px);
  background: var(--yellow);
  box-shadow: 0 34px 84px rgba(107, 73, 0, 0.16);
}

.offline-card::before {
  position: absolute;
  top: -35%;
  right: -18%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.08);
  content: "";
}

.offline-copy,
.offline-visual {
  position: relative;
  z-index: 2;
}

.offline-copy h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.offline-copy > p:not(.eyebrow, .attribution) {
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}

.offline-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.offline-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(31, 26, 16, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  font-weight: 780;
}

.attribution {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(31, 26, 16, 0.74);
  font-size: 0.74rem;
}

.offline-visual {
  display: grid;
  min-height: 340px;
  place-items: center;
}

.offline-sun {
  position: absolute;
  width: min(72vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.13);
}

.offline-board {
  position: relative;
  z-index: 2;
  display: grid;
  width: 180px;
  aspect-ratio: 1;
  place-items: center;
  border: 7px solid var(--ink);
  border-radius: 30px;
  background: conic-gradient(
    #f9e8b7 0 25%,
    #4c402e 0 50%,
    #f9e8b7 0 75%,
    #4c402e 0
  ) 0 0 / 50% 50%;
  box-shadow: 0 24px 50px rgba(71, 46, 0, 0.25);
  transform: rotate(-7deg);
}

.offline-board span {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 26, 16, 0.25);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3.3rem;
  line-height: 1;
  transform: rotate(7deg);
}

.puzzle-count {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 15px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 11px 14px;
  margin: 0;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(31, 26, 16, 0.25);
  color: var(--white);
}

.puzzle-count strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.puzzle-count span {
  font-size: 0.65rem;
  font-weight: 720;
  line-height: 1.15;
}

.offline-pill {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.68rem;
  font-weight: 780;
}

/* Success */

.success {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.success::after {
  position: absolute;
  right: -11%;
  bottom: -42%;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 194, 28, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 194, 28, 0.025),
    0 0 0 140px rgba(255, 194, 28, 0.018);
  content: "";
}

.success-rays {
  position: absolute;
  top: 50%;
  left: 13%;
  width: 520px;
  aspect-ratio: 1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 194, 28, 0.14) 0 7deg,
    transparent 7deg 22deg
  );
  -webkit-mask-image: radial-gradient(circle, transparent 0 18%, #000 19% 54%, transparent 67%);
  mask-image: radial-gradient(circle, transparent 0 18%, #000 19% 54%, transparent 67%);
  transform: translate(-50%, -50%);
}

.success-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 55px;
}

.success-mark {
  position: relative;
  justify-self: center;
  width: min(66vw, 330px);
}

.success-mark img {
  width: 100%;
  border-radius: 25%;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
}

.success-mark span {
  position: absolute;
  right: -5%;
  bottom: 5%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 7px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.success-copy h2 {
  margin-bottom: 30px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.success-lines {
  display: grid;
  gap: 8px;
}

.success-lines span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 650;
}

.success-lines span:last-child {
  color: var(--white);
}

/* Ritual */

.ritual {
  overflow: hidden;
  background: var(--paper);
}

.ritual-grid {
  display: grid;
  align-items: center;
  gap: 80px;
}

.stat-grid {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.stat-grid article {
  position: relative;
  overflow: hidden;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 13px 35px rgba(61, 43, 5, 0.06);
}

.stat-grid article::after {
  position: absolute;
  right: -17px;
  bottom: -28px;
  color: rgba(255, 194, 28, 0.09);
  content: "♟";
  font-family: var(--font-display);
  font-size: 6.4rem;
  line-height: 1;
}

.stat-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 11px;
  background: var(--yellow);
  font-weight: 900;
}

.stat-grid p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-grid strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.ritual-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.ritual-backdrop {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(91vw, 525px);
  aspect-ratio: 1;
  border-radius: 45% 55% 58% 42% / 45% 43% 57% 55%;
  background: #ffeaa1;
  transform: translateX(-50%) rotate(7deg);
}

/* Free */

.free {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 194, 28, 0.12), transparent 42%),
    #1a1711;
}

.free-card {
  display: grid;
  gap: 36px;
  padding: clamp(34px, 7vw, 74px);
  border: 1px solid var(--line);
  border-radius: clamp(30px, 5vw, 52px);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.7), transparent 26%),
    var(--yellow-soft);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.free-card h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.free-copy {
  display: grid;
  align-content: start;
  gap: 17px;
}

.free-copy p {
  margin-bottom: 0;
  color: rgba(31, 26, 16, 0.65);
  font-size: 1.05rem;
  font-weight: 650;
}

.free-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
}

/* Founder */

.founder {
  background: var(--white);
}

.founder-card {
  display: grid;
  align-items: center;
  gap: 50px;
  padding: clamp(22px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: clamp(30px, 5vw, 52px);
  background: var(--paper);
  box-shadow: 0 28px 72px rgba(61, 43, 5, 0.08);
}

.founder-photo {
  margin: 0;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 27px;
  box-shadow: 0 20px 48px rgba(31, 26, 16, 0.18);
  object-fit: cover;
}

.founder-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.founder-copy h2 {
  max-width: 640px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: #5d564b;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.founder-copy .founder-hello {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.signature {
  width: 150px;
  height: auto;
  margin-top: 10px;
  object-fit: contain;
}

/* FAQ */

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 55px;
}

.faq-heading {
  max-width: 550px;
}

.faq-heading h2 {
  font-size: clamp(3rem, 6.6vw, 5.8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding-block: 17px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-list details[open] summary {
  color: #6d4e00;
}

.faq-list details > p {
  max-width: 650px;
  padding: 0 46px 21px 0;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Final CTA */

.final-cta {
  position: relative;
  padding: clamp(90px, 13vw, 170px) 0 0;
  overflow: hidden;
  background: var(--yellow);
}

.final-cta::before {
  position: absolute;
  right: -10%;
  bottom: -37%;
  width: 65vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.47);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.1),
    0 0 0 90px rgba(255, 255, 255, 0.05);
  content: "";
}

.final-glow {
  position: absolute;
  top: 15%;
  left: -8%;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(60px);
}

.final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 62px;
}

.final-copy {
  padding-bottom: 90px;
}

.final-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(88, 60, 0, 0.21);
}

.final-copy h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 10vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.final-copy h2 span {
  color: rgba(31, 26, 16, 0.66);
}

.final-trust {
  margin: 17px 0 0 8px;
  color: rgba(31, 26, 16, 0.74);
  font-size: 0.76rem;
  font-weight: 740;
  letter-spacing: 0.04em;
}

.final-visual {
  position: relative;
  justify-self: center;
  width: min(86vw, 430px);
  height: 620px;
}

.device--final {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(80vw, 390px);
  transform: translateX(-50%) rotate(4deg);
  transform-origin: 50% 100%;
}

.final-spark {
  position: absolute;
  z-index: 4;
  color: rgba(31, 26, 16, 0.5);
  font-size: 2rem;
}

.final-spark--one {
  top: 12%;
  left: -3%;
}

.final-spark--two {
  top: 38%;
  right: -4%;
  font-size: 1.2rem;
}

/* Footer */

.site-footer {
  padding-block: 46px 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer img {
  box-shadow: none;
}

.footer-top > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.8rem;
  font-weight: 670;
}

.footer-top nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-top nav a:hover {
  color: var(--yellow);
}

.footer-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.68);
  cursor: not-allowed;
}

.site-footer a:focus-visible {
  outline-color: var(--yellow);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.link-toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(31, 26, 16, 0.28);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.link-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll reveals */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 780ms cubic-bezier(0.18, 0.75, 0.18, 1);
}

.js [data-reveal-delay="1"] {
  transition-delay: 110ms;
}

.js [data-reveal-delay="2"] {
  transition-delay: 220ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* The hero is above the fold and is the largest paint — it must render
   immediately, never gated behind the scroll-reveal observer. */
.js .hero [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

html:not(.js) .morning-sequence {
  min-height: auto;
}

html:not(.js) .site-header {
  border-bottom-color: var(--line);
  background: var(--paper);
}

html:not(.js) .sequence-sticky {
  position: relative;
}

html:not(.js) .story-frame:not(.is-active) {
  display: none;
}

.js .difficulty-list article[data-reveal].is-visible:hover {
  transform: translateX(4px);
}

/* Responsive */

@media (min-width: 560px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .button--nav {
    padding-inline: 20px;
    font-size: 0.82rem;
  }

  .how-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-grid article:last-child {
    grid-column: 1 / -1;
  }

  .offline-visual {
    min-height: 410px;
  }

  .offline-board {
    width: 230px;
  }

  .puzzle-count {
    right: 7%;
    bottom: 30px;
  }

  .offline-pill {
    top: 30px;
    left: 7%;
  }

  .assist-crop {
    height: 580px;
  }

  .assist-crop img {
    top: -250px;
    width: 430px;
  }

  .footer-top {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-top nav {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(5.6rem, 10.8vw, 8.4rem);
  }

  .hero-visual {
    width: 100%;
  }

  .device--hero {
    width: min(40vw, 390px);
  }

  .floating-note--top {
    left: -6%;
  }

  .floating-note--bottom {
    right: 0;
  }

  .scroll-cue {
    display: flex;
  }

  .sequence-grid {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 28px 38px;
  }

  .sequence-copy {
    align-self: end;
  }

  .sequence-device {
    grid-row: 1 / 3;
    grid-column: 2;
    width: min(31vw, 295px);
  }

  .sequence-steps {
    grid-column: 1 / -1;
  }

  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-card:last-child {
    grid-column: auto;
  }

  .how-card--feature {
    transform: translateY(-20px);
  }

  .js .how-card--feature[data-reveal].is-visible {
    transform: translateY(-20px);
  }

  .difficulty-grid,
  .kindness-grid,
  .ritual-grid,
  .success-grid,
  .founder-card,
  .final-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .difficulty-copy {
    order: -1;
  }

  .difficulty-visual {
    order: 2;
  }

  .kindness-copy {
    padding-right: 4%;
  }

  .offline-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: center;
  }

  .offline-visual {
    min-height: 470px;
  }

  .success-grid {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-grid article:last-child {
    grid-column: auto;
  }

  .free-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: end;
  }

  .faq-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

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

  .final-cta {
    padding-top: clamp(100px, 10vw, 150px);
  }

  .final-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .final-copy {
    padding-bottom: 120px;
  }

  .final-visual {
    width: 100%;
    max-width: 430px;
    height: 680px;
  }

  .device--final {
    width: min(100%, 390px);
  }

  .footer-top {
    grid-template-columns: auto 1fr auto;
  }

  .footer-top nav {
    grid-column: auto;
    justify-content: flex-end;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (min-width: 960px) {
  .site-header {
    padding-block: 18px;
  }

  .main-nav {
    display: flex;
  }

  .button--nav {
    min-height: 44px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid {
    gap: 64px;
  }

  .sequence-grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(260px, 0.7fr) minmax(260px, 0.88fr);
    grid-template-rows: 1fr;
    gap: 55px;
    padding-block: 50px;
  }

  .sequence-copy {
    align-self: center;
  }

  .sequence-device {
    grid-row: auto;
    grid-column: auto;
    width: min(24vw, 325px);
  }

  .sequence-steps {
    grid-column: auto;
    align-self: center;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sequence-steps li {
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 75px;
    padding: 10px 0 10px 17px;
    border-top: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.14);
  }

  .sequence-steps li::before {
    top: 0;
    bottom: auto;
    left: -2px;
    width: 2px;
    height: 0;
    transition: height 420ms ease;
  }

  .sequence-steps li.is-active::before {
    width: 2px;
    height: 100%;
  }

  .sequence-steps strong {
    font-size: 0.93rem;
  }

  .sequence-steps small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
  }

  .difficulty-grid,
  .kindness-grid,
  .ritual-grid {
    gap: 110px;
  }

  .device--large {
    width: min(31vw, 390px);
  }

  .assist-card {
    padding: 30px 28px 25px;
  }

  .assist-crop {
    height: 620px;
  }

  .assist-crop img {
    top: -300px;
    width: 480px;
  }

  .founder-card {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 75px;
  }

  .final-visual {
    height: 760px;
  }
}

@media (min-width: 760px) and (max-width: 1299px) {
  .device--final {
    transform: translateX(-50%) rotate(0);
  }
}

@media (min-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(400px, 0.78fr);
  }

  .floating-note--top {
    left: -16%;
  }

  .floating-note--bottom {
    right: 0;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand span {
    font-size: 0.92rem;
  }

  .button--nav {
    padding-inline: 12px;
    font-size: 0.71rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 4.6rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .promise-flow {
    gap: 5px;
    padding-inline: 9px;
    font-size: 0.62rem;
  }

  .promise-flow svg {
    width: 11px;
  }

  .floating-note--top {
    left: -1%;
  }

  .floating-note--bottom {
    right: 0;
  }

  .sequence-copy > p:last-child {
    display: none;
  }

  .sequence-device {
    width: 50vw;
  }

  .how-shot {
    height: 330px;
  }

  .assist-crop {
    height: 450px;
  }

  .assist-crop img {
    top: -175px;
    width: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .morning-sequence {
    min-height: auto;
  }

  .sequence-sticky {
    position: relative;
    min-height: 100svh;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .device,
  .how-card,
  .difficulty-list article,
  .assist-list article,
  .faq-list summary span {
    border: 1px solid CanvasText;
  }

  .eyebrow-dot,
  .proof-track i,
  .success-copy h2 {
    color: CanvasText;
  }
}
