/* ============================================================
   Lumis — marketing site
   Light, airy, aside.com-style. One typeface: Inter Tight.
   Palette: #F5F4F0 bg · #001219 ink · #0A9396 accent
   ============================================================ */

:root {
  --bg: #F5F4F0;
  --ink: #001219;
  --ink-soft: rgba(0, 18, 25, 0.62);
  --ink-faint: rgba(0, 18, 25, 0.4);
  --accent: #0A9396;
  --hairline: rgba(0, 0, 0, 0.08);
  --hairline-soft: rgba(0, 0, 0, 0.06);
  --placeholder: #E5E5E5;
  --placeholder-text: #8a8a86;
  --white: #ffffff;

  --font-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;

  --radius-card: 28px;
  --radius-panel: 18px;
  --radius-pill: 999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* layered shadows — soft, low-opacity, premium depth */
  --shadow-card: 0 1px 2px rgba(0, 18, 25, 0.04), 0 8px 24px rgba(0, 18, 25, 0.05);
  --shadow-lift: 0 2px 4px rgba(0, 18, 25, 0.05), 0 20px 44px rgba(0, 18, 25, 0.09);
  --shadow-float: 0 2px 6px rgba(0, 0, 0, 0.05), 0 30px 60px rgba(0, 0, 0, 0.12);

  /* noticeably more spacious than a standard SaaS page */
  --section-pad: clamp(88px, 14vw, 220px);
  --container: 1240px;
  --gutter: clamp(24px, 7vw, 96px);
  --nav-height: 94px; /* floating bar (64px) + top offset */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(10, 147, 150, 0.22); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

[id] { scroll-margin-top: calc(var(--nav-height) + 24px); }

/* ---------- type ---------- */

h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }

.h-hero {
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.h-section {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.1;
}

.h-quote {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.15;
}

.sub {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  font-weight: 400;
}

/* ---------- buttons — 3D liquid glass ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 17px 32px;
  border-radius: 18px;
  cursor: pointer;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.28) 42%,
    rgba(255, 255, 255, 0.12) 58%,
    rgba(255, 255, 255, 0.38) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(0, 18, 25, 0.05),
    0 2px 4px rgba(0, 18, 25, 0.06),
    0 12px 28px rgba(0, 18, 25, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -10px 18px rgba(0, 18, 25, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(0, 18, 25, 0.05),
    0 4px 8px rgba(0, 18, 25, 0.08),
    0 18px 38px rgba(0, 18, 25, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -10px 18px rgba(0, 18, 25, 0.05);
}
.btn:active { transform: translateY(0) scale(0.99); }
.btn--small { padding: 12px 22px; font-size: 15px; border-radius: 15px; }

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   Navigation — transparent over hero, frosted glass on scroll
   ============================================================ */

/* floating liquid-glass bar: clear glass over the hero photo,
   smoothly turning white once the page scrolls into the light sections */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--gutter) 0;
  background: transparent;
  pointer-events: none;
}

.nav__inner {
  pointer-events: auto;
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  height: 64px;
  padding: 0 clamp(14px, 1.6vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 18, 25, 0.06);
  transition: background-color 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.nav.is-scrolled .nav__inner,
.nav--solid .nav__inner,
.nav.is-open .nav__inner {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--hairline-soft);
  box-shadow: 0 8px 24px rgba(0, 18, 25, 0.08);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 19.5px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

/* the mark is wider than tall — size by height so the pair reads as one unit */
.nav__logo img { height: 23px; width: auto; display: block; transform: translateY(0.5px); }
.nav__logo span { display: block; }

/* the three nav items are glass buttons, centered in the bar */
.nav__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 19px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.66) 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0.32) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(0, 18, 25, 0.04),
    0 2px 5px rgba(0, 18, 25, 0.06),
    0 8px 18px rgba(0, 18, 25, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -7px 12px rgba(0, 18, 25, 0.04);
  transition: transform 200ms ease, filter 200ms ease, color 200ms ease;
}

.nav__link:hover, .nav__link[aria-expanded="true"] {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: var(--accent);
}

/* the nav CTA inherits the same liquid-glass recipe from .btn */
.nav__cta { flex-shrink: 0; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* ---------- simple dropdown card ---------- */

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 18, 25, 0.12);
  padding: 26px 28px;
  opacity: 0;
  transform: translate(-50%, -6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms var(--ease-out-expo), transform 150ms var(--ease-out-expo), visibility 0s linear 150ms;
}

.dropdown.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 150ms var(--ease-out-expo), transform 150ms var(--ease-out-expo);
}

.dropdown ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.dropdown a {
  display: block;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color 150ms ease;
}

.dropdown a:hover { color: var(--accent); }

/* ---------- mobile nav ---------- */

/* glass burger — mobile only; desktop shows the three glass buttons */
.nav__burger {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.66) 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0.32) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(0, 18, 25, 0.04),
    0 2px 5px rgba(0, 18, 25, 0.06),
    0 8px 18px rgba(0, 18, 25, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -7px 12px rgba(0, 18, 25, 0.04);
  cursor: pointer;
  color: var(--ink);
  transition: transform 200ms ease, filter 200ms ease;
}

.nav__burger:hover { transform: scale(1.05); filter: brightness(1.04); }

.nav__burger svg { width: 24px; height: 24px; display: block; }
.nav__burger .icon-close { display: none; }
.nav.is-open .nav__burger .icon-open { display: none; }
.nav.is-open .nav__burger .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px var(--gutter) 48px;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms var(--ease-out-expo), transform 150ms var(--ease-out-expo), visibility 0s linear 150ms;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 150ms var(--ease-out-expo), transform 150ms var(--ease-out-expo);
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}

.mobile-menu a.btn {
  display: flex;
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 18, 25, 0.1);
}

@media (max-width: 900px) {
  .nav__center { display: none; }
  .nav__burger { display: grid; }
}

@media (max-width: 560px) {
  .nav__cta { display: none; }
}

/* ============================================================
   Hero — full-viewport photo + floating transition card
   ============================================================ */

/* full-bleed photo hero, GrowthOS-style */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -12% 0;
  background-color: #D9E7F4; /* pale sky tone shown while the photo loads */
  background-image: url("../assets/lumis-website.jpeg");
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* centered white copy directly on the photo */
.hero__copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--nav-height) clamp(24px, 5vw, 48px) 14vh;
}

.hero h1 { color: var(--ink); margin-bottom: 28px; }

.hero__sub {
  color: rgba(0, 18, 25, 0.68);
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

/* the fancy accent word in the headline */
.fancy {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: 0;
  color: var(--accent);
}

/* the photo dissolves softly into the page instead of a hard seam */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(100px, 16vh, 180px);
  background: linear-gradient(to bottom, rgba(245, 244, 240, 0), var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* ---------- floating transition card ---------- */

.hero-overlap {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

/* the floating card is an app-window mockup, like aside.com's
   browser window: traffic lights, sidebar, toolbar, canvas */
.float-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: clamp(20px, 1.8vw, 24px);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  display: grid;
  grid-template-columns: clamp(170px, 18vw, 250px) minmax(0, 1fr);
  min-height: clamp(380px, 48vw, 680px);
}

.window-side {
  border-right: 1px solid var(--hairline-soft);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-dots { display: flex; gap: 8px; margin-bottom: 18px; }
.mock-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #BB3E03;
}
.mock-dots span:nth-child(2) { background: #EE9B00; }
.mock-dots span:nth-child(3) { background: #94D2BD; }

.mock-row { height: 12px; border-radius: 6px; background: #ECECEA; }
.mock-row--strong { background: #E0E0DD; width: 62%; }
.mock-row:nth-child(3) { width: 84%; }
.mock-row:nth-child(4) { width: 72%; }
.mock-row:nth-child(5) { width: 88%; }
.mock-row:nth-child(6) { width: 56%; }

.window-main { display: flex; flex-direction: column; min-width: 0; }

.mock-toolbar {
  display: flex;
  align-items: center;
  padding: 12px clamp(16px, 3vw, 28px);
  border-bottom: 1px solid var(--hairline-soft);
}

.mock-pillbar {
  height: 36px;
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-pill);
  background: #FAFAF8;
}

.window-canvas {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  background: #F0F0EE;
  padding: clamp(32px, 4vw, 56px);
}

/* abstract "Lumis at work" status panels */
.canvas-stack {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.canvas-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--hairline-soft);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 18, 25, 0.03), 0 6px 16px rgba(0, 18, 25, 0.04);
  padding: 18px 22px;
}

.canvas-row--active { border-color: rgba(10, 147, 150, 0.35); }

.canvas-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.canvas-dot--done { background: #D8D8D5; }

.canvas-row--active .canvas-dot { animation: dot-pulse 2.2s ease-in-out infinite; }

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 147, 150, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(10, 147, 150, 0); }
}

.canvas-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.canvas-lines i { display: block; height: 10px; border-radius: 5px; background: #ECECEA; }

@media (prefers-reduced-motion: reduce) {
  .canvas-row--active .canvas-dot { animation: none; }
}

@media (max-width: 700px) {
  .float-card { grid-template-columns: 1fr; }
  .window-side { display: none; }
}

/* ---------- grey placeholder panels ---------- */

.placeholder-panel {
  background: #E9E9E6;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  min-height: 280px;
}

.placeholder-panel span {
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--placeholder-text);
  padding: 0 24px;
  text-align: center;
}

.placeholder-panel--hero { min-height: clamp(320px, 40vw, 540px); }

/* ============================================================
   Sections
   ============================================================ */

.section { padding: var(--section-pad) 0; }
.section--flush-top { padding-top: 0; }

/* aside.com centers its section intros — calm, symmetric composition */
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(80px, 10vw, 140px);
  text-align: center;
}
.section-head h2 { margin-bottom: 28px; }
.section-head .sub { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}

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

.stage {
  opacity: 0;
  transform: translateY(24px);
  animation: stage-in 900ms var(--ease-out-expo) forwards;
}
.stage-1 { animation-delay: 100ms; }
.stage-2 { animation-delay: 200ms; }
.stage-3 { animation-delay: 300ms; }
.stage-4 { animation-delay: 420ms; }

@keyframes stage-in { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .stage { animation-duration: 1ms; }
  .reveal { transition-duration: 1ms; }
  html { scroll-behavior: auto; }
  .mark-svg * { animation: none !important; }
}

/* ============================================================
   How it works — numbered 01 / 02 / 03 steps
   ============================================================ */

.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--hairline);
}

.step:last-of-type { border-bottom: 1px solid var(--hairline); }

.step__num {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 26px;
  transition: color 300ms ease;
}

.step__num::after {
  content: "";
  height: 1px;
  width: 56px;
  background: currentColor;
  opacity: 0.4;
}

.step.is-active .step__num { color: var(--accent); }

.step h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.step p { color: var(--ink-soft); max-width: 440px; }

/* white card framing the grey placeholder, aside.com-style */
.step__panel {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(40px, 5vw, 64px);
}

.step__panel .placeholder-panel { min-height: clamp(240px, 26vw, 320px); }

.step:nth-child(even) .step__copy { order: 2; }
.step:nth-child(even) .step__panel { order: 1; }

@media (max-width: 800px) {
  .step { grid-template-columns: 1fr; gap: 40px; }
  .step:nth-child(even) .step__copy { order: 1; }
  .step:nth-child(even) .step__panel { order: 2; }
}

/* ============================================================
   Feature grid
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(40px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 250ms ease, transform 250ms var(--ease-out-expo);
}

.feature-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

/* stagger paired grid reveals */
.feature-grid .reveal:nth-child(even),
.safety-list .reveal:nth-child(even),
.pricing-grid .reveal:nth-child(even) { transition-delay: 100ms; }

.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-card__icon svg { width: 19px; height: 19px; }

.feature-card h3 { font-size: 21px; letter-spacing: -0.015em; }
.feature-card > p { color: var(--ink-soft); font-size: 16px; max-width: 400px; }

.feature-card .placeholder-panel { min-height: 240px; margin-top: 36px; }

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Safety
   ============================================================ */

.band {
  background: #EFEEE9;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.safety-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.safety-item__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(10, 147, 150, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.safety-item__icon svg { width: 12px; height: 12px; }

.safety-item h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.safety-item p { font-size: 15.5px; color: var(--ink-soft); }

@media (max-width: 700px) {
  .safety-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Quote
   ============================================================ */

.quote {
  text-align: center;
  padding: clamp(140px, 18vw, 260px) 0;
}

.quote h2 { max-width: 900px; margin: 0 auto; }

/* ============================================================
   Voice-reactive mark
   ============================================================ */

.mark-section { text-align: center; }

.mark-wrap {
  width: clamp(180px, 24vw, 260px);
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.mark-svg { width: 100%; height: auto; display: block; overflow: visible; }

.mark-svg ellipse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  transform-box: view-box;
  transform-origin: center;
}

.mark-svg .m1 { animation: mark-spin 14s linear infinite, mark-breathe 3.2s ease-in-out infinite; }
.mark-svg .m2 { animation: mark-spin-rev 18s linear infinite, mark-breathe 3.2s ease-in-out infinite 0.5s; opacity: 0.75; }
.mark-svg .m3 { animation: mark-spin 24s linear infinite, mark-breathe 3.2s ease-in-out infinite 1.1s; opacity: 0.5; }
.mark-svg .m4 { animation: mark-spin-rev 11s linear infinite, mark-breathe 3.2s ease-in-out infinite 1.7s; opacity: 0.35; }

@keyframes mark-spin { to { transform: rotate(360deg); } }
@keyframes mark-spin-rev { to { transform: rotate(-360deg); } }
@keyframes mark-breathe {
  0%, 100% { stroke-width: 1.3; }
  50% { stroke-width: 2.4; }
}

.mark-section h2 { margin-bottom: 28px; }
.mark-section .sub { max-width: 540px; margin: 0 auto; }

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: box-shadow 250ms ease, transform 250ms var(--ease-out-expo);
}

.price-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.price-card__tier {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-faint);
}

.price-card__price { font-size: clamp(34px, 3.6vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.price-card__price small { font-size: 15px; font-weight: 400; color: var(--ink-faint); letter-spacing: 0; }

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.price-card li { font-size: 15.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: baseline; }
.price-card li::before { content: "·"; color: var(--accent); font-weight: 700; }

.price-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Final CTA band
   ============================================================ */

.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 32px; }
.final-cta .sub { max-width: 520px; margin: 0 auto 52px; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  padding: clamp(72px, 9vw, 120px) 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 64px;
  margin-bottom: clamp(64px, 8vw, 96px);
}

.footer__brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer__logo img { height: 22px; width: auto; display: block; transform: translateY(0.5px); }
.footer__logo span { display: block; }

.footer__tagline { font-size: 14.5px; color: var(--ink-soft); max-width: 260px; }

.footer__col h5 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 22px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer__col a { font-size: 15px; color: var(--ink); transition: color 150ms ease; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 13.5px; color: var(--ink-faint); }

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ============================================================
   Waitlist page
   ============================================================ */

.waitlist-hero {
  padding: calc(var(--nav-height) + clamp(100px, 16vh, 180px)) 0 clamp(88px, 11vw, 150px);
  text-align: center;
}

.waitlist-hero h1 { margin-bottom: 32px; }
.waitlist-hero .sub { max-width: 540px; margin: 0 auto 52px; }

.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: -0.005em;
  padding: 17px 26px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 2px rgba(0, 18, 25, 0.03), 0 8px 20px rgba(0, 18, 25, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.waitlist-form input::placeholder { color: var(--ink-faint); }

.waitlist-form input:focus {
  border-color: rgba(10, 147, 150, 0.45);
  box-shadow: 0 0 0 4px rgba(10, 147, 150, 0.1), 0 8px 20px rgba(0, 18, 25, 0.04);
}

/* honeypot — visually gone, still in the DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-note {
  margin-top: 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-faint);
  min-height: 1.4em;
  transition: color 200ms ease;
}

.waitlist-note.is-error { color: #BB3E03; }

.waitlist-note.is-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  background: rgba(10, 147, 150, 0.08);
  border: 1px solid rgba(10, 147, 150, 0.18);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  animation: note-pop 320ms var(--ease-out-expo);
}

.waitlist-note.is-success svg { flex-shrink: 0; }

@keyframes note-pop {
  from { opacity: 0; transform: translateY(4px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-note.is-success { animation: none; }
}

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

.waitlist-step { text-align: center; }
.waitlist-step .placeholder-panel { min-height: 240px; margin-bottom: 28px; }
.waitlist-step p { font-size: 16px; color: var(--ink-soft); max-width: 300px; margin: 0 auto; }
.waitlist-step p strong { color: var(--ink); font-weight: 650; }

@media (max-width: 800px) {
  .waitlist-steps { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal {
  min-height: 60vh;
  padding: calc(var(--nav-height) + clamp(100px, 14vw, 170px)) 0 var(--section-pad);
}

.legal__inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 24px; }

.legal h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 36px;
}

.legal p { color: var(--ink-faint); }
