/* ==========================================================================
   Kevin Owens — family design system (Direction B "Navy Anchor, Paper Body")
   Site accent: indigo #5B7CFA (on navy) / #4F46E5 (AA text + button bg on paper;
   deliberately deeper-indigo than enterpriseaistudio's #2563EB blue)
   ========================================================================== */

:root {
  --family-navy: #0A0E1A;
  --family-navy-2: #101B33;
  --paper: #FAF8F2;
  --surface: #FFFFFF;
  --ink: #0A0E1A;
  --ink-muted: #55606E;
  --line: #E6E1D6;
  --on-navy: #EDEFF4;
  --on-navy-muted: #A9B2C6;
  --on-navy-line: rgba(255, 255, 255, 0.12);
  --accent: #5B7CFA;          /* on navy: eyebrows, rings, particles */
  --accent-ink: #4F46E5;      /* on paper: links, eyebrows, primary button bg (AA, clearly indigo) */
  --accent-soft: rgba(79, 70, 229, 0.10);
  --gradient-start: #5B7CFA;
  --gradient-mid: #8b5cf6;
  --gradient-end: #06b6d4;
  --success: #2E7D5B;
  --warning: #A87717;
  --danger: #B3402A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.05);
  --shadow-md: 0 4px 14px rgba(10, 14, 26, 0.07);
  --shadow-lg: 0 12px 32px rgba(10, 14, 26, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
p a, li a.inline { color: var(--accent-ink); font-weight: 600; }
p a:hover { text-decoration: underline; }
button { font-family: inherit; }

h1, h2, h3, h4 { line-height: 1.16; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(36px, 5.2vw, 56px); line-height: 1.12; }
h2 { font-size: clamp(28px, 3.4vw, 36px); }
h3 { font-size: 22px; }

.shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 300;
  background: var(--surface); color: var(--ink);
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-lg); transition: top 0.15s ease;
}
.skip-link:focus-visible { top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ===== Scroll progress (small gradient accent — allowed) ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
}

/* ===== Header / nav ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 14, 26, 0.88);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--on-navy-line);
}
.site-nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--on-navy); }
.brand-dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
/* Drawer-only links (Contact, Newsletter): hidden in the desktop nav row,
   shown as plain links inside the <=768px drawer. */
.nav-links .drawer-only { display: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--on-navy-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--on-navy); }
.nav-links a.active { font-weight: 600; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--on-navy);
  margin: 5px 0; border-radius: 2px; transition: transform 0.25s var(--ease-out), opacity 0.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); }

/* ===== Buttons (pill grammar) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; line-height: 1.2;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* on paper */
.btn-primary { background: var(--accent-ink); color: #fff; }
.btn-primary:hover { background: #4338CA; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid rgba(10, 14, 26, 0.35); }
.btn-secondary:hover { border-color: var(--accent-ink); color: var(--accent-ink); }

/* on navy bands */
.on-navy .btn-primary, .btn-on-navy { background: #fff; color: var(--family-navy); }
.on-navy .btn-primary:hover, .btn-on-navy:hover { background: var(--on-navy); }
.on-navy .btn-secondary, .btn-ghost-navy { background: transparent; color: var(--on-navy); border: 1px solid rgba(237, 239, 244, 0.55); }
.on-navy .btn-secondary:hover, .btn-ghost-navy:hover { border-color: var(--on-navy); color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; min-height: 40px; padding: 8px 18px;
  border-radius: 999px; background: #fff; font-size: 14px; font-weight: 600;
  color: var(--family-navy) !important; transition: background 0.2s, transform 0.2s var(--ease-out);
}
.nav-cta:hover { background: var(--on-navy); transform: translateY(-1px); }

/* ===== Navy hero band ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 70% -10%, var(--family-navy-2), transparent 65%),
    var(--family-navy);
  color: var(--on-navy);
  padding: 158px 0 92px;
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-canvas canvas { width: 100%; height: 100%; display: block; }
.hero-content { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; max-width: 820px; margin: 18px 0 22px; }
.hero h1 .gradient-text {
  background: linear-gradient(120deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-lead { font-size: 18px; line-height: 1.6; color: var(--on-navy-muted); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-primary { background: #fff; color: var(--family-navy); }
.hero .btn-primary:hover { background: var(--on-navy); }
.hero .btn-secondary { background: transparent; color: var(--on-navy); border: 1px solid rgba(237, 239, 244, 0.55); }
.hero .btn-secondary:hover { border-color: var(--on-navy); color: #fff; }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-wrap: balance;
}

/* Home hero: two columns at >=1024px, compact static terminal on the right */
.hero-grid { display: grid; grid-template-columns: 1fr; }
.hero-demo { display: none; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 56px; align-items: center; }
  .hero-demo { display: block; }
}
.hero-demo .terminal { max-width: none; margin: 0; }
.hero-demo .terminal-body { min-height: 0; padding: 18px 20px 22px; font-size: 12.5px; line-height: 1.7; }

/* Trust bar (inside hero) */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 40px; margin-top: 48px; padding-top: 30px;
  border-top: 1px solid var(--on-navy-line);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-number { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.trust-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-navy-muted); }

/* ===== Paper sections ===== */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: #F3F0E8; }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { color: var(--accent-ink); display: block; margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-lede, .section-desc { font-size: 18px; line-height: 1.6; color: var(--ink-muted); }

/* Cards */
.card, .feature-card, .work-card, .service-card, .theme-card, .contact-card, .expertise-card, .topic-card, .format-card, .method-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out), border-color 0.25s;
}
a.card:hover, .card-hover:hover {
  transform: translateY(-1px); box-shadow: var(--shadow-md); border-color: #D8D2C2;
}
.card h3, .feature-card h3, .work-card h3, .service-card h3, .theme-card h3, .contact-card h3, .expertise-card h3, .topic-card h3, .format-card h3, .method-card h3 {
  font-size: 18px; margin-bottom: 8px;
}
.card p, .feature-card p, .work-card p, .service-card p, .theme-card p, .contact-card p, .expertise-card p, .topic-card p, .format-card p, .method-card p {
  font-size: 15px; line-height: 1.6; color: var(--ink-muted);
}
.card-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 10px; display: block;
}
.card-link { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--accent-ink); }
.card-link:hover { text-decoration: underline; }
.section-see-all { text-align: center; margin-top: 26px; }
.section-see-all .card-link { margin-top: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }

/* Confidentiality note */
.confidentiality-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--on-navy-muted);
  border: 1px solid var(--on-navy-line); border-radius: 999px; padding: 6px 14px;
}
.confidentiality-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* ===== Portrait / monogram placeholder ===== */
.portrait {
  width: min(320px, 100%); aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 120% 90% at 80% 0%, var(--family-navy-2), transparent 70%),
    var(--family-navy);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.portrait-monogram {
  font-weight: 700; font-size: 64px; letter-spacing: -0.04em; color: #fff;
  width: 128px; height: 128px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--accent);
  background: rgba(91, 124, 250, 0.12);
}
.portrait-caption { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-navy-muted); }

/* ===== Testimonial ticker ===== */
.ticker-section { padding: 40px 0 48px; background: #F3F0E8; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-controls { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.ticker-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-muted); background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px; min-height: 32px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.ticker-toggle:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
/* The marquee only runs once JS has duplicated the cards (.ticker-ready);
   without JS (or under reduced motion) the cards wrap as a static grid, so
   nobody ever gets a scroll they cannot stop (WCAG 2.2.2). */
.ticker-track { display: flex; gap: 20px; flex-wrap: wrap; }
.ticker-track.ticker-ready { flex-wrap: nowrap; width: max-content; animation: ticker-scroll 60s linear infinite; }
.ticker-section:hover .ticker-track { animation-play-state: paused; }
.ticker-track.paused { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-card {
  width: 360px; flex-shrink: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px;
}
.ticker-quote { font-size: 14px; line-height: 1.6; color: var(--ink); margin-bottom: 14px; }
.ticker-author { font-size: 13px; font-weight: 600; }
.ticker-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

/* ===== Terminal (mono texture) ===== */
.terminal {
  background: var(--family-navy-2); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 760px; margin: 0 auto;
}
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red { background: var(--danger); }
.terminal-dot.yellow { background: var(--warning); }
.terminal-dot.green { background: var(--success); }
.terminal-title { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--on-navy-muted); }
.terminal-body { padding: 20px 22px 26px; font-family: var(--font-mono); font-size: 13px; line-height: 1.75; min-height: 340px; }
.terminal-line { white-space: pre-wrap; }
html.js .terminal-line { animation: term-in 0.3s ease both; }
@keyframes term-in { from { opacity: 0; } to { opacity: 1; } }
.terminal-prompt { color: var(--accent); }
.terminal-command { color: #fff; }
.terminal-output { color: var(--on-navy-muted); }
.terminal-success { color: #4CAF8B; font-weight: 600; }
.terminal-accent { color: var(--accent); }
.terminal-cursor { display: inline-block; width: 8px; height: 15px; background: var(--accent); vertical-align: text-bottom; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ===== Case study anatomy ===== */
.case-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.case-card + .case-card { margin-top: 28px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.case-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); border-radius: 999px; padding: 4px 12px;
}
.case-title { font-size: 22px; margin-bottom: 20px; }
.case-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-section { border-left: 3px solid var(--line); padding-left: 16px; }
.case-section p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); }
.case-section-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.case-section--challenge { border-left-color: var(--danger); }
.case-section--challenge .case-section-label { color: var(--danger); }
.case-section--approach { border-left-color: var(--accent-ink); }
.case-section--approach .case-section-label { color: var(--accent-ink); }
.case-section--outcome { border-left-color: var(--success); }
.case-section--outcome .case-section-label { color: var(--success); }

/* ===== Newsletter subscribe ===== */
.subscribe-slot { max-width: 560px; }
.embed-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--on-navy-line); background: var(--surface); }
.embed-wrap iframe { display: block; width: 100%; border: 0; }
.subscribe-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md); color: var(--ink);
}
.subscribe-card h3 { font-size: 18px; margin-bottom: 8px; }
.subscribe-card p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 18px; }
.subscribe-card .fine-print { font-size: 12px; color: var(--ink-muted); margin: 12px 0 0; }

/* ===== Contact form ===== */
.contact-form { display: grid; gap: 16px; max-width: 560px; }
.contact-form label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 12px 14px;
}
.contact-form input:focus-visible, .contact-form textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ===== CTA band (navy, above the navy footer) ===== */
.cta-band {
  background:
    radial-gradient(ellipse 80% 90% at 50% 120%, var(--family-navy-2), transparent 70%),
    var(--family-navy);
  color: var(--on-navy); text-align: center; padding: 88px 0;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band .section-lede { color: var(--on-navy-muted); max-width: 560px; margin: 0 auto 32px; }
.cta-band .eyebrow { color: var(--accent); display: block; margin-bottom: 12px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-primary { background: #fff; color: var(--family-navy); }
.cta-band .btn-primary:hover { background: var(--on-navy); }
.cta-band .btn-secondary { background: transparent; color: var(--on-navy); border: 1px solid rgba(237, 239, 244, 0.55); }
.cta-band .btn-secondary:hover { border-color: var(--on-navy); color: #fff; }

/* Per-page CTA-band variations (one distinct element per page) */
.cta-quote { max-width: 620px; margin: -6px auto 32px; }
.cta-quote p { font-size: 16px; line-height: 1.6; color: var(--on-navy); }
.cta-quote-attr {
  display: block; margin-top: 10px; font-style: normal; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-navy-muted);
}
.cta-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 44px; margin: -4px 0 34px; }
.cta-note { margin-top: 24px; font-size: 13px; color: var(--on-navy-muted); }
.cta-note a { color: var(--accent); font-weight: 600; }
.cta-note a:hover { text-decoration: underline; }

/* ===== Navy family footer ===== */
.site-footer { background: var(--family-navy); color: var(--on-navy); padding: 56px 0 28px; border-top: 1px solid var(--on-navy-line); }
.footer-main { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.footer-tagline { font-size: 14px; color: var(--on-navy-muted); margin-bottom: 14px; max-width: 320px; }
.footer-email { font-size: 14px; font-weight: 600; color: var(--accent); }
.footer-email:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 10px 24px; flex-wrap: wrap; align-items: flex-start; max-width: 460px; }
.footer-links a { font-size: 14px; color: var(--on-navy-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--on-navy); }
.footer-bottom { margin-top: 24px; font-size: 12px; color: var(--on-navy-muted); }

/* Family strip (identical structure + exact spacing values on all four sites) */
.family-strip { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.family-eyebrow {
  display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px;
}
.family-strip ul { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.family-strip li { display: flex; flex-direction: column; }
.family-strip li a, .family-strip li .here { font-size: 14px; font-weight: 600; color: var(--on-navy); }
.family-strip li a:hover { color: #fff; text-decoration: underline; }
.family-strip li > span:last-child { font-size: 12px; color: var(--on-navy-muted); margin-top: 2px; }

/* ===== Reveal (JS-gated: content visible by default without JS) ===== */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
html.js .reveal-delay-1 { transition-delay: 0.08s; }
html.js .reveal-delay-2 { transition-delay: 0.16s; }
html.js .reveal-delay-3 { transition-delay: 0.24s; }
html.js .reveal-delay-4 { transition-delay: 0.32s; }

/* ===== Reduced motion: kill marquee, particles, reveals, lifts ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; }
  .ticker-section { overflow-x: auto; }
  .ticker-controls { display: none; } /* nothing moves, nothing to pause */
  .hero-canvas { display: none; }
  .btn:hover { transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .case-sections { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .shell { width: calc(100% - 40px); }
  .hero { padding: 128px 0 72px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: block; }
  /* NOTE: the header's backdrop-filter makes it the containing block for
     positioned descendants, so the panel uses absolute + explicit height
     (fixed inset would collapse to the 66px header box). */
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    height: calc(100vh - 66px); height: calc(100dvh - 66px); z-index: 90;
    background: var(--family-navy); flex-direction: column; align-items: stretch;
    padding: 18px 24px; gap: 0; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 17px; font-weight: 600; color: var(--on-navy); padding: 15px 2px; border-bottom: 1px solid var(--on-navy-line); }
  .nav-links a.drawer-only { display: block; }
  .nav-links a.nav-cta { margin-top: 18px; justify-content: center; border-bottom: 0; color: var(--family-navy) !important; }
  body.nav-open { overflow: hidden; }
  .family-strip ul { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { gap: 24px; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .footer-main { flex-direction: column; }
}
@media (max-width: 640px) {
  .family-strip ul { grid-template-columns: repeat(2, 1fr); }
}
/* 390px: long uppercase mono eyebrows get one size step down so they wrap clean */
@media (max-width: 390px) {
  .eyebrow { font-size: 11px; letter-spacing: 0.12em; }
}
