/* ── Fonts ───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Design tokens (Summer / light theme) ────────────────────────────────── */
:root {
  --bg:          hsl(200,100%,98%);
  --bg-soft:     hsl(199,80%,95%);
  --bg-card:     hsl(199,70%,96%);
  --border:      hsl(205,45%,88%);
  --card-border: hsl(205,40%,86%);
  --primary:     hsl(202,92%,46%);
  --primary-strong: hsl(208,90%,42%);
  --primary-dim: hsla(202,92%,46%,.10);
  --primary-glow:hsla(199,95%,60%,.45);
  --accent:      hsl(184,84%,42%);
  --sun:         hsl(40,96%,56%);
  --fg:          hsl(211,52%,16%);
  --fg-muted:    hsl(209,28%,37%);
  --destructive: hsl(8,82%,53%);
  --radius:      .5rem;
  --shadow-sm:   0 1px 2px hsla(206,40%,30%,.06), 0 4px 14px hsla(206,45%,40%,.07);
  --shadow-md:   0 8px 30px hsla(206,45%,40%,.12);
  --shadow-lg:   0 24px 60px hsla(206,50%,35%,.18);
  --font-body:   'Inter', sans-serif;
  --font-head:   'Plus Jakarta Sans', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 85% -5%, hsla(199,95%,75%,.30), transparent 60%),
    radial-gradient(900px 500px at -5% 10%, hsla(184,84%,70%,.18), transparent 55%);
  background-attachment: fixed;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.1; color: var(--fg); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-primary   { color: var(--primary); }
.text-muted     { color: var(--fg-muted); }
.text-destructive { color: var(--destructive); }

/* gradient headline */
.gradient-text {
  background: linear-gradient(95deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline .gradient-text {
  background: linear-gradient(95deg, hsl(210,92%,34%) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  height: 3.5rem; padding: 0 2rem;
  border-radius: var(--radius); border: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  box-shadow: 0 8px 20px hsla(202,92%,46%,.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px hsla(202,92%,46%,.45); }
.btn-outline {
  background: #fff;
  color: var(--fg);
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--primary); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  background: hsla(200,100%,99%,.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
#nav.scrolled {
  background: hsla(200,100%,99%,.85);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo img { height: 1.75rem; }
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: .85rem; color: var(--fg-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: underline; text-decoration-color: hsla(202,92%,46%,.4);
  text-underline-offset: .35em; text-decoration-thickness: 2px;
  transition: color .2s, text-decoration-color .2s;
}
.nav-links a:hover { color: var(--primary); text-decoration-color: var(--primary); }
.nav-cta { margin-left: 1.5rem; }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--fg); padding: .25rem;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: hsla(200,100%,99%,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.nav-mobile a {
  font-size: 1rem; color: var(--fg-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://cdn.prod.website-files.com/68755440a4eb3b81eb4954d9/6a223d74d63f5b84d9813dcf_hero-bg.png') center/cover no-repeat;
  filter: brightness(1.1) saturate(1.18) contrast(1.04);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    var(--bg) 0%,
    hsla(200,100%,98%,.55) 26%,
    hsla(200,100%,98%,.14) 54%,
    hsla(200,100%,98%,0) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 7rem; }

/* frosted keyline box around the hero intro */
.hero-keyline {
  position: relative;
  max-width: 47rem;
  margin-bottom: 2.5rem;
  padding: 2.25rem 2.5rem 2.5rem;
  border-radius: 1.75rem;
  border: 1.5px solid hsla(0,0%,100%,.7);
  background: hsla(200,100%,99%,.42);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow:
    0 24px 60px hsla(206,50%,28%,.20),
    inset 0 1px 0 hsla(0,0%,100%,.65);
}
.hero-keyline .hero-sub { margin-bottom: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .85rem; border-radius: 9999px;
  background: #fff; border: 1px solid var(--card-border);
  color: var(--primary-strong); font-size: 1.008rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 1.5rem; line-height: 1.05;
}
.hero-tm {
  font-size: .28em;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: .08em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--fg-muted); line-height: 1.7;
  max-width: 42rem; margin-bottom: 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-sponsor-badge {
  display: inline-flex;
  align-items: center;
  margin-left: .25rem;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-sponsor-badge img {
  display: block;
  height: 3rem;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(15, 42, 74, .18));
}
.hero-sponsor-badge:hover { transform: translateY(-2px); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stat-card {
  background: hsla(0,0%,100%,.75); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 1rem; padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-head); font-size: 2.25rem; font-weight: 800;
  color: var(--primary); margin-bottom: .375rem;
}
.stat-label { font-size: .7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ── Sections shared ─────────────────────────────────────────────────────── */
section { padding: 7rem 0; }
.section-border { border-top: 1px solid var(--border); }
.section-bg { background: var(--bg-soft); }

/* ── Problem ─────────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.problem-headline {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800; margin-bottom: 1.5rem; line-height: 1.15;
}
.problem-body { color: var(--fg-muted); font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.crisis-list { display: flex; flex-direction: column; gap: 1rem; }
.crisis-item { display: flex; gap: .75rem; align-items: flex-start; }
.crisis-item .icon-wrap { flex-shrink: 0; margin-top: .1rem; }
.crisis-item span { font-size: 1rem; color: var(--fg); line-height: 1.5; }
.problem-img-wrap {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.problem-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.problem-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: hsla(8,82%,53%,.10);
}

/* ── Pulsar 4400 ─────────────────────────────────────────────────────────── */
#pulsar { position: relative; overflow: hidden; }
.pulsar-glow {
  position: absolute; top: 50%; right: -10rem;
  transform: translateY(-50%);
  width: 44rem; height: 44rem;
  background: var(--primary-glow);
  border-radius: 50%; filter: blur(140px);
  pointer-events: none;
}
.pulsar-img-wrap {
  position: relative;
}
.pulsar-img-wrap::before {
  content: '';
  position: absolute; inset: -1rem;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
  border-radius: 2rem; filter: blur(2rem); opacity: .8;
}
.pulsar-img {
  position: relative;
  border-radius: 1.75rem; overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}
.pulsar-img img { width: 100%; }
.pulsar-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 1rem; padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.pulsar-badge .badge-eyebrow { font-size: .65rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: .2rem; }
.pulsar-badge .badge-title   { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }

.pulsar-eyebrow {
  display: inline-flex; align-items: center;
  padding: .3rem .85rem; border-radius: 9999px;
  background: var(--primary-dim); border: 1px solid hsla(202,92%,46%,.22);
  color: var(--primary-strong); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.pulsar-headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800; margin-bottom: 1rem; line-height: 1.05;
}
.pulsar-sub {
  font-size: 1.15rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 2.5rem;
}
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.spec-card {
  background: #fff;
  border: 1px solid var(--card-border); border-radius: .875rem; padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.spec-card-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.spec-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .5rem;
  background: var(--primary-dim); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spec-card h3 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; }
.spec-card p  { font-size: .85rem; color: var(--fg-muted); line-height: 1.5; }

.pulsar-stats {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 1.25rem; padding: 1.5rem;
  display: grid; grid-template-columns: repeat(3,1fr);
  box-shadow: var(--shadow-sm);
}
.pulsar-stat { text-align: center; }
.pulsar-stat + .pulsar-stat { border-left: 1px solid var(--border); }
.pulsar-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--primary); }
.pulsar-stat-lbl { font-size: .65rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

/* ── Solution ────────────────────────────────────────────────────────────── */
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; margin-bottom: 1.25rem; }
.section-header p  { font-size: 1.15rem; color: var(--fg-muted); line-height: 1.7; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 4rem; height: 4rem; border-radius: .875rem;
  background: linear-gradient(135deg, var(--primary-dim), hsla(184,84%,42%,.12));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.feature-card p  { color: var(--fg-muted); line-height: 1.65; font-size: .975rem; }

/* ── Qualify ─────────────────────────────────────────────────────────────── */
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.qualify-grid h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: 2rem; }
.qualify-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qualify-item {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: .875rem; padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.qualify-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.qualify-item span { font-size: .9rem; font-weight: 500; }

.receive-card {
  background: linear-gradient(160deg, hsla(202,92%,46%,.10), hsla(184,84%,42%,.10));
  border: 1px solid hsla(202,92%,46%,.22);
  border-radius: 2rem; padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.receive-card h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--primary-strong); margin-bottom: 1.5rem; }
.receive-list { display: flex; flex-direction: column; gap: 1.25rem; }
.receive-item { display: flex; align-items: flex-start; gap: 1rem; }
.receive-item span { font-size: 1.1rem; line-height: 1.5; color: var(--fg); }

/* ── Apply / Form ────────────────────────────────────────────────────────── */
#apply {
  background: var(--bg-soft); position: relative; overflow: hidden;
}
.apply-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50rem; height: 50rem;
  background: var(--primary-glow); border-radius: 50%;
  filter: blur(120px); opacity: .35; pointer-events: none;
}
.apply-inner { max-width: 44rem; margin: 0 auto; position: relative; z-index: 1; }
.apply-header { text-align: center; margin-bottom: 3rem; }
.apply-header h2 { font-size: clamp(2rem,4vw,3.25rem); font-weight: 800; margin-bottom: 1.25rem; }
.apply-header p  { font-size: 1.15rem; color: var(--fg-muted); line-height: 1.7; }

.form-card {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 1.5rem; padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: .85rem; font-weight: 600; color: var(--fg);
}
.form-group input,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); color: var(--fg);
  padding: .75rem 1rem; font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: hsl(208,18%,62%); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px hsla(202,92%,46%,.15); }
.form-group textarea { min-height: 7.5rem; resize: vertical; }
.form-submit { width: 100%; margin-top: .5rem; font-size: 1.05rem; }

.form-success {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 1.5rem; padding: 3rem 2rem; text-align: center;
  display: none;
  box-shadow: var(--shadow-md);
}
.form-success .success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dim), hsla(184,84%,42%,.14));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.form-success p  { color: var(--fg-muted); font-size: 1.05rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-card); padding: 3rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-logo img { height: 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .875rem; color: var(--fg-muted); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: .875rem; color: var(--fg-muted); }

/* ── Scroll-reveal animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX( 28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.revealed,
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.95); transition: opacity .7s ease, transform .7s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ── Screen-reader only ──────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Sponsor ─────────────────────────────────────────────────────────────── */
.sponsor-card {
  position: relative;
  overflow: hidden;
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 17rem) 1fr;
  align-items: center;
  gap: 3rem;
  background:
    linear-gradient(135deg, hsla(202,92%,46%,.05), hsla(184,84%,42%,.07)),
    var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) * 2.2);
  padding: 3.25rem 3rem;
  box-shadow: var(--shadow-md);
}
.sponsor-glow {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, var(--primary-glow), transparent 65%);
  opacity: .55;
  pointer-events: none;
}
.sponsor-logo-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) * 1.6);
  padding: 1.75rem;
  box-shadow: 0 18px 40px -18px hsla(208,90%,30%,.35);
}
.sponsor-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
}
.sponsor-content {
  position: relative;
  text-align: left;
}
.sponsor-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: hsl(208,45%,28%);
  background: linear-gradient(135deg, #f5f8fb 0%, #d9e1ea 50%, #c3cedb 100%);
  border: 1px solid hsla(210,25%,70%,.7);
  border-radius: 9999px;
  padding: .55rem 1.15rem;
  box-shadow: inset 0 1px 0 hsla(0,0%,100%,.85), 0 6px 16px -8px hsla(208,40%,40%,.5);
  margin-bottom: 1.25rem;
}
.sponsor-pill svg { color: hsl(208,55%,38%); }
.sponsor-title {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: .85rem;
}
.sponsor-meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.sponsor-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 38rem;
  margin: 0 0 1.85rem;
}

/* ── Crisis stat ─────────────────────────────────────────────────────────── */
.crisis-stat { margin: 1.75rem 0 2rem; }
.crisis-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--destructive);
}
.crisis-stat-lbl {
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fg-muted);
  margin-top: .55rem;
}

/* ── Results / Treatment Timeline ────────────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.timeline-card-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}
.timeline { list-style: none; position: relative; display: flex; flex-direction: column; gap: 1.75rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
  opacity: .35;
}
.timeline-step { position: relative; padding-left: 1.85rem; }
.timeline-step::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-dim);
}
.timeline-phase { font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: .35rem; }
.timeline-step h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: .35rem; }
.timeline-step p { font-size: .9rem; line-height: 1.6; color: var(--fg-muted); }

.results-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.results-copy > p { font-size: 1.05rem; line-height: 1.7; color: var(--fg-muted); }
.results-disclosure { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.results-disclosure summary {
  display: flex; align-items: center; gap: .6rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-head);
  font-weight: 600; color: var(--primary); font-size: 1rem;
}
.results-disclosure summary::-webkit-details-marker { display: none; }
.results-disclosure-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--card-border); border-radius: 50%;
  font-weight: 700; line-height: 1;
  transition: transform .3s ease;
}
.results-disclosure[open] .results-disclosure-icon { transform: rotate(45deg); }
.results-disclosure-body { margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.results-disclosure-body p { font-size: .95rem; line-height: 1.7; color: var(--fg-muted); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col, .qualify-grid, .results-grid { grid-template-columns: 1fr; }
  .problem-img-wrap { order: -1; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; max-width: 22rem; }
  .pulsar-grid { grid-template-columns: 1fr !important; }
  .pulsar-badge { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .qualify-list { grid-template-columns: 1fr; }
  .sponsor-card {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
    justify-items: center;
    padding: 2.75rem 2rem;
  }
  .sponsor-logo-panel { max-width: 16rem; }
  .sponsor-content { text-align: center; }
}
@media (max-width: 600px) {
  section { padding: 5rem 0; }
  .sponsor-card { padding: 2.25rem 1.5rem; }
  .sponsor-title { font-size: 1.5rem; }
  .three-col { grid-template-columns: 1fr; }
  .spec-grid  { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-sponsor-badge { margin-left: 0; justify-content: center; }
}
