/* ==========================================================================
   nomad. — landing page
   Brand tokens from brand-assets/nomad-design-system.md.
   Aesthetic: nomad brand (light default) × "Stackgrid" blueprint layout —
   hairline grid rails, corner crop-marks, small annotation tags, dashed
   cards, editorial type, generous whitespace. Default theme = light (brand
   default). All four brand themes ship as CSS variables via [data-theme].
   ========================================================================== */

/* ----------------------------- Theme tokens ----------------------------- */
:root,
[data-theme="light"] {
  --color-bg-base:        #F6F1EA;
  --color-bg-surface:     #FFFFFF;
  --color-stroke-primary: #4A4A4A;
  --color-text-primary:   #2C2C2C;
  --color-text-muted:     #6B6B6B;
  --color-accent-bright:  #2C2C2C;
  --color-border:         rgba(44, 44, 44, 0.14);
  --color-cta-bg:         #2C2C2C;
  --color-cta-text:       #F6F1EA;
  --color-cta-bg-hover:   #4A4A4A;

  /* landing-only derived tokens */
  --brand-invert: 0;                       /* logo line-art: 0 = keep dark strokes */
  --rail:         rgba(44, 44, 44, 0.14);  /* blueprint hairline rails/dividers */
  --crop:         #2C2C2C;                  /* corner crop-marks */
  --card-bg:      #FFFFFF;
  --card-border:  rgba(44, 44, 44, 0.16);
  --card-hover:   rgba(44, 44, 44, 0.42);
  --topbar-bg:    rgba(246, 241, 234, 0.86);
  --tag-bg:       #2C2C2C;
  --tag-text:     #F6F1EA;
  --hatch:        rgba(44, 44, 44, 0.045);
  --shadow-lg:    0 24px 60px -30px rgba(44, 44, 44, 0.35);
}

[data-theme="dark-slate"] {
  --color-bg-base:        #1A1D21;
  --color-bg-surface:     #202327;
  --color-stroke-primary: #D1D5DB;
  --color-text-primary:   #E5E7EB;
  --color-text-muted:     #9AA1AD;
  --color-accent-bright:  #F9FAFB;
  --color-border:         rgba(209, 213, 219, 0.16);
  --color-cta-bg:         #F9FAFB;
  --color-cta-text:       #1A1D21;
  --color-cta-bg-hover:   #E5E7EB;

  --brand-invert: 1;
  --rail:         rgba(209, 213, 219, 0.14);
  --crop:         #D1D5DB;
  --card-bg:      rgba(255, 255, 255, 0.03);
  --card-border:  rgba(209, 213, 219, 0.16);
  --card-hover:   rgba(209, 213, 219, 0.42);
  --topbar-bg:    rgba(26, 29, 33, 0.82);
  --tag-bg:       #F9FAFB;
  --tag-text:     #1A1D21;
  --hatch:        rgba(209, 213, 219, 0.05);
  --shadow-lg:    0 24px 70px -28px rgba(0, 0, 0, 0.6);
}

[data-theme="dark-midnight"] {
  --color-bg-base:        #0A0F1E;
  --color-bg-surface:     #0F1526;
  --color-stroke-primary: #93C5FD;
  --color-text-primary:   #F1E4C1;
  --color-text-muted:     #93A5C9;
  --color-accent-bright:  #FDE047;
  --color-border:         rgba(147, 197, 253, 0.18);
  --color-cta-bg:         #FDE047;
  --color-cta-text:       #0A0F1E;
  --color-cta-bg-hover:   #FFE97A;

  --brand-invert: 1;
  --rail:         rgba(147, 197, 253, 0.16);
  --crop:         #FDE047;
  --card-bg:      rgba(147, 197, 253, 0.04);
  --card-border:  rgba(147, 197, 253, 0.20);
  --card-hover:   rgba(253, 224, 71, 0.55);
  --topbar-bg:    rgba(10, 15, 30, 0.78);
  --tag-bg:       #FDE047;
  --tag-text:     #0A0F1E;
  --hatch:        rgba(147, 197, 253, 0.05);
  --shadow-lg:    0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

[data-theme="dark-contrast"] {
  --color-bg-base:        #0F0F0F;
  --color-bg-surface:     #161616;
  --color-stroke-primary: #FFFFFF;
  --color-text-primary:   #FFFFFF;
  --color-text-muted:     #AAAAAA;
  --color-accent-bright:  #EF4444;
  --color-border:         #292929;
  --color-cta-bg:         #EF4444;
  --color-cta-text:       #0F0F0F;
  --color-cta-bg-hover:   #FF6B6B;

  --brand-invert: 1;
  --rail:         #292929;
  --crop:         #FFFFFF;
  --card-bg:      rgba(255, 255, 255, 0.03);
  --card-border:  #292929;
  --card-hover:   rgba(239, 68, 68, 0.6);
  --topbar-bg:    rgba(15, 15, 15, 0.82);
  --tag-bg:       #FFFFFF;
  --tag-text:     #0F0F0F;
  --hatch:        rgba(255, 255, 255, 0.04);
  --shadow-lg:    0 24px 70px -28px rgba(0, 0, 0, 0.75);
}

:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;

  --maxw: 1160px;
  --radius: 4px;       /* blueprint look: near-square corners */
  --radius-pill: 999px;
  --pad-x: clamp(20px, 5vw, 56px);
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }

/* Logo line-art: invert dark strokes to light on dark themes (transparency preserved) */
.brand-img { filter: invert(var(--brand-invert)) brightness(calc(1 + var(--brand-invert) * 0.9)); }

/* --------------------------- Shared utilities --------------------------- */
.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: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--color-cta-bg); color: var(--color-cta-text);
  padding: 10px 16px; border-radius: var(--radius); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--color-accent-bright); outline-offset: 3px; border-radius: 3px; }

/* Annotation tag — the little blueprint label (e.g. "Features") */
.tag {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--tag-text); background: var(--tag-bg);
  padding: 5px 11px; border-radius: var(--radius);
}
/* + tick marks flanking a centered tag */
.tag--ticked { position: relative; }
.tag--ticked::before, .tag--ticked::after {
  content: "+"; position: absolute; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--color-text-muted);
}
.tag--ticked::before { left: -22px; }
.tag--ticked::after  { right: -22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn--cta { background: var(--color-cta-bg); color: var(--color-cta-text); }
.btn--cta:hover { background: var(--color-cta-bg-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Dashed sketch underline on the hero keyword */
.u-underline {
  background-image: linear-gradient(var(--color-accent-bright), var(--color-accent-bright));
  background-repeat: no-repeat; background-position: 0 96%; background-size: 100% 3px;
  padding-bottom: 2px;
}

/* Corner crop-marks (blueprint) — wrap content; place 4 span markers */
.cropbox { position: relative; }
.cropbox__m {
  position: absolute; width: 13px; height: 13px; z-index: 2;
  border: 1.5px solid var(--crop); pointer-events: none;
}
.cropbox__m.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.cropbox__m.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.cropbox__m.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.cropbox__m.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ------------------------------- Top bar -------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--topbar-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rail);
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); height: 68px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  border-left: 1px solid var(--rail); border-right: 1px solid var(--rail);
}
.topbar__logo { justify-self: start; display: inline-flex; align-items: center; }
.topbar__logo-img { height: 32px; width: auto; }

.topbar__nav ul { display: flex; gap: 34px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.topbar__nav a {
  font-size: 14px; font-weight: 500; color: var(--color-text-primary); text-decoration: none;
  padding: 6px 2px; position: relative; transition: color 0.15s ease;
}
.topbar__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  border-bottom: 2px dashed var(--color-stroke-primary); opacity: 0; transition: opacity 0.15s ease;
}
.topbar__nav a:hover { color: var(--color-stroke-primary); }
.topbar__nav a:hover::after { opacity: 1; }

.topbar__actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.topbar__cta { padding: 10px 20px; font-size: 14px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--card-border); background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-primary); transition: border-color 0.15s ease, transform 0.15s ease;
}
.theme-toggle:hover { border-color: var(--color-accent-bright); transform: translateY(-1px); }
.theme-toggle__icon { width: 18px; height: 18px; display: block; }

.topbar__menu-btn {
  display: none; flex-direction: column; gap: 4px; width: 42px; height: 42px;
  border: 1px solid var(--card-border); background: transparent; border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.topbar__menu-btn span { width: 18px; height: 2px; background: var(--color-text-primary); border-radius: 2px; }

.mobile-nav {
  position: sticky; top: 68px; z-index: 99;
  background: var(--topbar-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rail); padding: 12px var(--pad-x) 20px;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a { display: block; padding: 12px 4px; text-decoration: none; font-weight: 500; color: var(--color-text-primary); border-bottom: 1px solid var(--rail); }
.mobile-nav a.btn { border: 1px solid transparent; margin-top: 10px; justify-content: center; }

/* ---------------------- Framed "sheet" + dividers ----------------------- */
.page {
  max-width: var(--maxw); margin: 0 auto;
  border-left: 1px solid var(--rail); border-right: 1px solid var(--rail);
}
main > section { padding: clamp(56px, 8vw, 104px) var(--pad-x); }
main > section + section { border-top: 1px solid var(--rail); }

/* ------------------------------ Section heads --------------------------- */
.section__head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section__head .tag { margin-bottom: 20px; }
.section__title { font-size: clamp(30px, 4.4vw, 46px); }
.section__title--left { text-align: left; }
.section__lede { color: var(--color-text-muted); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; }
.section__lede--left { text-align: left; }

/* -------------------------------- Hero ---------------------------------- */
.hero { text-align: center; padding-top: clamp(48px, 7vw, 88px) !important; }
.hero .tag { margin-bottom: 26px; }
.hero__title { font-size: clamp(42px, 7vw, 82px); font-weight: 700; margin: 0 auto 24px; max-width: 15ch; }
.hero__sub { color: var(--color-text-muted); font-size: clamp(16px, 2.1vw, 20px); max-width: 620px; margin: 0 auto 32px; }
.hero__sub strong { color: var(--color-text-primary); }
.hero__trust { margin-top: 22px; font-size: 14px; color: var(--color-text-muted); }

/* ---------------------- Content example panels -------------------------- */
/* Pure-content cards that demonstrate a feature (replace product screenshots) */
.panel {
  background: var(--color-bg-surface);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 30px);
}
.panel__label {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 20px;
}

/* Scored-prospect example */
.prospect__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.rating {
  flex-shrink: 0; font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  padding: 6px 13px; border-radius: var(--radius-pill); border: 1px solid transparent;
}
.rating--hot  { background: rgba(239, 68, 68, 0.14); color: #EF4444; border-color: rgba(239, 68, 68, 0.4); }
.rating--warm { background: rgba(217, 152, 21, 0.16); color: #B7791F; border-color: rgba(217, 152, 21, 0.42); }
.rating--cold { background: var(--hatch); color: var(--color-text-muted); border-color: var(--card-border); }
.prospect__role { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.prospect__meta { font-size: 13.5px; color: var(--color-text-muted); }
.prospect__fit { font-size: 15px; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px; padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--hatch); border: 1px solid var(--card-border); color: var(--color-text-muted);
}

/* Outreach-sequence example */
.seq { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.seq__step { display: flex; align-items: center; gap: 12px; }
.seq__num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  background: var(--color-cta-bg); color: var(--color-cta-text);
}
.seq__body { flex: 1; font-weight: 500; font-size: 15px; }
.seq__delay { font-size: 12.5px; color: var(--color-text-muted); white-space: nowrap; }
.coach {
  padding: 15px 17px; border-radius: var(--radius);
  background: var(--hatch); border: 1px dashed var(--card-border);
  font-size: 14px; line-height: 1.5;
}
.coach strong { font-family: var(--font-display); }

/* ------------------------------ Trust strip ----------------------------- */
.strip { text-align: center; }
.strip__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 24px; }
.strip__logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.logo-ph {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--color-text-primary); opacity: 0.55; transition: opacity 0.15s ease;
}
.logo-ph:hover { opacity: 1; }

/* ------------------------------- Features ------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card-bg); border: 1px dashed var(--card-border); border-radius: var(--radius);
  padding: 30px 28px; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--card-hover); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: inline-flex; font-size: px;
}
.card__icon svg { width: 32px; height: 32px; display: block; margin: auto; }
.card__title { font-size: 21px; margin-bottom: 10px; }
.card__text { color: var(--color-text-muted); font-size: 15.5px; }
.card__text strong { color: var(--color-text-primary); font-weight: 700; }

/* ------------------------------ Showcase -------------------------------- */
.showcase__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
/* Alternate copy ↔ panel on the second showcase (desktop only) */
@media (min-width: 961px) {
  .showcase__grid--reverse { grid-template-columns: 1.1fr 0.9fr; }
  .showcase__grid--reverse .showcase__copy { order: 2; }
  .showcase__grid--reverse .panel { order: 1; }
}
.showcase__copy .tag { margin-bottom: 18px; }
.showcase__copy .section__title { font-size: clamp(28px, 3.6vw, 40px); }
.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--color-text-primary); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 8px; height: 4px;
  border-left: 2px solid var(--color-accent-bright); border-bottom: 2px solid var(--color-accent-bright);
  transform: rotate(-45deg);
}

/* -------------------------------- Steps --------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card-bg); border: 1px dashed var(--card-border); border-radius: var(--radius);
  padding: 32px 28px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  background: var(--color-cta-bg); color: var(--color-cta-text);
}
.step__title { font-size: 22px; margin-bottom: 10px; }
.step__text { color: var(--color-text-muted); font-size: 15.5px; }

/* ------------------------------- Beta ----------------------------------- */
.beta { background: var(--color-bg-surface); border: 1px solid var(--card-border); border-radius: var(--radius); padding: clamp(30px, 5vw, 60px); box-shadow: var(--shadow-lg); }
.beta__grid { max-width: 760px; margin: 0 auto; }
.beta__copy .tag { margin-bottom: 18px; }
.beta__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.beta__text { color: var(--color-text-muted); font-size: clamp(16px, 2vw, 18px); }
.beta__perks { list-style: none; margin: 24px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.beta__perks li { position: relative; padding-left: 28px; }
.beta__perks li::before { content: "▲"; position: absolute; left: 0; top: 2px; font-size: 11px; color: var(--color-accent-bright); }
.beta__hint { margin-top: 14px; font-size: 13.5px; color: var(--color-text-muted); }

/* -------------------------------- FAQ ----------------------------------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 4px 24px; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 30px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--color-text-primary);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--color-text-muted); transition: transform 0.2s ease; font-family: var(--font-body);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--color-text-muted); font-size: 15.5px; padding: 0 0 20px; }

/* ----------------------------- Final CTA -------------------------------- */
.cta-final { text-align: center; }
.cta-final__mark { width: 350px; height: auto; margin: 0 auto 22px; opacity: 0.9; }
.cta-final__title { font-size: clamp(34px, 5.2vw, 58px); margin-bottom: 16px; }
.cta-final__sub { color: var(--color-text-muted); font-size: clamp(16px, 2.1vw, 19px); margin: 0 auto 34px; max-width: 560px; }

/* ---------------------------- Waitlist form ----------------------------- */
.waitlist-form { max-width: 520px; }
.waitlist-form--center { margin-left: auto; margin-right: auto; }
.waitlist-form__row { display: flex; gap: 10px; }
.field {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 16px;
  padding: 14px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--card-border); background: var(--color-bg-surface);
  color: var(--color-text-primary); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field::placeholder { color: var(--color-text-muted); opacity: 0.8; }
.field:focus { outline: none; border-color: var(--color-accent-bright); box-shadow: 0 0 0 3px var(--hatch); }
.field[aria-invalid="true"] { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15); }
.waitlist-form .btn--cta { flex-shrink: 0; }

.checkbox { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; cursor: pointer; font-size: 14.5px; color: var(--color-text-muted); line-height: 1.5; }
.checkbox--center { max-width: 460px; margin-left: auto; margin-right: auto; text-align: left; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--card-hover); border-radius: var(--radius); background: var(--color-bg-surface);
  position: relative; transition: border-color 0.15s ease, background 0.15s ease;
}
.checkbox:hover .checkbox__box { border-color: var(--color-accent-bright); }
.checkbox input:focus-visible ~ .checkbox__box { outline: 2px solid var(--color-accent-bright); outline-offset: 2px; }
.checkbox input:checked ~ .checkbox__box { background: var(--color-cta-bg); border-color: var(--color-cta-bg); }
.checkbox input:checked ~ .checkbox__box::after {
  content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px;
  border: solid var(--color-cta-text); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.checkbox__label strong { color: var(--color-text-primary); font-weight: 700; }

.waitlist-form__note { margin-top: 14px; font-size: 13px; color: var(--color-text-muted); }
.waitlist-form__success {
  margin-top: 8px; padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--color-accent-bright); background: var(--hatch);
  color: var(--color-text-primary); font-size: 15px; text-align: left;
}
.waitlist-form__success strong { font-family: var(--font-display); }
.waitlist-form__success.is-error { border-color: #C0392B; }

/* Honeypot anti-spam field — hidden from humans, still present in the DOM */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------- Footer --------------------------------- */
.footer { border-top: 1px solid var(--rail); padding: clamp(40px, 6vw, 64px) var(--pad-x) 24px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 12px; }
.footer__tagline { color: var(--color-text-muted); font-size: 14.5px; max-width: 280px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.footer__links a { text-decoration: none; color: var(--color-text-muted); font-size: 14.5px; transition: color 0.15s ease; }
.footer__links a:hover { color: var(--color-text-primary); }
.footer__bar {
  max-width: var(--maxw); margin: 32px auto 0; padding-top: 22px; border-top: 1px solid var(--rail);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--color-text-muted);
}

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 960px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .topbar__menu-btn { display: inline-flex; }
  .topbar__inner { grid-template-columns: auto 1fr auto; }
  .topbar__actions { gap: 10px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .waitlist-form__row { flex-direction: column; }
  .waitlist-form .btn--cta { width: 100%; }
  .field { width: 100%; }
  .strip__logos { gap: 12px 20px; }
  .logo-ph { font-size: 16px; }
  .footer__bar { flex-direction: column; }
  .tag--ticked::before, .tag--ticked::after { display: none; }
}
