/* =========================================================================
   Sprootal — Apple design language, Sprootal brand.
   Deep green ground, mint light. Light is used sparingly and always to
   point at the one thing that matters in a block.
   ========================================================================= */

:root {
  color-scheme: dark;

  /* ---- brand ---- */
  --mint:      #d6ffd0;   /* brand light — accent, primary action, every glow */
  --mint-dim:  #a9d8a3;
  --deep:      #013a33;   /* brand dark — fills under mint */

  /* ---- ground, mixed from the brand dark ---- */
  --bg:            #030f0d;
  --bg-2:          #061713;
  --surface:       rgba(9, 32, 27, .58);
  --surface-solid: #07201b;
  --sunk:          rgba(214, 255, 208, .045);

  /* ---- ink, tinted toward the brand light ---- */
  --ink:   #e9f6e7;
  --ink-2: #9db6aa;
  --ink-3: #6a8377;
  --hair:  rgba(214, 255, 208, .13);
  --hair-2:rgba(214, 255, 208, .07);

  /* ---- light. Soft, wide, low opacity: a material lit from within,
          never a neon outline. ---- */
  --glow-mint:
    0 0 0 1px rgba(214, 255, 208, .30),
    0 1px 30px -8px rgba(214, 255, 208, .40),
    0 8px 70px -24px rgba(214, 255, 208, .34);
  --glow-mint-soft:
    0 1px 26px -10px rgba(214, 255, 208, .34),
    0 10px 64px -30px rgba(214, 255, 208, .28);

  --sh-1: 0 1px 1px rgba(0, 0, 0, .45), 0 8px 22px -14px rgba(0, 0, 0, .8);
  --sh-2: 0 1px 2px rgba(0, 0, 0, .5),  0 28px 60px -30px rgba(0, 0, 0, .95);

  /* ---- rhythm ---- */
  --wrap: 61rem;
  --wrap-wide: 74rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --r-sm: .5rem;
  --r-md: .875rem;
  --r-lg: 1.25rem;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}
/* ========================= base ========================= */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font: 400 100%/1.5 var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--mint); color: var(--deep); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: fixed; top: .5rem; left: .5rem; z-index: 99;
  padding: .6rem 1rem; border-radius: var(--r-sm);
  background: var(--mint); color: var(--deep); text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus-visible { transform: none; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ========================= typography =========================
   One family. Tracking is size-specific — tight on display, neutral on
   body — and nothing is set in letter-spaced uppercase.               */

h1, h2, h3 { margin: 0; font-weight: 600; font-optical-sizing: auto; }

h1 {
  font-size: clamp(2.6rem, 7.2vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 650;
}
h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -.026em;
}
h3 { font-size: 1.0625rem; line-height: 1.35; letter-spacing: -.01em; }
p { margin: 0; }

/* the only "eyebrow" that survived: sentence case, brand light, no tracking */
.eyebrow {
  display: block;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.008em;
  color: var(--mint-dim);
}

.lede {
  font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
  line-height: 1.5;
  letter-spacing: -.012em;
  color: var(--ink-2);
  max-width: 34em;
}
.lede b, .lede strong { color: var(--ink); font-weight: 600; }

.num { font-variant-numeric: tabular-nums; }

/* ========================= chrome ========================= */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.nav[data-lifted="true"] {
  background: rgba(3, 15, 13, .78);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  backdrop-filter: saturate(160%) blur(20px);
  box-shadow: 0 1px 0 var(--hair-2);
}
.nav-in { display: flex; align-items: center; gap: 1.25rem; height: 3.5rem; }

.lockup { display: inline-flex; align-items: center; }
.lockup img {
  height: 1.5rem; width: auto; display: block;
  filter: drop-shadow(0 0 12px rgba(214, 255, 208, .28));
}

.nav-menu {
  display: flex; align-items: center; gap: .25rem;
  margin: 0 auto 0 1.25rem; padding: 0; list-style: none;
}
/* each panel hangs off its own trigger; the runtime nudges it back inside the
   viewport if a wide one would run off the right edge */
.nav-item { position: relative; }

.nav-link, .nav-trigger {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .4375rem .625rem;
  border: 0; border-radius: .5rem; background: none;
  font: 400 .875rem/1 var(--font); letter-spacing: -.008em;
  color: var(--ink-2); text-decoration: none; cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover, .nav-trigger:hover,
.nav-trigger[aria-expanded="true"] { color: var(--ink); background: var(--sunk); }
.nav-link.is-active, .nav-trigger.is-active { color: var(--mint); }

/* the panel that opens under a nav item: tiles in a row, not a list */
.nav-panel {
  position: absolute; top: calc(100% + .5rem); left: -.5rem;
  z-index: 60;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .25rem;
  width: 46rem; max-width: calc(100vw - 3rem);
  padding: .5rem;
  border-radius: var(--r-lg);
  background: rgba(7, 26, 22, .88);
  -webkit-backdrop-filter: saturate(170%) blur(26px);
  backdrop-filter: saturate(170%) blur(26px);
  box-shadow: inset 0 0 0 1px var(--hair), 0 24px 60px -28px rgba(0, 0, 0, 1), 0 0 60px -30px rgba(214, 255, 208, .3);
  transform-origin: 8% 0;
}
.nav-panel-sm { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 25rem; }
.nav-panel[hidden] { display: none; }
.nav-panel {
  opacity: 0; transform: translateY(-6px) scale(.98);
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.7,.3,1);
}
.nav-panel.is-open { opacity: 1; transform: none; }

.nav-panel a {
  display: grid; gap: .625rem; align-content: start;
  padding: 1rem .875rem 1.125rem;
  border-radius: .75rem;
  text-decoration: none;
  transition: background .18s ease;
}
.nav-panel a:hover { background: var(--sunk); }
.nav-panel .i {
  width: 2.125rem; height: 2.125rem; padding: .4375rem;
  border-radius: .625rem; background: rgba(214, 255, 208, .09);
  fill: none; stroke: var(--mint-dim); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.nav-panel span { display: grid; gap: .25rem; font-size: .8125rem; line-height: 1.4; color: var(--ink-3); }
.nav-panel b { font-size: .9375rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }

.nav-auth { display: flex; align-items: center; gap: .5rem; }

@media (max-width: 60rem) {
  .nav-menu { display: none; }
  .nav-auth { margin-left: auto; }
}

/* ========================= buttons ========================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.375rem;
  border: 0; border-radius: 980px;
  background: var(--mint); color: var(--deep);
  font: 550 .9375rem/1 var(--font); letter-spacing: -.012em;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--glow-mint-soft);
  transition: transform 120ms cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, background .2s ease;
  touch-action: manipulation;
}
.btn:hover { box-shadow: var(--glow-mint); }
.btn:active { transform: scale(.96); transition-duration: 70ms; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-line {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hair);
}
.btn-line:hover { background: var(--sunk); box-shadow: inset 0 0 0 1px var(--mint-dim); }

.btn-quiet { background: transparent; color: var(--ink-2); box-shadow: none; padding-inline: .875rem; }
.btn-quiet:hover { color: var(--ink); background: var(--sunk); box-shadow: none; }

.arrow {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .9375rem; color: var(--mint-dim); text-decoration: none;
  letter-spacing: -.01em;
}
.arrow span { transition: transform 250ms cubic-bezier(.2,.7,.3,1); }
.arrow:hover { color: var(--mint); }
.arrow:hover span { transform: translateX(3px); }

/* ========================= hero ========================= */

.hero { position: relative; padding: clamp(4rem, 13vh, 8rem) 0 clamp(2rem, 5vh, 3rem); }
.hero::before {
  content: ""; position: absolute; inset: -30% 0 auto; height: 90vh; z-index: -1;
  background:
    radial-gradient(46% 44% at 50% 32%, rgba(214, 255, 208, .13) 0%, transparent 70%),
    radial-gradient(70% 60% at 50% 20%, rgba(1, 58, 51, .55) 0%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 { max-width: 24ch; margin: 1.25rem 0 0; font-size: clamp(2.25rem, 5.6vw, 3.75rem); }
.hero h1 .dot { color: var(--mint); text-shadow: 0 0 22px rgba(214, 255, 208, .6); }
.hero .lede { margin-top: 1.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .75rem 1.25rem; margin-top: 2.25rem; }

/* the small assurances under the call to action */
.assurances {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .625rem .75rem;
  margin: 1.75rem 0 0; padding: 0;
  list-style: none;
}
.assurances li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4375rem .875rem .4375rem .75rem;
  border-radius: 980px;
  background: rgba(214, 255, 208, .045);
  box-shadow: inset 0 0 0 1px var(--hair-2);
  font-size: .875rem; letter-spacing: -.008em;
  color: var(--ink-2);
}
.assurances svg {
  flex: none; width: 1.0625rem; height: 1.0625rem;
  fill: none; stroke: var(--mint-dim); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ========================= sections ========================= */

.section { padding: clamp(3.5rem, 10vh, 6.5rem) 0; }
.section-alt { background: var(--bg-2); }
.head { max-width: 40rem; }
.head h2 { margin: .625rem 0 0; }
.head .lede { margin-top: 1rem; font-size: 1.0625rem; }


/* ========================= shared wide container ========================= */

.wrap-wide {
  width: 100%; max-width: var(--wrap-wide);
  margin-inline: auto; padding-inline: var(--gutter);
}

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

/* content that is waiting on a real customer, marked so it cannot be
   mistaken for finished copy and cannot ship by accident */
.fill {
  color: var(--ink-3);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(240, 191, 125, .55);
  text-underline-offset: .28em;
}
.story-mint .fill { color: rgba(1, 58, 51, .58); text-decoration-color: rgba(1, 58, 51, .4); }
.story-deep .fill { color: rgba(214, 255, 208, .52); text-decoration-color: rgba(214, 255, 208, .4); }

/* ========================= logo strip ========================= */

.logos { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem); }
.logo-row {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  margin: 0; padding: 0; list-style: none;
}
.logo-slot {
  display: grid; place-items: center;
  height: 2.5rem; border-radius: .5rem;
  font-size: .8125rem; color: var(--ink-3);
  box-shadow: inset 0 0 0 1px var(--hair-2);
}
.logo-slot img { max-height: 1.625rem; max-width: 100%; width: auto; opacity: .8; }
.logo-slot:has(img) { box-shadow: none; font-size: 0; }
.logos-note { margin-top: 1.25rem; font-size: .875rem; color: var(--ink-3); }

@media (max-width: 56rem) { .logo-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }

/* ========================= customer stories ========================= */

.story-grid {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(.75rem, 1.5vw, 1rem);
}
@media (max-width: 52rem) { .story-grid { grid-template-columns: 1fr; } }

.story {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin: 0; padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  min-height: clamp(16rem, 26vw, 22rem);
}
.story-mint {
  background: linear-gradient(150deg, #e6ffe1 0%, var(--mint) 45%, #b9f2b1 100%);
  color: var(--deep);
  box-shadow: 0 0 90px -34px rgba(214, 255, 208, .55), 0 30px 60px -40px rgba(0, 0, 0, 1);
}
.story-deep {
  background: linear-gradient(150deg, rgba(1, 58, 51, .95), rgba(4, 26, 22, .95));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hair), 0 30px 60px -40px rgba(0, 0, 0, 1);
}

.story-quote {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.3; letter-spacing: -.022em; font-weight: 500;
  text-wrap: balance;
}
.story-quote::before { content: "\201C"; }
.story-quote::after  { content: "\201D"; }

.story footer { display: flex; align-items: center; gap: .875rem; flex: none; }
.story-mark {
  flex: none;
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem; border-radius: .625rem;
  background: color-mix(in srgb, currentColor 14%, transparent);
  font-size: .9375rem; font-weight: 600; letter-spacing: -.01em;
  color: inherit;
}
.story-who { display: grid; gap: .125rem; font-size: .9375rem; line-height: 1.35; }
.story-who b { font-weight: 600; }
.story-mint .story-who > span:not(.fill) { color: rgba(1, 58, 51, .7); }
.story-deep .story-who > span:not(.fill) { color: var(--ink-3); }

.stories-foot {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  margin-top: 1.5rem;
  font-size: .9375rem; color: var(--ink-2);
}

/* ========================= capability blocks =========================
   One claim, one paragraph, one screenshot of the real thing.        */

.feature { padding: clamp(.75rem, 2vw, 1.25rem) var(--gutter); }

.feature-in {
  max-width: var(--wrap-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  background:
    radial-gradient(120% 130% at 8% 0%, rgba(1, 58, 51, .46) 0%, transparent 62%),
    linear-gradient(165deg, rgba(6, 23, 19, .9), rgba(3, 15, 13, .9));
  box-shadow: inset 0 0 0 1px var(--hair-2), 0 40px 90px -60px rgba(0, 0, 0, 1);
}
.feature-reverse .feature-copy { order: 2; }
/* the screenshot keeps the wide column on both sides */
.feature-reverse .feature-in { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.feature-reverse .feature-in {
  background:
    radial-gradient(120% 130% at 92% 0%, rgba(1, 58, 51, .46) 0%, transparent 62%),
    linear-gradient(195deg, rgba(6, 23, 19, .9), rgba(3, 15, 13, .9));
}

.feature-copy h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
/* line one plain, line two highlighted — the break is deliberate, so the
   highlight is never a pair of ragged boxes stepping down the heading */
.feature-copy h2 .line { display: block; }
.feature-copy p {
  margin-top: 1.25rem;
  font-size: 1.0625rem; line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--ink-2);
  max-width: 38ch;
}

/* the highlighted phrase in a heading */
mark {
  background: rgba(214, 255, 208, .13);
  color: var(--mint);
  padding: .04em .28em .1em;
  margin-inline: -.06em;
  border-radius: .28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* the hero screenshot: the product, immediately after the promise */
.hero-shot {
  position: relative;
  padding: 0 var(--gutter) clamp(1.5rem, 5vw, 3.5rem);
}
.hero-shot::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: -14%; width: min(72rem, 92%); height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(52% 60% at 50% 40%, rgba(214, 255, 208, .14) 0%, transparent 72%);
  pointer-events: none;
}
/* the same highlight, dialled down for body copy: a heading mark at 40px
   carries the padding of a chip, at 21px it would swallow the line */
.lede mark {
  padding: .08em .24em .14em;
  margin-inline: -.14em;
  border-radius: .3em;
  background: rgba(214, 255, 208, .11);
}

.shot { margin: 0; }
.shot-frame {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 16 / 10;
  border-radius: clamp(.75rem, 1.5vw, 1.125rem);
  overflow: hidden;
  background-color: #051512;
  /* the product canvas, as a ground rather than a picture of one */
  background-image: radial-gradient(rgba(214, 255, 208, .085) 1px, transparent 1px);
  background-size: 22px 22px;
  box-shadow:
    inset 0 0 0 1px var(--hair),
    inset 0 1px 0 rgba(214, 255, 208, .07),
    0 0 70px -26px rgba(214, 255, 208, .30),
    0 30px 60px -40px rgba(0, 0, 0, 1);
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }

.shot-hero {
  max-width: 78rem;
  margin-inline: auto;
  aspect-ratio: 16 / 9.4;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  box-shadow:
    inset 0 0 0 1px var(--hair),
    inset 0 1px 0 rgba(214, 255, 208, .10),
    0 0 110px -30px rgba(214, 255, 208, .34),
    0 50px 100px -50px rgba(0, 0, 0, 1);
}
@media (max-width: 46rem) { .shot-hero { aspect-ratio: 4 / 3; } }


.shot-placeholder {
  text-align: center;
  font-size: .9375rem; font-weight: 500;
  color: var(--mint-dim);
  letter-spacing: -.008em;
  padding: 1.5rem;
}
.shot-placeholder span { display: block; margin-top: .375rem; font-weight: 400; color: var(--ink-3); }

@media (max-width: 56rem) {
  .feature-in, .feature-reverse .feature-in { grid-template-columns: 1fr; gap: 2rem; }
  .feature-reverse .feature-copy { order: 0; }
  .feature-copy p { max-width: none; }
  .feature-copy h2 .line { display: inline; }
}

/* ========================= surfaces ========================= */

.card {
  background: var(--surface);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  backdrop-filter: saturate(150%) blur(24px);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(214, 255, 208, .06);
  padding: 1.375rem;
}

/* ========================= pricing ========================= */

.calc { margin-top: 2.5rem; padding: 1.75rem; }
.calc-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; }
.calc-count { font-size: 1.0625rem; letter-spacing: -.012em; color: var(--ink-2); }
.calc-count b { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-range { font-size: .875rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.slider { position: relative; height: 2.75rem; margin-top: 1.5rem; touch-action: pan-y; cursor: grab; user-select: none; }
.slider:active { cursor: grabbing; }
.slider-track {
  position: absolute; top: 50%; left: 0; right: 0; height: .5rem;
  transform: translateY(-50%);
  background: rgba(214, 255, 208, .07);
  border-radius: 980px; overflow: hidden;
}
.slider-fill {
  position: absolute; inset: 0; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, rgba(214, 255, 208, .45), var(--mint));
  border-radius: 980px;
}
.slider-knob {
  position: absolute; top: 50%; left: 0;
  width: 1.75rem; height: 1.75rem; margin: -.875rem 0 0 -.875rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: var(--glow-mint);
  will-change: transform;
}

.calc-out { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; margin-top: 2rem; }
@media (max-width: 34rem) { .calc-out { grid-template-columns: 1fr; } }
.calc-cell {
  padding: 1.125rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--sunk);
  box-shadow: inset 0 0 0 1px transparent;
  transition: background .3s ease, box-shadow .35s ease;
}
.calc-cell[data-best="true"] {
  background: rgba(1, 58, 51, .45);
  box-shadow: inset 0 0 0 1px rgba(214, 255, 208, .28), 0 0 40px -18px rgba(214, 255, 208, .55);
}
.calc-cell .plan-name { font-size: .875rem; font-weight: 500; color: var(--ink-3); letter-spacing: -.006em; }
.calc-cell[data-best="true"] .plan-name { color: var(--mint-dim); }
.calc-cell .amount { display: block; margin-top: .5rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -.032em; font-variant-numeric: tabular-nums; }
.calc-cell .amount small { font-size: .875rem; font-weight: 400; letter-spacing: -.01em; color: var(--ink-3); }
.calc-cell .sub { margin-top: .375rem; font-size: .875rem; color: var(--ink-3); }

.plans { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); margin-top: 1rem; }
.plan-card { display: flex; flex-direction: column; gap: .625rem; }
.plan-card .plan-name { font-size: .9375rem; font-weight: 600; color: var(--mint-dim); letter-spacing: -.01em; }
.plan-card .price { font-size: 1.625rem; font-weight: 600; letter-spacing: -.032em; }
.plan-card .price small { display: block; margin-top: .3125rem; font-size: .875rem; font-weight: 400; letter-spacing: -.006em; color: var(--ink-3); }
.plan-card p { font-size: .9375rem; color: var(--ink-2); }

.plan-feats { list-style: none; margin: .375rem 0 .5rem; padding: 0; display: grid; gap: .6875rem; }
.plan-feats li {
  display: grid; grid-template-columns: 1.0625rem minmax(0, 1fr);
  gap: .625rem; align-items: start;
  /* the label is one <span> on purpose: a bare <b> beside loose text would
     turn every word into its own grid item */
  font-size: .9375rem; line-height: 1.45; letter-spacing: -.008em;
  color: var(--ink-2);
}
.plan-feats b { color: var(--ink); font-weight: 600; }
.plan-feats .i {
  width: 1.0625rem; height: 1.0625rem; margin-top: .1875rem;
  fill: none; stroke: var(--mint-dim); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.plan-card .btn { margin-top: auto; align-self: flex-start; }
.plan-card .founding { align-self: flex-start; font-size: .875rem; font-weight: 500; color: var(--mint); }
.notes { margin-top: 1.75rem; display: grid; gap: .5rem; font-size: .875rem; color: var(--ink-3); max-width: 46em; }

/* ========================= questions ========================= */

.qa { margin-top: 2.5rem; }
.qa details { border-top: 1px solid var(--hair-2); }
.qa details:last-of-type { border-bottom: 1px solid var(--hair-2); }
.qa summary {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 500; letter-spacing: -.015em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; flex: none; margin-left: auto;
  width: .625rem; height: .625rem;
  border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform 300ms cubic-bezier(.2,.7,.3,1);
}
.qa details[open] summary { color: var(--mint); }
.qa details[open] summary::after { transform: rotate(-135deg) translate(-3px,-3px); border-color: var(--mint-dim); }
.qa .answer { padding-bottom: 1.375rem; font-size: .9375rem; color: var(--ink-2); max-width: 44em; }
.qa .answer b { color: var(--ink); font-weight: 600; }

/* ========================= closing & footer ========================= */

.closing { position: relative; padding: clamp(4rem, 12vh, 7rem) 0; text-align: center; }
.closing::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(45% 60% at 50% 55%, rgba(214, 255, 208, .10) 0%, transparent 70%);
  pointer-events: none;
}
.closing h2 { max-width: 18ch; margin-inline: auto; }
.closing h2 em { font-style: normal; color: var(--mint); text-shadow: 0 0 26px rgba(214, 255, 208, .55); }
.closing .btn { margin-top: 2rem; }

footer { padding: clamp(2.5rem, 6vw, 4rem) 0 3rem; border-top: 1px solid var(--hair-2); }
.foot-cols {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  max-width: 44rem;
}
.foot-col { display: grid; gap: .625rem; align-content: start; }
.foot-h { font-size: .875rem; font-weight: 600; color: var(--ink); letter-spacing: -.008em; }
.foot-col a { font-size: .875rem; color: var(--ink-3); text-decoration: none; }
.foot-col a:hover { color: var(--mint-dim); }
.foot-base {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  justify-content: space-between; align-items: center;
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.5rem;
  border-top: 1px solid var(--hair-2);
  font-size: .875rem; color: var(--ink-3);
}
.foot-meta i { color: var(--mint); font-style: normal; }


/* ========================= page heads ========================= */

.page-head { padding: clamp(3.5rem, 10vh, 6rem) 0 clamp(1.5rem, 4vh, 2.5rem); position: relative; }
.page-head::before {
  content: ""; position: absolute; inset: -40% 0 auto; height: 90vh; z-index: -1;
  background: radial-gradient(42% 44% at 50% 34%, rgba(214, 255, 208, .10) 0%, transparent 72%);
  pointer-events: none;
}
.page-head h1 { max-width: 20ch; margin: .75rem 0 0; font-size: clamp(2.25rem, 5.6vw, 3.5rem); }
.page-head h1 .dot { color: var(--mint); text-shadow: 0 0 22px rgba(214, 255, 208, .55); }
.page-head .lede { margin-top: 1.125rem; }
.page-head .hero-ctas { justify-content: flex-start; }

.section-tight { padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 8vh, 4.5rem); }

/* ========================= pricing table ========================= */

.billing {
  display: inline-flex; gap: .25rem; padding: .25rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 980px; background: var(--sunk);
}
.billing-opt {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border: 0; border-radius: 980px; background: none;
  font: 500 .875rem/1 var(--font); letter-spacing: -.01em;
  color: var(--ink-3); cursor: pointer;
  transition: color .2s ease, background .25s ease;
}
.billing-opt.is-on { color: var(--deep); background: var(--mint); box-shadow: var(--glow-mint-soft); }
.billing-save { font-size: .75rem; opacity: .75; }

.pgrid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.pcol {
  display: flex; flex-direction: column; gap: .625rem;
  padding: 0 clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid var(--hair-2);
}
.pcol:first-child { border-left: 0; padding-left: 0; }
.pcol:last-child { padding-right: 0; }
.pcol-name { font-size: 1.375rem; font-weight: 600; letter-spacing: -.022em; }
.pcol-price { font-size: 1.875rem; font-weight: 600; letter-spacing: -.032em; }
.pcol-sub { font-size: .875rem; color: var(--ink-3); padding-bottom: 1rem; border-bottom: 1px solid var(--hair-2); }
.pcol .plan-feats { margin-top: .5rem; }
.pcol .btn { margin-top: auto; align-self: stretch; }
@media (max-width: 64rem) {
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 0; }
  .pcol:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 40rem) {
  .pgrid { grid-template-columns: 1fr; }
  .pcol { border-left: 0; padding-inline: 0; }
}


/* ========================= how it works ========================= */

.steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2.5rem 0 0; padding: 0; list-style: none;
}
@media (max-width: 52rem) { .steps { grid-template-columns: 1fr; gap: 2rem; } }
.step { display: grid; gap: .625rem; align-content: start; }
.step-n {
  display: grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(214, 255, 208, .1);
  box-shadow: inset 0 0 0 1px rgba(214, 255, 208, .22);
  color: var(--mint); font-size: .9375rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.25rem; letter-spacing: -.02em; margin-top: .375rem; }
.step p { font-size: .9375rem; line-height: 1.55; color: var(--ink-2); }

/* ========================= guardrails ========================= */

.guard-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem; align-items: start;
}
@media (max-width: 52rem) { .guard-grid { grid-template-columns: 1fr; } }

.guard-nums { display: grid; gap: .5rem; }
.guard-num {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: .875rem; align-items: baseline;
  padding: 1rem 1.125rem;
  border-radius: var(--r-md);
  background: var(--sunk);
  box-shadow: inset 0 0 0 1px var(--hair-2);
}
.guard-num b {
  font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em;
  color: var(--mint); font-variant-numeric: tabular-nums;
  min-width: 2.25rem;
}
.guard-num b.fill { color: var(--ink-3); }
.guard-num span { font-size: .875rem; line-height: 1.4; color: var(--ink-2); }
.guard-copy .arrow { margin-top: 1.25rem; }

.feature-note {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--hair-2);
  font-size: .875rem; color: var(--ink-3); max-width: 38ch;
}

.pgrid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 64rem) { .pgrid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .pgrid-3 { grid-template-columns: 1fr; } }

/* ========================= prose ========================= */

.prose { max-width: 42rem; }
.prose h2 { font-size: clamp(1.375rem, 2.6vw, 1.75rem); margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 1rem; font-size: 1.0625rem; line-height: 1.62; color: var(--ink-2); letter-spacing: -.008em; }
.prose b { color: var(--ink); font-weight: 600; }

/* ========================= founders ========================= */

.founder-photo {
  width: 5rem; height: 5rem; border-radius: 50%;
  object-fit: cover; object-position: 50% 16%;
  background: rgba(214, 255, 208, .07);
  /* two photographs shot in different rooms, brought to one tone */
  filter: grayscale(.4) contrast(1.06) saturate(.8) brightness(1.02);
  box-shadow: 0 0 0 1px rgba(214, 255, 208, .28), 0 0 26px -8px rgba(214, 255, 208, .5);
}

.founder-initial {
  display: grid; place-items: center;
  font-size: 1.75rem; font-weight: 600; letter-spacing: -.02em;
  color: var(--mint-dim); background: rgba(214, 255, 208, .08);
  filter: none;
}

.founder-dialog {
  width: min(34rem, calc(100vw - 2rem));
  padding: 0; border: 0; border-radius: var(--r-lg);
  background: rgba(7, 26, 22, .94);
  -webkit-backdrop-filter: saturate(170%) blur(28px);
  backdrop-filter: saturate(170%) blur(28px);
  box-shadow: inset 0 0 0 1px var(--hair), 0 40px 90px -40px rgba(0, 0, 0, 1), 0 0 90px -40px rgba(214, 255, 208, .4);
  color: var(--ink);
}
.founder-dialog::backdrop { background: rgba(2, 9, 8, .72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.founder-inner { position: relative; padding: clamp(1.5rem, 4vw, 2.25rem); }
.founder-dialog h2 { font-size: 1.375rem; letter-spacing: -.022em; }
.founder-sub { margin-top: .5rem; font-size: .9375rem; color: var(--ink-3); }
.founder-close {
  position: absolute; top: .875rem; right: .875rem;
  width: 2rem; height: 2rem; border: 0; border-radius: 50%;
  background: var(--sunk); color: var(--ink-2);
  font-size: 1.25rem; line-height: 1; cursor: pointer;
}
.founder-close:hover { color: var(--ink); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
@media (max-width: 30rem) { .founder-grid { grid-template-columns: 1fr; } }
.founder {
  display: grid; justify-items: center; gap: .5rem;
  padding: 1.25rem 1rem; border: 0; border-radius: var(--r-md);
  background: var(--sunk); color: var(--ink); cursor: pointer;
  transition: background .2s ease, transform 120ms cubic-bezier(.2,.7,.3,1);
  font: inherit; text-align: center;
}
.founder:hover { background: rgba(214, 255, 208, .1); }
.founder:active { transform: scale(.98); }
.founder-name { font-size: 1rem; font-weight: 600; letter-spacing: -.012em; margin-top: .25rem; }
.founder-langs { font-size: .8125rem; color: var(--ink-3); line-height: 1.35; }

.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; margin-top: 2.5rem; max-width: 44rem; }
.team-card {
  display: grid; justify-items: start; gap: .5rem;
  padding: 1.5rem; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--sh-1), inset 0 1px 0 rgba(214, 255, 208, .06);
}
.team-card h3 { font-size: 1.125rem; margin-top: .5rem; }
.team-role, .team-langs { font-size: .875rem; color: var(--ink-3); }
.team-card .btn { margin-top: .75rem; }

/* ========================= product detail ========================= */

.points { display: grid; gap: clamp(2rem, 5vw, 3rem); max-width: 46rem; }
.point h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
.point p { margin-top: .75rem; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-2); letter-spacing: -.008em; }

.next-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: .75rem; margin-top: 2rem; }
.next-card {
  display: grid; gap: .375rem; padding: 1.125rem 1.25rem;
  border-radius: var(--r-md); text-decoration: none;
  background: var(--sunk);
  box-shadow: inset 0 0 0 1px transparent;
  transition: background .2s ease, box-shadow .25s ease;
}
.next-card:hover { background: rgba(214, 255, 208, .08); box-shadow: inset 0 0 0 1px var(--hair); }
.next-card b { font-size: .9375rem; color: var(--mint-dim); font-weight: 600; }
.next-card span { font-size: .875rem; color: var(--ink-3); line-height: 1.4; }


/* ========================= blog index ========================= */

.page-note {
  max-width: 46rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-size: .9375rem; color: var(--ink-3); line-height: 1.5;
}

.post a { display: grid; gap: .75rem; text-decoration: none; color: inherit; }
.post-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  transition: box-shadow .3s ease;
}
.post a:hover .post-thumb {
  box-shadow: inset 0 0 0 1px rgba(214, 255, 208, .3), 0 0 60px -22px rgba(214, 255, 208, .45);
}
.post-cat { font-size: .8125rem; font-weight: 500; color: var(--mint-dim); letter-spacing: -.006em; }
.post h2, .post h3 { letter-spacing: -.02em; transition: color .2s ease; }
.post h3 { font-size: 1.125rem; line-height: 1.3; }
.post a:hover h2, .post a:hover h3 { color: var(--mint); }
.post p { font-size: .9375rem; line-height: 1.5; color: var(--ink-2); }
.post-meta { font-size: .8125rem; color: var(--ink-3); }

.post-lead { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.post-lead a {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.post-lead-copy { display: grid; gap: .875rem; align-content: center; }
.post-lead h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; }
.post-lead p { font-size: 1.0625rem; }
.post-thumb-lead { aspect-ratio: 16 / 10; border-radius: var(--r-lg); }
@media (max-width: 52rem) {
  .post-lead a { grid-template-columns: 1fr; gap: 1rem; }
}

.post-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}


/* ========================= article ========================= */

.back {
  display: inline-flex; align-items: center; gap: .4375rem;
  margin-bottom: 1.25rem;
  font-size: .875rem; color: var(--ink-3); text-decoration: none;
  transition: color .2s ease;
}
.back:hover { color: var(--mint-dim); }
.back span { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.back:hover span { transform: translateX(-3px); }

.article-head h1 { max-width: 22ch; }
.article-meta { margin-top: 1.25rem; font-size: .875rem; }

.article-body { max-width: 40rem; }
/* an article header does not need a 78rem hero plate above it */
.article .hero-shot .shot-hero { max-width: var(--wrap); aspect-ratio: 16 / 8; }
.article-lead {
  font-size: 1.1875rem !important; line-height: 1.6;
  color: var(--ink) !important;
}
.article-body h2 { margin-top: 2.5rem; }

.pullquote {
  margin: 2.25rem 0 2.25rem;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--mint-dim);
  font-size: 1.1875rem; line-height: 1.45;
  letter-spacing: -.015em; color: var(--mint-dim);
}

.post-grid-tight .post a { gap: .625rem; }
.post-grid-tight .post-thumb { aspect-ratio: 16 / 10; }

/* ========================= resources ========================= */

.empty { max-width: 40rem; }
.empty h2 { font-size: clamp(1.375rem, 2.6vw, 1.75rem); }
.empty p { margin-top: 1rem; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-2); }
.empty a, .notes a, .prose a { color: var(--mint-dim); text-underline-offset: 3px; }

.guide-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; max-width: 46rem; }
.guide {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 0; border-top: 1px solid var(--hair-2);
}
.guide:last-child { border-bottom: 1px solid var(--hair-2); }
.guide h2 { font-size: 1.25rem; }
.guide p { margin-top: .5rem; font-size: .9375rem; color: var(--ink-2); max-width: 34em; }
.guide-state { font-size: .875rem; }

.closing-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2rem; }

/* ========================= reveal ========================= */

.reveal-ready .reveal { opacity: 0; transform: translateY(10px); }
.reveal-ready .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}

/* ========================= accessibility settings ========================= */

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

@media (prefers-reduced-transparency: reduce) {
  .nav[data-lifted="true"], .card { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav[data-lifted="true"] { background: var(--bg); }
  .card { background: var(--surface-solid); }
}

@media (prefers-contrast: more) {
  :root { --ink-2: #cfe2d6; --ink-3: #a8bdb0; }
  .card, .feature-in, .shot-frame {
    box-shadow: none; outline: 1px solid var(--mint-dim); outline-offset: -1px;
  }
  mark { background: var(--mint); color: var(--deep); }
  .btn { box-shadow: none; }
  .nav[data-lifted="true"] { background: var(--bg); }
}
