/* ============================================================
   CyberNarwhal — Option 1: Ocean + Sea Glass
   Palette: Abyss · Deep Current · Tidewater · Surface ·
            Sonar Cyan · Sea Glass · Tusk Gold · Ice · Ivory
   Aesthetic: Volvo / Apple / Anthropic / Kate Spade
   — clean, confident, human-centered, premium
   ============================================================ */

:root {
  /* --- Option 1 Ocean Depth palette --- */
  --abyss:        #103659;   /* 60% primary background */
  --deep-current: #005DAA;   /* 20% panels, surfaces */
  --tidewater:    #0077B6;   /* structure, fills */
  --surface:      #27B3E8;   /* lighter surface highlight */

  --sonar:    #22F0FF;   /* 3% signal — CTAs, links */
  --sea-glass:#4FD1B5;   /* 15% human accent — labels, icons */
  --gold:     #F2C94C;   /* 2% premium — rare highlights */

  --ice:   #F4FBFF;   /* headings, primary text on dark */
  --ivory: #FFF7E8;   /* light surface text */

  /* functional aliases */
  --bg:       var(--abyss);
  --bg-panel: rgba(0, 93, 170, 0.28);
  --bg-card:  rgba(0, 93, 170, 0.18);
  --border:   rgba(79, 209, 181, 0.14);   /* sea-glass border */
  --border-hover: rgba(79, 209, 181, 0.35);
  --text-primary:   #F4FBFF;
  --text-secondary: #b8d8ec;
  --text-muted:     #7aafc9;

  /* typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* spacing & shape */
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --max:       1140px;
  --gutter:    clamp(20px, 5vw, 44px);
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--text-secondary);
  background-color: var(--abyss);
  overflow-x: hidden;
  position: relative;
}

/* layered ocean depth — restrained, not garish */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 80% -8%,  rgba(79, 209, 181, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 45% at 5%  8%,   rgba(0, 119, 182, 0.15), transparent 50%),
    radial-gradient(ellipse 55% 35% at 92% 92%,  rgba(242, 201, 76, 0.04), transparent 55%),
    linear-gradient(180deg, #0c2d47 0%, #103659 30%, #0a2035 70%, #071525 100%);
}

/* subtle grain — Apple-style tactile depth */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
strong { color: var(--text-primary); font-weight: 600; }
img { max-width: 100%; display: block; }

/* ---- typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

/* eyebrow labels — IBM Plex Mono, sea-glass */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea-glass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--sea-glass);
  opacity: 0.65;
}

/* ---- layout shell ---- */
.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 32, 53, 0.72);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border-bottom: 1px solid rgba(79, 209, 181, 0.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand svg { width: 28px; height: 28px; display: block; }
.brand-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
/* Full lockup logo (narwhal body + wordmark combined SVG) */
.brand--lockup { gap: 0; }
.brand--lockup svg { width: auto; height: 46px; display: block; overflow: visible; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: color 0.18s ease, background 0.18s ease;
}
.site-nav a:hover { color: var(--text-primary); background: rgba(79, 209, 181, 0.07); }
.site-nav .nav-cta {
  color: var(--sea-glass);
  border: 1px solid rgba(79, 209, 181, 0.22);
  margin-left: 8px;
}
.site-nav .nav-cta:hover {
  background: rgba(79, 209, 181, 0.1);
  border-color: rgba(79, 209, 181, 0.45);
  color: var(--sea-glass);
}
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--text-primary);
}

/* ---- buttons ---- */
.button {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
/* primary: sea-glass filled — Kate Spade confident pop */
.button.primary {
  background: var(--sea-glass);
  color: #071525;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(79, 209, 181, 0.28), 0 1px 4px rgba(0,0,0,0.25);
}
.button.primary:hover {
  background: #5de0c9;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(79, 209, 181, 0.4), 0 2px 8px rgba(0,0,0,0.3);
}
/* secondary: ghost */
.button.secondary {
  border-color: rgba(79, 209, 181, 0.22);
  color: var(--text-secondary);
  background: rgba(79, 209, 181, 0.04);
}
.button.secondary:hover {
  border-color: rgba(79, 209, 181, 0.42);
  color: var(--text-primary);
  background: rgba(79, 209, 181, 0.08);
  transform: translateY(-1px);
}
.button .arrow { transition: transform 0.18s ease; }
.button:hover .arrow { transform: translateX(3px); }

/* ---- hero (compact — Apple/Anthropic above-fold clarity) ---- */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero h1 { max-width: 13ch; margin-bottom: 20px; }
.hero h1 em {
  font-style: italic;
  color: var(--sea-glass);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: 10px;
  line-height: 1.6;
}
.hero-because {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--sea-glass);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- sounding panel (hero right) ---- */
.sounding {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  border: 1px solid rgba(79, 209, 181, 0.15);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 75% 65% at 55% 75%, rgba(0, 93, 170, 0.65), transparent 68%),
    linear-gradient(160deg, rgba(12, 45, 71, 0.8), rgba(7, 21, 37, 0.95));
  overflow: hidden;
  box-shadow: 0 0 48px rgba(79, 209, 181, 0.06), inset 0 1px 0 rgba(79, 209, 181, 0.08);
}
.sounding svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.depth-tick { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; fill: var(--text-muted); opacity: 0.45; }
@keyframes ping-out {
  0%   { r: 4; opacity: 0.85; }
  65%  { opacity: 0.1; }
  100% { r: 130; opacity: 0; }
}
.ping-ring { animation: ping-out 5.5s ease-out infinite; }
.ping-ring.d2 { animation-delay: 1.8s; }
.ping-ring.d3 { animation-delay: 3.6s; }
@keyframes tusk-draw { to { stroke-dashoffset: 0; } }
.tusk {
  stroke-dasharray: 360; stroke-dashoffset: 360;
  animation: tusk-draw 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes rise {
  0%   { transform: translateY(0); opacity: 0; }
  18%  { opacity: 0.7; }
  100% { transform: translateY(-220px); opacity: 0; }
}
.mote { animation: rise 9s linear infinite; }
.mote.m2 { animation-delay: 2.5s; }
.mote.m3 { animation-delay: 5s; }
.mote.m4 { animation-delay: 6.8s; }

/* ---- sections ---- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section + .section { border-top: 1px solid rgba(79, 209, 181, 0.07); }

.section-head { max-width: 54ch; margin-bottom: clamp(32px, 4.5vw, 52px); }
.section-head p { font-size: 1.05rem; color: var(--text-secondary); }

/* ---- how-we-help grid (compact, above-fold-adjacent) ---- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
}
.help-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--bg-card);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.help-card:hover {
  border-color: var(--border-hover);
  background: rgba(0, 93, 170, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79, 209, 181, 0.07);
}
.help-card .card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(79, 209, 181, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.help-card .card-icon svg { width: 18px; height: 18px; stroke: var(--sea-glass); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.help-card h3 { font-size: 1.05rem; color: var(--text-primary); margin-bottom: 4px; }
.help-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.55; }

/* ---- mission band ---- */
.mission {
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 120% 140% at 95% 5%,  rgba(79, 209, 181, 0.09), transparent 55%),
    radial-gradient(ellipse 80%  80%  at 5%  95%, rgba(242, 201, 76, 0.05), transparent 55%),
    linear-gradient(145deg, rgba(0, 93, 170, 0.38) 0%, rgba(10, 32, 53, 0.45) 100%);
  border: 1px solid rgba(79, 209, 181, 0.16);
  box-shadow: 0 0 72px rgba(79, 209, 181, 0.05);
}
.mission h2 { max-width: 22ch; margin-bottom: 24px; }
.mission-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.mission-lines { list-style: none; padding: 0; margin: 0 0 24px; }
.mission-lines li {
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(79, 209, 181, 0.07);
}
.mission-lines li:last-child { border-bottom: 0; }
.mission-statement { font-size: 1rem; color: var(--text-secondary); }
.mission-statement strong { color: var(--sea-glass); }

/* ---- split layout ---- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.split .lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  color: var(--text-secondary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.split p { font-size: 1.02rem; }

/* ---- focus rows ---- */
.focus-list { border-top: 1px solid rgba(79, 209, 181, 0.08); }
.focus-row {
  display: grid;
  grid-template-columns: 48px 1.1fr 2fr;
  gap: clamp(14px, 3vw, 36px);
  align-items: baseline;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid rgba(79, 209, 181, 0.08);
  transition: background 0.22s ease;
  border-radius: 4px;
}
.focus-row:hover { background: rgba(79, 209, 181, 0.025); }
.focus-row .idx {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--sea-glass);
  opacity: 0.8;
  padding-top: 5px;
}
.focus-row h3 { color: var(--text-primary); }
.focus-row p { margin: 0; font-size: 0.97rem; }

/* ---- sector tags ---- */
.sector-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.sector-grid span {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.015em;
  color: var(--text-secondary);
  border: 1px solid rgba(79, 209, 181, 0.14);
  border-radius: var(--radius);
  padding: 9px 15px;
  background: rgba(0, 93, 170, 0.18);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.sector-grid span:hover {
  border-color: rgba(79, 209, 181, 0.38);
  color: var(--text-primary);
  background: rgba(79, 209, 181, 0.07);
}

/* ---- generic panels / cards ---- */
.cards { display: grid; gap: 14px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: clamp(22px, 2.8vw, 34px);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.panel:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 36px rgba(79, 209, 181, 0.07), 0 2px 10px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}
.panel h2, .panel h3 { margin-bottom: 12px; }
.panel .label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea-glass);
  display: block;
  margin-bottom: 12px;
}

.feature-list { list-style: none; margin: 16px 0 0; padding: 0; }
.feature-list li {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  padding: 8px 0 8px 20px;
  border-top: 1px solid rgba(79, 209, 181, 0.06);
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 2px; top: 16px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sea-glass);
  opacity: 0.75;
}

/* ---- CTA band ---- */
.cta-band {
  border: 1px solid rgba(79, 209, 181, 0.16);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: flex; gap: 28px; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  background:
    radial-gradient(ellipse 120% 160% at 95% 10%, rgba(79, 209, 181, 0.09), transparent 55%),
    radial-gradient(ellipse 80%  80%  at 5%  90%, rgba(242, 201, 76, 0.05), transparent 55%),
    linear-gradient(145deg, rgba(0, 93, 170, 0.42) 0%, rgba(10, 32, 53, 0.4) 100%);
  box-shadow: 0 0 72px rgba(79, 209, 181, 0.05);
}
.cta-band h2 { max-width: 20ch; }

/* ---- page hero (interior pages) ---- */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 4.5vw, 52px); }
.page-hero h1 { max-width: 18ch; margin-bottom: 22px; }
.page-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--text-secondary);
  max-width: 60ch;
}

/* ---- service stack ---- */
.service-stack { display: grid; gap: 14px; }
.service-stack.two { grid-template-columns: repeat(2, 1fr); }

/* ---- disclosure ---- */
.disclosure {
  border: 1px solid rgba(79, 209, 181, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 120% 120% at 95% 5%, rgba(79, 209, 181, 0.08), transparent 55%),
    linear-gradient(145deg, rgba(0, 93, 170, 0.35) 0%, rgba(10, 32, 53, 0.3) 100%);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 0 56px rgba(79, 209, 181, 0.04);
}
.disclosure h2 { margin-bottom: 14px; }
.disclosure .button { margin-top: 18px; }

/* ---- contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}
.check-list { list-style: none; padding: 0; margin: 16px 0 0; }
.check-list li {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 8px 0 8px 24px;
  position: relative;
  border-top: 1px solid rgba(79, 209, 181, 0.06);
}
.check-list li::before { content: "/"; position: absolute; left: 0; color: var(--sea-glass); font-weight: 600; }
.small-note { font-size: 0.83rem; color: var(--text-muted); margin-top: 16px; }

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  padding: clamp(24px, 2.8vw, 38px);
  display: grid; gap: 15px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.28);
}
label {
  display: grid; gap: 7px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
input, select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.93rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-primary);
  background: rgba(7, 21, 37, 0.65);
  border: 1px solid rgba(79, 209, 181, 0.13);
  border-radius: var(--radius);
  padding: 12px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(79, 209, 181, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 209, 181, 0.09);
}
select option { background: #103659; }
textarea { resize: vertical; }
.form-note { font-size: 0.76rem; color: var(--text-muted); font-family: var(--mono); }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid rgba(79, 209, 181, 0.07);
  margin-top: clamp(36px, 5vw, 72px);
  background: rgba(7, 21, 37, 0.55);
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  padding: clamp(32px, 3.5vw, 48px) 0;
}
.foot-brand { max-width: 40ch; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand p { font-size: 0.9rem; margin: 0; }
.foot-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-top: 12px;
}
.site-footer nav { display: flex; flex-direction: column; gap: 9px; }
.site-footer nav a {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-muted);
  transition: color 0.18s ease;
}
.site-footer nav a:hover { color: var(--sea-glass); }

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- responsive ---- */
@media (max-width: 960px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; }
  .sounding { order: -1; aspect-ratio: 16 / 10; max-width: 100%; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .cards.two, .service-stack.two { grid-template-columns: 1fr; }
  .focus-row { grid-template-columns: 40px 1fr; }
  .focus-row p { grid-column: 1 / -1; }
  .mission-body { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid rgba(79, 209, 181, 0.18);
    border-radius: var(--radius);
    background: rgba(79, 209, 181, 0.04);
  }
  .nav-toggle svg { width: 17px; height: 17px; }
  .site-nav {
    position: absolute; top: 60px;
    left: var(--gutter); right: var(--gutter);
    display: none; flex-direction: column;
    align-items: stretch; gap: 3px; padding: 10px;
    border: 1px solid rgba(79, 209, 181, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(10, 32, 53, 0.97);
    backdrop-filter: blur(24px);
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: center; }
  .sounding { display: none; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .tusk { stroke-dashoffset: 0; }
  .ping-ring { display: none; }
  html { scroll-behavior: auto; }
}
