:root {
  color-scheme: light;
  --forest-950: #041f1b;
  --forest-900: #062e28;
  --forest-800: #0a443a;
  --forest-700: #125c4f;
  --forest-100: #e3f0eb;
  --forest-050: #f0f7f4;
  --amber: #f2a33b;
  --amber-soft: #fff0d8;
  --paper: #f3f0e9;
  --paper-strong: #fbfaf7;
  --ink: #1f1d1a;
  --ink-soft: #45413b;
  --muted: #746f67;
  --line: #dfd9cf;
  --white: #fffefb;
  --shadow-small: 0 8px 24px rgba(42, 35, 27, 0.05);
  --shadow-large: 0 22px 56px rgba(28, 25, 21, 0.12);
  --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-playful: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

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

p {
  text-wrap: pretty;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--amber);
  color: var(--forest-950);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 850;
  transition: transform 140ms var(--ease-premium);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 233, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 140ms var(--ease-premium), box-shadow 140ms var(--ease-premium);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(42, 35, 27, 0.05);
}

.nav-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(42, 35, 27, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.text-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  transition: color 140ms var(--ease-premium);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--forest-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-download-link { display: none; }

.menu-button {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 800;
}

.button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 140ms var(--ease-premium), background-color 140ms var(--ease-premium), border-color 140ms var(--ease-premium), box-shadow 140ms var(--ease-premium);
}

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

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

.button:focus-visible,
.platform-download:focus-visible,
.workflow-tab:focus-visible,
.record-story-control:focus-visible,
.pricing-toggle button:focus-visible,
.menu-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.button-small {
  min-height: 43px;
  padding-inline: 15px;
  border-radius: 10px;
  font-size: 13px;
}

.button-amber {
  background: var(--amber);
  border-color: #e9962e;
  color: var(--forest-950);
  box-shadow: none;
}

.button-amber:hover {
  background: #ffc25e;
}

.button-green {
  background: var(--forest-700);
  border-color: var(--forest-700);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(18, 92, 79, 0.14);
}

.button-green:hover {
  background: var(--forest-800);
}

.button-soft {
  background: var(--amber-soft);
  border-color: #eccd9f;
  color: var(--ink);
}

.button-soft:hover {
  background: #ffe5bd;
}

.button-quiet-dark {
  background: rgba(255, 254, 251, 0.08);
  border-color: rgba(255, 254, 251, 0.24);
  color: var(--white);
}

.button-quiet-dark:hover {
  background: rgba(255, 254, 251, 0.14);
}

.button-text {
  min-height: 44px;
  padding-inline: 0;
  color: var(--forest-700);
}

.dark-section {
  background: var(--forest-950);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
}

.guide-hero { padding: 104px 0 84px; overflow: hidden; }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(320px, .72fr); align-items: center; gap: 78px; }
.guide-hero h1 { max-width: 760px; margin-bottom: 22px; color: var(--white); font-size: clamp(42px, 5.3vw, 76px); line-height: .99; letter-spacing: -.065em; }
.guide-hero-visual { position: relative; justify-self: center; width: min(330px, 74vw); padding: 18px; border-radius: 42px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.03)); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.guide-hero-visual img { border-radius: 29px; }
.guide-orbit { position: absolute; right: -76px; bottom: 56px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: var(--amber); color: var(--forest-950); font-size: 15px; font-weight: 900; line-height: 1.05; box-shadow: var(--shadow-small); }
.guide-section { padding: 104px 0; }
.guide-section h2, .guide-proof h2 { max-width: 760px; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.055em; }
.section-lede { max-width: 740px; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.guide-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.guide-steps article { position: relative; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--paper-strong); box-shadow: var(--shadow-small); }
.guide-steps article > span { display: inline-flex; width: 37px; height: 37px; align-items: center; justify-content: center; border-radius: 50%; background: var(--forest-900); color: var(--white); font-size: 13px; font-weight: 900; }
.guide-steps img { width: 138px; margin: 18px auto 22px; border-radius: 20px; box-shadow: var(--shadow-large); }
.guide-steps h3, .fit-grid h3 { margin-bottom: 10px; font-size: 23px; letter-spacing: -.035em; }
.guide-steps p, .fit-grid li, .comparison-note { color: var(--ink-soft); line-height: 1.6; }
.guide-proof { padding: 96px 0; background: var(--forest-900); color: var(--white); }
.guide-proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; }
.guide-proof p { max-width: 650px; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.65; }
.guide-proof ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.guide-proof li { padding: 18px 20px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; color: rgba(255,255,255,.84); line-height: 1.5; }
.guide-proof strong { color: var(--amber); }
.guide-callout { max-width: 900px; padding: 54px; border-radius: 28px; background: var(--amber-soft); }
.guide-callout h2 { max-width: 680px; }
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.fit-grid article { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper-strong); }
.fit-grid .fit-highlight { border-color: var(--forest-700); background: var(--forest-050); }
.fit-grid ul { display: grid; gap: 12px; margin: 0; padding-left: 21px; }
.comparison-note { margin-top: 24px; font-size: 14px; }
.guide-wide-image { width: min(250px, 65vw); justify-self: center; border-radius: 26px; box-shadow: 0 25px 70px rgba(0,0,0,.28); }
@media (max-width: 780px) { .guide-hero { padding: 72px 0 60px; } .guide-hero-grid, .guide-proof-grid, .guide-steps, .fit-grid { grid-template-columns: 1fr; gap: 28px; } .guide-hero-visual { margin-top: 14px; } .guide-orbit { right: -22px; } .guide-section, .guide-proof { padding: 72px 0; } .guide-callout { padding: 34px 26px; } }

.hero-grid {
  min-height: 760px;
  padding: 76px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9ed0bf;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.7vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--amber);
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 254, 251, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-downloads {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.platform-download {
  width: fit-content;
  max-width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 0;
  border-radius: 13px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 140ms var(--ease-premium), box-shadow 140ms var(--ease-premium);
}

.platform-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.store-badge-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80px;
  display: block;
  object-fit: contain;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-plate {
  position: absolute;
  inset: -6% -14% -3% -28%;
  z-index: -3;
  width: 145%;
  height: 109%;
  max-width: none;
  object-fit: cover;
  object-position: 67% center;
  opacity: 0.86;
}

.hero-stage.is-tapping .record-story-control {
  transform: scale(0.97);
  transition: transform 340ms var(--ease-playful);
}

.hero-wave {
  position: absolute;
  z-index: -1;
  left: -13%;
  bottom: 7%;
  width: 126%;
  height: 190px;
  opacity: 0.94;
  pointer-events: none;
}

.hero-mascot-mobile {
  display: none;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #141817;
  border-radius: 44px;
  background: #141817;
  box-shadow: var(--shadow-large);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 32%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #070908;
  pointer-events: none;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  z-index: 2;
  width: min(340px, 58vw);
  aspect-ratio: 1170 / 2532;
  transform: translateX(-4%);
  transition: transform 360ms var(--ease-premium), box-shadow 360ms var(--ease-premium);
}

.hero-stage.is-recording .hero-phone {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.record-story-control {
  position: absolute;
  z-index: 5;
  left: 4%;
  bottom: 62px;
  min-height: 46px;
  border: 1px solid rgba(255, 254, 251, 0.2);
  border-radius: 999px;
  background: rgba(4, 31, 27, 0.88);
  color: var(--white);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.record-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5d52;
  box-shadow: 0 0 0 5px rgba(255, 93, 82, 0.15);
  animation: record-pulse 1.4s var(--ease-premium) infinite;
}

.hero-stage:not(.is-recording) .record-dot {
  background: #a9b4af;
  box-shadow: none;
  animation: none;
}

.hero-stage-caption {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 10px;
  max-width: 260px;
  margin: 0;
  color: rgba(255, 254, 251, 0.68);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(244, 178, 74, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 430px;
  height: 430px;
  animation: orbit-float 8s var(--ease-premium) infinite alternate;
}

.orbit-two {
  width: 540px;
  height: 540px;
  animation: orbit-float 11s var(--ease-premium) -2s infinite alternate-reverse;
}

.signal-line {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  opacity: 0.42;
}

.signal-line span {
  width: 3px;
  height: 9px;
  border-radius: 99px;
  background: #9ed0bf;
  transform-origin: center;
  animation: signal-bar 1.3s var(--ease-premium) infinite alternate;
}

.signal-line span:nth-child(2n) { animation-delay: -0.25s; }
.signal-line span:nth-child(3n) { animation-delay: -0.55s; }
.signal-line span:nth-child(4n) { animation-delay: -0.8s; }

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.trust-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-row span {
  min-height: 82px;
  padding: 18px 24px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust-row span:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: 124px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.narrow {
  max-width: 750px;
}

.section-heading h2,
.web-section h2,
.download-section h2,
.about-preview h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading p,
.web-section p,
.download-section p,
.about-preview p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.workflow-section {
  background: var(--paper);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(520px, 1.2fr);
  gap: 40px;
  align-items: stretch;
}

.workflow-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.workflow-tab {
  width: 100%;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 140ms var(--ease-premium), border-color 140ms var(--ease-premium), background-color 140ms var(--ease-premium), box-shadow 140ms var(--ease-premium);
}

.workflow-tab:hover {
  transform: translateX(4px);
}

.workflow-tab.is-active {
  border-color: var(--forest-700);
  background: var(--forest-050);
  box-shadow: none;
}

.workflow-tab > span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: 12px;
  font-weight: 900;
}

.workflow-tab.is-active > span {
  background: var(--forest-800);
  color: var(--white);
}

.workflow-tab strong {
  font-size: 18px;
}

.workflow-tab small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.workflow-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--forest-900);
  box-shadow: var(--shadow-large);
  isolation: isolate;
}

.workflow-rabbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.34;
  transition: transform 700ms var(--ease-premium), opacity 360ms var(--ease-premium);
}

.workflow-visual.is-changing .workflow-rabbit {
  transform: scale(1.025) translateX(-1%);
  opacity: 0.5;
}

.workflow-signal {
  position: absolute;
  z-index: 1;
  left: -8%;
  bottom: 15%;
  width: 116%;
  height: 180px;
  display: block;
  opacity: 0.88;
  pointer-events: none;
  filter: drop-shadow(0 0 9px rgba(238, 159, 63, 0.2));
}

.workflow-phone {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: 10%;
  width: 280px;
  aspect-ratio: 1170 / 2532;
  transition: transform 360ms var(--ease-premium), opacity 240ms var(--ease-premium);
}

.workflow-visual.is-changing .workflow-phone {
  transform: translateY(12px) scale(0.985);
  opacity: 0.74;
}

.workflow-copy-card {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 4;
  width: min(360px, calc(100% - 64px));
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 16px;
  background: rgba(4, 31, 27, 0.88);
  padding: 24px;
  color: var(--white);
  backdrop-filter: blur(18px);
}

.workflow-copy-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.workflow-copy-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 254, 251, 0.67);
  font-size: 14px;
  line-height: 1.6;
}

.split-heading,
.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.split-heading > div,
.pricing-heading > div:first-child {
  max-width: 760px;
}

.split-heading > p {
  max-width: 430px;
  margin-bottom: 4px;
}

.proof-section {
  background: var(--paper-strong);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.88fr));
  gap: 18px;
  align-items: stretch;
}

.proof-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  padding: 34px 34px 38px;
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
}

.proof-card-large {
  grid-row: auto;
}

.proof-copy {
  position: relative;
  z-index: 3;
  max-width: 480px;
}

.proof-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.proof-copy p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.proof-phone {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(300px, 86%);
  aspect-ratio: 1170 / 2532;
  margin: 32px auto 0;
}

.proof-phone-small {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(230px, 82%);
  aspect-ratio: 1170 / 2532;
  margin: 28px auto 0;
}

.web-section {
  padding: 116px 0;
}

.web-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.web-section p,
.download-section p {
  color: rgba(255, 254, 251, 0.68);
}

.web-capability-list {
  display: grid;
  gap: 12px;
}

.web-capability-list article {
  border: 1px solid rgba(255, 254, 251, 0.14);
  border-radius: 18px;
  background: rgba(255, 254, 251, 0.05);
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
}

.web-capability-list article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--amber);
  color: var(--forest-950);
  font-size: 12px;
  font-weight: 900;
}

.web-capability-list h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.web-capability-list p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-section {
  background: var(--paper);
}

.pricing-toggle {
  padding: 5px;
  display: inline-flex;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper-strong);
}

.pricing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  padding: 0 16px;
  font-weight: 850;
  cursor: pointer;
}

.pricing-toggle button.is-active {
  background: var(--forest-800);
  color: var(--white);
}

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

.pricing-grid[data-pricing-panel="instructor"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 850px;
  margin-inline: auto;
}

.pricing-grid.is-hidden {
  display: none;
}

.price-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-strong);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-small);
}

.price-card.featured {
  border-color: var(--forest-700);
  box-shadow: 0 12px 34px rgba(18, 92, 79, 0.09);
}

.plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  margin: 0;
  border-radius: 999px;
  background: var(--forest-100);
  color: var(--forest-800);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 16px;
  color: var(--forest-800);
  font-weight: 900;
}

.price {
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.price strong {
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.plan-intro {
  min-height: 52px;
  color: var(--muted);
  line-height: 1.55;
}

.price-card ul {
  margin: 6px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-700);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.about-preview {
  background: var(--paper-strong);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #eadfcd;
  box-shadow: var(--shadow-large);
}

.about-video video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 48%;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

.sticky-heading a {
  color: var(--forest-700);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-strong);
  padding: 0 22px;
  box-shadow: none;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--forest-700);
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.download-section {
  padding: 100px 0;
}

.waitlist-section {
  background: var(--paper-strong);
}

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

.waitlist-intro h2 {
  margin-bottom: 20px;
  max-width: 680px;
  font-size: clamp(42px, 5.7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.waitlist-intro > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.waitlist-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.waitlist-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.waitlist-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: 11px;
  font-weight: 900;
}

.waitlist-points p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.waitlist-panel {
  min-height: 430px;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 28px;
  background: var(--forest-900);
  box-shadow: var(--shadow-large);
}

.waitlist-panel .launchlist-widget {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.waitlist-privacy-note {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 254, 251, 0.68);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.waitlist-privacy-note a {
  color: var(--white);
  text-underline-offset: 3px;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.store-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.platform-download-large { min-height: 80px; }

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:not(:first-child) a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--forest-700);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.brand-attribution {
  padding-top: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.brand-attribution p { margin: 2px 0; }

.brand-attribution a { color: inherit; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  max-width: min(440px, calc(100% - 32px));
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 254, 251, 0.16);
  border-radius: 12px;
  background: var(--forest-950);
  color: var(--white);
  padding: 14px 18px;
  box-shadow: var(--shadow-large);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.4;
  transition: opacity 140ms var(--ease-premium), transform 140ms var(--ease-premium);
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-premium), transform 700ms var(--ease-premium);
}

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

.policy-hero,
.about-hero {
  padding: 92px 0 68px;
  background: var(--forest-950);
  color: var(--white);
}

.policy-hero h1,
.about-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.policy-hero p,
.about-hero p {
  max-width: 720px;
  color: rgba(255, 254, 251, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.policy-layout {
  padding: 80px 0 110px;
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: 70px;
  justify-content: center;
  align-items: start;
}

.policy-meta {
  position: sticky;
  top: 120px;
  border-top: 2px solid var(--forest-700);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.policy-meta a {
  color: var(--forest-700);
  font-weight: 800;
}

.policy-content h2 {
  margin: 46px 0 14px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.policy-content a {
  color: var(--forest-700);
  font-weight: 800;
}

.about-story {
  padding: 110px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.about-story h2,
.about-values h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-story p,
.about-values p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-values {
  padding: 110px 0;
  background: var(--paper-strong);
}

.value-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  padding: 30px;
}

.value-card span {
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
}

.value-card h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.value-card p {
  margin-bottom: 0;
  font-size: 15px;
}

@keyframes orbit-float {
  0% { transform: translate3d(-12px, 8px, 0) scale(0.98); opacity: 0.34; }
  100% { transform: translate3d(14px, -10px, 0) scale(1.025); opacity: 0.72; }
}

@keyframes record-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.65; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes signal-bar {
  0% { transform: scaleY(0.65); }
  100% { transform: scaleY(2.8); }
}

@keyframes mobile-peek {
  0% { transform: translate3d(22px, 8px, 0) rotate(-9deg); }
  100% { transform: translate3d(-2px, -4px, 0) rotate(-5deg); }
}

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-download-link { display: inline-flex; }
  .nav-actions .button { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr); }
  .hero h1 { font-size: clamp(54px, 7vw, 78px); }
  .workflow-layout { grid-template-columns: 310px minmax(0, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: 36px;
  }
  .proof-card-large .proof-phone { width: min(300px, 100%); margin-top: 0; }
}

@media (max-width: 900px) {
  .menu-button { display: inline-flex; align-items: center; margin-left: auto; }
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    height: calc(100vh - 80px);
    display: none;
    align-content: start;
    gap: 0;
    background: var(--paper-strong);
    padding: 20px 24px 40px;
    overflow: auto;
  }
  .nav-links.is-open { display: grid; }
  .nav-links a {
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .nav-actions .text-link { display: none; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 64px;
  }
  .hero-copy { max-width: 720px; }
  .hero-stage { min-height: 650px; }
  .hero-plate { inset: 0 -18% 0 -22%; width: 140%; height: 100%; }
  .hero-phone { width: 300px; }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row span:nth-child(odd) { border-left: 1px solid var(--line); }
  .workflow-layout { grid-template-columns: 1fr; }
  .workflow-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-visual { min-height: 680px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-card-large { grid-column: 1 / -1; grid-row: auto; }
  .web-grid,
  .download-grid,
  .waitlist-grid,
  .about-grid,
  .about-story-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .sticky-heading { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid[data-pricing-panel="instructor"] { grid-template-columns: 1fr; max-width: none; }
  .price-card { min-height: auto; }
  .split-heading,
  .pricing-heading { display: grid; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .policy-layout { grid-template-columns: 1fr; gap: 34px; }
  .policy-meta { position: static; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1220px); }
  .nav-row { min-height: 70px; }
  .brand img { width: 35px; height: 35px; }
  .nav-links { top: 70px; height: calc(100vh - 70px); }
  .hero-grid { padding: 48px 0 36px; }
  .hero h1 { font-size: clamp(48px, 15.5vw, 66px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-downloads { grid-template-columns: 1fr; }
  .hero-stage { min-height: 540px; margin-inline: -14px; }
  .hero-plate { display: none; }
  .hero-wave { left: -23%; bottom: 6%; width: 146%; height: 165px; }
  .hero-phone { width: 250px; transform: translateX(-8%); border-width: 6px; border-radius: 36px; }
  .hero-mascot-mobile {
    position: absolute;
    z-index: 1;
    top: 20%;
    right: -5%;
    width: 158px;
    display: block;
    transform: rotate(-7deg);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
    animation: mobile-peek 4.8s var(--ease-playful) infinite alternate;
  }
  .phone-frame::before { top: 8px; height: 18px; }
  .record-story-control { left: 16px; bottom: 40px; }
  .hero-stage-caption { display: none; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 420px; height: 420px; }
  .trust-row { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-row span,
  .trust-row span:first-child,
  .trust-row span:nth-child(odd) { min-height: 56px; border: 0; border-bottom: 1px solid var(--line); }
  .trust-row span:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading h2,
  .web-section h2,
  .download-section h2,
  .about-preview h2 { font-size: clamp(40px, 12vw, 56px); }
  .workflow-tabs { grid-template-columns: 1fr; }
  .workflow-tab { min-height: 96px; }
  .workflow-visual {
    min-height: auto;
    padding: 28px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .workflow-phone { position: relative; top: auto; right: auto; width: min(238px, 72vw); }
  .workflow-copy-card { position: relative; left: auto; right: auto; bottom: auto; width: 100%; padding: 20px; }
  .workflow-copy-card h3 { font-size: 22px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card-large { grid-column: auto; display: flex; gap: 0; }
  .proof-phone { width: min(270px, 88%); bottom: auto; margin-top: 28px; }
  .proof-phone-small { width: min(220px, 80%); bottom: auto; }
  .web-section,
  .download-section,
  .waitlist-section { padding: 82px 0; }
  .web-grid,
  .download-grid,
  .waitlist-grid,
  .about-grid { gap: 40px; }
  .pricing-toggle { width: 100%; }
  .pricing-toggle button { flex: 1; }
  .plan-badge { position: static; width: fit-content; margin-bottom: 14px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-video { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .policy-hero,
  .about-hero { padding: 70px 0 52px; }
  .policy-hero h1,
  .about-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .policy-layout { padding: 60px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-wave { opacity: 0.62; }
}

.cookie-consent {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  width: min(500px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #062e28;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.cookie-consent[hidden] { display: none; }
.cookie-consent-copy { min-width: 0; }
.cookie-consent-copy strong { font-size: 14px; }
.cookie-consent-copy p { margin: 3px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 12px; line-height: 1.4; }
.cookie-consent-actions { display: flex; flex: none; align-items: center; gap: 7px; }
.cookie-consent-actions > a { color: #b9e7da; font-size: 12px; }
.cookie-consent-actions .button { min-height: 34px; padding: 7px 10px; font-size: 12px; }
.button-quiet { border-color: rgba(255, 255, 255, 0.35); background: transparent; color: #fff; }
.button-quiet:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.text-button { padding: 0; border: 0; background: transparent; color: var(--green-deep); font: inherit; text-decoration: underline; cursor: pointer; }

@media (max-width: 620px) {
  .cookie-consent { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .cookie-consent { align-items: flex-start; flex-direction: column; gap: 10px; }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions > a { margin-right: auto; }
  .cookie-consent-actions .button { flex: 1; }
}
