@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/landing-v2/fonts/golos-text-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052f, U+1c80-1c8a, U+20b4, U+2de0-2dff, U+a640-a69f, U+fe2e-fe2f;
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/landing-v2/fonts/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045f, U+0490-0491, U+04b0-04b1, U+2116;
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/landing-v2/fonts/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+2000-206f, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  src: url("/landing-v2/fonts/lora-italic-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052f, U+1c80-1c8a, U+20b4, U+2de0-2dff, U+a640-a69f, U+fe2e-fe2f;
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  src: url("/landing-v2/fonts/lora-italic-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045f, U+0490-0491, U+04b0-04b1, U+2116;
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  src: url("/landing-v2/fonts/lora-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+2000-206f, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

:root {
  --ink: #161310;
  --ink-soft: #3a352d;
  --ink-muted: #6b6459;
  --ink-faint: #746d63;
  --cream: #faf9f5;
  --sand: #f2ede1;
  --surface: #ffffff;
  --amber: #c8932b;
  --amber-deep: #936116;
  --amber-solid: #9c6716;
  --amber-solid-hover: var(--amber-deep);
  --amber-on: var(--cream);
  --line: rgba(22, 19, 16, 0.12);
  --line-dark: rgba(250, 249, 245, 0.14);
  --shadow-soft: 0 18px 42px -26px rgba(22, 19, 16, 0.4);
  --shadow-phone: 0 44px 90px -34px rgba(22, 19, 16, 0.55);
  --wrap: 1220px;
  --wrap-wide: 1280px;
  --theme-canvas: var(--cream);
  --theme-well: var(--ink);
  --theme-surface: var(--surface);
  --theme-surface-soft: var(--sand);
  --theme-surface-raised: var(--cream);
  --theme-surface-accent: var(--ink);
  --theme-text: var(--ink);
  --theme-text-soft: var(--ink-soft);
  --theme-text-muted: var(--ink-muted);
  --theme-text-faint: var(--ink-faint);
  --theme-accent-text: var(--amber-deep);
  --theme-border: var(--line);
  --theme-border-strong: rgba(22, 19, 16, 0.28);
  --theme-header: rgba(250, 249, 245, 0.86);
  --theme-neutral: var(--ink);
  --theme-neutral-on: var(--cream);
  --theme-error-surface: #f8e5df;
  --theme-error-text: #7c2e24;
  color-scheme: light;
}

html[data-theme="dark"] {
  --theme-canvas: #161310;
  --theme-well: #0f0d0b;
  --theme-surface: #211d18;
  --theme-surface-soft: #1b1712;
  --theme-surface-raised: #2b251e;
  --theme-surface-accent: #2a2116;
  --theme-text: #f5f2ec;
  --theme-text-soft: #b0a89b;
  --theme-text-muted: #9a938a;
  --theme-text-faint: #8f887d;
  --theme-accent-text: #f2ce82;
  --theme-border: rgba(245, 242, 236, 0.13);
  --theme-border-strong: rgba(245, 242, 236, 0.28);
  --theme-header: rgba(22, 19, 16, 0.88);
  --theme-neutral: #f5f2ec;
  --theme-neutral-on: #161310;
  --theme-error-surface: #3b1f1b;
  --theme-error-text: #ffb4a9;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: var(--cream);
}

/* Public typography cleanup */
.landing-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-page :where(button, input) {
  font: inherit;
}

.landing-page :where(h1, h2, h3, p, ul, ol, dl, dd) {
  margin-block: 0;
}

.landing-page :where(ul, ol) {
  padding: 0;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page button {
  color: inherit;
}

.landing-page ::selection {
  background: var(--amber-solid);
  color: var(--amber-on);
}

.landing-page :where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.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;
  top: 10px;
  left: 12px;
  z-index: 10001;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.landing-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.landing-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-ambient i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(34px);
  animation: landing-blob 24s ease-in-out infinite;
}

.landing-ambient i:nth-child(1) {
  top: -8%;
  left: -6%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(200, 147, 43, 0.16), transparent 68%);
}

.landing-ambient i:nth-child(2) {
  top: 120vh;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(200, 147, 43, 0.12), transparent 66%);
  animation-duration: 28s;
  animation-direction: reverse;
}

.landing-ambient i:nth-child(3) {
  top: 230vh;
  left: -4%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(169, 118, 27, 0.1), transparent 66%);
  animation-duration: 26s;
}

.landing-page main,
.landing-footer {
  position: relative;
  z-index: 1;
}

.landing-wrap {
  width: min(100%, var(--wrap));
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 44px);
}

.landing-wrap-wide {
  width: min(100%, var(--wrap-wide));
}

.landing-wrap-faq {
  width: min(100%, 900px);
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(22, 19, 16, 0.1);
  background: rgba(250, 249, 245, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.landing-navrow {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.landing-brand img {
  display: block;
  width: auto;
  height: 26px;
}

.landing-brand .landing-logo-dark {
  display: none;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
}

.landing-nav a,
.landing-login {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.landing-nav a::after,
.landing-login::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.landing-nav a:hover::after,
.landing-login:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.landing-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 700;
}

.landing-language-switch button {
  min-width: 25px;
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.landing-language-switch button[aria-pressed="true"] {
  color: var(--ink);
}

.landing-theme-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.landing-theme-toggle:hover {
  border-color: rgba(22, 19, 16, 0.3);
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}

.landing-theme-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.landing-theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .landing-theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .landing-theme-icon-sun {
  display: block;
}

.landing-menu-toggle,
.landing-mobile-menu {
  display: none;
}

.landing-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 25px;
  border: 1.5px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.landing-btn-small {
  min-height: 42px;
  padding: 9px 19px;
  border-radius: 999px;
  font-size: 14px;
}

.landing-btn-primary {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
  box-shadow: 0 10px 24px -16px rgba(147, 97, 22, 0.72);
  font-weight: 700;
}

.landing-page .landing-btn-primary {
  color: var(--amber-on);
}

.landing-btn-primary:hover {
  border-color: var(--amber-solid-hover);
  background: var(--amber-solid-hover);
  color: var(--amber-on);
  box-shadow: 0 14px 28px -16px rgba(147, 97, 22, 0.78);
  transform: translateY(-2px);
}

.landing-btn-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.landing-page .landing-btn-dark {
  color: var(--cream);
}

.landing-page .landing-btn-dark:not(:disabled):hover {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
}

.landing-btn-outline {
  border-color: rgba(22, 19, 16, 0.28);
  background: transparent;
  color: var(--ink);
}

.landing-btn-outline:hover {
  border-color: var(--ink);
  background: rgba(22, 19, 16, 0.04);
}

.landing-btn-primary:focus-visible,
.panel-tabs button[aria-selected="true"]:focus-visible,
.package-row[aria-checked="true"]:focus-visible {
  outline-color: var(--amber-on);
  box-shadow: 0 0 0 2px var(--amber-solid);
}

.landing-play {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  padding-left: 1px;
}

.landing-hero {
  position: relative;
  padding: clamp(42px, 6.2vw, 84px) 0 clamp(34px, 4.5vw, 58px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(22, 19, 16, 0.16);
  border-radius: 999px;
  background: rgba(200, 147, 43, 0.08);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero-kicker > span:first-child {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--amber);
  animation: landing-pulse 2.4s infinite;
}

.hero-copy h1 {
  max-width: none;
  margin-top: 0;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.landing-accent {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.hero-accent {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  padding-right: 8px;
  white-space: nowrap;
}

.hero-accent svg {
  position: absolute;
  bottom: -13px;
  left: -4px;
  width: calc(100% + 8px);
  height: 22px;
  overflow: visible;
}

.hero-accent path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: landing-draw 1.1s 0.5s ease forwards;
}

.hero-lead {
  max-width: 540px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.42vw, 19px);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 26px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}

.hero-trust i {
  color: var(--amber);
  font-style: normal;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
}

.hero-handnote {
  position: absolute;
  top: -4px;
  right: max(0px, calc(50% - 178px));
  z-index: 5;
  padding: 4px 10px 5px;
  border: 1px solid rgba(22, 19, 16, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(9px) saturate(1.08);
  backdrop-filter: blur(9px) saturate(1.08);
  box-shadow: 0 8px 20px -13px rgba(22, 19, 16, 0.52);
  color: var(--amber-deep);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  transform: rotate(-4deg);
}

.phone {
  position: relative;
  width: min(300px, calc(100vw - 56px));
  animation: landing-float 6.5s ease-in-out infinite;
}

.phone-screen {
  aspect-ratio: 30 / 62;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: var(--shadow-phone);
}

.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 35px;
}

.reading-badge {
  position: absolute;
  right: -40px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 10px 13px;
  border: 1px solid rgba(22, 19, 16, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(10px) saturate(1.06);
  backdrop-filter: blur(10px) saturate(1.06);
  box-shadow: 0 18px 40px -18px rgba(22, 19, 16, 0.4);
  animation: landing-float-badge 7s ease-in-out infinite;
}

.reading-badge span {
  color: var(--ink-muted);
  font-size: 11px;
}

.reading-badge strong {
  margin-top: 1px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-tabs button {
  min-height: 38px;
  padding: 8px 15px;
  border: 1.5px solid rgba(22, 19, 16, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.landing-tabs button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.landing-tabs button[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
}

.hero-tabs {
  justify-content: center;
  margin-top: 20px;
}

.demo-caption {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 12.5px;
  text-align: center;
}

.chat-marquee {
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid rgba(22, 19, 16, 0.1);
  background: rgba(22, 19, 16, 0.03);
}

.chat-marquee-track {
  display: flex;
  width: max-content;
  animation: landing-marquee 44s linear infinite;
  will-change: transform;
}

.chat-marquee-group {
  display: flex;
  flex: none;
  gap: 14px;
  padding-right: 14px;
}

.chat-marquee-group span {
  color: #8a8275;
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  white-space: nowrap;
}

.landing-section {
  padding: clamp(64px, 8.4vw, 116px) 0;
}

.landing-dark {
  background: var(--ink);
  color: var(--cream);
}

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

.section-heading-wide {
  max-width: 860px;
}

.pricing-section .section-heading-wide {
  max-width: 1000px;
}

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

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.section-eyebrow-plain {
  display: block;
  color: var(--amber);
}

.faq-section .section-eyebrow-plain {
  color: var(--amber-deep);
}

.section-heading h2,
.launch-heading h2 {
  margin-top: 18px;
  font-size: clamp(32px, 4.1vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.section-heading h2 em,
.launch-heading h2 em {
  color: inherit;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.section-heading-dark h2 em,
.launch-heading h2 em {
  color: var(--amber);
}

.section-heading > p:last-child:not(.section-eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(250, 249, 245, 0.66);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.heading-no-eyebrow h2 {
  margin-top: 0;
}

.product-section {
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 96px) clamp(44px, 5vw, 64px);
}

.story-wrap {
  width: min(100%, 1180px);
}

.section-heading.story-heading > p:last-child:not(.section-eyebrow) {
  max-width: 560px;
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 140px);
  margin-top: clamp(48px, 5vw, 72px);
}

.story-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  min-height: 588px;
}

.story-number {
  position: absolute;
  top: 50%;
  left: -2%;
  z-index: 0;
  color: rgba(200, 147, 43, 0.14);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(180px, 30vw, 340px);
  font-weight: 600;
  line-height: 0.7;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  user-select: none;
  will-change: transform;
}

.story-row-reverse .story-number {
  right: -2%;
  left: auto;
}

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

.story-copy > i {
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 3px;
  background: var(--amber);
}

.story-copy h3 {
  margin-top: 22px;
  font-size: clamp(25px, 2.65vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.story-copy p {
  max-width: 430px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
}

.story-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.story-phone {
  width: min(280px, 78vw);
  overflow: hidden;
  border: 9px solid var(--ink);
  border-radius: 40px;
  background: var(--ink);
  box-shadow: 0 40px 80px -34px rgba(22, 19, 16, 0.5);
  transform: rotate(-2.5deg);
}

.story-phone-reverse {
  transform: rotate(2.5deg);
}

.story-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 31px;
}

.story-row-reverse .story-copy {
  grid-column: 2;
  grid-row: 1;
}

.story-row-reverse .story-visual {
  grid-column: 1;
  grid-row: 1;
}

.product-statement {
  max-width: 680px;
  margin-top: clamp(56px, 7vw, 90px);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(19px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.35;
}

.product-statement em {
  color: var(--amber-deep);
  font-style: inherit;
}

.comparison-scroll {
  margin-top: 48px;
  overflow-x: auto;
  border-top: 1px solid rgba(250, 249, 245, 0.16);
  scrollbar-color: var(--amber) rgba(250, 249, 245, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table :where(th, td) {
  padding: 21px 18px 21px 0;
  border-bottom: 1px solid rgba(250, 249, 245, 0.1);
  text-align: left;
  vertical-align: middle;
}

.comparison-table :where(th, td):first-child {
  width: 35%;
}

.comparison-table :where(th, td):nth-child(2) {
  width: 30%;
}

.comparison-table :where(th, td):nth-child(3) {
  width: 35%;
}

.comparison-table thead th {
  color: rgba(250, 249, 245, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table thead th:last-child {
  color: var(--amber);
}

.comparison-table tbody th,
.comparison-table tbody td:last-child {
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
}

.comparison-table tbody td:nth-child(2) {
  color: rgba(250, 249, 245, 0.6);
  font-size: 15px;
}

.comparison-table td small {
  display: none;
}

.comparison-note {
  max-width: 860px;
  margin-top: 30px;
  color: rgba(250, 249, 245, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.1vw, 26px);
  margin-top: 52px;
}

.growth-parallax {
  align-self: start;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.growth-card {
  min-height: 282px;
  padding: 30px 26px;
  border: 1px solid rgba(22, 19, 16, 0.1);
  border-radius: 22px;
  background: var(--sand);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.growth-parallax:nth-child(even) .growth-card {
  margin-top: clamp(0px, 3vw, 36px);
}

.growth-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.growth-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.growth-card > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.growth-card > div span {
  color: var(--amber);
  font-family: "Lora", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 0.8;
}

.growth-card > div b {
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.growth-card-dark > div b {
  color: var(--amber);
}

.growth-card h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
}

.growth-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

.growth-card-dark p {
  color: rgba(250, 249, 245, 0.72);
}

.panel-tabs {
  margin-top: 34px;
}

.panel-tabs button {
  border-color: rgba(250, 249, 245, 0.2);
  color: rgba(250, 249, 245, 0.72);
}

.panel-tabs button:hover {
  border-color: var(--amber);
  color: var(--cream);
}

.panel-tabs button[aria-selected="true"] {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
  font-weight: 800;
}

.browser-frame {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(250, 249, 245, 0.14);
  border-radius: 16px;
  background: #221e19;
  box-shadow: 0 50px 100px -46px rgba(0, 0, 0, 0.85);
}

.browser-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #221e19;
}

.browser-bar i {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 50%;
  background: #4a443b;
}

.browser-bar span {
  margin-left: 14px;
  overflow: hidden;
  color: rgba(250, 249, 245, 0.68);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-bar b {
  font-weight: inherit;
}

.browser-screen {
  overflow: hidden;
  background: var(--cream);
  line-height: 0;
  transition: aspect-ratio 0.25s ease;
}

.browser-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.browser-screen img.is-switching,
.phone-screen img.is-switching {
  opacity: 0.2;
}

.browser-screen img,
.phone-screen img {
  transition: opacity 0.18s ease;
}

.panel-caption {
  margin-top: 14px;
  color: rgba(250, 249, 245, 0.68);
  font-size: 12.5px;
}

.panel-scroll-hint {
  display: none;
}

.panel-caption a {
  display: inline-block;
  margin-left: 10px;
  color: var(--cream);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(200, 147, 43, 0.75);
  text-underline-offset: 3px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: 48px;
}

.case-card {
  min-height: 390px;
  padding: 30px 28px;
  border: 1px solid rgba(22, 19, 16, 0.12);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 14px 30px -22px rgba(22, 19, 16, 0.4);
  transform: rotate(-0.7deg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.case-card:nth-child(2) {
  margin-top: clamp(0px, 2.6vw, 32px);
  transform: rotate(0.7deg);
}

.case-card:hover {
  box-shadow: 0 24px 44px -25px rgba(22, 19, 16, 0.5);
  transform: rotate(0) translateY(-5px);
}

.case-card > span {
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 16px;
  font-family: "Lora", Georgia, serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.case-card dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 21px;
}

.case-card dl div {
  position: relative;
  padding-left: 19px;
}

.case-card dl div::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.case-card dl div:nth-child(2)::before {
  background: var(--ink);
}

.case-card dt {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card dd {
  margin-top: 3px;
  margin-inline-start: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.5;
}

.launch-section {
  padding-block: clamp(64px, 7vw, 100px);
  border-block: 1px solid rgba(22, 19, 16, 0.08);
  background: var(--sand);
}

.launch-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.launch-heading h2 {
  margin-top: 0;
}

.launch-heading p {
  max-width: 600px;
  flex: 1 1 420px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 48px;
  list-style: none;
}

.launch-steps li > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.launch-steps li > div span {
  display: flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 19px;
  font-weight: 800;
}

.launch-steps li:first-child > div span {
  background: var(--amber-solid);
  color: var(--amber-on);
}

.launch-steps li > div i {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(22, 19, 16, 0.25) 0 6px, transparent 6px 12px);
}

.launch-steps h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
}

.launch-steps p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 44px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(22, 19, 16, 0.14);
  border-radius: 16px;
  background: var(--cream);
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  flex: none;
  color: var(--amber);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.faq-list summary b {
  flex: 1;
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 700;
  text-align: left;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: none;
  transition: transform 0.3s ease;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 11px;
  left: 3px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: background 0.3s ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after {
  background: var(--amber);
}

.faq-list details > p {
  padding: 0 58px 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  animation: faq-open 0.3s ease both;
}

.catalog-note {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid rgba(200, 147, 43, 0.35);
  border-radius: 14px;
  background: rgba(200, 147, 43, 0.12);
}

.catalog-note[hidden] {
  display: none;
}

.catalog-note strong {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--amber-solid);
  color: var(--amber-on);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-note span {
  color: rgba(250, 249, 245, 0.85);
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: 28px;
}

.pricing-included {
  padding: 32px 28px;
  border: 1px solid rgba(250, 249, 245, 0.12);
  border-radius: 22px;
  background: rgba(250, 249, 245, 0.05);
}

.pricing-included h3,
.pricing-selector h3 {
  font-size: 20px;
  font-weight: 800;
}

.pricing-included ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  list-style: none;
}

.pricing-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(250, 249, 245, 0.85);
  font-size: 15.5px;
  line-height: 1.5;
}

.pricing-included li > span {
  color: var(--amber);
  font-weight: 800;
}

.pricing-included li b {
  color: var(--cream);
  font-weight: 700;
}

.pricing-trial {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 249, 245, 0.12);
}

.pricing-trial strong {
  color: var(--amber);
  font-size: 15px;
}

.pricing-trial span {
  color: rgba(250, 249, 245, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-selector {
  padding: 32px 28px;
  border-radius: 22px;
  background: var(--cream);
  color: var(--ink);
}

.pricing-selector > p:first-of-type {
  margin-top: 7px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.package-board {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.package-row {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 17px;
  border: 1.5px solid rgba(22, 19, 16, 0.14);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.package-row:hover {
  border-color: var(--ink);
}

.package-row[aria-checked="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.package-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
}

.package-label small {
  overflow: hidden;
  opacity: 0.68;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-price {
  flex: none;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.package-price small {
  display: block;
  margin-top: 2px;
  opacity: 0.62;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

.pricing-empty-row {
  padding: 17px;
  border: 1px dashed rgba(22, 19, 16, 0.22);
  border-radius: 12px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-empty-row strong {
  color: var(--ink);
}

.pricing-cta {
  width: 100%;
  margin-top: 22px;
}

.pricing-foot {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 13px;
  text-align: center;
}

.cta-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 28px;
  background: var(--amber-solid);
  color: var(--amber-on);
}

.cta-rings {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.16;
}

.cta-rings circle {
  fill: none;
  stroke: rgba(250, 249, 245, 0.38);
  stroke-width: 2;
}

.cta-copy,
.signup-card {
  position: relative;
}

.cta-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.cta-copy p {
  max-width: 460px;
  margin-top: 18px;
  color: var(--amber-on);
  font-size: 17px;
  line-height: 1.55;
}

.cta-copy div {
  margin-top: 20px;
  color: var(--amber-on);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.signup-card {
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3vw, 34px);
  border-radius: 20px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(22, 19, 16, 0.5);
}

.landing-signup-status {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--sand);
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.4;
}

.landing-signup-status[hidden] {
  display: none;
}

.landing-signup-status.is-error {
  background: #f8e5df;
  color: #7c2e24;
}

.signup-card > label:not(.landing-check) {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
}

.signup-card > label:not(.landing-check):not(:first-of-type) {
  margin-top: 18px;
}

.signup-card > input:not([type="hidden"]) {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 12px 15px;
  border: 1.5px solid rgba(22, 19, 16, 0.18);
  border-radius: 12px;
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
}

.signup-card > input:not([type="hidden"]):focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 147, 43, 0.16);
}

.promo-disclosure {
  margin-top: 16px;
}

.promo-disclosure summary {
  width: fit-content;
  color: var(--amber-deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.promo-disclosure summary::-webkit-details-marker {
  display: none;
}

.promo-disclosure > label {
  display: block;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
}

.promo-disclosure > input {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 12px 15px;
  border: 1.5px solid rgba(22, 19, 16, 0.18);
  border-radius: 12px;
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
}

.promo-disclosure > input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 147, 43, 0.16);
}

.signup-card input:disabled,
.signup-card button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.landing-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.45;
}

.landing-check input {
  width: 17px;
  height: 17px;
  flex: none;
  margin: 1px 0 0;
  accent-color: var(--amber);
}

.landing-check a {
  color: var(--amber-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.signup-card > button {
  width: 100%;
  margin-top: 20px;
}

.landing-footer {
  border-top: 1px solid rgba(22, 19, 16, 0.1);
  background: var(--sand);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.1fr;
  gap: 36px;
  padding-block: clamp(48px, 6vw, 72px);
}

.landing-brand-footer {
  color: var(--ink);
}

.landing-brand-footer img {
  height: 24px;
}

.footer-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.footer-grid > div:first-child {
  gap: 16px;
}

.footer-grid > div:first-child p {
  max-width: 300px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.footer-grid h2 {
  margin-bottom: 6px;
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  color: var(--ink-soft);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(22, 19, 16, 0.1);
}

.footer-bottom > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-block: 20px;
  color: var(--ink-faint);
  font-size: 13px;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 450;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mobile-sticky-cta[hidden] {
  display: none;
}

.mobile-sticky-cta .landing-btn {
  width: 100%;
}

.noscript-notice {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 10000;
  padding: 14px;
  border: 1px solid var(--amber);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.noscript-notice a {
  text-decoration: underline;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-visible {
  animation: landing-reveal 0.76s var(--reveal-delay, 0ms) cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes landing-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes landing-float-badge {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(12px);
  }
}

@keyframes landing-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes landing-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 147, 43, 0.55);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 147, 43, 0);
  }
}

@keyframes landing-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes landing-blob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, -3%, 0) scale(1.08);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .landing-navrow {
    gap: 20px;
  }

  .landing-nav {
    gap: 15px;
    margin-left: 0;
  }

  .landing-actions {
    gap: 10px;
  }

  .landing-login {
    display: none;
  }

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

  .growth-parallax:nth-child(2) .growth-card {
    margin-top: 28px;
  }

  .growth-parallax:nth-child(4) .growth-card {
    margin-top: 28px;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 64px;
  }

  .landing-wrap {
    padding-inline: 18px;
  }

  .landing-navrow {
    min-height: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

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

  .hero-visual {
    justify-self: center;
  }

  .landing-navrow > .landing-nav,
  .landing-navrow > .landing-actions {
    display: none;
  }

  .landing-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .landing-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .landing-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .landing-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .landing-mobile-menu {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 4px 18px 18px;
  }

  .landing-mobile-menu:not([hidden]) {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    border-top: 1px solid var(--line);
  }

  .landing-mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 20px;
    padding-top: 14px;
  }

  .landing-mobile-menu nav a {
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
  }

  .landing-mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
  }

  .landing-mobile-actions > a:not(.landing-btn) {
    font-size: 14px;
    font-weight: 600;
  }

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

  .case-card:nth-child(2) {
    margin-top: 28px;
  }

  .case-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .pricing-grid,
  .cta-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-copy {
    max-width: 620px;
  }
}

@media (max-width: 800px) {
  .story-list {
    gap: 92px;
  }

  .story-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    min-height: 0;
  }

  .story-row-reverse .story-copy,
  .story-row-reverse .story-visual {
    grid-column: 1;
  }

  .story-row-reverse .story-copy {
    grid-row: 1;
  }

  .story-row-reverse .story-visual {
    grid-row: 2;
  }

  .story-copy {
    max-width: 600px;
  }

  .story-number,
  .story-row-reverse .story-number {
    top: 23%;
    right: -3%;
    left: auto;
    font-size: clamp(170px, 46vw, 260px);
    transform: translate3d(0, calc(-50% + var(--parallax-y, 0px)), 0);
  }
}

@media (max-width: 680px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid > * {
    min-width: 0;
  }

  .landing-mobile-menu:not([hidden]) {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .landing-mobile-actions {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10.7vw, 52px);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .landing-btn {
    width: 100%;
  }

  .growth-grid,
  .case-grid,
  .launch-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .growth-card,
  .case-card {
    min-height: 0;
  }

  .growth-parallax:nth-child(2) .growth-card,
  .growth-parallax:nth-child(4) .growth-card,
  .case-card:nth-child(2),
  .case-card:nth-child(3) {
    grid-column: auto;
    width: auto;
    margin-top: 0;
    transform: none;
  }

  .comparison-scroll {
    overflow: visible;
    border-top: 0;
  }

  .comparison-table {
    display: block;
    min-width: 0;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .comparison-table tbody {
    display: grid;
    gap: 12px;
  }

  .comparison-table tbody tr {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(250, 249, 245, 0.13);
    border-radius: 16px;
    background: rgba(250, 249, 245, 0.04);
  }

  .comparison-table :where(th, td),
  .comparison-table :where(th, td):first-child,
  .comparison-table :where(th, td):nth-child(2),
  .comparison-table :where(th, td):nth-child(3) {
    display: block;
    width: auto;
    padding: 0;
    border: 0;
  }

  .comparison-table tbody th {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(250, 249, 245, 0.12);
    font-size: 17px;
  }

  .comparison-table tbody td {
    display: grid;
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    font-size: 15px;
    line-height: 1.45;
  }

  .comparison-table tbody td:last-child {
    font-size: 15px;
  }

  .comparison-table td small {
    display: block;
    color: rgba(250, 249, 245, 0.46);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .comparison-table td:last-child small {
    color: var(--amber);
  }

  .browser-screen {
    overflow-x: auto;
    scrollbar-color: var(--amber) rgba(250, 249, 245, 0.08);
  }

  .browser-screen img {
    width: 900px;
    max-width: none;
  }

  .panel-caption {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    line-height: 1.45;
  }

  .panel-caption a {
    margin: 3px 0 0;
  }

  .panel-scroll-hint {
    display: block;
    color: rgba(250, 249, 245, 0.66);
  }

  .launch-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-heading p {
    flex: none;
  }

  .launch-steps li > div i {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom > div {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .landing-wrap {
    padding-inline: 14px;
  }

  .landing-brand {
    font-size: 20px;
  }

  .landing-brand img {
    height: 23px;
  }

  .landing-mobile-menu {
    padding-inline: 14px;
  }

  .landing-mobile-actions .landing-btn {
    width: 100%;
  }

  .landing-hero {
    padding-top: 34px;
  }

  .hero-kicker {
    width: 100%;
    border-radius: 14px;
    line-height: 1.3;
  }

  .hero-copy h1 {
    font-size: clamp(33px, 10.2vw, 44px);
  }

  .hero-accent {
    white-space: normal;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .hero-trust i {
    display: none;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-handnote {
    right: 0;
    font-size: 14px;
  }

  .phone {
    width: min(300px, calc(100vw - 42px));
  }

  .reading-badge {
    right: -8px;
  }

  .landing-tabs {
    width: 100%;
  }

  .landing-tabs button {
    flex: 1 1 auto;
    padding-inline: 11px;
    font-size: 12.5px;
  }

  .landing-section {
    padding-block: 60px;
  }

  .section-heading h2,
  .launch-heading h2 {
    font-size: clamp(31px, 9.2vw, 42px);
  }

  .growth-card,
  .case-card,
  .pricing-included,
  .pricing-selector {
    padding: 26px 22px;
  }

  .comparison-table {
    min-width: 0;
  }

  .browser-bar span {
    margin-left: 4px;
  }

  .faq-list summary {
    padding-inline: 16px;
  }

  .faq-list details > p {
    padding: 0 18px 20px 48px;
  }

  .package-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-price {
    text-align: left;
  }

  .cta-shell {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .signup-card {
    padding: 23px 18px;
  }
}

/* Dark theme keeps the physical ink/cream brand pair intact and themes only semantic surfaces. */
html[data-theme="dark"],
html[data-theme="dark"] .landing-page {
  background: var(--theme-canvas);
  color: var(--theme-text);
}

html[data-theme="dark"] .landing-grain {
  opacity: 0.035;
  filter: invert(1);
  mix-blend-mode: soft-light;
}

html[data-theme="dark"] .landing-topbar {
  border-bottom-color: var(--theme-border);
  background: var(--theme-header);
}

html[data-theme="dark"] .landing-brand .landing-logo-light {
  display: none;
}

html[data-theme="dark"] .landing-brand .landing-logo-dark {
  display: block;
}

html[data-theme="dark"] .landing-nav a,
html[data-theme="dark"] .landing-login,
html[data-theme="dark"] .landing-mobile-menu nav a {
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .landing-nav a:hover,
html[data-theme="dark"] .landing-login:hover,
html[data-theme="dark"] .landing-mobile-menu nav a:hover {
  color: var(--theme-text);
}

html[data-theme="dark"] .landing-language-switch {
  color: var(--theme-text-faint);
}

html[data-theme="dark"] .landing-language-switch button[aria-pressed="true"] {
  color: var(--theme-text);
}

html[data-theme="dark"] .landing-theme-toggle {
  border-color: var(--theme-border);
  background: rgba(245, 242, 236, 0.05);
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .landing-theme-toggle:hover,
html[data-theme="dark"] .landing-theme-toggle[aria-pressed="true"] {
  border-color: rgba(200, 147, 43, 0.42);
  background: rgba(200, 147, 43, 0.12);
  color: var(--amber);
}

html[data-theme="dark"] .landing-menu-toggle {
  border-color: var(--theme-border);
}

html[data-theme="dark"] .landing-menu-toggle span {
  background: var(--theme-text);
}

html[data-theme="dark"] .landing-mobile-menu:not([hidden]) {
  border-top-color: var(--theme-border);
}

html[data-theme="dark"] .landing-page .landing-btn-dark {
  border-color: var(--theme-neutral);
  background: var(--theme-neutral);
  color: var(--theme-neutral-on);
}

html[data-theme="dark"] .landing-page .landing-btn-dark:not(:disabled):hover {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
}

html[data-theme="dark"] .landing-btn-outline {
  border-color: var(--theme-border-strong);
  background: transparent;
  color: var(--theme-text);
}

html[data-theme="dark"] .landing-btn-outline:hover {
  border-color: var(--theme-text);
  background: rgba(245, 242, 236, 0.08);
}

html[data-theme="dark"] .landing-play {
  background: var(--theme-neutral);
  color: var(--theme-neutral-on);
}

html[data-theme="dark"] .hero-lead,
html[data-theme="dark"] .hero-trust,
html[data-theme="dark"] .section-heading.story-heading > p:last-child:not(.section-eyebrow),
html[data-theme="dark"] .story-copy p,
html[data-theme="dark"] .growth-card p,
html[data-theme="dark"] .case-card dd,
html[data-theme="dark"] .launch-heading p,
html[data-theme="dark"] .launch-steps p,
html[data-theme="dark"] .faq-list details > p {
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .reading-badge {
  color: var(--ink);
}

html[data-theme="dark"] .reading-badge span {
  color: var(--ink-muted);
}

html[data-theme="dark"] .phone-screen {
  box-shadow:
    0 0 0 1px rgba(245, 242, 236, 0.12),
    var(--shadow-phone);
}

html[data-theme="dark"] .landing-tabs button {
  border-color: rgba(245, 242, 236, 0.2);
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .landing-tabs button:hover {
  border-color: var(--theme-text);
  color: var(--theme-text);
}

html[data-theme="dark"] .landing-tabs button[aria-selected="true"] {
  border-color: var(--theme-neutral);
  background: var(--theme-neutral);
  color: var(--theme-neutral-on);
}

html[data-theme="dark"] .panel-tabs button:hover {
  border-color: var(--amber);
  color: var(--cream);
}

html[data-theme="dark"] .panel-tabs button[aria-selected="true"] {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
}

html[data-theme="dark"] .demo-caption {
  color: var(--theme-text-faint);
}

html[data-theme="dark"] .chat-marquee {
  border-block-color: rgba(245, 242, 236, 0.1);
  background: rgba(245, 242, 236, 0.035);
}

html[data-theme="dark"] .chat-marquee-group span {
  color: var(--theme-text-muted);
}

html[data-theme="dark"] .landing-dark {
  background: var(--theme-well);
  color: var(--cream);
}

html[data-theme="dark"] .section-eyebrow,
html[data-theme="dark"] .faq-section .section-eyebrow-plain,
html[data-theme="dark"] .product-statement em,
html[data-theme="dark"] .growth-card > div b,
html[data-theme="dark"] .case-card > span,
html[data-theme="dark"] .promo-disclosure summary,
html[data-theme="dark"] .landing-check a,
html[data-theme="dark"] .footer-grid h2 {
  color: var(--theme-accent-text);
}

html[data-theme="dark"] .story-number {
  color: rgba(200, 147, 43, 0.19);
}

html[data-theme="dark"] .story-phone {
  box-shadow:
    0 0 0 1px rgba(245, 242, 236, 0.12),
    0 40px 80px -34px rgba(0, 0, 0, 0.88);
}

html[data-theme="dark"] .growth-card,
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .faq-list details {
  border-color: var(--theme-border);
  background: var(--theme-surface);
  color: var(--theme-text);
  box-shadow: 0 20px 45px -30px rgba(0, 0, 0, 0.85);
}

html[data-theme="dark"] .growth-card:hover,
html[data-theme="dark"] .case-card:hover {
  box-shadow: 0 26px 52px -28px rgba(0, 0, 0, 0.95);
}

html[data-theme="dark"] .growth-card-dark {
  border-color: rgba(200, 147, 43, 0.3);
  background: var(--theme-surface-accent);
}

html[data-theme="dark"] .growth-card-dark p {
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .case-card dt {
  color: var(--theme-text-muted);
}

html[data-theme="dark"] .case-card dl div:nth-child(2)::before {
  background: var(--theme-text);
}

html[data-theme="dark"] .launch-section {
  border-block-color: rgba(245, 242, 236, 0.1);
  background: var(--theme-surface-soft);
}

html[data-theme="dark"] .launch-steps li > div span {
  background: var(--theme-neutral);
  color: var(--theme-neutral-on);
}

html[data-theme="dark"] .launch-steps li:first-child > div span {
  background: var(--amber-solid);
  color: var(--amber-on);
}

html[data-theme="dark"] .launch-steps li > div i {
  background: repeating-linear-gradient(90deg, rgba(245, 242, 236, 0.25) 0 6px, transparent 6px 12px);
}

html[data-theme="dark"] .faq-list summary i::before,
html[data-theme="dark"] .faq-list summary i::after {
  background: var(--theme-text);
}

html[data-theme="dark"] .faq-list details[open] summary i::before,
html[data-theme="dark"] .faq-list details[open] summary i::after {
  background: var(--amber);
}

html[data-theme="dark"] .pricing-selector {
  border: 1px solid var(--theme-border);
  background: var(--theme-surface);
  color: var(--theme-text);
}

html[data-theme="dark"] .pricing-selector > p:first-of-type,
html[data-theme="dark"] .pricing-foot,
html[data-theme="dark"] .pricing-empty-row {
  color: var(--theme-text-muted);
}

html[data-theme="dark"] .package-row {
  border-color: rgba(245, 242, 236, 0.16);
  color: var(--theme-text);
}

html[data-theme="dark"] .package-row:hover {
  border-color: var(--theme-text);
}

html[data-theme="dark"] .package-row[aria-checked="true"] {
  border-color: var(--amber-solid);
  background: var(--amber-solid);
  color: var(--amber-on);
}

html[data-theme="dark"] .pricing-empty-row {
  border-color: rgba(245, 242, 236, 0.22);
}

html[data-theme="dark"] .pricing-empty-row strong {
  color: var(--theme-text);
}

html[data-theme="dark"] .signup-card {
  background: var(--theme-surface);
  color: var(--theme-text);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.9);
  color-scheme: dark;
}

html[data-theme="dark"] .landing-signup-status {
  background: var(--theme-surface-raised);
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .landing-signup-status.is-error {
  background: var(--theme-error-surface);
  color: var(--theme-error-text);
}

html[data-theme="dark"] .signup-card > label:not(.landing-check),
html[data-theme="dark"] .promo-disclosure > label {
  color: var(--theme-text-muted);
}

html[data-theme="dark"] .signup-card > input:not([type="hidden"]),
html[data-theme="dark"] .promo-disclosure > input {
  border-color: rgba(245, 242, 236, 0.18);
  background: var(--theme-canvas);
  color: var(--theme-text);
  caret-color: var(--theme-text);
}

html[data-theme="dark"] .signup-card input::placeholder {
  color: var(--theme-text-faint);
  opacity: 1;
}

html[data-theme="dark"] .signup-card input:-webkit-autofill,
html[data-theme="dark"] .signup-card input:-webkit-autofill:hover,
html[data-theme="dark"] .signup-card input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--theme-canvas) inset;
  -webkit-text-fill-color: var(--theme-text);
  caret-color: var(--theme-text);
}

html[data-theme="dark"] .landing-check {
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .landing-footer {
  border-top-color: rgba(245, 242, 236, 0.1);
  background: var(--theme-surface-soft);
  color: var(--theme-text);
}

html[data-theme="dark"] .footer-grid > div,
html[data-theme="dark"] .footer-grid a,
html[data-theme="dark"] .footer-grid > div:first-child p {
  color: var(--theme-text-soft);
}

html[data-theme="dark"] .footer-grid a:hover {
  color: var(--theme-text);
}

html[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(245, 242, 236, 0.1);
}

html[data-theme="dark"] .footer-bottom > div {
  color: var(--theme-text-faint);
}

html[data-theme="dark"] .mobile-sticky-cta {
  border-top-color: var(--theme-border);
  background: rgba(22, 19, 16, 0.94);
}

html[data-theme="dark"] .noscript-notice {
  background: var(--theme-surface);
  color: var(--theme-text);
}

html[data-theme="dark"] .skip-link {
  background: var(--theme-neutral);
  color: var(--theme-neutral-on);
}

@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;
  }

  .chat-marquee-track {
    transform: none !important;
  }

  .reveal-pending {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    --parallax-y: 0px !important;
  }

  .story-number {
    transform: translate3d(0, -50%, 0) !important;
  }

  .story-visual,
  .growth-parallax {
    transform: none !important;
  }
}

@media print {
  html[data-theme="dark"] {
    --theme-canvas: var(--cream);
    --theme-well: var(--ink);
    --theme-surface: var(--surface);
    --theme-surface-soft: var(--sand);
    --theme-surface-raised: var(--cream);
    --theme-surface-accent: var(--ink);
    --theme-text: var(--ink);
    --theme-text-soft: var(--ink-soft);
    --theme-text-muted: var(--ink-muted);
    --theme-text-faint: var(--ink-faint);
    --theme-accent-text: var(--amber-deep);
    --theme-border: var(--line);
    --theme-border-strong: rgba(22, 19, 16, 0.28);
    --theme-neutral: var(--ink);
    --theme-neutral-on: var(--cream);
    color-scheme: light;
  }

  html[data-theme="dark"] .landing-brand .landing-logo-light {
    display: block;
  }

  html[data-theme="dark"] .landing-brand .landing-logo-dark {
    display: none;
  }

  .landing-topbar,
  .mobile-sticky-cta,
  .landing-grain {
    display: none !important;
  }

  .landing-section {
    break-inside: avoid;
  }
}
