/* ============================================================
   $BONKA — Illustrated Cartoon Factory Landing Page
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --purple: #5b21b6;
  --purple-deep: #2d0a4e;
  --purple-light: #7c3aed;
  --purple-darker: #1a0533;
  --gold: #fbbf24;
  --gold-light: #fde68a;
  --gold-dark: #d97706;
  --choco: #4a210c;
  --choco-dark: #2a0e04;
  --choco-light: #7c4a2a;
  --cream: #fff8e7;
  --cream-dark: #f5e6c8;
  --pink: #ec4899;
  --blue: #3b82f6;
  --green: #22c55e;
  --red: #ef4444;
  --white: #ffffff;
  --ink: #1a0533;

  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  background: var(--purple-deep);
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- ticker tape ---------- */
.ticker-tape {
  background: var(--purple-darker);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- navigation ---------- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--purple-deep);
  border-bottom: 3px solid rgba(251, 191, 36, 0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.logo-icon { font-size: 1.6rem; }
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
}
.nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  background: rgba(26, 5, 51, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  transition: 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
  font-size: 1.2rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- HERO ---------- */
.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;
}
.hero {
  position: relative;
  min-height: calc(100svh - 44px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45, 10, 78, .82) 0%, rgba(45, 10, 78, .46) 47%, rgba(45, 10, 78, .2) 100%),
    url('../assets/bonka_bg1.webp') center center / cover no-repeat;
  padding: clamp(42px, 7vw, 82px) 20px clamp(120px, 14vw, 170px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 42%, rgba(251, 191, 36, .18), transparent 31rem),
    linear-gradient(180deg, rgba(26, 5, 51, .08) 0%, rgba(42, 14, 4, .36) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.hero-top {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(16px, 2.5vw, 28px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(45, 10, 78, .72), rgba(45, 10, 78, .32));
  backdrop-filter: blur(8px);
}
.hero-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: min(100%, 760px);
  max-height: min(52svh, 460px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 42px rgba(26, 5, 51, .52));
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  color: var(--gold);
  text-shadow:
    0 4px 0 var(--gold-dark),
    0 8px 0 rgba(0,0,0,0.3),
    0 0 60px rgba(251, 191, 36, 0.3);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.title-dollar {
  color: var(--purple-light);
  text-shadow:
    0 4px 0 var(--purple),
    0 8px 0 rgba(0,0,0,0.3);
}
.hero-banner {
  display: inline-block;
  background: var(--purple);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  border: 2px solid var(--purple-light);
}
.hero-desc {
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.94);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.65;
  text-shadow: 0 3px 14px rgba(26, 5, 51, .72);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.social-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--purple);
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  transition: all 0.2s;
}
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover {
  background: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

/* signboards */
.signboards { display: flex; flex-wrap: wrap; gap: 10px; }
.signboard {
  background: var(--choco);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  border: 2px solid var(--choco-light);
  transform: rotate(-2deg);
}
.signboard.sb2 { transform: rotate(1deg); }

/* hero right - status callout */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 440px;
}
.factory-callout {
  width: min(100%, 330px);
  padding: 20px;
  border: 4px solid var(--gold);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(45, 10, 78, .92), rgba(91, 33, 182, .84));
  box-shadow: 0 24px 70px rgba(26, 5, 51, .42), inset 0 -5px 0 rgba(0,0,0,.16);
  transform: rotate(3deg);
}
.factory-callout span,
.factory-callout em {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.factory-callout strong {
  display: block;
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  text-shadow: 0 3px 0 var(--gold-dark);
}
.factory-callout em {
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

/* candy decorations */
.candy-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.candy-cane {
  position: absolute;
  width: 30px;
  height: 120px;
  border-radius: 15px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 10px,
    var(--white) 10px 20px
  );
  border: 2px solid rgba(0,0,0,0.15);
}
.cc1 { bottom: 60px; left: 3%; transform: rotate(-15deg); }
.cc2 { bottom: 80px; right: 5%; transform: rotate(20deg); height: 100px; }
.lollipop {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(var(--pink), var(--blue), var(--green), var(--gold), var(--pink));
  border: 3px solid rgba(255,255,255,0.3);
}
.lollipop::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 6px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: 3px;
  transform: translateX(-50%);
}
.lp1 { bottom: 100px; left: 12%; }
.lp2 { bottom: 70px; right: 15%; width: 40px; height: 40px; }
.lp2::after { height: 30px; bottom: -30px; }
.gumball {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: inset -4px -4px 8px rgba(0,0,0,0.2);
}
.gb1 { background: var(--pink); bottom: 50px; left: 20%; }
.gb2 { background: var(--blue); bottom: 40px; left: 28%; width: 22px; height: 22px; }
.gb3 { background: var(--green); bottom: 55px; right: 22%; }
.gb4 { background: var(--gold); bottom: 35px; right: 30%; width: 20px; height: 20px; }
.gb5 { background: var(--purple-light); bottom: 65px; left: 45%; width: 24px; height: 24px; }

/* chocolate river */
.choco-river {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(74, 33, 12, 0.6) 30%, var(--choco));
  z-index: 1;
}
.choco-river::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30'%3E%3Cpath d='M0 30 Q100 0 200 20 Q300 35 400 15 Q500 0 600 25 Q700 35 800 10 Q900 0 1000 20 Q1100 35 1200 15 L1200 30 Z' fill='%234a210c' opacity='0.6'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 30px;
  animation: wave-flow 8s linear infinite;
}
@keyframes wave-flow {
  0% { background-position-x: 0; }
  100% { background-position-x: -600px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: 3px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.4), inset 0 -3px 0 var(--gold-dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(251, 191, 36, 0.5), inset 0 -3px 0 var(--gold-dark);
}
.btn-secondary {
  background: var(--purple);
  color: var(--gold-light);
  border-color: var(--purple-light);
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.3), inset 0 -3px 0 rgba(0,0,0,0.2);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--purple-light);
}

/* ---------- choco drip borders ---------- */
.choco-drip-top {
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 5;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0H1440V12C1400 14 1360 10 1320 16C1290 52 1260 12 1220 14C1180 10 1140 18 1100 12C1070 50 1040 10 1000 14C960 8 920 20 880 12C850 48 820 8 780 14C740 10 700 18 660 12C630 46 600 8 560 14C520 10 480 20 440 12C410 48 380 8 340 14C300 10 260 18 220 12C190 46 160 10 120 14C80 8 40 18 0 12Z' fill='%234a210c'/%3E%3C/svg%3E") no-repeat top / 100% 48px;
}
.section.has-drip {
  position: relative;
  padding-top: 80px;
}

/* ---------- section base ---------- */
.section {
  position: relative;
  padding: 60px 20px 80px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  text-shadow: 0 3px 0 var(--gold-dark), 0 6px 0 rgba(0,0,0,0.2);
  margin-bottom: 40px;
}
.section-title.center { text-align: center; }

/* ---------- ABOUT ---------- */
.about-section {
  background: var(--cream);
  color: var(--ink);
}
.about-section .section-title { color: var(--purple); text-shadow: none; }
.about-section p { color: var(--choco); }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-coin {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-coin-img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  box-shadow: 0 0 0 5px var(--choco), 0 20px 60px rgba(74, 33, 12, 0.4);
  transform: rotate(-5deg);
}
.coin-splash {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(74, 33, 12, 0.25), transparent 70%);
  border-radius: 50%;
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(91, 33, 182, 0.08);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(91, 33, 182, 0.15);
}
.feat-icon { font-size: 1.4rem; }
.feat-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--purple);
}

/* ---------- WHY ---------- */
.why-section {
  background: var(--purple);
}
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ---------- TOKENOMICS ---------- */
.token-section {
  background: var(--cream);
  color: var(--ink);
}
.token-section .section-title { color: var(--purple); text-shadow: none; }
.token-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}
.token-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
.token-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--purple);
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 40%;
}
.token-value {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 16px;
  background: rgba(91, 33, 182, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.token-value.tba {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.token-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.coin-stack {
  position: relative;
  width: 200px;
  height: 260px;
}
.stack-coin {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  border: 4px solid var(--gold-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2), inset 0 -6px 12px rgba(0,0,0,0.15);
}
.stack-coin::after {
  content: '🐻';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
}
.s1 { bottom: 0; left: 0; }
.s2 { bottom: 20px; left: 40px; }
.s3 { bottom: 40px; left: 80px; }
.s4 { bottom: 60px; left: 30px; }
.s5 { bottom: 80px; left: 65px; }

/* ---------- ROADMAP ---------- */
.roadmap-section {
  background: var(--purple-deep);
}
.roadmap-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.rm-stage {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rm-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: var(--purple);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}
.rm-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(251, 191, 36, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 12px;
}
.rm-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.rm-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rm-card li {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.rm-connector {
  width: 4px;
  height: 30px;
  background: linear-gradient(var(--gold), var(--purple-light));
  margin-left: 30px;
  border-radius: 2px;
}

/* ---------- HOW TO BUY ---------- */
.htb-section {
  background: var(--cream);
  color: var(--ink);
}
.htb-section .section-title { color: var(--purple); text-shadow: none; }
.htb-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}
.htb-step {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 20px 12px;
  background: rgba(91, 33, 182, 0.05);
  border: 2px solid rgba(91, 33, 182, 0.12);
  border-radius: var(--radius-lg);
  position: relative;
}
.htb-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--purple);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.htb-icon {
  font-size: 2.2rem;
  margin: 12px 0 8px;
}
.htb-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 6px;
}
.htb-step p {
  font-size: 0.8rem;
  color: var(--choco);
  line-height: 1.4;
}
.htb-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--purple-light);
  padding-top: 40px;
}

/* ---------- BOTTOM BANNER ---------- */
.bottom-banner {
  background: var(--purple);
  padding: 32px 20px;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.bottom-banner p {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--gold-light);
  letter-spacing: 0.06em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--purple-deep);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(251, 191, 36, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 24px 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ---------- COMMUNITY FOOTER ---------- */
.community-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(251, 191, 36, .2), transparent 24rem),
    linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  padding: clamp(64px, 8vw, 94px) 20px clamp(30px, 5vw, 50px);
  border-top: 4px solid var(--gold);
}
.community-footer::before {
  content: '';
  position: absolute;
  inset: auto -5% 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(74, 33, 12, .7));
  pointer-events: none;
}
.community-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, .92fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.community-copy {
  text-align: left;
  max-width: 560px;
}
.community-kicker {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.community-footer h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 4.6rem);
  line-height: .95;
  color: var(--gold);
  text-shadow: 0 4px 0 var(--gold-dark), 0 12px 36px rgba(0,0,0,.3);
  margin-bottom: 20px;
}
.community-text {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.82);
  font-size: 1.06rem;
  line-height: 1.65;
}
.community-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
.community-mascot-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 460px;
}
.footer-mascot {
  width: min(100%, 610px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.42));
  transform: rotate(2deg);
}
.btn-community {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(251, 191, 36, 0.25);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.2s;
}
.btn-community:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-emoji { font-size: 1.1rem; }

/* ---------- DISCLAIMER ---------- */
.disclaimer {
  background: var(--choco-dark);
  padding: 20px;
  text-align: center;
  border-top: 2px solid var(--choco-light);
}
.disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0d0218;
  padding: 20px;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero {
    background-position: center top;
    padding-top: 24px;
  }
  .hero-top {
    max-width: 92%;
    padding: 14px;
  }
  .hero-logo-img {
    max-height: 42svh;
  }
  .factory-callout {
    transform: rotate(-1deg);
  }
  .hero-buttons { justify-content: center; }
  .social-row { justify-content: center; }
  .signboards { justify-content: center; }
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-features { grid-template-columns: 1fr; }
  .about-coin-img { max-width: 220px; }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .token-inner {
    grid-template-columns: 1fr;
  }
  .token-visual { order: -1; }
  .coin-stack { height: 200px; }
  .htb-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .htb-arrow {
    transform: rotate(90deg);
    padding: 0;
    text-align: center;
  }
  .community-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .community-copy {
    margin: 0 auto;
    text-align: center;
  }
  .community-buttons { justify-content: center; }
  .community-mascot-wrap { min-height: auto; }
  .footer-mascot {
    max-width: 520px;
    margin: 0 auto;
  }
  .candy-cane, .lollipop, .gumball { display: none; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 16px 100px; }
  .section { padding: 40px 16px 60px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   Bullcalf-inspired unification pass
   - logo first, copy block below
   - one soft pastel palette across all sections
   ============================================================ */
:root {
  --page: #fff8f2;
  --blush: #fdebe1;
  --blush-2: #fbd9d0;
  --mint: #c9e9dc;
  --sky: #d6ecf3;
  --beige: #f6dcb0;
  --beige-2: #e9c68e;
  --cow: #3e332c;
  --soft: #8b7a6e;
  --rose: #ef9aa0;
  --rose-d: #e67b84;
}

body {
  color: var(--cow);
  background: var(--page);
}

.ticker-tape {
  background: var(--blush);
  border-top: 2px solid rgba(62, 51, 44, .12);
  border-bottom: 2px solid rgba(62, 51, 44, .12);
}
.ticker-track span { color: var(--cow); }

.main-nav {
  background: rgba(255, 248, 242, .86);
  border-bottom: 2px solid rgba(62, 51, 44, .1);
  box-shadow: 0 10px 30px rgba(62, 51, 44, .05);
}
.nav-logo { color: var(--cow); }
.nav-links a { color: rgba(62, 51, 44, .68); }
.nav-links a:hover { color: var(--rose-d); background: rgba(239, 154, 160, .14); }
.nav-cta {
  color: var(--cow);
  background: var(--beige);
  box-shadow: 0 8px 24px rgba(233, 198, 142, .38);
}
.nav-hamburger span { background: var(--cow); }

.hero {
  min-height: calc(100svh - 42px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,248,242,.16) 0%, rgba(255,248,242,.44) 100%),
    url('../assets/bonka_bg1.webp') center center / cover no-repeat;
  padding: clamp(32px, 5vw, 62px) 20px clamp(108px, 12vw, 150px);
}
.hero-overlay {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.34), transparent 32rem),
    linear-gradient(180deg, rgba(255,248,242,.06), rgba(255,248,242,.32));
}
.hero-content {
  gap: clamp(.65rem, 1.8vw, 1.35rem);
}
.hero-brand {
  order: 1;
}
.hero-logo-img {
  width: min(100%, 870px);
  max-height: min(54svh, 540px);
  filter: drop-shadow(0 18px 38px rgba(62, 51, 44, .24));
}
.hero-top {
  order: 2;
  max-width: 760px;
  padding: clamp(16px, 2.2vw, 24px);
  color: var(--cow);
  background: rgba(255,248,242,.78);
  border: 3px solid rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(62, 51, 44, .16);
  backdrop-filter: blur(10px);
}
.hero-desc {
  color: var(--cow);
  text-shadow: none;
  margin-bottom: 18px;
}
.hero-buttons,
.social-row { justify-content: center; }
.btn-primary {
  color: var(--cow);
  background: var(--beige);
  border-color: var(--beige-2);
  box-shadow: 0 10px 26px rgba(233, 198, 142, .34), inset 0 -3px 0 rgba(62, 51, 44, .08);
}
.btn-secondary {
  color: var(--cow);
  background: var(--mint);
  border-color: rgba(62, 51, 44, .12);
  box-shadow: 0 10px 26px rgba(201, 233, 220, .34), inset 0 -3px 0 rgba(62, 51, 44, .08);
}
.social-icon {
  color: var(--cow);
  background: rgba(255,255,255,.78);
  border-color: rgba(62, 51, 44, .12);
}
.social-icon:hover {
  color: var(--rose-d);
  background: #fff;
  box-shadow: 0 10px 24px rgba(62, 51, 44, .14);
}
.signboard {
  color: var(--cow);
  background: var(--blush-2);
  border-color: rgba(62, 51, 44, .12);
}
.factory-callout {
  width: min(100%, 410px);
  margin-top: 14px;
  text-align: center;
  color: var(--cow);
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(62, 51, 44, .12);
  box-shadow: none;
  transform: rotate(-1deg);
}
.factory-callout span,
.factory-callout em { color: var(--soft); }
.factory-callout strong {
  color: var(--rose-d);
  text-shadow: none;
}

/* Use one consistent page color across sections, like the reference. */
.section,
.about-section,
.why-section,
.token-section,
.roadmap-section,
.htb-section,
.faq-section,
.community-footer,
.bottom-banner,
.disclaimer,
.site-footer {
  background: var(--page) !important;
  color: var(--cow) !important;
}
.section:nth-of-type(odd) {
  background: linear-gradient(180deg, var(--page), var(--blush)) !important;
}
.section-title,
.section-title.center,
.about-section .section-title,
.token-section .section-title,
.htb-section .section-title,
.community-footer h2 {
  color: var(--cow) !important;
  text-shadow: none !important;
}
.about-section p,
.why-card p,
.rm-card li,
.htb-step p,
.faq-item p,
.community-text,
.bottom-banner p,
.disclaimer p,
.footer-copy,
.footer-meta {
  color: var(--soft) !important;
}
.choco-drip-top { display: none; }
.section.has-drip { padding-top: 60px; }

.about-feat,
.why-card,
.rm-card,
.htb-step,
.faq-item,
.token-value,
.community-footer .btn-community {
  background: rgba(255,255,255,.68) !important;
  border: 2px solid rgba(62,51,44,.1) !important;
  box-shadow: 0 14px 40px rgba(62,51,44,.06);
}
.why-card h3,
.rm-card h3,
.htb-step h3,
.faq-item summary,
.feat-label,
.token-label,
.footer-brand,
.community-kicker { color: var(--rose-d) !important; }
.why-icon,
.htb-icon,
.rm-marker {
  filter: saturate(.92);
}
.rm-marker,
.htb-num {
  color: var(--cow);
  background: var(--beige);
  border-color: rgba(62,51,44,.12);
  box-shadow: 0 10px 24px rgba(62,51,44,.08);
}
.rm-connector { background: var(--beige-2); }
.token-value { color: var(--cow) !important; }
.token-value.tba { color: var(--rose-d) !important; }
.bottom-banner {
  border-top: 2px solid rgba(62,51,44,.1);
  border-bottom: 2px solid rgba(62,51,44,.1);
}
.community-footer {
  border-top: 2px solid rgba(62,51,44,.1);
}
.community-footer::before { display: none; }
.btn-community {
  color: var(--cow) !important;
}
.btn-community:hover {
  background: #fff !important;
  border-color: var(--rose) !important;
}
.disclaimer,
.site-footer {
  border-top: 2px solid rgba(62,51,44,.1);
}

@media (max-width: 900px) {
  .hero-logo-img { max-height: 44svh; }
  .hero-top { max-width: 94%; }
}
@media (max-width: 600px) {
  .hero { padding-top: 24px; }
  .hero-logo-img { max-height: 36svh; }
}

/* Force logo above copy block in the hero. */
.hero-brand { order: 1; }
.hero-top { order: 2; }

/* ============================================================
   Purple/Gold unification pass
   - keep logo above copy block
   - all sections use purple background
   - text returns to gold/cream like original
   ============================================================ */
:root {
  --unified-purple: #2d0a4e;
  --unified-purple-2: #3b1266;
  --unified-purple-3: #5b21b6;
  --unified-card: rgba(91, 33, 182, .44);
  --unified-card-strong: rgba(45, 10, 78, .76);
  --unified-gold: #fbbf24;
  --unified-gold-light: #fde68a;
  --unified-gold-dark: #d97706;
  --unified-cream: #fff8e7;
  --unified-choco: #4a210c;
}

body {
  color: var(--unified-gold-light);
  background: var(--unified-purple) !important;
}

.ticker-tape,
.main-nav,
.mobile-menu,
.section,
.about-section,
.why-section,
.token-section,
.roadmap-section,
.htb-section,
.faq-section,
.community-footer,
.bottom-banner,
.disclaimer,
.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(251, 191, 36, .08), transparent 28rem),
    linear-gradient(180deg, var(--unified-purple-2) 0%, var(--unified-purple) 100%) !important;
  color: var(--unified-gold-light) !important;
}

.section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 82% 10%, rgba(251, 191, 36, .08), transparent 28rem),
    linear-gradient(180deg, var(--unified-purple) 0%, var(--unified-purple-2) 100%) !important;
}

.hero {
  background:
    linear-gradient(180deg, rgba(45, 10, 78, .34) 0%, rgba(45, 10, 78, .78) 100%),
    linear-gradient(90deg, rgba(45, 10, 78, .64), rgba(45, 10, 78, .2)),
    url('../assets/bonka_bg1.webp') center center / cover no-repeat !important;
}
.hero-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(251, 191, 36, .18), transparent 31rem),
    linear-gradient(180deg, rgba(45, 10, 78, .02), rgba(45, 10, 78, .5)) !important;
}
.hero-brand { order: 1; }
.hero-top {
  order: 2;
  color: var(--unified-gold-light) !important;
  background: linear-gradient(180deg, rgba(45, 10, 78, .82), rgba(45, 10, 78, .58)) !important;
  border: 3px solid rgba(251, 191, 36, .35) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.06) !important;
  backdrop-filter: blur(10px);
}
.hero-logo-img {
  width: min(100%, 870px);
  max-height: min(54svh, 540px);
  filter: drop-shadow(0 18px 38px rgba(26, 5, 51, .54));
}

.nav-logo,
.nav-links a:hover,
.ticker-track span,
.section-title,
.section-title.center,
.about-section .section-title,
.token-section .section-title,
.htb-section .section-title,
.community-footer h2,
.why-card h3,
.rm-card h3,
.htb-step h3,
.faq-item summary,
.feat-label,
.token-label,
.footer-brand,
.community-kicker,
.factory-callout strong {
  color: var(--unified-gold) !important;
  text-shadow: 0 3px 0 rgba(217,119,6,.45), 0 10px 26px rgba(0,0,0,.18) !important;
}

.nav-links a,
.hero-desc,
.about-section p,
.why-card p,
.rm-card li,
.htb-step p,
.faq-item p,
.community-text,
.bottom-banner p,
.disclaimer p,
.footer-copy,
.footer-meta,
.factory-callout span,
.factory-callout em {
  color: rgba(253, 230, 138, .84) !important;
  text-shadow: none !important;
}

.main-nav {
  border-bottom: 2px solid rgba(251, 191, 36, .22) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.18) !important;
}
.nav-cta,
.btn-primary {
  color: #1a0533 !important;
  background: linear-gradient(135deg, var(--unified-gold), #fff0a1 48%, var(--unified-gold-dark)) !important;
  border-color: var(--unified-gold-dark) !important;
  box-shadow: 0 12px 34px rgba(251, 191, 36, .3), inset 0 -3px 0 rgba(217,119,6,.75) !important;
}
.btn-secondary,
.btn-community {
  color: var(--unified-gold-light) !important;
  background: rgba(91, 33, 182, .78) !important;
  border-color: rgba(251, 191, 36, .32) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.18), inset 0 -3px 0 rgba(0,0,0,.18) !important;
}

.social-icon,
.about-feat,
.why-card,
.rm-card,
.htb-step,
.faq-item,
.token-value,
.token-table td,
.community-footer .btn-community,
.factory-callout {
  background: var(--unified-card) !important;
  border: 2px solid rgba(251, 191, 36, .24) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.16), inset 0 0 0 1px rgba(255,255,255,.05) !important;
  color: var(--unified-gold-light) !important;
}

.social-icon {
  color: var(--unified-gold-light) !important;
}
.social-icon:hover,
.btn-secondary:hover,
.btn-community:hover {
  background: rgba(124, 58, 237, .9) !important;
  border-color: var(--unified-gold) !important;
}
.signboard {
  color: var(--unified-gold-light) !important;
  background: var(--unified-choco) !important;
  border-color: rgba(251, 191, 36, .34) !important;
}

.token-value,
.token-value.tba { color: var(--unified-gold-light) !important; }
.token-value.tba { color: #ffcf6b !important; }
.rm-marker,
.htb-num {
  color: #1a0533 !important;
  background: var(--unified-gold) !important;
  border-color: var(--unified-gold-dark) !important;
}
.rm-connector { background: var(--unified-gold) !important; }

.choco-drip-top { display: none !important; }
.section.has-drip { padding-top: 60px; }
.bottom-banner,
.community-footer,
.disclaimer,
.site-footer {
  border-top: 2px solid rgba(251, 191, 36, .2) !important;
}
.bottom-banner { border-bottom: 2px solid rgba(251, 191, 36, .2) !important; }
.community-footer::before { display: none !important; }
.nav-hamburger span { background: var(--unified-gold) !important; }

@media (max-width: 900px) {
  .hero-logo-img { max-height: 44svh; }
  .hero-top { max-width: 94%; }
}
@media (max-width: 600px) {
  .hero-logo-img { max-height: 36svh; }
}

/* ============================================================
   New operator image integration pass
   - use compressed WebP assets for quality + speed
   - replace older generated visuals with provided assets
   ============================================================ */
.factory-scene-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px) 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(251, 191, 36, .08), transparent 28rem),
    linear-gradient(180deg, var(--unified-purple) 0%, var(--unified-purple-2) 100%) !important;
  border-top: 2px solid rgba(251, 191, 36, .2);
  border-bottom: 2px solid rgba(251, 191, 36, .2);
}
.factory-scene-img {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  border: 2px solid rgba(251, 191, 36, .28);
  box-shadow: 0 24px 80px rgba(0,0,0,.26), 0 0 0 1px rgba(255,255,255,.06) inset;
  object-fit: cover;
}
.about-coin-img {
  border-radius: 34px !important;
  max-width: 360px !important;
  border: 3px solid rgba(251, 191, 36, .42) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.26), 0 0 34px rgba(251,191,36,.14) !important;
  transform: rotate(-2deg) !important;
}
.token-ticket-img {
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 30px;
  border: 2px solid rgba(251, 191, 36, .26);
  box-shadow: 0 24px 70px rgba(0,0,0,.26), 0 0 44px rgba(251,191,36,.12);
  transform: rotate(2deg);
}
.footer-mascot {
  width: min(100%, 620px) !important;
  max-height: 660px !important;
  border-radius: 34px;
  border: 2px solid rgba(251, 191, 36, .24);
  box-shadow: 0 28px 82px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06) inset;
  transform: rotate(1deg) !important;
}
@media (max-width: 900px) {
  .factory-scene-img { border-radius: 24px; }
  .token-ticket-img { max-width: 360px; transform: none; }
  .about-coin-img { max-width: 300px !important; }
}
@media (max-width: 600px) {
  .factory-scene-strip { padding: 20px 14px; }
  .about-coin-img { max-width: 260px !important; }
  .footer-mascot { max-height: none !important; }
}

/* ============================================================
   Footer scene + direct coin image correction
   ============================================================ */
.about-inner {
  grid-template-columns: minmax(360px, .95fr) 1fr;
}
.about-inner > .about-coin-img {
  justify-self: center;
  align-self: center;
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  border-radius: 42px !important;
  margin: 0 auto !important;
  transform: rotate(-1deg) !important;
}
.footer-scene-strip {
  padding-top: clamp(34px, 5vw, 64px) !important;
  padding-bottom: clamp(34px, 5vw, 64px) !important;
  border-top: 2px solid rgba(251, 191, 36, .22) !important;
  border-bottom: 0 !important;
}
.footer-scene-strip .factory-scene-img {
  width: min(1120px, 100%);
}
@media (max-width: 900px) {
  .about-inner {
  grid-template-columns: minmax(360px, .95fr) 1fr;
}
.about-inner > .about-coin-img {
    max-width: 430px !important;
  }
}
@media (max-width: 600px) {
  .about-inner {
  grid-template-columns: minmax(360px, .95fr) 1fr;
}
.about-inner > .about-coin-img {
    max-width: 330px !important;
  }
}

/* ============================================================
   Candy scene as actual footer background correction
   ============================================================ */
.site-footer {
  position: relative;
  min-height: clamp(250px, 30vw, 390px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px) 20px !important;
  background:
    linear-gradient(180deg, rgba(45, 10, 78, .22) 0%, rgba(45, 10, 78, .62) 58%, rgba(26, 5, 51, .92) 100%),
    url('../assets/bonka_candy_scene.webp') center bottom / cover no-repeat !important;
  border-top: 2px solid rgba(251, 191, 36, .3) !important;
}
.site-footer .footer-inner {
  width: min(1120px, 100%);
  padding: 16px 18px;
  border: 2px solid rgba(251, 191, 36, .22);
  border-radius: 22px;
  background: rgba(26, 5, 51, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.site-footer .footer-brand,
.site-footer .footer-copy,
.site-footer .footer-meta {
  position: relative;
  z-index: 1;
}
/* The candy scene is now footer background only; no separate image strip. */
.footer-scene-strip { display: none !important; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr !important; }
  .about-inner > .about-coin-img { max-width: 430px !important; }
  .site-footer { min-height: 300px; }
}
@media (max-width: 600px) {
  .about-inner { grid-template-columns: 1fr !important; }
  .about-inner > .about-coin-img { max-width: 330px !important; }
  .site-footer { min-height: 260px; }
}

/* ============================================================
   CA copy button
   ============================================================ */
.ca-card {
  display: grid;
  gap: 10px;
  justify-items: center;
}
.copy-ca-btn {
  appearance: none;
  border: 2px solid rgba(251, 191, 36, .45);
  border-radius: 999px;
  padding: 10px 18px;
  color: #1a0533;
  background: linear-gradient(135deg, var(--unified-gold), #fff0a1 48%, var(--unified-gold-dark));
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(251, 191, 36, .24), inset 0 -2px 0 rgba(217, 119, 6, .7);
  transition: transform .15s ease, filter .15s ease;
}
.copy-ca-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.copy-ca-btn.is-copied {
  background: linear-gradient(135deg, #7dff9a, #f0ffe9);
  border-color: rgba(125, 255, 154, .7);
}

/* ============================================================
   Official project links
   ============================================================ */
.project-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.project-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(251, 191, 36, .28);
  border-radius: 999px;
  color: var(--unified-gold-light);
  background: rgba(26, 5, 51, .38);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}
.project-links a:hover {
  color: var(--unified-gold);
  border-color: var(--unified-gold);
  background: rgba(124, 58, 237, .64);
}
