/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #132234;
  --teal:      #0E7C7B;
  --teal-lt:   #12A89D;
  --teal-dim:  rgba(14,124,123,.15);
  --white:     #FFFFFF;
  --off-white: #F6F8FA;
  --slate:     #4A5568;
  --slate-lt:  #718096;
  --border:    #E2E8F0;
  --amber:     #D97706;
  --green:     #059669;
  --red:       #DC2626;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --max-w:     1140px;
  --max-w-sm:  720px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p { max-width: 68ch; }

/* ── LAYOUT HELPERS ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--max-w-sm);
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section--light  { background: var(--off-white); }
.section--dark   { background: var(--navy); color: var(--white); }
.section--navy   { background: var(--navy); color: var(--white); }

.section-header {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-header--light h2 { color: var(--white); }
.section-header--light .section-lead { color: rgba(255,255,255,.75); }

.section-lead {
  font-size: 1.125rem;
  color: var(--slate);
  margin-top: 1rem;
  max-width: 60ch;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: background .18s var(--ease), color .18s var(--ease),
              transform .12s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,124,123,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal-dim);
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-top: env(safe-area-inset-top, 0);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--teal);
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  transition: color .15s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .15s !important;
}

.nav-cta:hover { background: var(--teal-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-top: calc(64px + clamp(3rem, 8vw, 6rem));
  padding-bottom: 0;
  padding-top: calc(64px + env(safe-area-inset-top, 0px) + clamp(3rem, 8vw, 6rem));
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal-lt);
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-lt);
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual — the live feed */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  animation: fadeSlideIn .7s .3s var(--ease) forwards;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feed-card {
  display: flex;
  gap: .875rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: .875rem 1rem;
  align-items: flex-start;
}

.feed-card--alert { border-color: rgba(217,119,6,.4); background: rgba(217,119,6,.07); }
.feed-card--ok    { border-color: rgba(5,150,105,.35); background: rgba(5,150,105,.06); }
.feed-card--info  { border-color: rgba(14,124,123,.4); background: rgba(14,124,123,.07); }

.feed-dot {
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-top: 4px;
}

.feed-dot--amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.feed-dot--green { background: var(--green); }
.feed-dot--teal  { background: var(--teal-lt); }
.feed-dot--slate { background: var(--slate-lt); }

.feed-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}

.feed-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .35rem;
}

.feed-clause {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--teal);
  padding-left: .6rem;
}

/* Stat bar */
.hero-stat-bar {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
}

.stat-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: stretch;
  gap: 0;
}

.stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem 1.5rem 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--teal-lt);
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 20ch;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin-block: 1.5rem;
  margin-inline: 2rem 0;
  flex-shrink: 0;
}

/* ── PROBLEM ─────────────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.problem-icon {
  color: var(--teal);
  margin-bottom: 1rem;
}

.problem-item h3 {
  margin-bottom: .6rem;
  font-size: 1.1rem;
}

.problem-item p {
  font-size: .9375rem;
  color: var(--slate);
  max-width: none;
}

.problem-callout {
  background: rgba(13,27,42,.05);
  border-left: 3px solid var(--teal);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-callout p {
  font-size: 1rem;
  color: var(--navy);
  max-width: 80ch;
  line-height: 1.7;
}

/* ── PIPELINE ────────────────────────────────────────────────────────────── */
.pipeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.pipeline-step:last-child { border-bottom: none; }

.pipeline-step--gate {
  background: rgba(14,124,123,.1);
  border: 1px solid rgba(14,124,123,.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin-block: .5rem;
  grid-template-columns: 48px 1fr;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  font-weight: 400;
  flex-shrink: 0;
}

.step-num--gate { color: var(--teal-lt); }

.pipeline-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.pipeline-step p {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  max-width: 64ch;
  line-height: 1.7;
}

.pipeline-step p em { color: rgba(255,255,255,.85); font-style: italic; }

.gate-badge {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  background: var(--teal);
  color: var(--white);
  padding: .15rem .6rem;
  border-radius: 4px;
  letter-spacing: .02em;
}

.pipeline-connector { display: none; }

/* ── MOAT GRID ───────────────────────────────────────────────────────────── */
.moat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.moat-item {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.moat-item--featured {
  grid-column: span 3;
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
  padding: 2rem;
}

.moat-item--featured h3 { color: var(--teal-lt); margin-bottom: .75rem; }
.moat-item--featured p  { color: rgba(255,255,255,.75); max-width: 80ch; }

.moat-item h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  color: var(--navy);
}

.moat-item p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.65;
  max-width: none;
}

/* ── COMPARE TABLE ───────────────────────────────────────────────────────── */
.compare-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 640px;
}

.compare-table th {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: .8125rem;
  text-align: center;
  padding: .875rem 1rem;
  white-space: nowrap;
}

.compare-table th:first-child { text-align: left; }

.compare-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  text-align: center;
  font-size: .875rem;
}

.compare-table td:first-child { text-align: left; color: var(--navy); font-weight: 500; }

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }

.col-mc { background: rgba(13,27,42,.04) !important; font-weight: 600 !important; }
.compare-table th.col-mc { background: var(--teal) !important; color: var(--white) !important; }

.yes     { color: var(--green) !important; font-weight: 600 !important; }
.no      { color: rgba(100,100,100,.45) !important; }
.partial { color: var(--amber) !important; }

/* ── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-card--featured {
  background: var(--white);
  border-color: var(--teal);
  color: var(--navy);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .03em;
}

.pricing-tier {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}

.pricing-card--featured .pricing-tier { color: var(--teal); }

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.pricing-card--featured .pricing-price { color: var(--navy); }

.pricing-price span {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

.pricing-card--featured .pricing-price span { color: var(--slate-lt); }

.pricing-contracts {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .75rem;
}

.pricing-card--featured .pricing-contracts {
  color: var(--slate-lt);
  border-top-color: var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.pricing-features li {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-lt);
  font-weight: 700;
}

.pricing-card--featured .pricing-features li { color: var(--slate); }
.pricing-card--featured .pricing-features li::before { color: var(--teal); }

.pricing-note {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  max-width: 100%;
}

.pricing-note a {
  color: var(--teal-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  padding-block: 2.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--slate);
}

.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.label-optional {
  font-weight: 400;
  color: var(--slate-lt);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: .9375rem;
  padding: .7rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  width: 100%;
  transition: border-color .15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  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' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,.12);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.btn-submit { align-self: flex-start; }

.form-note {
  font-size: .8125rem;
  color: var(--slate-lt);
  max-width: none;
}

.contact-info {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
}

.contact-detail svg { color: var(--teal); flex-shrink: 0; }

.contact-detail a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border);
  transition: color .15s, text-decoration-color .15s;
}

.contact-detail a:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}

.contact-blurb {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: .5rem;
}

.contact-blurb p {
  font-size: .9rem;
  color: var(--slate);
  max-width: none;
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding-block: 3rem;
  padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  max-width: 50ch;
}

.footer-links {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .875rem;
}

.footer-links a {
  color: var(--teal-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links span { color: rgba(255,255,255,.25); }

.footer-legal {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  max-width: 60ch;
}

/* ── SUCCESS STATE ───────────────────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-success.visible { display: block; }

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(5,150,105,.12);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--green);
}

.form-success h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.form-success p  { font-size: .95rem; color: var(--slate); max-width: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { order: -1; }
  .hero-headline { font-size: clamp(1.9rem, 6vw, 2.6rem); }

  .stat-bar-inner {
    flex-direction: column;
    gap: 0;
  }

  .stat {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .stat:last-child { border-bottom: none; }
  .stat-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 1rem; }

  .moat-grid { grid-template-columns: 1fr; }
  .moat-item--featured { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .5rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .85rem clamp(1.25rem, 5vw, 3rem);
    font-size: 1rem;
  }

  .nav-cta {
    background: transparent !important;
    border-radius: 0 !important;
    padding: .85rem clamp(1.25rem, 5vw, 3rem) !important;
    color: var(--teal-lt) !important;
  }
}

@media (max-width: 600px) {
  .trust-items { flex-direction: column; align-items: flex-start; }
  .pipeline-step { grid-template-columns: 36px 1fr; gap: 1rem; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-visual { opacity: 1; animation: none; }
  .btn { transition: none; }
}
