:root {
  --navy: #0a1f44;
  --navy-2: #0d2654;
  --red: #b22234;
  --red-2: #d63645;
  --white: #ffffff;
  --cream: #fbf8f3;
  --ink: #0c1428;
  --muted: #6b7280;
  --line: rgba(10,31,68,0.08);
  --gold: #f5b400;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,248,243,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--navy);
}
.flag-svg {
  width: 30px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px var(--line);
  display: block;
}
.topnav { display: flex; gap: 26px; }
.topnav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.78;
  transition: opacity .15s;
}
.topnav a:hover { opacity: 1; }

/* HERO */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(178,34,52,0.15), transparent 60%),
    radial-gradient(1000px 500px at 0% 100%, rgba(10,31,68,0.10), transparent 60%),
    var(--cream);
  padding: 70px 28px 90px;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.hero-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.art-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 7 / 8;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 30px 60px -20px rgba(10,31,68,0.45),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}
.art-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.art-glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245,180,0,0.25), transparent 40%, rgba(178,34,52,0.25));
  mix-blend-mode: overlay;
}
.art-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.art-caption .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(178,34,52,0.15);
}

.hero-copy { max-width: 580px; }
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--navy);
}
.hero-copy h1 .under {
  background: linear-gradient(transparent 65%, rgba(245,180,0,0.55) 65%);
  padding: 0 4px;
}
.hero-copy .lede {
  margin-top: 22px;
  font-size: 18px;
  color: #2a2f3a;
  max-width: 540px;
}
.cta-row { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .12s, box-shadow .15s, background .15s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(178,34,52,0.65);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* COUNTER — big Bebas Neue text, same as the hero */
.counter-section {
  background: var(--cream);
  padding: 90px 28px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.counter-headline {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--navy);
  max-width: 1100px;
  margin: 0 auto;
}
.counter-amount {
  color: var(--red);
  font-variant-numeric: tabular-nums;
  display: inline-block;
  margin-right: 12px;
}
.counter-suffix {
  display: inline-block;
}
.counter-substatus {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: pulse 1.8s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.floater {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #137a4a;
  background: rgba(46,179,113,0.12);
  border: 1px solid rgba(46,179,113,0.35);
  padding: 5px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.floater.show {
  animation: floatUp 1.6s ease-out;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateX(-50%) translateY(8px); }
  18%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-26px); }
}

/* MISSION */
.mission {
  padding: 100px 0;
  background: var(--cream);
}
.mission h2, .coin-section h2, .follow-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 18px;
}
.mission > .container > p {
  max-width: 720px;
  font-size: 18px;
  color: #2a2f3a;
  margin-bottom: 50px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(10,31,68,0.25);
}
.card .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--red);
  margin-bottom: 14px;
}
.card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p { color: #4b5161; font-size: 15px; }

/* COIN */
.coin-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border-top: 1px solid var(--line);
}
.coin-lede {
  max-width: 720px;
  font-size: 17px;
  color: #2a2f3a;
  margin-bottom: 40px;
}
.coin-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.coin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.coin-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}
.addr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f1ec;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
}
.addr-row code {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--navy);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background .15s;
}
.copy-btn:hover { background: var(--navy-2); }
.addr-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* FOLLOW */
.follow-section {
  padding: 90px 0;
  background: var(--navy);
  color: var(--white);
}
.follow-section h2 { color: var(--white); }
.follow-section p { color: rgba(255,255,255,0.75); max-width: 460px; }
.follow-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 14px 30px -12px rgba(238,42,123,0.6);
  transition: transform .15s;
}
.ig-btn:hover { transform: translateY(-2px); }

/* FOOTER */
.footer {
  background: #08172f;
  color: rgba(255,255,255,0.6);
  padding: 26px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-note { color: rgba(255,255,255,0.4); }

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 50px 20px 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; }
  .art-frame { max-width: 380px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .coin-cards { grid-template-columns: 1fr; }
  .breakdown { flex-direction: column; gap: 14px; padding: 16px 20px; }
  .bd-divider { width: 100%; height: 1px; }
  .topnav { display: none; }
}
