
/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════════ */
:root {
  /* brand */
  --green:        #0F6E56;
  --green-mid:    #178F6D;
  --green-light:  #1DB88F;
  --green-glow:   rgba(29, 184, 143, 0.18);
  /* backgrounds */
  --bg:           #060A09;
  --bg-2:         #0B1210;
  --bg-3:         #101814;
  --surface:      #141E1A;
  /* borders */
  --border:       rgba(15, 110, 86, 0.2);
  --border-hi:    rgba(29, 184, 143, 0.4);
  /* text */
  --text-hi:      #EFF3F1;
  --text-mid:     #8CA89D;
  --text-lo:      #3E5A50;
  /* typography */
  --font-d:       'Space Grotesk', sans-serif;
  --font-b:       'Inter', sans-serif;
  /* layout */
  --max:          1200px;
  --pad:          2rem;
  /* motion */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-hi);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
/* SVG inline (logos, icons) stay inline-block; block SVGs override below */
svg { display: inline-block; vertical-align: middle; }
svg.block { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* eyebrow label */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green-light);
  flex-shrink: 0;
}

/* section tag pill */
.pill {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.28rem 0.7rem;
}

/* accent color */
.accent { color: var(--green-light); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 3px;
  padding: 0.85rem 1.65rem;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green-light);
  color: var(--bg);
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: #22d4a3;
  box-shadow: 0 0 24px rgba(29, 184, 143, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--green-light);
  color: var(--text-hi);
}

/* section anchors — offset for fixed nav */
section[id], div[id] { scroll-margin-top: 80px; }


/* ── LOGO IMAGES (real PNGs, transparent bg) ── */
.logo-img { display: block; object-fit: contain; flex-shrink: 0; }
.nav-logo-img { width: 30px; height: 30px; }
.footer-logo-img { width: 26px; height: 26px; }
.ed-logo-img { width: 18px; height: 18px; opacity: 0.75; display: inline-block; vertical-align: middle; }



/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  padding-block: 1.1rem;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 10, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  gap: 1.5rem;
}
/* logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-brand .brand-sec { color: var(--green-light); }
.nav-brand svg { width: 26px; height: 30px; flex-shrink: 0; }

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-d);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-hi); }

/* desktop CTA */
.nav-cta {
  font-family: var(--font-d);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-light); color: var(--bg); border-color: var(--green-light); }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-hi);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset-block-start: 64px;
  inset-inline: 0;
  z-index: 199;
  background: rgba(6, 10, 9, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drawer a {
  font-family: var(--font-d);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding-block: 0.3rem;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--text-hi); }
.nav-drawer .btn { margin-top: 0.5rem; align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 9rem 6rem;
  overflow: hidden;
}
/* radial green glows */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 72% 38%, rgba(15,110,86,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 38% 38% at 15% 82%, rgba(15,110,86,0.07) 0%, transparent 60%);
}
/* hex grid texture — right half */
.hero-grid {
  position: absolute;
  inset-block: 0;
  inset-inline-end: -3rem;
  width: 52%;
  pointer-events: none;
  opacity: 0.055;
}
.hero-body { position: relative; z-index: 2; max-width: 660px; }
.hero-eyebrow {
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}
/* stats strip */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lo);
}

/* ═══════════════════════════════════════════════════════════════════
   THREAT TICKER
═══════════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding-block: 0.8rem;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-d);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-lo);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .pill { margin-bottom: 1rem; }
.section-head h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.section-head p {
  font-size: 0.97rem;
  color: var(--text-mid);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════ */
.services { padding-block: 7rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 1px gaps via background color trick */
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
}
.svc-card {
  position: relative;
  background: var(--bg-2);
  padding: 2.25rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  transition: background 0.28s var(--ease);
}
/* animated bottom bar on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.svc-card:hover { background: var(--bg-3); }
.svc-card:hover::after { transform: scaleX(1); }
/* icon box */
.svc-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--green-light);
  flex-shrink: 0;
}
.svc-icon svg { width: 20px; height: 20px; display: block; }
.svc-card h3 {
  font-family: var(--font-d);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-hi);
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.865rem;
  color: var(--text-mid);
  line-height: 1.72;
  flex-grow: 1;
}
.svc-link {
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-5px);
  transition: opacity 0.22s, transform 0.22s var(--ease);
  margin-top: 0.25rem;
}
.svc-card:hover .svc-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════════
   EDITORIAL CARDS (brand statements)
═══════════════════════════════════════════════════════════════════ */
.editorial { padding-block: 6rem; }
.ed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ed-card {
  position: relative;
  min-height: 340px;
  border-radius: 5px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: border-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.ed-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
/* individual card tones */
.ed-card:nth-child(1) { background: linear-gradient(150deg, #0c1a15 0%, #060a09 100%); }
.ed-card:nth-child(2) { background: linear-gradient(150deg, #091510 0%, #060a09 100%); }
.ed-card:nth-child(3) { background: linear-gradient(150deg, #0b1813 0%, #060a09 100%); }
/* radial light per card */
.ed-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ed-card:nth-child(1)::before { background: radial-gradient(ellipse 70% 55% at 15% 15%, rgba(15,110,86,0.12) 0%, transparent 65%); }
.ed-card:nth-child(2)::before { background: radial-gradient(ellipse 70% 55% at 85% 15%, rgba(15,110,86,0.1)  0%, transparent 65%); }
.ed-card:nth-child(3)::before { background: radial-gradient(ellipse 70% 55% at 50% 10%, rgba(29,184,143,0.09) 0%, transparent 65%); }
/* bottom fade */
.ed-card::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 72%;
  background: linear-gradient(to top, rgba(6,10,9,0.96) 20%, transparent 100%);
  pointer-events: none;
}
.ed-content {
  position: relative;
  z-index: 2;
}
.ed-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-d);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-lo);
  margin-bottom: 1.75rem;
}
.ed-brand svg { width: 15px; height: 17px; opacity: 0.65; }
.ed-card h3 {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.ed-card h3 .accent { color: var(--green-light); }

/* ═══════════════════════════════════════════════════════════════════
   APPROACH
═══════════════════════════════════════════════════════════════════ */
.approach {
  padding-block: 7rem;
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.approach-text .label { margin-bottom: 1.5rem; }
.approach-text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.approach-text > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 2.25rem;
}
/* steps */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-n {
  font-family: var(--font-d);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-light);
  min-width: 26px;
  padding-top: 2px;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: var(--font-d);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-hi);
  margin-bottom: 0.22rem;
}
.step-body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.68;
}
/* diagram */
.approach-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-diagram svg { width: 100%; max-width: 400px; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   SECTORS (trust band)
═══════════════════════════════════════════════════════════════════ */
.sectors {
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.sectors-label {
  text-align: center;
  font-family: var(--font-d);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 2.25rem;
}
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.75rem;
}
.sectors-list span {
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lo);
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}
.sectors-list span:hover { opacity: 1; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════════════ */
.why { padding-block: 7rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.85rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}
.why-card:hover { border-color: var(--green); background: var(--bg-3); }
.why-icon {
  color: var(--green-light);
  flex-shrink: 0;
  width: 34px;
  padding-top: 2px;
}
.why-icon svg { width: 20px; height: 20px; display: block; }
.why-card h4 {
  font-family: var(--font-d);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-hi);
  margin-bottom: 0.35rem;
}
.why-card p { font-size: 0.845rem; color: var(--text-mid); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════════ */
.cta-wrap { padding-block: 0 5rem; }
.cta-band {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  width: calc(100% - calc(var(--pad) * 2));
  margin-inline: auto;
  border-radius: 6px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 3.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 85% at 92% 50%, rgba(15,110,86,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  max-width: 480px;
}
.cta-actions {
  position: relative;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
}
/* brand col */
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.footer-brand-name svg { width: 24px; height: 28px; }
.footer-brand-name .brand-sec { color: var(--green-light); }
.footer-brand-name .brand-sub { font-weight: 300; color: var(--text-lo); }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-lo);
  line-height: 1.7;
  max-width: 270px;
}
/* link cols */
.footer-col h5 {
  font-family: var(--font-d);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-hi); }
/* bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.73rem; color: var(--text-lo); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.73rem;
  color: var(--text-lo);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-grid { display: none; }

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

  .ed-grid { grid-template-columns: 1fr; }
  .ed-card { min-height: 260px; }

  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-diagram { display: none; }

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

  .cta-band { flex-direction: column; text-align: center; padding: 2.75rem 2rem; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 600px) {
  :root { --pad: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

