﻿/* ============================================================
   BMBLANCE - Save the Bees Movement
   Stylesheet
   ============================================================ */

:root {
  --honey-50:  #fff8e1;
  --honey-100: #ffeaa7;
  --honey-200: #ffd54f;
  --honey-300: #f6c34d;
  --honey-400: #f1a52a;
  --honey-500: #d98e1f;
  --honey-600: #a8690d;
  --honey-700: #6e4308;

  --ink-900: #0c0900;
  --ink-800: #14100a;
  --ink-700: #1c1610;
  --ink-600: #28201a;
  --ink-500: #3a2f24;
  --ink-300: #6f5f4d;
  --ink-100: #cdbfb0;

  --cream: #f8f1e0;
  --white: #ffffff;
  --danger: #ff6b6b;
  --success: #7bd389;

  --max: 1200px;
  --radius: 14px;
  --shadow-glow: 0 8px 40px -10px rgba(241, 165, 42, 0.45);
  --shadow-deep: 0 30px 60px -25px rgba(0,0,0,.7);

  --font-display: 'Bebas Neue', 'Cormorant Garamond', serif;
  /* --font-serif:   'Cormorant Garamond', Georgia, serif; */
  --font-sans:    'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  background: var(--ink-900);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

.back-to-top-wrap { width: 100%; text-align: center; margin-top: 2.75rem; }

  .back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem 0.7rem 0.75rem;
    font: 600 0.95rem/1 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.02em;
    color: var(--btt-ink);
    text-decoration: none;
    background: linear-gradient(180deg, var(--btt-honey-lite) 0%, var(--btt-honey) 55%, var(--btt-honey-deep) 100%);
    border: 1px solid rgba(43, 26, 6, 0.20);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(245, 152, 12, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(245, 152, 12, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    filter: saturate(1.06);
  }
  .back-to-top:active { transform: translateY(-1px); }
  .back-to-top:focus-visible { outline: 3px solid var(--btt-ink); outline-offset: 3px; }

  /* Honeycomb hexagon badge holding the up-arrow â€” the bee-themed signature */
  .back-to-top__badge {
    display: grid; place-items: center;
    width: 26px; height: 26px;
    color: var(--btt-honey);
    background: var(--btt-ink);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform .25s ease;
  }
  .back-to-top:hover .back-to-top__badge { transform: translateY(-2px); }
  .back-to-top__badge svg { width: 13px; height: 13px; display: block; }
  
  

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }

/* ============================================================
   HONEYCOMB BACKGROUND
   ============================================================ */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--ink-900);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(241,165,42,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(217,142,31,.15) 0%, transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'><g fill='none' stroke='%23f1a52a' stroke-width='1' stroke-opacity='.08'><polygon points='42,2 78,24 78,72 42,94 6,72 6,24'/><polygon points='0,48 36,26 36,-22'/><polygon points='84,48 48,26 48,-22'/><polygon points='0,48 36,70 36,118'/><polygon points='84,48 48,70 48,118'/></g></svg>");
  background-size: cover, cover, 84px 96px;
  background-position: center, center, center;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.65) 100%);
}

/* ============================================================
   FLOATING BEES
   ============================================================ */
.bee-swarm {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bee {
  position: absolute;
  font-size: 28px;
  filter: drop-shadow(0 4px 8px rgba(241,165,42,.35));
  animation: bee-fly 18s linear infinite;
  opacity: .9;
}

/* Bees moving left -> right (face right, default emoji orientation) */
.bee-1 { top: 12%; left: -5%;  animation: bee-fly 22s linear infinite; animation-delay: 0s;  }
.bee-3 { top: 60%; left: -5%;  animation: bee-fly 25s linear infinite; animation-delay: 9s;  font-size: 32px; }
.bee-5 { top: 22%; left: -5%;  animation: bee-fly 26s linear infinite; animation-delay: 14s; }
.bee-7 { top: 70%; left: -5%;  animation: bee-fly 33s linear infinite; animation-delay: 7s;  font-size: 20px; }

/* Bees moving right -> left (flipped to face left) */
.bee-2 { top: 35%; right: -5%; animation: bee-fly-reverse 28s linear infinite; animation-delay: 5s;  font-size: 22px; }
.bee-4 { top: 80%; right: -5%; animation: bee-fly-reverse 30s linear infinite; animation-delay: 2s;  font-size: 24px; }
.bee-6 { top: 50%; right: -5%; animation: bee-fly-reverse 20s linear infinite; animation-delay: 11s; font-size: 26px; }

@keyframes bee-fly {
  0%   { transform: translate(0, 0)        scaleX(-1) rotate(8deg); }
  20%  { transform: translate(30vw, -40px) scaleX(-1) rotate(-5deg); }
  40%  { transform: translate(55vw, 30px)  scaleX(-1) rotate(10deg); }
  60%  { transform: translate(75vw, -30px) scaleX(-1) rotate(-8deg); }
  80%  { transform: translate(95vw, 25px)  scaleX(-1) rotate(5deg); }
  100% { transform: translate(115vw, 0)    scaleX(-1) rotate(0deg); }
}

@keyframes bee-fly-reverse {
  0%   { transform: translate(0, 0)         rotate(8deg); }
  20%  { transform: translate(-30vw, -40px) rotate(-5deg); }
  40%  { transform: translate(-55vw, 30px)  rotate(10deg); }
  60%  { transform: translate(-75vw, -30px) rotate(-8deg); }
  80%  { transform: translate(-95vw, 25px)  rotate(5deg); }
  100% { transform: translate(-115vw, 0)    rotate(0deg); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(12, 9, 0, .65);
  border-bottom: 1px solid rgba(241,165,42,.15);
  transition: padding .3s ease, background .3s ease;
}

.navbar.scrolled {
  padding: 12px 32px;
  background: rgba(12, 9, 0, .85);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--honey-200);
}

.brand-emoji { font-size: 28px; filter: drop-shadow(0 0 10px rgba(241,165,42,.6)); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--honey-200), var(--honey-400));
  transition: width .3s ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--honey-200); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--honey-300), var(--honey-500));
  color: var(--ink-900) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: transform .2s ease, box-shadow .25s ease;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 50px -8px rgba(241,165,42,.7); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  color: var(--honey-200);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 40px;
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  text-align: center;
}

/* Large hero bee */
.hero-bee {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bee-bob 4.5s ease-in-out infinite;
}

.hero-bee-emoji {
  font-size: 140px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 12px 30px rgba(241,165,42,.55));
  animation: bee-flutter .15s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

.hero-bee-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(241,165,42,.55) 0%, rgba(241,165,42,.2) 35%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: bee-pulse 3s ease-in-out infinite;
  filter: blur(10px);
}

@keyframes bee-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}

@keyframes bee-flutter {
  from { transform: translateX(-1px) scaleY(1); }
  to   { transform: translateX(1px) scaleY(1.02); }
}

@keyframes bee-pulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}

.center-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--honey-200);
  background: rgba(241,165,42,.08);
  border: 1px solid rgba(241,165,42,.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
  animation: fade-up .8s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--honey-200);
  background: rgba(241,165,42,.08);
  border: 1px solid rgba(241,165,42,.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
  animation: fade-up .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 144px);
  line-height: .92;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: var(--cream);
}

.hero-line {
  display: block;
  animation: fade-up 1s ease both;
}

.hero-line:nth-child(1) { animation-delay: .1s; }
.hero-line:nth-child(2) { animation-delay: .25s; }
.hero-line:nth-child(3) { animation-delay: .4s; }
.hero-line.accent {
  background: linear-gradient(135deg, var(--honey-200), var(--honey-400) 60%, var(--honey-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(241,165,42,.35));
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(248, 241, 224, .82);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fade-up 1s .55s ease both;
}

.hero-cta {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fade-up 1s .7s ease both;
}

.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--honey-200), var(--honey-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px -10px rgba(241,165,42,.7); }
.btn-ghost {
  background: transparent;
  color: var(--honey-200);
  border: 1.5px solid rgba(241,165,42,.45);
}
.btn-ghost:hover { background: rgba(241,165,42,.08); border-color: var(--honey-200); }
.btn-large { padding: 16px 36px; font-size: 16px; }

.oneoff-pillars {
  grid-template-columns: repeat(0, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  animation: fade-up 1s .85s ease both;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  animation: fade-up 1s .85s ease both;
}
.pillar {
  background: rgba(20, 16, 10, .55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(241,165,42,.18);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: left;
  transition: transform .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(241,165,42,.45);
}
.pillar-icon { font-size: 28px; margin-bottom: 10px; }
.pillar h4 { font-size: 16px; color: var(--honey-200); margin-bottom: 6px; }
.pillar p { font-size: 14px; color: rgba(248,241,224,.75); }

.scroll-indicator {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(241,165,42,.5);
  border-radius: 14px;
  cursor: pointer;
}
.scroll-indicator span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: var(--honey-200);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 14px); opacity: .3; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  position: relative;
  z-index: 2;
  padding: 56px 24px;
}
.section-dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.65)),
    radial-gradient(ellipse at top, rgba(241,165,42,.15), transparent 60%);
}
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-inner.narrow { max-width: 820px; }

.section-head { margin-bottom: 32px; max-width: 820px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--honey-300);
  background: rgba(241,165,42,.06);
  border: 1px solid rgba(241,165,42,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title em {
/*
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--honey-200), var(--honey-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;*/
  display: inline-block;
  padding-right: 0.12em;   /* room for italic slant */
  font-style: italic;       /* keep semantic em styling */
}

.section-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(248,241,224,.85);
  line-height: 1.55;
  font-weight: 400;
}

.chain {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 2px;
  color: var(--honey-200);
  text-shadow: 0 0 24px rgba(241,165,42,.3);
}

/* ============================================================
   WHY BEES MATTER
   ============================================================ */
   
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.center-grid {
  display: grid;
  grid-template-columns: repeat(0, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
 
.why-card {
  background:
    linear-gradient(135deg, rgba(241,165,42,.06), rgba(0,0,0,0)),
    rgba(20,16,10,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(241,165,42,.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,165,42,.5);
  box-shadow: var(--shadow-glow);
}
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--honey-200);
  margin-bottom: 10px;
}
.why-card p { color: rgba(248,241,224,.78); font-size: 15.5px; }

.quote-block {
  text-align: center;
  /*border-top: 1px solid rgba(241,165,42,.2);*/
  /* border-bottom: 1px solid rgba(241,165,42,.2);*/
  padding: 56px 24px;
  position: relative;
}
.quote-block::before, .quote-block::after {
  /*content: '[U+1F41D]';*/
  position: absolute;
  font-size: 22px;
  top: -14px;
  background: var(--ink-900);
  padding: 0 12px;
}
.quote-block::before { left: 50%; transform: translateX(-50%); }
.quote-block::after { display: none; }
.quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 14px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.quote-block cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-300);
}

/* ============================================================
   CRISIS
   ============================================================ */
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}
.crisis-card {
  background: rgba(20,16,10,.6);
  border: 1px solid rgba(255,107,107,.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease;
  position: relative;
}
.crisis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,107,.6), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.crisis-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,107,.45);
}
.crisis-icon { font-size: 30px; margin-bottom: 12px; }
.crisis-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--honey-100);
  margin-bottom: 8px;
}
.crisis-card p { font-size: 15px; color: rgba(248,241,224,.78); }

.repercussion-banner {
  background:
    linear-gradient(135deg, rgba(255,107,107,.12), rgba(241,165,42,.08));
  border: 1px solid rgba(255,107,107,.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.repercussion-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(241,165,42,.25), transparent 50%);
  pointer-events: none;
}
.repercussion-banner h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--honey-200);
  margin-bottom: 18px;
  position: relative;
}
.repercussion-banner ul {
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
}
.repercussion-banner li {
  padding-left: 28px;
  position: relative;
  color: rgba(248,241,224,.85);
  font-size: 16px;
}
.repercussion-banner li::before {
  content: '\0026A0 \00FE0F ';
  position: absolute;
  left: 0; top: 1px;
  font-size: 14px;
}

/* ============================================================
   FACTS & STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.stat-card {
  background: rgba(20,16,10,.6);
  border: 1px solid rgba(241,165,42,.22);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(241,165,42,.15), transparent 60%);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(241,165,42,.5); box-shadow: var(--shadow-glow); }
.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--honey-100), var(--honey-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(248,241,224,.78);
  letter-spacing: .3px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(20,16,10,.5);
  border-left: 3px solid var(--honey-300);
  padding: 18px 22px;
  border-radius: 6px;
  font-size: 15px;
  color: rgba(248,241,224,.88);
}
.fact-emoji { font-size: 24px; flex-shrink: 0; }

/* ============================================================
   MISSION
   ============================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.mission-card {
  background: rgba(20,16,10,.55);
  border: 1px solid rgba(241,165,42,.18);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.mission-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241,165,42,.5);
}
.mission-num {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 2px;
  color: rgba(241,165,42,.18);
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--honey-200);
  margin-bottom: 10px;
  position: relative;
}
.mission-card p { color: rgba(248,241,224,.8); font-size: 15.5px; position: relative; }

.mission-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--honey-100);
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  border-top: 1px solid rgba(241,165,42,.25);
  border-bottom: 1px solid rgba(241,165,42,.25);
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.community-card {
  background: rgba(20,16,10,.55);
  border: 1px solid rgba(241,165,42,.2);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.community-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,165,42,.5);
  box-shadow: var(--shadow-glow);
}
.community-icon { font-size: 36px; margin-bottom: 12px; }
.community-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--honey-200);
  margin-bottom: 8px;
}
.community-card p { font-size: 14px; color: rgba(248,241,224,.78); }

.community-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 32px;
  background: linear-gradient(135deg, rgba(241,165,42,.08), rgba(0,0,0,0));
  border: 1px solid rgba(241,165,42,.2);
  border-radius: var(--radius);
}
.community-stats > div { text-align: center; }
.community-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 2px;
  color: var(--honey-200);
  line-height: 1;
}
.community-stats span {
  font-size: 13px;
  color: rgba(248,241,224,.7);
  letter-spacing: .5px;
}

/* ============================================================
   SIGNUP
   ============================================================ */
.section-signup {
  background:
    radial-gradient(ellipse at center, rgba(241,165,42,.18), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.5));
}

.signup-form {
  background: rgba(20,16,10,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(241,165,42,.3);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-deep);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-bottom: 22px;
}
.signup-form label {
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-200);
  font-weight: 600;
}
.signup-form input {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(241,165,42,.25);
  background: rgba(0,0,0,.4);
  color: var(--cream);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.signup-form input:focus {
  border-color: var(--honey-200);
  box-shadow: 0 0 0 4px rgba(241,165,42,.15);
}
.signup-form input::placeholder { color: rgba(248,241,224,.35); }

.form-action { text-align: center; margin-top: 8px; }
.form-fineprint {
  font-size: 12px;
  color: rgba(248,241,224,.55);
  text-align: center;
  margin-top: 16px;
  letter-spacing: .3px;
}

#submitBtn { min-width: 220px; position: relative; }
#submitBtn .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,.2);
  border-top-color: var(--ink-900);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
#submitBtn.loading .btn-label { opacity: .7; }
#submitBtn.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ALERT AREA */
.alert-area { margin-top: 22px; min-height: 0; }
.alert {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: fade-up .4s ease both;
}
.alert-success {
  background: rgba(123,211,137,.1);
  border: 1px solid rgba(123,211,137,.4);
  color: var(--success);
}
.alert-error {
  background: rgba(255,107,107,.1);
  border: 1px solid rgba(255,107,107,.4);
  color: var(--danger);
}
.alert-warning {
  background: rgba(241,165,42,.12);
  border: 1px solid rgba(241,165,42,.4);
  color: var(--honey-100);
}
.alert strong { display: block; margin-bottom: 4px; font-size: 14px; }
.alert-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.85));
  border-top: 1px solid rgba(241,165,42,.2);
  padding: 64px 24px 24px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--honey-200);
  margin-bottom: 12px;
}

.footer-tag { color: rgba(248,241,224,.7); font-size: 14px; line-height: 1.6; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--honey-200);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(248,241,224,.75); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--honey-200); }

.chain-mini {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--honey-100);
  letter-spacing: .5px;
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(241,165,42,.15);
  text-align: center;
  font-size: 13px;
  color: rgba(248,241,224,.55);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
   
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; max-width: 320px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12,9,0,.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 84px 28px 32px;
    gap: 18px;
    overflow-y: auto;
    transition: right .35s ease;
    border-left: 1px solid rgba(241,165,42,.2);
  }
  .nav-links a, .nav-links span { padding: 10px 0; font-size: 16px; }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; }

  .hero-pillars { grid-template-columns: 1fr; }
  .why-grid, .mission-grid, .crisis-grid, .stats-grid { grid-template-columns: 1fr; }
  .fact-strip { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .navbar { padding: 14px 18px; }
  .section { padding: 40px 18px; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .signup-form { padding: 24px 20px; }
  .community-stats { gap: 28px; }
  .hero-bee { width: 130px; height: 130px; margin-bottom: 18px; }
  .hero-bee-emoji { font-size: 100px; }
}

/* ============================================================
   CROSS-PLATFORM + MOBILE-RESPONSIVE HARDENING
   (added to make the site work consistently across browsers,
    tablets, and phones - and to fix hero-less pages whose
    first section sat behind the fixed navbar.)
   ============================================================ */

/* Consistent text scaling on iOS/Safari + no accidental sideways scroll */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { overflow-x: hidden; }

/* Media never overflows its container */
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }

/* Long words / URLs wrap instead of forcing horizontal scroll */
p, li, h1, h2, h3, h4, h5, cite, blockquote, .section-lead,
.hero-subtitle, .hero-tag, .mission-quote, .footer-tag {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* FIX: pages that start with a <section> right after the fixed
   navbar (token / roadmap / white) were hidden under the bar.
   Give that first section enough top clearance. Pages that start
   with .hero already clear the navbar via the hero's own padding. */
.navbar + .section { padding-top: 104px; }

/* Buttons and inputs never exceed the viewport width */
#submitBtn { max-width: 100%; }
button, input, select, textarea { max-width: 100%; }
input, textarea, select { font-size: 16px; } /* stops iOS zoom-on-focus */

/* Make the menu button sit above the slide-in panel */
.nav-toggle { position: relative; z-index: 110; }

/* Tablet range: keep two columns instead of jumping straight to one */
@media (min-width: 601px) and (max-width: 960px) {
  .why-grid, .mission-grid, .crisis-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar + .section { padding-top: 100px; }
}

/* Phones */
@media (max-width: 600px) {
  .navbar + .section { padding-top: 88px; }
  .section-inner { width: 100%; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .brand { font-size: 22px; }
  .brand-emoji { font-size: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
  .section { padding-left: 14px; padding-right: 14px; }
  .navbar { padding: 12px 14px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .bee-swarm { display: none; }
}

/* ============================================================
   WHAT MAKES BMBLANCE DIFFERENT
   ============================================================ */
.different-section {
  margin-top: 64px;
  padding: 56px 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at top left, rgba(241,165,42,.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(40,32,26,.55) 0%, rgba(20,16,10,.85) 100%);
  border: 1px solid rgba(241,165,42,.18);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.different-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--honey-300), transparent);
  opacity: .7;
}
.different-head {
  text-align: center;
  margin-bottom: 40px;
}
.different-head .kicker {
  margin-bottom: 8px;
}
.different-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 12px;
  line-height: 1.2;
}
.different-lead {
  color: rgba(248,241,224,.82);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .principles-grid { grid-template-columns: 1fr; }
  .different-section { padding: 40px 22px; }
}
.principle-card {
  background: rgba(28,22,16,.65);
  border: 1px solid rgba(241,165,42,.22);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,213,79,.55);
  box-shadow: 0 18px 40px -18px rgba(241,165,42,.45);
}
.principle-card .principle-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(241,165,42,.4));
}
.principle-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--honey-200);
  margin-bottom: 10px;
  line-height: 1.25;
}
.principle-card p {
  color: rgba(248,241,224,.80);
  font-size: 15px;
  line-height: 1.6;
}
.ecosystem-callout {
  margin-top: 8px;
  padding: 36px 36px 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(241,165,42,.10), rgba(255,213,79,.05));
  border-left: 4px solid var(--honey-300);
  position: relative;
}
.ecosystem-callout h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 14px;
  line-height: 1.25;
}
.ecosystem-callout p {
  color: rgba(248,241,224,.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.ecosystem-callout p:last-child { margin-bottom: 0; }
.ecosystem-callout strong { color: var(--honey-200); font-weight: 600; }

/* ============================================================
   JOIN THE HIVE - COMMUNITY SECTION
   ============================================================ */
.hive-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.hive-intro p {
  color: rgba(248,241,224,.82);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.hive-intro p:last-child { margin-bottom: 0; }
.hive-intro .pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--honey-200);
  letter-spacing: .04em;
  line-height: 1.3;
  margin: 28px 0;
}

.hive-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .hive-blocks { grid-template-columns: 1fr; }
}
.hive-block {
  background: rgba(28,22,16,.55);
  border: 1px solid rgba(241,165,42,.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.hive-block:hover {
  border-color: rgba(255,213,79,.45);
  transform: translateY(-3px);
}
.hive-block h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hive-block h4 .hb-icon {
  font-size: 26px;
  filter: drop-shadow(0 4px 12px rgba(241,165,42,.4));
}
.hive-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hive-block li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: rgba(248,241,224,.82);
  font-size: 15.5px;
  line-height: 1.6;
}
.hive-block li:last-child { margin-bottom: 0; }
.hive-block li::before {
  content: '\01F41D ';
  position: absolute;
  left: 0; top: 1px;
  font-size: 14px;
  filter: drop-shadow(0 2px 4px rgba(241,165,42,.5));
}

.hive-roles {
  background:
    linear-gradient(135deg, rgba(241,165,42,.08), rgba(110,67,8,.10));
  border: 1px solid rgba(241,165,42,.20);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 48px;
  text-align: center;
}
.hive-roles h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 12px;
}
.hive-roles > p {
  color: rgba(248,241,224,.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.role-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20,16,10,.6);
  border: 1px solid rgba(241,165,42,.30);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.role-chip:hover {
  transform: translateY(-2px);
  border-color: var(--honey-200);
  color: var(--honey-200);
}
.hive-roles .closing {
  color: rgba(248,241,224,.85);
  font-size: 15px;
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hive-stay {
  background: rgba(28,22,16,.65);
  border: 1px solid rgba(241,165,42,.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-deep);
}
.hive-stay h4 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 12px;
}
.hive-stay > p {
  color: rgba(248,241,224,.82);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hive-signup-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
}
@media (max-width: 560px) {
  .hive-signup-form { flex-direction: column; }
}
.hive-signup-form input {
  flex: 1 1 auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(12,9,0,.7);
  border: 1px solid rgba(241,165,42,.35);
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.hive-signup-form input::placeholder { color: rgba(248,241,224,.45); }
.hive-signup-form input:focus {
  border-color: var(--honey-200);
  box-shadow: 0 0 0 3px rgba(241,165,42,.18);
}
.hive-signup-form button {
  white-space: nowrap;
}
.hive-fineprint {
  color: rgba(248,241,224,.55);
  font-size: 13px;
  margin-top: 8px;
}

.hive-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.hive-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(241,165,42,.30);
  background: rgba(20,16,10,.6);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}
.hive-btn:hover {
  transform: translateY(-2px);
  border-color: var(--honey-200);
  color: var(--honey-100);
  background: rgba(241,165,42,.10);
}
.hive-btn .hb-ico {
  font-size: 16px;
  display: inline-block;
}

/* ============================================================
   WHITEPAPER PAGE - refined typography & download CTA
   ============================================================ */
.whitepaper-hero {
  text-align: center;
  padding: 24px 0 48px;
  border-bottom: 1px solid rgba(241,165,42,.15);
  margin-bottom: 48px;
}
.whitepaper-hero .kicker { margin-bottom: 10px; }
.whitepaper-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: .04em;
  color: var(--honey-200);
  line-height: 1.1;
  margin-bottom: 12px;
}
.whitepaper-hero .tagline {
  font-style: italic;
  color: rgba(248,241,224,.78);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 24px;
}
.whitepaper-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--honey-300), var(--honey-400));
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 15px;
  box-shadow: 0 12px 40px -10px rgba(241,165,42,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whitepaper-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -10px rgba(241,165,42,.7);
}
.whitepaper-download .dl-ico { font-size: 18px; }

.wp-toc {
  background: rgba(28,22,16,.5);
  border: 1px solid rgba(241,165,42,.18);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.wp-toc h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--honey-200);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.wp-toc ol {
  columns: 2;
  column-gap: 32px;
  padding-left: 22px;
  margin: 0;
  color: rgba(248,241,224,.82);
}
@media (max-width: 720px) {
  .wp-toc ol { columns: 1; }
}
.wp-toc li { margin-bottom: 8px; font-size: 15px; }
.wp-toc a { color: rgba(248,241,224,.85); transition: color .2s ease; }
.wp-toc a:hover { color: var(--honey-200); }

.wp-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.wp-section h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: .04em;
  color: var(--honey-200);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(241,165,42,.20);
  display: flex;
  align-items: center;
  gap: 12px;
}
.wp-section h3 .wp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(241,165,42,.15);
  border: 1px solid rgba(241,165,42,.35);
  font-size: 16px;
  font-weight: 700;
  color: var(--honey-200);
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.wp-section h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--honey-100);
  margin: 22px 0 12px;
}
.wp-section p {
  color: rgba(248,241,224,.85);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.wp-section ul {
  list-style: none;
  margin: 12px 0 18px 0;
  padding: 0;
}
.wp-section ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: rgba(248,241,224,.82);
  font-size: 15.5px;
  line-height: 1.6;
}
.wp-section ul li::before {
  content: '\0025C6 ';
  position: absolute;
  left: 4px; top: 1px;
  color: var(--honey-300);
  font-size: 10px;
}
.wp-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0 24px;
}
@media (max-width: 720px) {
  .wp-pill-grid { grid-template-columns: 1fr; }
}
.wp-pill {
  background: rgba(28,22,16,.5);
  border: 1px solid rgba(241,165,42,.18);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.wp-pill .wp-pill-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(248,241,224,.55);
  margin-bottom: 4px;
}
.wp-pill .wp-pill-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--honey-200);
  letter-spacing: .03em;
}
.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 14px;
}
@media (max-width: 720px) { .tx-grid { grid-template-columns: 1fr; } }
.tx-card {
  background: rgba(28,22,16,.55);
  border: 1px solid rgba(241,165,42,.22);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.tx-card .tx-pct {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--honey-200);
  line-height: 1;
  margin-bottom: 6px;
}
.tx-card .tx-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(248,241,224,.7);
}

/* ============================================================
   UPDATES PAGE
   ============================================================ */
.updates-hero {
  text-align: center;
  padding: 16px 0 48px;
  border-bottom: 1px solid rgba(241,165,42,.15);
  margin-bottom: 48px;
}
.updates-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.update-card {
  background: rgba(28,22,16,.55);
  border: 1px solid rgba(241,165,42,.20);
  border-radius: var(--radius);
  padding: 30px 32px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.update-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,213,79,.45);
  box-shadow: 0 14px 30px -12px rgba(241,165,42,.40);
}
.update-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,241,224,.6);
}
.update-date {
  color: var(--honey-200);
  font-weight: 600;
}
.update-tag {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(241,165,42,.30);
  background: rgba(20,16,10,.6);
  color: var(--honey-100);
  font-size: 12px;
}
.update-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: .04em;
  color: var(--honey-200);
  line-height: 1.25;
  margin-bottom: 12px;
}
.update-card p {
  color: rgba(248,241,224,.82);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.update-card p:last-child { margin-bottom: 0; }
.updates-empty {
  text-align: center;
  padding: 48px 24px;
  color: rgba(248,241,224,.75);
  border: 1px dashed rgba(241,165,42,.25);
  border-radius: var(--radius);
  background: rgba(28,22,16,.35);
}
.updates-empty h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--honey-200);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
