:root {
  --navy: #07111f;
  --navy-2: #10213a;
  --ink: #071018;
  --red: #c8102e;
  --red-deep: #8e0b20;
  --gold: #e8c547;
  --gold-2: #f4e08a;
  --cream: #f6ead0;
  --paper: #fff6e4;
  --green: #3dcc7a;
  --muted: #b7c4d8;
  --stroke: #060910;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--navy);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── World: marble avenue perspective (background only) ── */
.world {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 88% -10%, rgba(232, 197, 71, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 12%, rgba(200, 16, 46, 0.22), transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(16, 40, 80, 0.9), transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #13284a 42%, #0c1a30 100%);
}

.world .haze {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 18%, rgba(244, 224, 138, 0.16) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.4px),
    radial-gradient(circle at 86% 62%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.4px);
  opacity: 0.7;
}

.world .halftone {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: radial-gradient(circle, #fff 0.7px, transparent 0.9px);
  background-size: 7px 7px;
}

.world .avenue {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 220%;
  height: 62vh;
  transform: translateX(-50%) perspective(820px) rotateX(60deg);
  transform-origin: center top;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 0%, rgba(7, 17, 31, 0.35) 18%, rgba(7, 17, 31, 0.82) 100%),
    repeating-linear-gradient(90deg, #1a3258 0 70px, #142848 70px 74px),
    repeating-linear-gradient(0deg, rgba(232, 197, 71, 0.16) 0 2px, transparent 2px 92px);
}

.world .col-left,
.world .col-right {
  position: absolute;
  bottom: 18%;
  width: 18vw;
  max-width: 260px;
  height: 58vh;
  background: linear-gradient(180deg, rgba(8, 16, 32, 0) 0%, rgba(10, 20, 40, 0.55) 40%, rgba(8, 14, 28, 0.85) 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  opacity: 0.45;
}

.world .col-left { left: -2%; }
.world .col-right { right: -2%; transform: scaleX(-1); }

.page {
  position: relative;
  z-index: 1;
}

/* ── Nav ── */
.navbar {
  background: rgba(7, 14, 28, 0.82) !important;
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--gold);
  padding: 0.45rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #0b1528;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Bungee", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.brand-copy small {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 800;
}

.navbar .nav-link {
  color: var(--cream) !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding: 0.45rem 0.7rem !important;
}

.navbar .nav-link:hover {
  color: var(--gold) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--stroke);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 3px 3px 0 var(--stroke);
}

.icon-btn.x { background: #111; color: #fff; }
.icon-btn.buy { background: var(--gold); color: var(--ink); }
.icon-btn.chart { background: var(--green); color: var(--ink); }

.icon-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--stroke);
}

.navbar-toggler {
  border: 2px solid var(--gold);
  background: var(--paper);
}

/* ── Shared plates ── */
.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.plate {
  background: linear-gradient(180deg, rgba(16, 33, 58, 0.92), rgba(10, 20, 38, 0.94));
  border: 3px solid var(--stroke);
  box-shadow:
    0 0 0 4px var(--gold),
    10px 12px 0 rgba(0, 0, 0, 0.35);
  padding: clamp(1.2rem, 3vw, 2.1rem);
}

.kicker {
  display: inline-block;
  font-family: "Bangers", cursive;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  color: var(--gold);
  background: var(--red);
  border: 2px solid var(--stroke);
  padding: 0.18rem 0.7rem 0.08rem;
  box-shadow: 3px 3px 0 var(--stroke);
}

.strip-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.strip-label .tag {
  font-family: "Bungee", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--stroke);
  padding: 0.35rem 0.7rem;
  box-shadow: 3px 3px 0 var(--stroke);
  white-space: nowrap;
}

.strip-label .rule {
  flex: 1;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 18px, transparent 18px 28px);
}

.strip-label h2 {
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.speech {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--stroke);
  border-radius: 18px;
  padding: 1rem 1.15rem 1.05rem;
  font-size: 1.02rem;
  line-height: 1.55;
  box-shadow: 5px 6px 0 var(--stroke);
}

.speech::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -16px;
  width: 22px;
  height: 18px;
  background: var(--paper);
  border-right: 3px solid var(--stroke);
  border-bottom: 3px solid var(--stroke);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-comic {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  padding: 0.55rem 1.05rem 0.4rem;
  border: 3px solid var(--stroke);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--stroke);
  color: var(--ink);
}

.btn-comic:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--stroke);
}

.btn-buy { background: var(--gold); }
.btn-chart { background: var(--green); }
.btn-x { background: #f0f0f0; }

.art-frame {
  background:
    linear-gradient(180deg, #1a2e52, #0d1a32);
  border: 3px solid var(--stroke);
  padding: 10px;
  box-shadow:
    0 0 0 4px var(--red),
    8px 10px 0 rgba(0, 0, 0, 0.4);
}

.art-frame img {
  width: 100%;
  background: #081018;
}

.caption {
  margin-top: 0.65rem;
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--gold-2);
  text-align: center;
}

/* ── Hero: campaign poster, open on the avenue ── */
.hero {
  padding: 2.2rem 0 3.2rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-title {
  margin: 0.85rem 0 0.2rem;
  font-family: "Bungee", sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.92;
  color: #fff7dc;
  text-shadow:
    3px 3px 0 var(--red),
    6px 6px 0 var(--stroke),
    0 16px 28px rgba(0, 0, 0, 0.4);
}

.hero-symbol {
  font-family: "Bungee", sans-serif;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin-bottom: 1.1rem;
}

.hero .speech {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.burst {
  position: absolute;
  top: -14px;
  right: -8px;
  z-index: 2;
  font-family: "Bangers", cursive;
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--stroke);
  padding: 0.35rem 0.7rem 0.2rem;
  box-shadow: 3px 3px 0 var(--stroke);
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
}

/* ── About: billboard + editorial ── */
.about {
  padding: 1rem 0 3.4rem;
}

.about-plate {
  background: linear-gradient(180deg, #f3e2bc, #e7d09a);
  color: var(--ink);
}

.about-plate .strip-label h2,
.about-plate .strip-label .tag {
  color: var(--ink);
}

.about-plate .strip-label h2 { color: var(--ink); }

.billboard {
  background: #0c1528;
  border: 3px solid var(--stroke);
  padding: 8px;
  box-shadow: 6px 7px 0 var(--stroke);
  margin-bottom: 1.4rem;
}

.billboard img {
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.lede {
  font-family: "Bangers", cursive;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--red-deep);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.about-copy p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: #23180f;
  font-weight: 600;
}

.flag-note {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 2px dashed var(--red);
  font-size: 0.86rem;
  font-weight: 700;
}

/* ── How to buy: pump line ── */
.howto {
  padding: 0.4rem 0 3.4rem;
}

.howto-plate {
  background:
    linear-gradient(180deg, rgba(22, 12, 16, 0.94), rgba(12, 18, 34, 0.96));
  border-color: var(--stroke);
  box-shadow:
    0 0 0 4px var(--red),
    10px 12px 0 rgba(0, 0, 0, 0.35);
}

.pump-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
  margin: 0.4rem 0 1.5rem;
}

.pump-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 8px;
  background: linear-gradient(90deg, var(--red), #ff5a4a, var(--red));
  border: 2px solid var(--stroke);
  border-radius: 999px;
  z-index: 0;
}

.station {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--stroke);
  padding: 0.9rem 0.8rem 1rem;
  box-shadow: 4px 5px 0 var(--stroke);
  min-height: 100%;
}

.station .num {
  width: 42px;
  height: 42px;
  margin: -1.35rem auto 0.7rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--stroke);
  font-family: "Bungee", sans-serif;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--stroke);
}

.station h3 {
  font-family: "Bungee", sans-serif;
  font-size: 0.92rem;
  margin: 0 0 0.4rem;
  text-align: center;
}

.station p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
  font-weight: 600;
}

.ca-box {
  background: #071018;
  border: 3px dashed var(--gold);
  padding: 0.95rem 1rem;
}

.ca-box label {
  display: block;
  font-family: "Bangers", cursive;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.ca-row code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  background: #121c30;
  color: var(--cream);
  border: 2px solid #31466a;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
}

.btn-copy {
  border: 3px solid var(--stroke);
  background: var(--gold);
  color: var(--ink);
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem 0.3rem;
  box-shadow: 3px 3px 0 var(--stroke);
}

/* ── Community: rally dock ── */
.community {
  padding: 0.2rem 0 3.2rem;
}

.community-plate {
  background: linear-gradient(180deg, #16305a, #0d1c36);
}

.rally {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  align-items: center;
}

.rally-copy p {
  color: var(--cream);
  line-height: 1.65;
  font-weight: 600;
}

.dock {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.dock a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--stroke);
  padding: 0.7rem 0.9rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--stroke);
}

.dock a i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  border-radius: 8px;
}

.dock a.buy i { background: var(--red); color: #fff; }
.dock a.chart i { background: var(--green); color: var(--ink); }

.dock a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--stroke);
}

/* ── Footer ── */
.site-foot {
  border-top: 3px solid var(--gold);
  background: rgba(5, 10, 20, 0.88);
  padding: 1.3rem 0 1.6rem;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.foot-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.foot-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: #0b1528;
}

.foot-brand p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 38rem;
}

.toast-ca {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--stroke);
  padding: 0.5rem 0.9rem;
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
  z-index: 80;
  box-shadow: 4px 4px 0 var(--stroke);
  opacity: 0;
  transition: 0.25s ease;
}

.toast-ca.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
  .hero-stage,
  .about-grid,
  .rally {
    grid-template-columns: 1fr;
  }

  .pump-line {
    grid-template-columns: 1fr 1fr;
  }

  .pump-line::before {
    display: none;
  }

  .nav-actions {
    margin: 0.6rem 0 0.2rem;
  }

  .burst {
    right: 8px;
  }

  .world .col-left,
  .world .col-right {
    display: none;
  }
}

@media (max-width: 575px) {
  .pump-line {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.2rem;
  }
}
