/* ============================================================
   TOKENS
============================================================ */
:root {
  --navy:       #15232F;
  --navy-deep:  #0d1820;
  --navy-mid:   #1c2e3d;
  --red:        #CF3917;
  --red-dark:   #b03010;
  --teal:       #70C2B5;
  --yellow:     #F6CD45;
  --cream:      #F6F6E3;
  --mint:       #F8FBF4;
  --on-dark:    rgba(246,246,227,0.88);
  --on-dark-dim: rgba(246,246,227,0.45);
  --radius:     3px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.22s;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: block;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow--dim  { color: var(--on-dark-dim); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  background: rgba(13, 24, 32, 0.0);
  border-bottom: 1px solid transparent;
  transition:
    background var(--t) var(--ease),
    border-color var(--t) var(--ease),
    backdrop-filter var(--t) var(--ease);
}
nav.scrolled {
  background: rgba(13, 24, 32, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--t) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 201;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246,246,227,0.22);
}
.btn-outline:hover { border-color: rgba(246,246,227,0.55); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-mid); }

/* ============================================================
   POSITIONING STRIP
============================================================ */
#positioning {
  background: var(--cream);
  padding: 7rem 0;
}
.positioning-wrap {
  max-width: 860px;
}
.positioning-statement {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 3.5rem;
}
.positioning-statement strong { font-weight: 700; }
.positioning-statement .accent { color: var(--red); }

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pillar {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(21,35,47,0.18);
  border-radius: 100px;
  color: var(--navy);
  transition: background var(--t), color var(--t), border-color var(--t);
  cursor: default;
}
.pillar:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ============================================================
   SERVICES
============================================================ */
#services {
  background: var(--navy);
  padding: 7rem 0;
}
.section-header {
  margin-bottom: 3.75rem;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}
.section-title--dark { color: var(--navy); }

/* Grid with divider lines */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(246,246,227,0.07);
}
.service-card {
  padding: 3rem 2.75rem;
  border-top: 2px solid transparent;
  border-right: 1px solid rgba(246,246,227,0.07);
  border-bottom: 1px solid rgba(246,246,227,0.07);
  transition: background var(--t);
  cursor: default;
}
.service-card:nth-child(even) { border-right: none; }
.service-card:hover { background: var(--navy-mid); }

.service-card:nth-child(1) { border-top-color: var(--red); }
.service-card:nth-child(2) { border-top-color: var(--teal); }
.service-card:nth-child(3) { border-top-color: var(--yellow); }
.service-card:nth-child(4) { border-top-color: rgba(207,57,23,0.5); }

.service-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--on-dark-dim);
  margin-bottom: 1.75rem;
}
.service-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--on-dark-dim);
}

/* ============================================================
   PROCESS / HOW WE HELP
============================================================ */
#process { background: var(--mint);
  padding: 7rem 0;
}
.process-intro {
  margin-bottom: 4.5rem;
}
.process-friction {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.process-friction em {
  font-style: normal;
  color: var(--red);
}

/* Linear flow: 4 columns */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* no connector line */

.process-step {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--teal);
  background: rgba(112,194,181,0.10);
  transition: transform var(--t), box-shadow var(--t);
}
.process-step:nth-child(even) {
  border-top-color: var(--yellow);
  background: rgba(246,205,69,0.10);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(21,35,47,0.08);
}

/* Circle node */
.process-node {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(21,35,47,0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.process-node-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
}

/* no arrows */

.process-step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.process-step-body {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(21,35,47,0.6);
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   INSIGHTS
============================================================ */
#insights {
  background: var(--cream);
  padding: 7rem 0;
  border-top: 2px solid var(--red);
}
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.all-articles {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity var(--t);
}
.all-articles:hover { opacity: 0.65; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.insight-card {
  background: var(--mint);
  padding: 2.5rem 2rem 2rem;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.insight-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.insight-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(21,35,47,0.09); }
.insight-card:hover::after { transform: scaleX(1); }

.insight-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.insight-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 0.875rem;
}
.insight-excerpt {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(21,35,47,0.6);
  margin-bottom: 2rem;
}
.insight-foot {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.78rem;
  color: rgba(21,35,47,0.35);
  font-weight: 600;
}
.insight-foot::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--red);
  opacity: 0.6;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--navy);
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: center;
}
.about-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}
.about-body {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--on-dark-dim);
  margin-bottom: 2.5rem;
}
.about-body p + p { margin-top: 1.1rem; }

/* Visual panel */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(112,194,133,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.visual-ring::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(207,57,23,0.1);
}
.visual-ring::after {
  content: '';
  position: absolute;
  inset: -64px;
  border-radius: 50%;
  border: 1px solid rgba(207,57,23,0.05);
}
.visual-ring img,
.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  border: 3px solid rgba(112,194,181,0.35);
}
.visual-dot {
  position: absolute;
  border-radius: 50%;
}
.visual-dot--1 {
  width: 8px; height: 8px;
  background: var(--red);
  top: 40px; right: 30px;
  opacity: 0.7;
}
.visual-dot--2 {
  width: 5px; height: 5px;
  background: var(--teal);
  bottom: 60px; left: 20px;
  opacity: 0.6;
}

/* ============================================================
   CTA BAND
============================================================ */
#contact {
  background: var(--red);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto 1.25rem;
}
.cta-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin: 0 auto 2.75rem;
}

/* ============================================================
   CLIENTS
============================================================ */
#clients {
  background: var(--cream);
  padding: 7rem 0 0;
  border-top: 1px solid rgba(21,35,47,0.08);
}
.clients-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.clients-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--red);
  max-width: 760px;
}
.clients-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(21,35,47,0.55);
  max-width: 620px;
}
.clients-sub-accent {
  display: block;
  margin-top: 0.75rem;
  color: var(--navy);
  font-weight: 700;
}

/* Logos row */
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: nowrap;
  width: 100%;
  padding: 3rem 0;
  border-top: 1px solid rgba(21,35,47,0.07);
  border-bottom: 1px solid rgba(21,35,47,0.07);
}
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity var(--t), filter var(--t);
}
.client-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}
.logo-safespill {
  height: 150px;
  width: auto;
  max-width: 360px;
  filter: invert(1);
}
.client-logo-item:hover .logo-safespill {
  filter: none;
}
.logo-innovaito {
  height: 150px;
  width: auto;
  max-width: 220px;
}
.logo-insightmatters {
  height: 37px;
  width: auto;
  max-width: 240px;
}
/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .clients-logos {
    gap: 3rem;
  }
  .logo-safespill      { height: 90px;  max-width: 240px; }
  .logo-innovaito      { height: 100px; max-width: 160px; }
  .logo-insightmatters { height: 30px;  max-width: 180px; }
}

/* Mobile */
@media (max-width: 600px) {
  .clients-logos {
    display: block;
    overflow: hidden;
    position: relative;
    height: 160px;
    padding: 0;
    border-top: 1px solid rgba(21,35,47,0.07);
    border-bottom: 1px solid rgba(21,35,47,0.07);
  }
  .client-logo-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0 !important;
    filter: grayscale(1) !important;
    transition: opacity 0.6s var(--ease);
  }
  .client-logo-item.mobile-active {
    opacity: 0.55 !important;
  }
  .logo-safespill      { height: 80px;  max-width: 260px; }
  .logo-innovaito      { height: 110px; max-width: 180px; }
  .logo-insightmatters { height: 32px;  max-width: 200px; }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-deep);
  padding: 3.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 32px; width: auto; display: block; }
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(246,246,227,0.38);
  font-weight: 600;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(246,246,227,0.25);
}

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    order: -1;
    justify-content: flex-start;
  }
  .visual-ring {
    width: 260px;
    height: 260px;
  }
  .about-photo {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(even) { border-right: none; }
  .service-card { border-right: none; }

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

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 1rem; }
  .hamburger { display: flex; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.75rem; }
  .btn { font-size: 0.6rem; padding: 0.8rem 1.4rem; }
}
*, *::before, *::after { cursor: none !important; }

#cur-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: #CF3917;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: width .18s ease, height .18s ease,
              margin .18s ease, background .18s ease, opacity .18s ease;
}
#cur-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(207,57,23,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width .35s ease, height .35s ease,
              margin .35s ease, border-color .25s ease,
              opacity .25s ease, transform .05s linear;
}
/* hover state — dot grows, ring expands + dims */
body.cur-hover #cur-dot {
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
}
body.cur-hover #cur-ring {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border-color: rgba(207,57,23,0.28);
}
/* click flash */
body.cur-click #cur-dot {
  background: #ff6040;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
}
/* hide when cursor leaves window */
#cur-dot.hidden, #cur-ring.hidden { opacity: 0; }

  
/* ── CUSTOM CURSOR ────────────────────────────────────────────── */
*, *::before, *::after { cursor: none !important; }

#cur-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: #CF3917;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  box-shadow:
    0 0 6px 2px rgba(207,57,23,0.7),
    0 0 18px 4px rgba(207,57,23,0.3);
  animation: cur-pulse 2.4s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.1s ease, background 0.35s ease, box-shadow 0.35s ease;
}
@keyframes cur-pulse {
  0%,100% { box-shadow: 0 0 6px 2px rgba(207,57,23,0.7), 0 0 18px 4px rgba(207,57,23,0.3); }
  50%      { box-shadow: 0 0 10px 4px rgba(207,57,23,0.9), 0 0 28px 8px rgba(207,57,23,0.15); }
}
#cur-blob {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform, width, height, margin;
  background: radial-gradient(circle,
    rgba(207,57,23,0.18) 0%,
    rgba(207,57,23,0.06) 55%,
    transparent 75%);
  filter: blur(4px);
  transition: width .55s cubic-bezier(.23,1,.32,1),
              height .55s cubic-bezier(.23,1,.32,1),
              margin .55s cubic-bezier(.23,1,.32,1),
              opacity .4s ease,
              background .4s ease,
              filter .4s ease,
              box-shadow .35s ease;
}
#cur-dot.cur-hidden, #cur-blob.cur-hidden { opacity: 0; }
/* dot fades when hovering interactive elements */
#cur-dot.cur-hover { opacity: 0; }
/* blob expands + brightens on hover — dimensions set via JS */
#cur-blob.cur-hover {
  background: radial-gradient(circle,
    rgba(207,57,23,0.22) 0%,
    rgba(207,57,23,0.10) 50%,
    transparent 72%);
  filter: blur(10px);
}

/* Teal cursor on red (#CF3917) sections */
body.cur-on-red #cur-dot {
  background: #70C2B5;
  box-shadow:
    0 0 6px 2px rgba(112,194,181,0.7),
    0 0 18px 4px rgba(112,194,181,0.3);
  animation-name: cur-pulse-teal;
}
@keyframes cur-pulse-teal {
  0%, 100% {
    box-shadow:
      0 0 6px 2px rgba(112,194,181,0.7),
      0 0 18px 4px rgba(112,194,181,0.3);
  }
  50% {
    box-shadow:
      0 0 10px 4px rgba(112,194,181,0.9),
      0 0 28px 8px rgba(112,194,181,0.15);
  }
}
body.cur-on-red #cur-blob {
  background: radial-gradient(circle,
    rgba(112,194,181,0.18) 0%,
    rgba(112,194,181,0.06) 55%,
    transparent 75%);
}
body.cur-on-red #cur-blob.cur-hover {
  background: radial-gradient(circle,
    rgba(112,194,181,0.22) 0%,
    rgba(112,194,181,0.10) 50%,
    transparent 72%);
}

  
/* ============================================================
   HERO
============================================================ */
#home {
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-atmosphere::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,57,23,0.10) 0%, transparent 65%);
}
.hero-atmosphere::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -60px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,194,181,0.07) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,246,227,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,246,227,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2rem;
  display: block;
}

.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 1.75rem;
}
.hero-headline .accent { color: var(--red); }

.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--on-dark-dim);
  max-width: 540px;
  margin-bottom: 3rem;
}

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

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(207,57,23,0.4) 30%, rgba(207,57,23,0.4) 70%, transparent 100%);
}

/* ── HERO VIDEO BIRD ─────────────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100svh;
  padding: 9rem 0 7rem;
  position: relative;
  z-index: 2;
  width: 100%;
  gap: 4rem;
}
.hero-bird-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#bird-canvas {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 11;
  display: block;
}
#bird-video {
  display: none !important;
  position: absolute;
  pointer-events: none;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 9rem 0 5rem;
    gap: 0;
  }
  .hero-bird-col { display: none; }
}
/* ── END HERO VIDEO BIRD ────────────────────────────────────────── */

  
/* ── AUDIENCE SECTION ─────────────────────────────────────────── */
#audience {
  background: #fff;
  padding: 7rem 0;
  border-top: 2px solid var(--red);
}
#audience .section-header {
  margin-bottom: 3.5rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.audience-card {
  background: rgba(112,194,181,0.10);
  padding: 3rem 2.75rem;
  border-top: 3px solid #70C2B5;
  transition: box-shadow var(--t), transform var(--t);
}
.audience-card:nth-child(2) {
  background: rgba(246,205,69,0.10);
  border-top-color: var(--yellow);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(21,35,47,0.08);
}
.audience-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.75rem;
}
.audience-q {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.audience-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(21,35,47,0.68);
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
}
/* ── END AUDIENCE SECTION ─────────────────────────────────────── */

  
/* ── PROCESS SECTION ──────────────────────────────────────────── */
#process {
  background: var(--mint);
  padding: 7rem 0;
  border-top: 1px solid rgba(21,35,47,0.07);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.process-step {
  padding-top: 2rem;
  border-top: 2px solid rgba(21,35,47,0.1);
  position: relative;
}
.process-step:nth-child(1) { border-top-color: var(--red); }
.process-step:nth-child(2) { border-top-color: var(--teal); }
.process-step:nth-child(3) { border-top-color: var(--yellow); }
.process-step:nth-child(4) { border-top-color: var(--navy); }
.process-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(21,35,47,0.35);
  margin-bottom: 1rem;
}
.process-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1rem;
}
.process-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(21,35,47,0.65);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}
/* ── END PROCESS SECTION ──────────────────────────────────────── */
