:root {
  --ivory: #fbf8f1;
  --paper: #fffdf9;
  --paper-2: #f5f0e7;
  --charcoal: #262522;
  --charcoal-2: #181816;
  --ink-soft: #4b4842;
  --muted: #7d776d;
  --muted-light: #b9b3a8;
  --line: rgba(38, 37, 34, 0.1);
  --line-light: rgba(255, 255, 255, 0.11);
  --gold-700: #985519;
  --gold-600: #c87722;
  --gold-500: #efa743;
  --gold-400: #f7bf59;
  --gold-300: #ffd574;
  --gold-200: #ffe6ad;
  --rust: #a84f0c;
  --shadow: 0 34px 90px rgba(53, 42, 25, 0.14);
  --shadow-dark: 0 35px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 213, 116, 0.2), transparent 24%),
    radial-gradient(circle at 92% 13%, rgba(239, 167, 67, 0.1), transparent 22%),
    var(--ivory);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(38, 37, 34, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 37, 34, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--charcoal); background: var(--gold-300); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  background: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, input):focus-visible {
  outline: 3px solid rgba(239, 167, 67, 0.72);
  outline-offset: 3px;
}

.shell { width: min(1220px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: 118px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 241, 0.18);
  backdrop-filter: blur(0);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  border-color: rgba(38, 37, 34, 0.07);
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: blur(22px) saturate(135%);
}
.header-inner { height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { width: 136px; flex: 0 0 auto; }
.brand img { width: 136px; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; color: #5f5a52; font-size: 14px; font-weight: 750; }
.site-nav a { position: relative; transition: color 160ms ease; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-500);
  transition: right 180ms ease;
}
.site-nav a:hover { color: var(--charcoal); }
.site-nav a:hover::after { right: 0; }
.menu-button { display: none; margin-left: auto; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.menu-button span { display: block; height: 2px; width: 22px; margin: 5px auto; background: var(--charcoal); border-radius: 999px; transition: 180ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.015em;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--charcoal); border-color: var(--charcoal); box-shadow: 0 13px 30px rgba(38, 37, 34, 0.13); }
.button-dark:hover { box-shadow: 0 18px 38px rgba(38, 37, 34, 0.2); }
.button-light { background: rgba(255, 255, 255, 0.56); }
.button-light:hover { background: rgba(255, 255, 255, 0.9); }
.button-white { color: var(--charcoal); background: white; border-color: white; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 13px; }
.header-cta { margin-left: 2px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #6f685e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.eyebrow-dark { color: rgba(255, 255, 255, 0.68); border-color: var(--line-light); background: rgba(255, 255, 255, 0.055); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); box-shadow: 0 0 0 5px rgba(239, 167, 67, 0.1); }

.hero {
  min-height: 930px;
  padding-top: 145px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 4; }
.hero h1 {
  margin: 25px 0 24px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 850;
}
.hero h1 span,
.section-heading h2 span,
.worlds-copy h2 span,
.day-copy h2 span,
.language-heading h2 span,
.quote-section blockquote span {
  background: linear-gradient(118deg, var(--gold-700), var(--gold-500) 47%, #d88823);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead { max-width: 590px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 29px; color: #787168; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.055em; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); }

.hero-product { position: relative; min-width: 0; }
.hero-glow { position: absolute; inset: 8% -5% 0 2%; z-index: 0; border-radius: 50%; background: radial-gradient(circle, rgba(239, 167, 67, 0.22), transparent 66%); filter: blur(34px); }
.desktop-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(38, 37, 34, 0.13);
  border-radius: 30px;
  background: #1c1b1a;
  box-shadow: 0 44px 100px rgba(39, 30, 19, 0.24), 0 2px 0 rgba(255, 255, 255, 0.65) inset;
  transform: perspective(1600px) rotateY(-3.5deg) rotateX(1.5deg);
  transform-origin: center;
}
.desktop-titlebar {
  position: relative;
  z-index: 10;
  height: 46px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(17, 17, 16, 0.84);
  backdrop-filter: blur(18px);
}
.traffic { display: flex; gap: 7px; }
.traffic i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.desktop-title { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; }
.desktop-title img { width: 19px; height: 19px; border-radius: 5px; }
.mini-icon { justify-self: end; width: 32px; height: 32px; display: grid; place-items: center; border: 0; background: transparent; color: rgba(255, 255, 255, 0.58); cursor: pointer; }
.mini-icon svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.scene-stage {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 18px;
  overflow: hidden;
  background: #10151d;
  transition: background 500ms ease;
}
.scene-art,
.world-scene-art { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.scene-art::after,
.world-scene-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8, 10, 14, 0.12), rgba(8, 10, 14, 0.18) 48%, rgba(8, 10, 14, 0.56)); }
.scene-stars { position: absolute; inset: 0; opacity: 0; transition: opacity 500ms ease; background-image: radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.7px), radial-gradient(circle, rgba(255,255,255,.54) 0 1px, transparent 1.6px); background-position: 12px 8px, 47px 32px; background-size: 76px 63px, 118px 91px; animation: twinkle 6s ease-in-out infinite alternate; }
.scene-moon { position: absolute; width: 90px; height: 90px; right: 12%; top: 18%; border-radius: 50%; opacity: 0; background: radial-gradient(circle at 34% 32%, #fff9d8, #d8d4ca 52%, #a9b1c3 100%); box-shadow: 0 0 55px rgba(255, 244, 192, 0.25); transition: opacity 500ms ease, transform 500ms ease; }
.scene-sun { position: absolute; width: 108px; height: 108px; left: 16%; top: 16%; border-radius: 50%; opacity: 0; background: radial-gradient(circle, #fff7d0 0 20%, #ffd57e 45%, #e9904e 72%, rgba(233,144,78,0) 73%); filter: blur(.1px); transition: opacity 500ms ease; }
.scene-cloud { position: absolute; width: 320px; height: 75px; border-radius: 50%; opacity: 0; background: rgba(233, 239, 242, 0.12); filter: blur(14px); transition: opacity 500ms ease; }
.cloud-a { top: 25%; left: -7%; transform: rotate(-7deg); animation: drift 14s ease-in-out infinite alternate; }
.cloud-b { top: 44%; right: -16%; transform: rotate(4deg) scale(.82); animation: drift 17s ease-in-out infinite alternate-reverse; }
.scene-mountain { position: absolute; bottom: -1px; opacity: 0; clip-path: polygon(0 100%, 0 61%, 12% 49%, 23% 65%, 38% 25%, 55% 63%, 67% 46%, 79% 67%, 91% 40%, 100% 59%, 100% 100%); transition: opacity 500ms ease; }
.mountain-a { left: -5%; width: 110%; height: 37%; background: rgba(17, 25, 38, 0.88); }
.mountain-b { left: -10%; width: 120%; height: 29%; background: rgba(11, 17, 27, 0.94); transform: translateY(20%); }
.scene-forest { position: absolute; inset: -5% 0 0; opacity: 0; transition: opacity 500ms ease; }
.forest-a { background: repeating-linear-gradient(93deg, transparent 0 38px, rgba(10, 36, 28, .76) 40px 52px, transparent 55px 92px, rgba(15, 49, 36, .66) 94px 109px); filter: blur(1px); }
.forest-b { background: repeating-linear-gradient(87deg, transparent 0 72px, rgba(7, 28, 22, .78) 74px 88px, transparent 91px 130px); transform: scale(1.1); filter: blur(4px); }
.scene-ocean { position: absolute; left: -10%; width: 120%; opacity: 0; transition: opacity 500ms ease; }
.ocean-a { bottom: -8%; height: 37%; border-radius: 44% 57% 0 0; background: rgba(24, 111, 152, 0.53); animation: wave 8s ease-in-out infinite alternate; }
.ocean-b { bottom: -14%; height: 32%; border-radius: 57% 40% 0 0; background: rgba(8, 61, 105, 0.72); animation: wave 10s ease-in-out infinite alternate-reverse; }
.scene-grid { position: absolute; inset: 47% -20% -25%; opacity: 0; transform: perspective(320px) rotateX(62deg); transform-origin: center top; background-image: linear-gradient(rgba(238, 172, 70, .22) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 172, 70, .17) 1px, transparent 1px); background-size: 44px 36px; transition: opacity 500ms ease; }
.scene-window { position: absolute; width: 42%; height: 36%; top: 9%; right: 8%; opacity: 0; border: 8px solid rgba(85, 62, 40, .5); border-radius: 10px; background: linear-gradient(145deg, rgba(255, 238, 197, .9), rgba(203, 219, 217, .65)); box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); transition: opacity 500ms ease; }
.scene-window::before, .scene-window::after { content: ""; position: absolute; background: rgba(85,62,40,.48); }
.scene-window::before { width: 6px; top: 0; bottom: 0; left: 50%; }
.scene-window::after { height: 6px; left: 0; right: 0; top: 50%; }
.scene-desk { position: absolute; left: -5%; right: -5%; bottom: -3%; height: 28%; opacity: 0; background: linear-gradient(180deg, #785137, #4c3327); transform: perspective(500px) rotateX(8deg); transition: opacity 500ms ease; }
.scene-cup { position: absolute; right: 19%; bottom: 15%; width: 54px; height: 44px; opacity: 0; border-radius: 7px 7px 18px 18px; background: #d9c8ae; box-shadow: 20px 4px 0 -12px transparent, 19px 4px 0 -9px #d9c8ae; transition: opacity 500ms ease; }
.scene-steam { position: absolute; right: 22%; bottom: 25%; width: 25px; height: 55px; opacity: 0; border-left: 2px solid rgba(255,255,255,.44); border-radius: 50%; animation: steam 3s ease-in-out infinite; transition: opacity 500ms ease; }
.scene-plant { position: absolute; left: 11%; bottom: 16%; width: 45px; height: 64px; opacity: 0; background: radial-gradient(ellipse at 50% 85%, #9b7555 0 25%, transparent 26%), radial-gradient(ellipse at 20% 35%, #47664b 0 22%, transparent 23%), radial-gradient(ellipse at 64% 22%, #5a7b55 0 23%, transparent 24%), radial-gradient(ellipse at 75% 48%, #385a44 0 21%, transparent 22%); transition: opacity 500ms ease; }

[data-scene="night"] .scene-stage,
.world-preview[data-scene="night"] { background: linear-gradient(180deg, #111927 0%, #1b2940 44%, #151a26 100%); }
[data-scene="night"] .scene-stars,
[data-scene="night"] .scene-moon,
[data-scene="night"] .scene-mountain { opacity: 1; }
[data-scene="forest"] .scene-stage,
.world-preview[data-scene="forest"] { background: radial-gradient(circle at 55% 25%, #668f74 0, #234f3d 36%, #102d25 78%, #0b201c 100%); }
[data-scene="forest"] .scene-forest,
[data-scene="forest"] .scene-cloud { opacity: 1; }
[data-scene="ocean"] .scene-stage,
.world-preview[data-scene="ocean"] { background: linear-gradient(180deg, #93cbd7 0%, #5e9db6 38%, #1f638f 65%, #0e3e68 100%); }
[data-scene="ocean"] .scene-ocean,
[data-scene="ocean"] .scene-cloud { opacity: 1; }
[data-scene="sunset"] .scene-stage,
.world-preview[data-scene="sunset"] { background: linear-gradient(180deg, #674458 0%, #c06c57 36%, #edab68 64%, #5a3f42 100%); }
[data-scene="sunset"] .scene-sun,
[data-scene="sunset"] .scene-mountain,
[data-scene="sunset"] .scene-cloud { opacity: 1; }
[data-scene="studio"] .scene-stage,
.world-preview[data-scene="studio"] { background: linear-gradient(180deg, #d6c1a4 0%, #ad8d69 55%, #674735 100%); }
[data-scene="studio"] .scene-window,
[data-scene="studio"] .scene-desk,
[data-scene="studio"] .scene-cup,
[data-scene="studio"] .scene-steam,
[data-scene="studio"] .scene-plant { opacity: 1; }
[data-scene="horizon"] .scene-stage,
.world-preview[data-scene="horizon"] { background: radial-gradient(circle at 50% 54%, #26314c 0%, #121927 52%, #070b11 100%); }
[data-scene="horizon"] .scene-grid { opacity: 1; }
[data-scene="horizon"] .scene-sun { opacity: .72; left: calc(50% - 54px); top: 26%; }

.mode-switch {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(12, 14, 18, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 25px rgba(0,0,0,.17);
}
.mode-button { min-height: 31px; padding: 0 13px; border: 0; border-radius: 999px; color: rgba(255,255,255,.55); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; transition: 170ms ease; }
.mode-button.is-active { color: #281f16; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 5px 14px rgba(239,167,67,.2); }

.timer-stack { position: relative; z-index: 4; flex: 1; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 8px; }
.timer-ring { position: relative; width: min(290px, 48vw); aspect-ratio: 1; display: grid; place-items: center; }
.timer-ring svg { width: 100%; transform: rotate(-90deg); filter: drop-shadow(0 16px 28px rgba(0,0,0,.18)); }
.timer-ring circle { fill: none; stroke-width: 3.6; }
.ring-track { stroke: rgba(255,255,255,.13); }
.ring-progress { stroke: var(--gold-400); stroke-linecap: round; stroke-dasharray: 647; stroke-dashoffset: 184; transition: stroke-dashoffset 600ms ease, stroke 300ms ease; }
.ring-orbit { fill: #ffe3a4; stroke: rgba(255,255,255,.78); stroke-width: 1.2; filter: drop-shadow(0 0 8px rgba(255,216,130,.8)); }
.focus-experience.is-running .ring-progress { animation: timer-pulse 3s ease-in-out infinite; }
.timer-content { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: white; }
.timer-state { margin-bottom: 7px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.timer-content strong { font-size: clamp(50px, 5vw, 69px); line-height: 1; letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.timer-content small { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; }
.intention-card { margin-top: -7px; text-align: center; color: white; }
.intention-card span { display: block; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.intention-card strong { display: block; margin-top: 5px; font-size: 13px; }
.focus-controls { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.control-button { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: rgba(255,255,255,.58); background: rgba(12,14,18,.48); backdrop-filter: blur(12px); cursor: pointer; }
.control-button svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.begin-button { min-width: 132px; min-height: 43px; padding: 0 19px; border: 0; border-radius: 999px; color: #2f2518; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 13px 29px rgba(239,167,67,.2); cursor: pointer; transition: transform 180ms ease; }
.begin-button:hover { transform: translateY(-2px); }

.scene-picker { position: relative; z-index: 5; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.scene-picker-compact { width: 100%; }
.scene-chip { min-height: 31px; padding: 0 9px 0 7px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: rgba(255,255,255,.54); background: rgba(9,11,15,.42); backdrop-filter: blur(12px); font-size: 9px; font-weight: 750; cursor: pointer; transition: 180ms ease; }
.scene-chip.is-active { color: white; border-color: rgba(255,213,116,.34); background: rgba(13,14,17,.72); }
.scene-swatch { width: 17px; height: 17px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset; }
.swatch-night { background: linear-gradient(145deg, #2b4264, #111827); }
.swatch-forest { background: linear-gradient(145deg, #6d9e77, #16352b); }
.swatch-ocean { background: linear-gradient(145deg, #9ed3dc, #165b8b); }
.swatch-sunset { background: linear-gradient(145deg, #f3b06e, #713d60); }

.floating-note { position: absolute; z-index: 6; min-width: 125px; padding: 14px 16px; border: 1px solid rgba(38,37,34,.09); border-radius: 18px; background: rgba(255,253,249,.82); backdrop-filter: blur(16px); box-shadow: 0 18px 40px rgba(49,39,25,.11); }
.floating-note span { display: block; font-size: 25px; font-weight: 900; letter-spacing: -.05em; }
.floating-note small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 750; }
.floating-note-left { left: -30px; bottom: 112px; }
.floating-note-right { right: -26px; top: 115px; }

.marquee { overflow: hidden; contain: inline-size; border-block: 1px solid var(--line); background: rgba(255,255,255,.35); }
.marquee-track { width: max-content; min-height: 62px; display: flex; align-items: center; gap: 26px; color: #7b7469; font-size: 10px; font-weight: 900; letter-spacing: .11em; animation: marquee 30s linear infinite; }
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

.section-heading { max-width: 770px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-heading h2,
.worlds-copy h2,
.day-copy h2,
.language-heading h2 {
  margin: 18px 0 18px;
  font-size: clamp(46px, 5.7vw, 75px);
  line-height: 1;
  letter-spacing: -.065em;
}
.section-heading p,
.worlds-copy > p,
.day-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.centered p { text-align: center; }

.ritual-section { background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.46)); }
.ritual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ritual-card { position: relative; min-height: 430px; padding: 24px; border: 1px solid var(--line); border-radius: 27px; background: rgba(255,253,249,.64); overflow: hidden; }
.ritual-card:nth-child(even) { transform: translateY(28px); }
.step-number { width: 42px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-700); background: white; font-size: 10px; font-weight: 900; }
.ritual-visual { height: 176px; margin: 24px 0 25px; border-radius: 20px; overflow: hidden; }
.ritual-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.035em; }
.ritual-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.63; }
.intention-visual { padding: 23px 18px; color: white; background: linear-gradient(145deg, #2d2c28, #171715); }
.intention-visual > span { font-size: 11px; font-weight: 800; }
.fake-input { margin-top: 20px; padding: 13px; display: flex; align-items: center; gap: 9px; border-radius: 13px; background: rgba(255,255,255,.08); }
.fake-input i { width: 16px; height: 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 5px; }
.fake-input b { min-width: 0; flex: 1; font-size: 10px; font-weight: 700; }
.fake-input em { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: #2e2417; background: var(--gold-400); font-style: normal; font-size: 10px; }
.world-visual { position: relative; background: #e9e3d8; }
.world-card { position: absolute; width: 98px; height: 120px; padding: 8px; display: flex; flex-direction: column; justify-content: flex-end; border: 3px solid rgba(255,255,255,.74); border-radius: 16px; box-shadow: 0 13px 25px rgba(41,33,22,.14); color: white; font-size: 9px; font-weight: 800; }
.world-card i { position: absolute; inset: 0; border-radius: 13px; z-index: -1; }
.world-night { left: 18px; top: 29px; transform: rotate(-8deg); z-index: 1; }
.world-night i { background: linear-gradient(#294263,#101b2b); }
.world-forest { left: calc(50% - 49px); top: 18px; z-index: 3; }
.world-forest i { background: linear-gradient(#6c9673,#173729); }
.world-ocean { right: 18px; top: 29px; transform: rotate(8deg); z-index: 2; }
.world-ocean i { background: linear-gradient(#9acee0,#165883); }
.rhythm-visual { padding: 36px 18px 22px; background: linear-gradient(145deg, #f0eade, #e5dccd); }
.rhythm-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; }
.rhythm-line span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(38,37,34,.15); border-radius: 50%; background: #fff; font-size: 10px; font-weight: 900; }
.rhythm-line span.is-current { color: #2f2518; border-color: var(--gold-500); background: var(--gold-300); box-shadow: 0 0 0 6px rgba(239,167,67,.12); }
.rhythm-line i { height: 1px; background: rgba(38,37,34,.14); }
.rhythm-labels { margin-top: 27px; display: flex; justify-content: space-between; color: #6f685e; font-size: 8px; }
.closure-visual { padding: 18px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; background: radial-gradient(circle at 50% 10%, #4d3e2b, #262522 65%); }
.completion-orb { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 50%; color: #332616; background: var(--gold-300); font-weight: 900; }
.closure-visual strong { display: block; font-size: 13px; }
.closure-visual span { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 8px; line-height: 1.5; }

.worlds-section { color: white; background: var(--charcoal-2); overflow: hidden; }
.worlds-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: center; }
.worlds-copy h2 { color: white; }
.worlds-copy > p { color: rgba(255,255,255,.55); }
.world-selector { margin-top: 38px; border-top: 1px solid var(--line-light); }
.world-option { width: 100%; min-height: 76px; padding: 14px 4px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 13px; border: 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.5); background: transparent; text-align: left; cursor: pointer; transition: color 180ms ease, padding 180ms ease; }
.world-option:hover, .world-option.is-active { color: white; padding-left: 10px; }
.world-option.is-active .world-index { color: var(--gold-400); }
.world-index { font-size: 10px; font-weight: 900; }
.world-option b { display: block; font-size: 14px; }
.world-option small { display: block; margin-top: 4px; font-size: 10px; color: rgba(255,255,255,.42); }
.world-option em { font-style: normal; font-size: 13px; }
.world-preview { position: relative; isolation: isolate; min-height: 760px; border: 1px solid rgba(255,255,255,.1); border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-dark); transition: background 500ms ease; }
.world-preview::after { content: ""; position: absolute; inset: 0; z-index: -1; box-shadow: inset 0 0 110px rgba(0,0,0,.22); pointer-events: none; }
.world-preview-top { position: relative; z-index: 4; height: 52px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(8,10,13,.42); backdrop-filter: blur(15px); color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; }
.preview-dots { display: flex; gap: 6px; }
.preview-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.2); }
.preview-mode { position: relative; z-index: 3; width: max-content; margin: 24px auto 0; padding: 4px; display: flex; gap: 3px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(8,10,13,.56); backdrop-filter: blur(15px); }
.preview-mode span { padding: 8px 12px; border-radius: 999px; color: rgba(255,255,255,.46); font-size: 9px; font-weight: 800; }
.preview-mode .is-active { color: #2a2015; background: linear-gradient(135deg,var(--gold-300),var(--gold-500)); }
.preview-timer { position: relative; z-index: 3; min-height: 610px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.preview-ring { width: 340px; max-width: 68%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 20px 45px rgba(0,0,0,.2); position: relative; }
.preview-ring::before { content: ""; position: absolute; inset: -3px; border: 3px solid transparent; border-top-color: var(--gold-400); border-right-color: var(--gold-400); border-radius: 50%; transform: rotate(32deg); }
.preview-ring span { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.preview-ring strong { margin: 7px 0; font-size: clamp(58px,7vw,82px); line-height: 1; letter-spacing: -.075em; font-variant-numeric: tabular-nums; }
.preview-ring small { color: rgba(255,255,255,.5); font-size: 10px; }
.preview-intention { margin-top: 21px; text-align: center; }
.preview-intention small { display: block; color: rgba(255,255,255,.4); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.preview-intention b { display: block; margin-top: 5px; font-size: 13px; }
.preview-timer button { min-width: 96px; min-height: 39px; margin-top: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: white; background: rgba(13,15,18,.54); backdrop-filter: blur(13px); font-size: 10px; font-weight: 850; cursor: pointer; }
.world-caption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 4; padding: 14px 16px; display: flex; justify-content: space-between; gap: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(9,11,14,.43); backdrop-filter: blur(16px); color: rgba(255,255,255,.67); font-size: 10px; }
.world-caption small { color: rgba(255,255,255,.38); }

.rhythm-section { background: #f0ebe2; }
.cycle-card { padding: 35px; border: 1px solid var(--line); border-radius: 30px; background: rgba(255,253,249,.82); box-shadow: 0 24px 65px rgba(51,41,27,.08); }
.cycle-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.cycle-header small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.cycle-header strong { display: block; margin-top: 6px; font-size: 26px; letter-spacing: -.04em; }
.cycle-header > span { padding: 8px 12px; border-radius: 999px; color: var(--gold-700); background: rgba(239,167,67,.12); font-size: 10px; font-weight: 850; }
.cycle-track { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 0; padding: 46px 5px; }
.cycle-step { display: flex; align-items: center; gap: 11px; color: #aaa399; }
.cycle-orb { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #d6d0c5; border-radius: 50%; background: white; font-size: 11px; font-weight: 900; }
.cycle-step b, .cycle-step small { display: block; }
.cycle-step b { color: #756f66; font-size: 12px; }
.cycle-step small { margin-top: 4px; font-size: 9px; }
.cycle-step.is-complete .cycle-orb { color: #3b2c19; border-color: var(--gold-300); background: var(--gold-300); }
.cycle-step.is-complete b { color: var(--charcoal); }
.cycle-step.is-current .cycle-orb { color: white; border-color: var(--charcoal); background: var(--charcoal); box-shadow: 0 0 0 8px rgba(38,37,34,.07); }
.cycle-step.is-current b { color: var(--charcoal); }
.cycle-connector { height: 1px; margin-inline: 14px; background: #d9d3c8; }
.cycle-connector.is-complete { background: linear-gradient(90deg,var(--gold-500),var(--gold-300)); }
.cycle-footer { padding-top: 23px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cycle-footer > div { display: grid; grid-template-columns: auto auto; align-items: center; gap: 3px 9px; }
.pulse-dot { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 6px rgba(239,167,67,.11); }
.cycle-footer b { font-size: 12px; }
.cycle-footer small { color: var(--muted); font-size: 10px; }

.day-section { background: var(--ivory); }
.day-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.day-copy h2 { margin-top: 18px; }
.day-points { margin-top: 35px; }
.day-points > div { padding: 17px 0; display: grid; grid-template-columns: 35px 1fr; gap: 13px; border-top: 1px solid var(--line); }
.day-points > div:last-child { border-bottom: 1px solid var(--line); }
.day-points > div > span { color: var(--gold-700); font-size: 10px; font-weight: 900; }
.day-points p { margin: 0; }
.day-points b, .day-points small { display: block; }
.day-points b { font-size: 13px; }
.day-points small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.dashboard-window { border: 1px solid var(--line); border-radius: 30px; background: #f8f5ee; box-shadow: var(--shadow); overflow: hidden; }
.dashboard-titlebar { height: 45px; padding: 0 15px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgba(38,37,34,.07); background: rgba(255,255,255,.6); color: #8f887e; font-size: 10px; font-weight: 800; }
.dashboard-titlebar button { justify-self: end; border: 0; color: #979086; background: transparent; letter-spacing: .08em; }
.dashboard-shell { min-height: 620px; display: grid; grid-template-columns: 155px 1fr; }
.dashboard-sidebar { padding: 20px 13px; border-right: 1px solid rgba(38,37,34,.06); background: #f0ece4; }
.dashboard-brand { display: flex; align-items: center; gap: 8px; padding: 0 8px 24px; font-size: 13px; }
.dashboard-brand img { width: 28px; height: 28px; border-radius: 7px; }
.dashboard-sidebar nav { display: grid; gap: 5px; }
.dashboard-sidebar a { padding: 10px 11px; display: flex; align-items: center; gap: 9px; border-radius: 10px; color: #80796f; font-size: 10px; font-weight: 800; }
.dashboard-sidebar a.is-active { color: white; background: var(--charcoal); box-shadow: 0 9px 20px rgba(38,37,34,.13); }
.dashboard-sidebar svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sidebar-whisper { margin: 280px 8px 0; color: #a49d92; font-size: 8px; line-height: 1.5; }
.dashboard-main { padding: 32px 30px 35px; background: radial-gradient(circle at 86% 5%, rgba(255,213,116,.16), transparent 23%), #fbfaf6; }
.dashboard-intro { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.dashboard-intro small { color: #999287; font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.dashboard-intro h3 { margin: 7px 0 0; font-size: 29px; line-height: 1.05; letter-spacing: -.05em; }
.mini-focus-ring { width: 75px; height: 75px; padding: 8px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--gold-500) 0 72%, #e8e2d8 72%); }
.mini-focus-ring span { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 50%; background: #fbfaf6; font-size: 10px; font-weight: 900; }
.dashboard-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin: 25px 0 14px; }
.dashboard-stats > div { padding: 13px; border: 1px solid rgba(38,37,34,.045); border-radius: 14px; background: #ebe7de; }
.dashboard-stats span { display: block; color: #8e877d; font-size: 8px; font-weight: 800; }
.dashboard-stats b { display: block; margin: 5px 0 9px; font-size: 17px; letter-spacing: -.035em; }
.dashboard-stats i { display: block; width: 100%; height: 3px; border-radius: 999px; background: linear-gradient(90deg,var(--gold-500) 0 var(--value),#d8d2c8 var(--value)); }
.dashboard-add { display: flex; gap: 8px; padding: 8px; border-radius: 14px; background: #292825; box-shadow: 0 13px 28px rgba(38,37,34,.12); }
.dashboard-add input { min-width: 0; flex: 1; padding: 0 8px; border: 0; outline: 0; color: white; background: transparent; font-size: 9px; }
.dashboard-add input::placeholder { color: rgba(255,255,255,.45); }
.dashboard-add button { min-height: 34px; padding: 0 12px; border: 0; border-radius: 9px; color: #302515; background: linear-gradient(135deg,var(--gold-300),var(--gold-500)); font-size: 8px; font-weight: 900; cursor: pointer; }
.dashboard-lists { display: grid; grid-template-columns: 1.15fr .85fr; gap: 11px; margin-top: 13px; }
.dashboard-panel { min-height: 198px; padding: 15px; border: 1px solid rgba(38,37,34,.065); border-radius: 16px; background: rgba(255,255,255,.67); }
.panel-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.panel-title b { font-size: 10px; }
.panel-title span { padding: 4px 7px; border-radius: 999px; color: #817a70; background: #eee9df; font-size: 7px; }
.intention-row { width: 100%; padding: 10px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; border: 0; border-top: 1px solid rgba(38,37,34,.055); background: transparent; text-align: left; cursor: pointer; }
.intention-row > i { width: 15px; height: 15px; border: 1px solid #c8c1b7; border-radius: 5px; }
.intention-row b, .intention-row small { display: block; }
.intention-row b { font-size: 8px; }
.intention-row small { margin-top: 3px; color: #a0998e; font-size: 7px; }
.intention-row em { color: #aaa298; font-style: normal; font-size: 7px; letter-spacing: .1em; }
.intention-row.is-complete > i { display: grid; place-items: center; color: #302515; border-color: var(--gold-400); background: var(--gold-300); }
.intention-row.is-complete > i::after { content: "✓"; font-size: 8px; font-weight: 900; }
.intention-row.is-complete b { text-decoration: line-through; color: #9d968c; }
.quiet-empty { min-height: 134px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #a39c91; text-align: center; }
.quiet-empty > span { font-size: 24px; font-weight: 300; }
.quiet-empty b { margin-top: 7px; font-size: 9px; }
.quiet-empty small { margin-top: 4px; font-size: 7px; }
.completed-row { margin-top: 11px; padding: 12px 15px; display: flex; justify-content: space-between; border: 1px solid rgba(38,37,34,.055); border-radius: 14px; color: #7e776d; background: #f0ece4; font-size: 8px; }
.completed-row span { display: flex; align-items: center; gap: 6px; }
.completed-row i { width: 15px; height: 15px; display: grid; place-items: center; border-radius: 50%; color: #342817; background: var(--gold-300); font-style: normal; font-size: 7px; font-weight: 900; }

.language-section { color: white; background: var(--charcoal); }
.language-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.language-heading h2 { color: white; }
.language-cards { display: grid; grid-template-columns: 1fr 1.06fr; gap: 14px; }
.language-card { min-height: 430px; padding: 28px; border: 1px solid rgba(255,255,255,.09); border-radius: 29px; background: rgba(255,255,255,.04); }
.language-card > small { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.active-language { display: flex; flex-direction: column; align-items: center; text-align: center; }
.active-language > small { align-self: flex-start; }
.mini-active-ring { width: 230px; max-width: 90%; aspect-ratio: 1; margin: 38px auto 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.11); border-radius: 50%; position: relative; }
.mini-active-ring::after { content: ""; position: absolute; inset: -2px; border: 2px solid transparent; border-top-color: var(--gold-400); border-right-color: var(--gold-400); border-radius: 50%; transform: rotate(38deg); }
.mini-active-ring span { color: rgba(255,255,255,.5); font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.mini-active-ring strong { margin: 7px 0; font-size: 48px; letter-spacing: -.07em; }
.mini-active-ring em { color: rgba(255,255,255,.42); font-style: normal; font-size: 8px; }
.active-language button { min-width: 85px; min-height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: white; background: rgba(255,255,255,.055); font-size: 9px; font-weight: 850; }
.completion-language { display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 50% 0%, rgba(239,167,67,.16), transparent 43%), rgba(255,255,255,.035); }
.completion-mark { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; color: #302515; background: linear-gradient(135deg,var(--gold-300),var(--gold-500)); font-size: 20px; font-weight: 900; box-shadow: 0 12px 35px rgba(239,167,67,.17); }
.completion-language h3 { margin: 14px 0 12px; font-size: 31px; letter-spacing: -.05em; }
.completion-language p { margin: 0; color: rgba(255,255,255,.5); line-height: 1.65; }
.completion-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 32px; }
.completion-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 800; }

.features-section { background: var(--ivory); }
.bento-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: minmax(210px, auto); gap: 14px; }
.bento-card { grid-column: span 4; padding: 28px; border: 1px solid var(--line); border-radius: 27px; background: rgba(255,253,249,.7); overflow: hidden; position: relative; }
.bento-large { grid-column: span 7; grid-row: span 2; min-height: 440px; display: flex; flex-direction: column; }
.bento-gold { grid-column: span 5; color: #342717; background: linear-gradient(145deg,#ffe3a1,#f0a841); border-color: transparent; }
.bento-dark { grid-column: span 5; color: white; background: var(--charcoal); border-color: var(--charcoal); }
.bento-wide { grid-column: span 8; display: grid; grid-template-columns: auto 1fr minmax(180px,.8fr); align-items: center; gap: 18px; }
.bento-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 35px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.55); }
.bento-dark .bento-icon { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.06); }
.bento-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.bento-card > span, .bento-card > div > span { display: block; color: var(--gold-700); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.bento-gold > span { color: rgba(52,39,23,.58); }
.bento-dark > span { color: var(--gold-300); }
.bento-card h3 { margin: 11px 0 10px; font-size: 24px; line-height: 1.1; letter-spacing: -.045em; }
.bento-large h3 { max-width: 520px; font-size: 36px; }
.bento-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.bento-dark p { color: rgba(255,255,255,.5); }
.bento-intention { margin-top: auto; padding: 18px; border-radius: 17px; color: white; background: var(--charcoal); }
.bento-intention small, .bento-intention b { display: block; }
.bento-intention small { color: rgba(255,255,255,.45); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.bento-intention b { margin-top: 7px; font-size: 13px; }
.mini-mode-row { display: flex; gap: 8px; margin-top: 34px; }
.mini-mode-row i { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(52,39,23,.18); border-radius: 50%; font-style: normal; font-size: 12px; font-weight: 900; }
.mini-mode-row i.is-active { color: white; border-color: var(--charcoal); background: var(--charcoal); box-shadow: 0 0 0 7px rgba(38,37,34,.08); }
.mini-worlds { display: flex; gap: 8px; margin-top: 33px; }
.mini-worlds i { width: 50px; height: 75px; border: 2px solid rgba(255,255,255,.12); border-radius: 13px; }
.mini-worlds i:nth-child(1) { background: linear-gradient(#334f75,#111b2b); transform: rotate(-5deg); }
.mini-worlds i:nth-child(2) { background: linear-gradient(#729a76,#17372a); transform: translateY(-8px); }
.mini-worlds i:nth-child(3) { background: linear-gradient(#9bd1dd,#1d6490); transform: translateY(-2px); }
.mini-worlds i:nth-child(4) { background: linear-gradient(#f2b36f,#753f61); transform: rotate(5deg); }
.bento-wide .bento-icon { margin: 0; }
.bento-wide blockquote { margin: 0; padding-left: 20px; border-left: 1px solid var(--line); color: #817a70; font-size: 16px; line-height: 1.4; font-weight: 750; }

.quote-section { padding: 135px 0; text-align: center; }
.quote-section img { width: 65px; margin: 0 auto 28px; }
.quote-section blockquote { max-width: 1000px; margin: 0 auto; font-size: clamp(38px,5.5vw,72px); line-height: 1.04; letter-spacing: -.06em; font-weight: 850; }

.download-section { padding: 0 0 110px; }
.download-card { position: relative; isolation: isolate; overflow: hidden; padding: 90px 28px; border-radius: 40px; color: white; background: var(--charcoal-2); text-align: center; box-shadow: var(--shadow-dark); }
.download-card::before { content: ""; position: absolute; z-index: -2; width: 620px; height: 620px; right: -130px; top: -350px; border-radius: 50%; background: radial-gradient(circle, rgba(239,167,67,.25), transparent 66%); }
.download-card > img { width: 83px; height: 83px; margin: 0 auto 23px; border-radius: 22px; box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.download-card .eyebrow { margin: auto; }
.download-card h2 { margin: 23px 0 17px; font-size: clamp(50px,6vw,78px); line-height: .96; letter-spacing: -.065em; }
.download-card p { max-width: 590px; margin: 0 auto 29px; color: rgba(255,255,255,.56); font-size: 16px; line-height: 1.65; }
.download-card > small { display: block; margin-top: 17px; color: rgba(255,255,255,.35); font-size: 9px; font-weight: 750; }
.download-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; }
.orbit-a { width: 530px; height: 530px; left: -220px; bottom: -340px; }
.orbit-b { width: 730px; height: 730px; right: -350px; top: -460px; }

.site-footer { padding: 27px 0 45px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: #8b847a; font-size: 10px; }
.footer-brand { width: 112px; }
.footer-inner p { margin: 0; }
.footer-inner > span { justify-self: end; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 26px; width: min(470px, calc(100% - 28px)); padding: 15px 17px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: white; background: rgba(26,25,23,.9); backdrop-filter: blur(18px); box-shadow: 0 20px 55px rgba(0,0,0,.26); transform: translate(-50%, calc(100% + 55px)); opacity: 0; transition: transform 350ms ease, opacity 350ms ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast-mark { width: 35px; height: 35px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #332615; background: var(--gold-300); font-weight: 900; }
.toast b, .toast small { display: block; }
.toast b { font-size: 11px; }
.toast small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 720ms cubic-bezier(.2,.75,.2,1), transform 720ms cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes twinkle { from { opacity: .5; transform: translateY(0); } to { opacity: .9; transform: translateY(-4px); } }
@keyframes drift { from { translate: -10px 0; } to { translate: 28px 8px; } }
@keyframes wave { from { transform: translateX(-2%) rotate(-1deg); } to { transform: translateX(2%) rotate(1deg); } }
@keyframes steam { 0%,100% { transform: translate(0,6px) rotate(-7deg); opacity: .2; } 50% { transform: translate(4px,-6px) rotate(7deg); opacity: .65; } }
@keyframes timer-pulse { 0%,100% { filter: drop-shadow(0 0 0 rgba(239,167,67,0)); } 50% { filter: drop-shadow(0 0 9px rgba(239,167,67,.45)); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 70px; padding-top: 150px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-product { width: min(760px,100%); margin: auto; }
  .floating-note-left { left: -10px; }
  .floating-note-right { right: -8px; }
  .ritual-grid { grid-template-columns: repeat(2,1fr); }
  .ritual-card:nth-child(even) { transform: none; }
  .worlds-layout, .day-layout, .language-layout { grid-template-columns: 1fr; }
  .worlds-copy, .day-copy, .language-heading { max-width: 760px; }
  .world-preview { min-height: 690px; }
  .day-copy { margin-bottom: 10px; }
  .language-cards { max-width: 840px; }
  .bento-card { grid-column: span 6; }
  .bento-large { grid-column: span 7; }
  .bento-gold, .bento-dark { grid-column: span 5; }
  .bento-wide { grid-column: span 12; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 1220px); }
  .section { padding: 88px 0; }
  .header-inner { height: 72px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; left: 14px; right: 14px; top: 80px; padding: 14px; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 20px; background: rgba(251,248,241,.96); box-shadow: 0 22px 55px rgba(41,33,22,.13); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: 180ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 122px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(50px,12vw,74px); }
  .desktop-frame { transform: none; border-radius: 24px; }
  .scene-stage { min-height: 590px; }
  .floating-note { display: none; }
  .ritual-grid { grid-template-columns: 1fr 1fr; }
  .worlds-layout { gap: 55px; }
  .world-preview { min-height: 650px; }
  .cycle-track { grid-template-columns: 1fr 1fr; gap: 17px; }
  .cycle-connector { display: none; }
  .cycle-step { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #f6f2ea; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .language-cards { grid-template-columns: 1fr 1fr; }
  .bento-card, .bento-large, .bento-gold, .bento-dark { grid-column: span 6; }
  .bento-large { grid-row: span 1; min-height: 380px; }
}

@media (max-width: 620px) {
  .brand, .brand img { width: 118px; }
  .hero { gap: 48px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 10px 15px; }
  .desktop-titlebar { height: 42px; }
  .scene-stage { min-height: 545px; padding-inline: 12px; }
  .timer-ring { width: 238px; }
  .scene-chip span { display: none; }
  .scene-chip { padding-right: 7px; }
  .section-heading h2, .worlds-copy h2, .day-copy h2, .language-heading h2 { font-size: 45px; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-card { min-height: 395px; }
  .world-preview { min-height: 590px; border-radius: 25px; }
  .preview-timer { min-height: 510px; }
  .preview-ring { max-width: 78%; }
  .world-caption { font-size: 9px; }
  .cycle-card { padding: 20px; }
  .cycle-header, .cycle-footer { align-items: flex-start; flex-direction: column; }
  .cycle-track { grid-template-columns: 1fr; padding: 28px 0; }
  .dashboard-main { padding: 24px 15px; }
  .dashboard-intro h3 { font-size: 24px; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .dashboard-lists { grid-template-columns: 1fr; }
  .later-panel { min-height: 150px; }
  .language-cards { grid-template-columns: 1fr; }
  .language-card { min-height: 390px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-large, .bento-gold, .bento-dark, .bento-wide { grid-column: 1; }
  .bento-wide { display: block; }
  .bento-wide .bento-icon { margin-bottom: 30px; }
  .bento-wide blockquote { margin-top: 25px; padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .quote-section { padding: 95px 0; }
  .download-card { padding: 70px 19px; border-radius: 28px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner > span { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
