/* =============================================
   Continuum Security Ltd — seccontinuum.io
   ============================================= */

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

:root {
  --primary:       #4F6EF7;
  --primary-light: #EEF2FF;
  --primary-dark:  #4338CA;
  --dark:          #0F1117;
  --dark-surface:  #1A1D27;
  --dark-border:   #2D3149;
  --bg-light:      #F8FAFC;
  --text:          #0F1117;
  --text-muted:    #64748B;
  --text-faint:    #94A3B8;
  --border:        #E2E8F0;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────── */

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 500; }
.accent { color: var(--primary); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-top: 4px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.2s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: scale(0.98) translateY(0); }
.btn-primary        { background: var(--primary); color: white; }
.btn-dark           { background: var(--dark);    color: white; }
.btn-ghost          { color: var(--primary); }
.btn-light          { background: white; color: var(--dark); }
.btn-outline-light  { color: white; border-color: rgba(255,255,255,0.3); }
.btn-lg             { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-lg); }

/* ── NAV ────────────────────────────────────── */

#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  border-bottom: 0.5px solid var(--border);
  transition: box-shadow 0.25s ease;
}
#nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.nav-brand img {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.nav-brand:hover img { transform: rotate(-15deg) scale(1.1); }

.brand-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { transform: scaleX(1); }
.nav-links a:not(.btn).active { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── HERO ENTRANCE ANIMATIONS ───────────────── */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-pill  { animation: fadeSlideUp 0.7s cubic-bezier(.22,.61,.36,1) both 0.05s; }
.hero-h1    { animation: fadeSlideUp 0.75s cubic-bezier(.22,.61,.36,1) both 0.2s; }
.hero-lead  { animation: fadeSlideUp 0.75s cubic-bezier(.22,.61,.36,1) both 0.35s; }
.hero-cta   { animation: fadeSlideUp 0.75s cubic-bezier(.22,.61,.36,1) both 0.5s; }
.hero-card  { animation: fadeSlideRight 0.85s cubic-bezier(.22,.61,.36,1) both 0.3s; }

/* ── SCROLL FADE ANIMATIONS ─────────────────── */

.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1),
              transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays via data-d attribute */
.anim[data-d="1"], .anim-scale[data-d="1"] { transition-delay: 0.07s; }
.anim[data-d="2"], .anim-scale[data-d="2"] { transition-delay: 0.14s; }
.anim[data-d="3"], .anim-scale[data-d="3"] { transition-delay: 0.21s; }
.anim[data-d="4"], .anim-scale[data-d="4"] { transition-delay: 0.28s; }
.anim[data-d="5"], .anim-scale[data-d="5"] { transition-delay: 0.35s; }
.anim[data-d="6"], .anim-scale[data-d="6"] { transition-delay: 0.42s; }
.anim[data-d="7"], .anim-scale[data-d="7"] { transition-delay: 0.49s; }

/* ── COVERAGE LATTICE SVG ANIMATIONS ────────── */

/* Initial state — all SVG elements hidden */
.cl-spoke, .cl-hex { opacity: 0; transition: opacity 0.5s ease; }
.cl-node            { opacity: 0; transition: opacity 0.45s cubic-bezier(.34,1.56,.64,1); }
.cl-pulse           { opacity: 0; transition: opacity 0.3s ease; }

/* Triggered state — added by IntersectionObserver */
#coverage-diagram.coverage-visible .cl-spoke { opacity: 0.35; }
#coverage-diagram.coverage-visible .cl-hex   { opacity: 0.2; }
#coverage-diagram.coverage-visible .cl-node  { opacity: 1; }
#coverage-diagram.coverage-visible .cl-pulse { opacity: 0.12; }

/* Stagger each element */
#coverage-diagram.coverage-visible .cl-s1 { transition-delay: 0.0s; }
#coverage-diagram.coverage-visible .cl-s2 { transition-delay: 0.06s; }
#coverage-diagram.coverage-visible .cl-s3 { transition-delay: 0.12s; }
#coverage-diagram.coverage-visible .cl-s4 { transition-delay: 0.18s; }
#coverage-diagram.coverage-visible .cl-s5 { transition-delay: 0.24s; }
#coverage-diagram.coverage-visible .cl-s6 { transition-delay: 0.30s; }
#coverage-diagram.coverage-visible .cl-h1 { transition-delay: 0.38s; }
#coverage-diagram.coverage-visible .cl-h2 { transition-delay: 0.43s; }
#coverage-diagram.coverage-visible .cl-h3 { transition-delay: 0.48s; }
#coverage-diagram.coverage-visible .cl-h4 { transition-delay: 0.53s; }
#coverage-diagram.coverage-visible .cl-h5 { transition-delay: 0.58s; }
#coverage-diagram.coverage-visible .cl-h6 { transition-delay: 0.63s; }
#coverage-diagram.coverage-visible .cl-pulse { transition-delay: 0.65s; }
#coverage-diagram.coverage-visible .cl-n0 { transition-delay: 0.70s; }
#coverage-diagram.coverage-visible .cl-n1 { transition-delay: 0.80s; }
#coverage-diagram.coverage-visible .cl-n2 { transition-delay: 0.87s; }
#coverage-diagram.coverage-visible .cl-n3 { transition-delay: 0.94s; }
#coverage-diagram.coverage-visible .cl-n4 { transition-delay: 1.01s; }
#coverage-diagram.coverage-visible .cl-n5 { transition-delay: 1.08s; }
#coverage-diagram.coverage-visible .cl-n6 { transition-delay: 1.15s; }

/* Persistent pulse on centre ring (starts after reveal) */
@keyframes svgPulse {
  0%, 100% { opacity: 0.12; }
  50%       { opacity: 0.22; }
}
#coverage-diagram.coverage-visible .cl-pulse {
  animation: svgPulse 2.8s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* ── HERO ───────────────────────────────────── */

#hero {
  padding: 96px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 64px;
  align-items: start;
}

.pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-text h1 { margin-bottom: 22px; }
.lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Founder card (hero sidebar) */
.founder-card {
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 12px;
}
.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.founder-card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.founder-card-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.founder-creds li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.founder-creds li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.founder-geo {
  font-size: 12px;
  color: var(--text-faint);
  padding-top: 14px;
  border-top: 0.5px solid var(--border);
}

/* ── TRUST STRIP ────────────────────────────── */

#trust {
  background: var(--bg-light);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-logos span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-note {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 400;
}
.sep { color: var(--border); }

/* ── STATS ──────────────────────────────────── */

#stats {
  padding: 64px 0;
  border-bottom: 0.5px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 0 36px 0 0;
  margin: 0 36px 0 0;
  border-right: 0.5px solid var(--border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── PROBLEM ────────────────────────────────── */

#problem { padding: 88px 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,110,247,0.25);
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}
.problem-card p { font-size: 14px; line-height: 1.65; }

/* ── PRODUCT ────────────────────────────────── */

#product {
  padding: 88px 0;
  background: var(--bg-light);
  border-top: 0.5px solid var(--border);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79,110,247,0.3);
  box-shadow: 0 16px 40px rgba(79,110,247,0.09);
}
.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.product-card:hover .product-card-icon { transform: scale(1.1) rotate(-5deg); }

.product-card > p { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }

.feature-list { display: flex; flex-direction: column; gap: 7px; }
.feature-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 1px;
}

/* ── FEATURE MARQUEE ────────────────────────── */

.feature-marquee {
  overflow: hidden;
  margin: 48px -32px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.feature-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: feature-scroll 48s linear infinite;
}
.feature-marquee:hover .feature-track {
  animation-play-state: paused;
}
@keyframes feature-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.feature-chip {
  width: 272px;
  flex-shrink: 0;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.feature-chip:hover {
  border-color: rgba(79,110,247,0.35);
  box-shadow: 0 12px 32px rgba(79,110,247,0.08);
  transform: translateY(-3px);
}
.feature-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.feature-chip:hover .feature-chip-icon { transform: scale(1.12) rotate(-6deg); }
.feature-chip h4 {
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-chip p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ── COVERAGE LATTICE ───────────────────────── */

#coverage {
  padding: 88px 0;
  border-top: 0.5px solid var(--border);
}
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
}
.lattice-slider {
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lattice-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.lattice-slide {
  min-width: 100%;
  padding: 12px 12px 4px;
}
.lattice-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 14px;
}
.lattice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lattice-dot.active {
  background: var(--primary);
  transform: scale(1.35);
}
.coverage-svg { width: 100%; height: auto; display: block; }

.coverage-legend h3 { margin-bottom: 14px; }
.coverage-legend > p { font-size: 14px; line-height: 1.65; margin-bottom: 24px; }

.legend-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.legend-list li { display: flex; align-items: flex-start; gap: 12px; }
.legend-dot {
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0; margin-top: 3px;
}
.legend-dot.covered { background: var(--primary); }
.legend-dot.partial  { background: #F59E0B; }
.legend-dot.gap      { background: white; border: 1.5px solid #EC4899; }
.legend-list strong { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 1px; }
.legend-list span   { font-size: 13px; color: var(--text-muted); }

.coverage-cta p { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }

/* ── HOW IT WORKS ───────────────────────────── */

#how-it-works {
  padding: 88px 0;
  background: var(--bg-light);
  border-top: 0.5px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.step {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 0.5px solid var(--border);
}
.step:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.step-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 14px; }
.step p  { font-size: 14px; line-height: 1.7; }

/* ── FOUNDER SECTION ────────────────────────── */

#founder {
  padding: 88px 0;
  border-top: 0.5px solid var(--border);
}
.founder-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 56px;
}
.founder-narrative h2 { margin-bottom: 22px; }
.founder-narrative p { font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.founder-sig {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
}

/* Timeline */
.timeline {
  padding-left: 20px;
  border-left: 1.5px solid var(--border);
  margin-left: 4px;
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid white;
  outline: 1.5px solid var(--primary);
}
.tl-year { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; margin-bottom: 5px; }
.tl-role { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; line-height: 1.35; }
.tl-org  { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.timeline-item p { font-size: 13px; color: var(--text-faint); line-height: 1.55; }

/* Education */
.education-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding: 28px;
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.edu-degree { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.edu-grade {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.edu-school { font-size: 13px; color: var(--text-muted); line-height: 1.45; }

/* Certs */
.certs-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.cert {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  cursor: default;
}

/* ── CTA / CONTACT ──────────────────────────── */

#contact {
  padding: 96px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle animated grid pattern in CTA */
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,110,247,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,110,247,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 18s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 48px 48px; }
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 18px; }
.cta-inner > p {
  color: #94A3B8;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 44px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-note { font-size: 13px; color: #475569; }

/* ── FOOTER ─────────────────────────────────── */

footer {
  background: var(--dark-surface);
  border-top: 0.5px solid var(--dark-border);
  padding: 36px 0;
}
.footer-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; flex: 1; }
.footer-brand span { font-size: 14px; color: #64748B; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #64748B; transition: color 0.15s; }
.footer-links a:hover { color: #94A3B8; }
.footer-copy { width: 100%; font-size: 12px; color: #334155; margin-top: 8px; }

/* ── REDUCED MOTION ─────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .anim-scale { opacity: 1 !important; transform: none !important; }
  .hero-pill, .hero-h1, .hero-lead, .hero-cta, .hero-card { opacity: 1 !important; transform: none !important; }
  .cl-spoke, .cl-hex, .cl-node, .cl-pulse { opacity: 1 !important; }
}

/* ── RESPONSIVE ─────────────────────────────── */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .founder-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stat { border-right: none; padding-right: 0; margin-right: 0; }
  .stat:nth-child(odd) { border-right: 0.5px solid var(--border); padding-right: 36px; }
  .problem-grid, .product-grid { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .step { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 36px; border-bottom: 0.5px solid var(--border); }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .founder-section-grid { grid-template-columns: 1fr; gap: 48px; }
  .education-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #hero { padding: 64px 0 56px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: white;
    border-bottom: 0.5px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 12px 0; border-bottom: 0.5px solid var(--border); }
  .nav-links .btn { margin-top: 8px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  #nav { position: relative; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-right: 0.5px solid var(--border); padding-right: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
