/* ============================================================
   Honeybear v2 · Wireframe-driven, Aikido-inspired
   ============================================================ */

:root {
  --gold:        #e6af14;
  --gold-light:  #f5d060;
  --gold-soft:   #f9dd86;
  --cyan:        #3dcce1;
  --cyan-soft:   rgba(61,204,225,.14);
  --dark:        #0d0a04;
  --dark-2:      #14100a;
  --dark-3:      #1c1608;
  --dark-card:   #1a1407;
  --dark-card-2: #221a09;
  --ink:         #ffffff;
  --ink-2:       rgba(255,255,255,.78);
  --ink-3:       rgba(255,255,255,.56);
  --ink-4:       rgba(255,255,255,.32);
  --line:        rgba(230,175,20,.16);
  --line-2:      rgba(255,255,255,.08);
  --radius:      24px;
  --radius-sm:   14px;
  --maxw:        1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Russo One', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 22px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  transform: translateY(-50%);
  opacity: .8;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--ink-2); }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .92rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 24px rgba(230,175,20,.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 36px rgba(230,175,20,.4);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark-2); color: var(--ink);
  border-color: rgba(255,255,255,.12);
}
.btn-dark:hover { background: #1d160a; border-color: var(--gold); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Shine sweep on primary */
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .6s ease;
}
.btn-primary:hover::after { left: 100%; }

/* ─────────────── Nav ─────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(13,10,4,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(13,10,4,.92);
  border-bottom-color: rgba(230,175,20,.12);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img {
  height: 36px; width: auto;
}

.nav-links { display: flex; gap: .15rem; margin-left: 1.5rem; }
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--ink-2);
  padding: .5rem .9rem;
  border-radius: 8px;
  transition: all .18s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav-cta { margin-left: auto; display: flex; gap: .6rem; }
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 640px) { .nav-cta .btn-ghost { display: none; } }

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  padding: 9rem 1.5rem 6rem;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,175,20,.18) 0%, transparent 70%), var(--dark);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230,175,20,.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245,208,96,.07) 0%, transparent 45%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .6; }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 76,22 76,68 40,90 4,68 4,22' fill='none' stroke='%23e6af14' stroke-opacity='0.07' stroke-width='1'/></svg>");
  background-size: 80px 92px;
  opacity: .6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 80%);
  animation: drift 30s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 80px 92px; }
}

.hero-inner {
  max-width: 1160px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-right { position: relative; }
.hero-bear {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-bear::before {
  content: ''; position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(230,175,20,.22) 0%, transparent 60%);
  filter: blur(24px);
  z-index: 0;
}
.hero-bear img {
  position: relative;
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: 1.08rem; line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
  max-width: 540px;
}
.hero p.sub {
  font-size: .98rem; color: var(--ink-3);
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.hero-checks {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  gap: .6rem;
}
.hero-checks li {
  display: flex; align-items: center; gap: .7rem;
  color: var(--ink-2);
  font-size: .96rem;
}
.hero-checks .check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(230,175,20,.1);
}
.hero-checks .check svg { width: 12px; height: 12px; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-foot { color: var(--ink-3); font-size: .85rem; font-style: italic; }

/* Pipeline diagram (right side of hero) */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  align-items: center;
}
.pipe-node {
  background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-2) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem .75rem;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.pipe-node:hover {
  border-color: rgba(230,175,20,.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(230,175,20,.15);
}
.pipe-icon {
  width: 44px; height: 44px;
  margin: 0 auto .6rem;
  background: linear-gradient(135deg, rgba(230,175,20,.18), rgba(230,175,20,.04));
  border: 1px solid rgba(230,175,20,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pipe-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.pipe-label {
  font-size: .72rem; color: var(--ink-2);
  line-height: 1.3;
  font-weight: 500;
}
.pipe-arrow {
  color: var(--gold); opacity: .6;
  text-align: center;
  font-size: 1.1rem;
  animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); opacity: .4; }
  50% { transform: translateX(3px); opacity: 1; }
}
.pipe-arrow:nth-child(4) { animation-delay: .2s; }
.pipe-arrow:nth-child(6) { animation-delay: .4s; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pipeline { gap: .35rem; }
}
@media (max-width: 520px) {
  .pipeline { grid-template-columns: 1fr; }
  .pipeline .pipe-arrow { transform: rotate(90deg); }
}

/* ─────────────── Section ─────────────── */
section { position: relative; padding: 6rem 1.5rem; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 1.1rem;
}
.section-head p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─────────────── Problem ─────────────── */
.problem { background: var(--dark-2); }
.problem-grid {
  max-width: var(--maxw); margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--dark-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2rem;
  transition: all .3s ease;
}
.problem-card:hover {
  border-color: rgba(230,175,20,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.problem-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(230,175,20,.2), rgba(230,175,20,.05));
  border: 1px solid rgba(230,175,20,.25);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.problem-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: .55rem;
  letter-spacing: -.005em;
}
.problem-card p { color: var(--ink-2); font-size: .95rem; line-height: 1.65; }

.problem-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

/* Stats strip */
.stats-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat {
  background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: left;
  transition: all .3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(230,175,20,.35);
  box-shadow: 0 16px 40px rgba(230,175,20,.08);
}
.stat-number {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--gold);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.stat-label { color: var(--ink); font-weight: 600; margin-bottom: .2rem; font-size: .95rem; }
.stat-source { color: var(--ink-3); font-size: .82rem; }
@media (max-width: 820px) { .problem-grid, .stats-grid { grid-template-columns: 1fr; } }

/* ─────────────── Solution panel ─────────────── */
.solution { background: var(--dark); }
.sol-card {
  max-width: 1160px; margin: 0 auto;
  background:
    radial-gradient(circle at 0% 0%, rgba(230,175,20,.07) 0%, transparent 50%),
    linear-gradient(160deg, #1f1701 0%, #261d04 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 80px -20px rgba(0,0,0,.5);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: ''; position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,175,20,.5), transparent);
}

/* Attacker → decoy → bear → alert flow */
.sol-flow {
  background:
    radial-gradient(circle at 50% 40%, rgba(230,175,20,.14) 0%, transparent 65%),
    linear-gradient(135deg, #0a0703 0%, #14100a 100%);
  border-radius: 16px;
  border: 1px solid rgba(230,175,20,.12);
  padding: 2rem 1rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 10px 30px rgba(0,0,0,.3);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: .35rem;
  align-items: start;
}
.flow-node {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-circle {
  width: 76px; height: 76px;
  margin: 0 0 .55rem 0;
  background: linear-gradient(135deg, rgba(230,175,20,.6), rgba(230,175,20,.2));
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  flex-shrink: 0;
  position: relative;
}
.flow-circle::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #1f1701 0%, #0e0a04 100%);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.flow-circle:hover { transform: scale(1.08); }
.flow-circle svg { width: 30px; height: 30px; fill: var(--gold); position: relative; z-index: 1; }
.flow-circle img { width: 52px; height: 52px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 0 .3px #e6af14); }
.flow-label {
  font-size: .72rem;
  color: var(--ink-2);
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.flow-arrow {
  color: var(--gold);
  opacity: .65;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  height: 76px;
}

.sol-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.5rem;
  margin-top: 1.5rem;
}
.sol-bullets li {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--ink-2); font-size: .94rem;
  line-height: 1.5;
}
.sol-bullets .check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
}
.sol-bullets .check svg { width: 11px; height: 11px; }
.sol-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 1.1rem;
}
.sol-content p { color: var(--ink-2); margin-bottom: .9rem; line-height: 1.7; font-size: .98rem; }
@media (max-width: 940px) {
  .sol-card { grid-template-columns: 1fr; }
  .sol-flow { order: -1; }
  .sol-bullets { grid-template-columns: 1fr; }
}

/* ─────────────── How it works (4 steps) ─────────────── */
.how { background: var(--dark-2); }
.how-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  background:
    radial-gradient(circle at 50% 0%, rgba(230,175,20,.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-card) 0%, var(--dark-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(230,175,20,.45);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,.4), 0 8px 24px rgba(230,175,20,.08);
}
.step-badge {
  width: 44px; height: 44px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Russo One', sans-serif;
  color: var(--dark);
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(230,175,20,.3);
  transition: transform .4s ease;
}
.step:hover .step-badge { transform: rotate(360deg); }
.step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: .55rem;
}
.step p { color: var(--ink-2); font-size: .9rem; line-height: 1.6; }
.how-note {
  max-width: 760px; margin: 3rem auto 0;
  text-align: center;
  color: var(--ink-2); font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 980px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

/* ─────────────── SIEM pipeline ─────────────── */
.siem { background: var(--dark); }
.siem-flow {
  max-width: 720px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.siem-node {
  background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-3) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: var(--ink);
  font-weight: 600;
  transition: all .3s ease;
  white-space: nowrap;
  text-align: center;
  min-width: 140px;
}
.siem-node:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(230,175,20,.15);
}
.siem-node.origin {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(230,175,20,.3);
}
.siem-trunk {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), rgba(230,175,20,.3));
}
.siem-branch {
  position: relative;
  width: 80%;
  max-width: 560px;
  height: 32px;
}
.siem-branch::before {
  /* horizontal bar connecting the three branches */
  content: '';
  position: absolute;
  top: 0;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, rgba(230,175,20,.3), var(--gold), rgba(230,175,20,.3));
}
.siem-branch::after {
  /* center stub from trunk down to the horizontal bar (already at top) */
  content: '';
}
.siem-branch span {
  /* vertical drops from horizontal bar to each child */
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), rgba(230,175,20,.3));
}
.siem-branch span:nth-child(1) { left: 16.66%; transform: translateX(-1px); }
.siem-branch span:nth-child(2) { left: 50%;    transform: translateX(-1px); }
.siem-branch span:nth-child(3) { left: 83.33%; transform: translateX(-1px); }
.siem-children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 80%;
  max-width: 560px;
}
.siem-children .siem-node {
  width: 100%;
  min-width: 0;
  justify-self: center;
}
@media (max-width: 640px) {
  .siem-branch, .siem-children { width: 100%; }
  .siem-children { grid-template-columns: 1fr; gap: .6rem; }
  .siem-branch { display: none; }
  .siem-trunk { height: 20px; }
}

/* ─────────────── Why ─────────────── */
.why { background: var(--dark-2); }
.why-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: rgba(230,175,20,.4);
  transform: translateY(-5px);
}
.why-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(230,175,20,.18), rgba(230,175,20,.04));
  border: 1px solid rgba(230,175,20,.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: .6rem;
  color: var(--ink);
}
.why-card p { color: var(--ink-2); font-size: .92rem; line-height: 1.6; }
.why-note {
  max-width: 800px; margin: 3rem auto 0;
  text-align: center;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.75;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ─────────────── For organizations / partners ─────────────── */
.audience { background: var(--dark); }
.audience-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.aud-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(230,175,20,.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-card-2) 0%, var(--dark-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all .3s ease;
}
.aud-card:hover {
  border-color: rgba(230,175,20,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.4);
}
.aud-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.aud-card .desc { color: var(--ink-2); margin-bottom: 1.5rem; font-size: .98rem; line-height: 1.65; }
.aud-list { list-style: none; margin-bottom: 1.75rem; display: grid; gap: .75rem; }
.aud-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--ink-2); font-size: .94rem;
}
.aud-list .check {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: .15rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
}
.aud-list .check svg { width: 11px; height: 11px; }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

/* ─────────────── European values ─────────────── */
.eu { background: var(--dark-2); }
.eu-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.eu-emblem {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(61,204,225,.12) 0%, rgba(61,204,225,.04) 40%, transparent 75%),
    linear-gradient(135deg, #0a1a2e 0%, #061322 60%, #030a14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* fade edges into the section background */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 45%, rgba(0,0,0,.4) 75%, transparent 100%);
          mask-image: radial-gradient(ellipse at center, #000 45%, rgba(0,0,0,.4) 75%, transparent 100%);
}
.eu-emblem-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%; height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.eu-emblem-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(230,175,20,.4));
}
.eu-stars {
  position: absolute;
  inset: 0;
}
.eu-star {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  margin: -11px;
  color: var(--gold);
}
.eu-star svg { width: 100%; height: 100%; fill: currentColor; filter: drop-shadow(0 0 4px rgba(230,175,20,.55)); }
.eu-content h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 1rem; }
.eu-content p { color: var(--ink-2); margin-bottom: 1rem; line-height: 1.7; }
.eu-mission {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(230,175,20,.06);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--ink); font-size: .98rem;
  line-height: 1.65;
  font-style: italic;
}
@media (max-width: 820px) { .eu-grid { grid-template-columns: 1fr; gap: 2rem; } .eu-emblem { max-width: 220px; } }

/* ─────────────── Final CTA ─────────────── */
.cta { background: var(--dark); }
.cta-inner {
  max-width: 980px; margin: 0 auto;
  background:
    radial-gradient(circle at 80% 20%, rgba(230,175,20,.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245,208,96,.15) 0%, transparent 50%),
    linear-gradient(135deg, #1c1503 0%, #2a1f04 100%);
  border: 1px solid rgba(230,175,20,.3);
  border-radius: var(--radius);
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::after {
  content: ''; position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 76,22 76,68 40,90 4,68 4,22' fill='none' stroke='%23e6af14' stroke-opacity='0.1' stroke-width='1'/></svg>");
  background-size: 80px 92px;
  opacity: .5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 20%, transparent 75%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--ink-2); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────── Footer ─────────────── */
footer {
  background: var(--dark);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.foot-grid {
  max-width: var(--maxw); margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.foot-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: .55rem; }
.foot-col a { color: var(--ink-2); font-size: .92rem; transition: color .15s ease; }
.foot-col a:hover { color: var(--gold); }
.foot-tag { color: var(--ink-2); font-size: .92rem; line-height: 1.6; max-width: 300px; margin-top: 1rem; }
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  color: var(--ink-3); font-size: .85rem;
}
.foot-bottom a { color: var(--ink-3); margin-left: 1rem; }
.foot-bottom a:hover { color: var(--gold); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ─────────────── Reveal animations ─────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─────────────── Modal ─────────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,4,2,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(230,175,20,.08);
  transform: translateY(10px) scale(.98);
  transition: transform .25s ease;
}
.modal-backdrop.open .modal { transform: none; }
.modal-close {
  position: absolute;
  top: .85rem; right: .85rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all .2s ease;
}
.modal-close:hover { background: rgba(230,175,20,.12); color: var(--gold); border-color: var(--gold); }
.modal h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.4rem;
  margin-bottom: .35rem;
}
.modal .modal-sub { color: var(--ink-2); font-size: .92rem; margin-bottom: 1.4rem; line-height: 1.55; }
.modal form { display: flex; flex-direction: column; gap: .85rem; }
.modal label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.modal input, .modal textarea, .modal select {
  font-family: inherit;
  font-size: .95rem;
  padding: .7rem .85rem;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
  outline: none;
}
.modal input:focus, .modal textarea:focus, .modal select:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,.5);
}
.modal textarea { resize: vertical; min-height: 90px; }
.modal .modal-actions { margin-top: .4rem; display: flex; gap: .6rem; }
.modal .modal-actions .btn { flex: 1; justify-content: center; }
.modal-success {
  display: none;
  text-align: center;
  padding: 1rem 0 .25rem;
}
.modal-success.show { display: block; }
.modal-success .ok-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: 800;
}
body.modal-open { overflow: hidden; }
.reveal.r-left { transform: translateX(-24px); }
.reveal.r-left.in { transform: none; }
.reveal.r-right { transform: translateX(24px); }
.reveal.r-right.in { transform: none; }
.reveal.r-scale { transform: scale(.94); }
.reveal.r-scale.in { transform: scale(1); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.stagger.in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.stagger.in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .12s; }
.stagger.in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .19s; }
.stagger.in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .26s; }
.stagger.in > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .33s; }
.stagger.in > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .4s; }

/* Float subtle */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floaty { animation: float 6s ease-in-out infinite; }

/* Count-up numbers stay opaque */
.stat-number.counting { opacity: 1 !important; }
