/* Vetvo public site — dark-first brand system, implements the approved Figma
   "Vetvo Website MVP-0 Landing Page Design" v1.0.
   Mobile-first. Color tokens from Vetvo Brand Pack v1.0 + the Figma token sheet;
   surface/text tints derived for the dark theme.

   Verified WCAG contrast (computed, normal-text thresholds):
   - #F5F9FF text on #020B1D bg        18.61:1  AAA
   - #F5F9FF text on #050A12 band      18.78:1  AAA
   - #F5F9FF text on #07152B panel     17.27:1  AAA
   - #B8C9E4 secondary on #020B1D      11.71:1  AAA
   - #B8C9E4 secondary on #07152B      10.87:1  AAA
   - #8DA2C4 muted on #020B1D           7.58:1  AAA
   - #8DA2C4 muted on #07152B           7.03:1  AAA
   - #168BFF accent on #020B1D          5.78:1  AA
   - #168BFF accent on #07152B          5.36:1  AA
   - #FFFFFF on #006BFF button          4.62:1  AA (keep button text >= 15px, 600+)
   - #FFFFFF on #004BDB pressed         6.93:1  AA
   - #FF6B6B error on #020B1D/#07152B   7.08/6.57:1  AAA/AA
   - #F6C85F warning on #020B1D/#07152B 12.49/11.59:1 AAA
   - #168BFF tag text on 8% blue tint over card  4.65:1  AA (worst case under card gradient)

   Motion: hover/focus transitions only; all disabled under prefers-reduced-motion.
   No keyframe animation except the submitting spinner, which is also disabled
   under prefers-reduced-motion (text conveys the state). No autoplay media. */

:root {
  color-scheme: dark;

  /* Brand Pack v1.0 tokens */
  --vetvo-blue: #006BFF;
  --electric-blue: #168BFF;
  --blue-pressed: #004BDB;
  --deep-navy: #020B1D;
  --near-black: #050A12;

  /* Derived dark-theme tokens (documented in the Figma token sheet) */
  --bg: var(--deep-navy);
  --bg-band: var(--near-black);
  --surface: #07152B;
  --surface-raised: #0B2144;
  --text: #F5F9FF;
  --text-2: #B8C9E4;
  --text-3: #8DA2C4;
  --border: rgba(120, 168, 255, 0.14);
  --border-strong: rgba(120, 168, 255, 0.28);
  --glow: rgba(0, 107, 255, 0.22);
  --error: #FF6B6B;
  --warn: #F6C85F;

  --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --content-width: 72rem;
  --prose-width: 44rem;
  --radius: 14px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* keep anchor targets clear of the sticky header */
}

body {
  margin: 0;
  font-family: var(--font-stack);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Accessibility helpers ---- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--surface-raised);
  color: var(--text);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Typography ---- */

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 4.5vw + 0.75rem, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem); }
h3 { font-size: 1.125rem; letter-spacing: -0.01em; }

p {
  margin: 0 0 1rem;
}

a {
  color: var(--electric-blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--text);
}

.muted {
  color: var(--text-2);
}

.fine-print {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-3);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--electric-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.875rem;
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--electric-blue);
  flex-shrink: 0;
}

.eyebrow--center {
  justify-content: center;
}

.tagline {
  color: var(--text-2);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}

.tagline .accent {
  color: var(--electric-blue);
}

/* ---- Layout ---- */

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.prose {
  max-width: var(--prose-width);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 60em) {
  section {
    padding: 5.5rem 0;
  }
}

.section-head {
  max-width: 52rem;
  margin-bottom: 2.25rem;
}

/* Scoped so the intro style never overrides the .eyebrow label (its selector
   must stay weaker than utility classes). ~62ch caps the reading measure. */
.section-head > p:not(.eyebrow) {
  color: var(--text-2);
  font-size: 1.125rem;
  margin-bottom: 0;
  max-width: 62ch;
}

/* ---- Header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 11, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: 6px;
}

.brand img {
  display: block;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-small);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(120, 168, 255, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta .button {
  white-space: nowrap; /* a wrapped pill button is always a bug — overflow visibly instead */
}

/* Below 27em (432px) the brand + one-line CTA + menu toggle cannot coexist
   (measured single-line threshold ~411px, margin added for font variance).
   Hide the header CTA there: the same action remains in the menu, hero, and
   waitlist section, and this keeps the brand assets at intrinsic size. */
@media (max-width: 27em) {
  .header-cta .button {
    display: none;
  }
}

/* Mobile menu — progressive enhancement:
   without the .site-enhanced root class (JS disabled, site.js 404, a runtime
   throw mid-initialization, or a missing required node) the menu list renders
   as plain, always-visible navigation and the non-functional toggle stays
   hidden. site.js adds .site-enhanced only as the LAST step of successful
   initialization, after every handler is registered. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius-small);
  color: var(--text);
  cursor: pointer;
}

.site-enhanced .nav-toggle {
  display: inline-flex;
}

/* A sticky header with a permanently open menu would eat the viewport, so
   only the enhanced (collapsible) header sticks. */
html:not(.site-enhanced) .site-header {
  position: static;
}

.nav-toggle:hover {
  background: rgba(120, 168, 255, 0.1);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.site-menu {
  display: block; /* no-JS default: plain visible navigation */
  border-top: 1px solid var(--border);
  background: var(--bg-band);
  padding: 0.75rem 1.25rem 1.25rem;
}

.site-enhanced .site-menu {
  display: none;
}

.site-enhanced .site-menu.is-open {
  display: block;
}

.site-menu a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.875rem 0.25rem;
  border-bottom: 1px solid var(--border);
}

.site-menu a:hover {
  color: var(--electric-blue);
}

.site-menu .button {
  display: block;
  text-align: center;
  margin-top: 1rem;
  border-bottom: 0;
}

@media (min-width: 48em) {
  .site-nav {
    display: flex;
  }

  .nav-toggle,
  .site-enhanced .nav-toggle,
  .site-menu,
  .site-enhanced .site-menu,
  .site-enhanced .site-menu.is-open {
    display: none;
  }
}

/* ---- Buttons ---- */

.button {
  display: inline-block;
  background: var(--vetvo-blue);
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-small);
  box-shadow: 0 0 0 1px rgba(120, 168, 255, 0.25), 0 8px 28px var(--glow);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  background: var(--blue-pressed);
  color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(120, 168, 255, 0.35), 0 8px 36px rgba(0, 107, 255, 0.32);
}

.button:active {
  background: var(--blue-pressed);
  box-shadow: 0 0 0 1px rgba(120, 168, 255, 0.35), 0 3px 14px rgba(0, 107, 255, 0.28);
}

.button:disabled,
.button[aria-disabled="true"] {
  background: var(--surface);
  color: var(--text-3);
  box-shadow: 0 0 0 1px var(--border);
  cursor: not-allowed;
}

.button-small {
  font-size: 0.9375rem;
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.button-ghost:hover {
  background: rgba(0, 107, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--electric-blue);
}

.button-ghost:active {
  background: rgba(0, 107, 255, 0.2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Submitting state: inline spinner drawn with a border, no image */
.button .spinner {
  display: none;
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
  vertical-align: -0.125em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #FFFFFF;
  border-radius: 50%;
}

.button.is-submitting .spinner {
  display: inline-block;
  animation: vetvo-spin 0.8s linear infinite;
}

@keyframes vetvo-spin {
  to { transform: rotate(360deg); }
}

/* ---- Hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(46rem 30rem at 85% 10%, rgba(0, 107, 255, 0.16), transparent 62%),
    radial-gradient(34rem 24rem at 8% 95%, rgba(0, 107, 255, 0.08), transparent 60%),
    var(--bg);
}

@media (min-width: 60em) {
  .hero {
    padding: 6rem 0 6.5rem;
  }
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.hero-lockup {
  width: min(45rem, 100%);
}

.hero h1 {
  max-width: 24ch;
  margin: 0;
}

.hero .lede {
  max-width: 62ch;
  font-size: 1.125rem;
  color: var(--text-2);
  margin: 0;
}

.hero .verification-note {
  margin: 0.25rem 0 0;
}

/* ---- Cards & panels ---- */

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

@media (min-width: 48em) {
  .card {
    padding: 2.25rem 2.5rem;
  }
}

.card h3 {
  margin: 0 0 0.625rem;
  font-size: 1.3125rem;
}

.card p {
  margin: 0;
  color: var(--text-2);
}

/* Why Vetvo: asymmetric two-up row + full-width statement row */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 60em) {
  .why-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  }

  .why-grid .card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 3rem;
    align-items: start;
  }

  .why-grid .card--wide h3 {
    margin-bottom: 0;
  }
}

/* ---- What Vetvo is: audience list + capabilities panel ---- */

.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 60em) {
  .about-cols {
    grid-template-columns: minmax(0, 1fr) 30rem;
    gap: 4rem;
  }
}

.audience {
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience li {
  padding: 1.25rem 0;
}

.audience li + li {
  border-top: 1px solid var(--border);
}

.audience h3 {
  margin: 0 0 0.375rem;
  font-size: 1.3125rem;
}

.audience p {
  margin: 0;
  color: var(--text-2);
}

.caps-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  align-self: start;
}

.caps-panel h3 {
  margin: 0 0 0.25rem;
  font-size: 1.3125rem;
}

.caps-panel > p {
  color: var(--text-3);
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}

.caps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.caps-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  color: var(--text-2);
  font-weight: 500;
}

.caps-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 107, 255, 0.14);
  border: 1px solid var(--border);
  color: var(--electric-blue);
}

.caps-list svg {
  width: 1rem;
  height: 1rem;
}

/* ---- Human & useful ---- */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 48em) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dot-list {
  list-style: none;
  margin: 0.875rem 0 0;
  padding: 0;
}

.dot-list li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  color: var(--text-2);
  padding: 0.25rem 0;
}

.dot-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-blue);
  flex-shrink: 0;
  transform: translateY(-0.125rem);
}

/* ---- Trust rows ---- */

.trust {
  background: var(--bg-band);
}

.trust-rows {
  display: grid;
  gap: 1rem;
}

.trust-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.trust-row--highlight {
  border-color: var(--electric-blue);
}

@media (min-width: 48em) {
  .trust-row {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem 2.5rem;
  }
}

.trust-row h3 {
  margin: 0;
  font-size: 1.3125rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.trust-row p {
  margin: 0.5rem 0 0;
  color: var(--text-2);
}

@media (min-width: 48em) {
  .trust-row p {
    margin-top: 0;
  }
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 107, 255, 0.08);
  color: var(--electric-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- Founder ---- */

.founder-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 52rem;
}

@media (min-width: 40em) {
  .founder-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem 3rem;
  }
}

.founder-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 107, 255, 0.18);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.founder-name {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 0.125rem;
}

.founder-title {
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.founder-subtitle {
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.founder-bio p {
  color: var(--text-2);
}

/* Compact labeled metadata rows (expertise / credentials) */
.founder-meta {
  display: grid;
  gap: 0.625rem;
  margin: 0.25rem 0 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--border);
}

.founder-meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.125rem;
}

@media (min-width: 40em) {
  .founder-meta-row {
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}

.founder-meta dt {
  color: var(--text-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-meta dd {
  margin: 0;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.6;
}

.founder-card .contact {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-2);
}

/* ---- Waitlist ---- */

.waitlist {
  border-bottom: 0;
}

.waitlist-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(30rem 16rem at 50% 0%, rgba(0, 107, 255, 0.18), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem 1.25rem;
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 48em) {
  .waitlist-panel {
    padding: 4rem 4.5rem;
  }
}

.waitlist-panel .lede {
  color: var(--text-2);
  font-size: 1.125rem;
  max-width: 46rem;
  margin: 0 auto 2rem;
}

.waitlist-form {
  text-align: left;
  max-width: 46rem;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 48em) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}

.field input,
.field select {
  display: block;
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--near-black);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  padding: 0.8125rem 1rem;
  min-height: 3.25rem;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%238DA2C4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* .is-placeholder is toggled by site.js while the empty option is selected
   (a plain :invalid selector can't work here — the selects are optional). */
.field select.is-placeholder,
.field select option[value=""] {
  color: var(--text-3);
}

.field input::placeholder {
  color: var(--text-3);
  opacity: 1;
}

.field input:focus-visible,
.field select:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 1px;
  border-color: var(--electric-blue);
}

.field.is-invalid input {
  border-color: var(--error);
}

.field-error {
  display: none;
  color: var(--error);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.field.is-invalid .field-error {
  display: block;
}

/* Mobile disclosure for the optional selects — progressive enhancement:
   without .site-enhanced the toggle is hidden and the optional fields are
   always reachable; the enhanced experience collapses them on mobile. */
.more-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--near-black);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  padding: 0.8125rem 1rem;
  min-height: 3.25rem;
  cursor: pointer;
}

.site-enhanced .more-toggle {
  display: flex;
}

.more-toggle:hover {
  color: var(--text);
  border-color: var(--electric-blue);
}

.more-toggle .chev {
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.more-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.waitlist-more {
  display: contents; /* no-JS default: optional fields always reachable */
}

.site-enhanced .waitlist-more {
  display: none;
}

.site-enhanced .waitlist-more.is-open {
  display: contents;
}

@media (min-width: 48em) {
  .more-toggle,
  .site-enhanced .more-toggle {
    display: none;
  }

  .waitlist-more,
  .site-enhanced .waitlist-more,
  .site-enhanced .waitlist-more.is-open {
    display: contents;
  }
}

.form-actions {
  text-align: center;
  margin-top: 1.75rem;
}

.form-actions .submit-note {
  display: none;
  margin: 0.75rem 0 0;
  color: var(--text-3);
  font-size: 0.8125rem;
}

.waitlist-form.is-submitting .submit-note {
  display: block;
}

.waitlist-privacy {
  max-width: 44rem;
  margin: 1.75rem auto 0;
  text-align: center;
}

/* Status banners (service error / rate limited) */
.status-banner {
  display: none;
  text-align: left;
  border-radius: var(--radius-small);
  border: 1px solid;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  margin: 0 auto 1.5rem;
  max-width: 46rem;
}

.status-banner.is-visible {
  display: block;
}

.status-banner--error {
  color: var(--error);
  border-color: var(--error);
  background: rgba(255, 107, 107, 0.06);
}

.status-banner--warn {
  color: var(--warn);
  border-color: var(--warn);
  background: rgba(246, 200, 95, 0.06);
}

.status-banner--info {
  color: var(--text-2);
  border-color: var(--border-strong);
  background: rgba(0, 107, 255, 0.08);
}

/* Result panels (check your inbox / confirmed) */
.waitlist-result {
  display: none;
  padding: 1.5rem 0;
}

.waitlist-result.is-visible {
  display: block;
}

.waitlist-result .fine-print {
  margin: 1.25rem 0 0;
}

.waitlist-result .button {
  margin-top: 0.5rem;
}

/* Dev-only state preview toolbar (see README; enabled only via ?preview=states) */
.dev-states {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem auto 0;
  padding: 1rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-small);
  max-width: 46rem;
}

.dev-states.is-visible {
  display: flex;
}

.dev-states .dev-label {
  width: 100%;
  text-align: center;
  color: var(--text-3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dev-states button {
  font: inherit;
  font-size: 0.8125rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.dev-states button:hover {
  color: var(--text);
  border-color: var(--electric-blue);
}

/* Watermark on previewed result states so a screenshot can never read as an
   unqualified real signup. */
.waitlist-panel.is-preview .waitlist-result.is-visible::after {
  content: "Design preview — no email was sent";
  display: block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--warn);
}

/* ---- Footer ---- */

.site-footer {
  background: var(--bg-band);
  color: var(--text-2);
  padding: 3rem 0 2.5rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 48em) {
  .footer-grid {
    /* minmax floor keeps "LEGAL & CONTACT" / "Terms & Disclaimers" on one
       line at exactly 768px */
    grid-template-columns: 2fr repeat(3, minmax(9.5rem, 1fr));
  }
}

.footer-brand .brand {
  margin-bottom: 0.875rem;
}

.footer-brand .tagline {
  display: block;
  font-size: 0.6875rem;
}

.footer-heading {
  color: var(--text);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

/* ~45px tap targets (22px line box + 22px padding) */
.footer-links a {
  display: inline-block;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.6875rem 0;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.site-footer .legal {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.site-footer .legal p {
  max-width: 60rem;
  color: var(--text-3);
  font-size: 0.8125rem;
  margin: 0 0 0.625rem;
}

.site-footer .legal p:last-child {
  margin-bottom: 0;
}

/* ---- Legal / simple pages ---- */

.page-main {
  padding: 3rem 0 4rem;
}

.page-main h2 {
  margin-top: 2.5rem;
  font-size: 1.375rem;
}

.page-main ul {
  padding-left: 1.25rem;
  color: var(--text-2);
}

.page-main li {
  margin-bottom: 0.375rem;
}

.page-main p {
  color: var(--text-2);
}

.page-main h1 + .effective-date {
  margin-top: -0.5rem;
}

.effective-date,
.page-main .effective-date {
  color: var(--text-3);
  font-size: 0.9375rem;
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---- Print (legal pages must print readably on white paper) ----
   Every color flows through the :root tokens, so re-pointing them prints all
   pages light without touching component rules. */

@media print {
  :root {
    color-scheme: light;
    --bg: #FFFFFF;
    --bg-band: #FFFFFF;
    --surface: #FFFFFF;
    --surface-raised: #FFFFFF;
    --text: #0B1220;
    --text-2: #334155;
    --text-3: #475569;
    --electric-blue: #004BDB;
    --border: rgba(0, 0, 0, 0.25);
    --border-strong: rgba(0, 0, 0, 0.4);
    --glow: transparent;
  }

  body {
    background: #FFFFFF;
    color: var(--text);
  }

  .site-header {
    position: static;
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Nonessential interactive chrome */
  .skip-link,
  .site-nav,
  .header-cta,
  .nav-toggle,
  .site-menu,
  .footer-grid nav,
  .dev-states {
    display: none !important;
  }

  /* The white-ink brand artwork is invisible on paper; print a text mark. */
  .brand img,
  .hero-lockup {
    display: none;
  }

  .brand::after {
    content: "Vetvo";
    color: var(--text);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }

  section,
  .page-main {
    padding: 1rem 0;
  }

  .site-footer {
    background: #FFFFFF;
    padding: 1rem 0;
  }
}
