:root {
  --navy: #061425;
  --navy-2: #0b2442;
  --blue: #1d67a8;
  --sky: #66b2df;
  --red: #f0353f;
  --red-dark: #bd1f2c;
  --paper: #f2efe7;
  --paper-2: #e6e0d4;
  --ink: #10141b;
  --white: #fff;
  --max: 1240px;
  --border: 3px solid var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--red);
}
body.menu-open { overflow: hidden; }
.container { width: min(calc(100% - 38px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }

h1, h2, h3, .brand, .btn, .eyebrow, .ticker, .hero-kicker, .card-tag, .step-num, .token-stat b, .nav-links {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .012em;
}

.nav-shell {
  height: 74px;
  background: rgba(4, 16, 30, .97);
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.16);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; font-size: 32px; line-height: 1; margin-right: auto; }
.brand b { color: var(--red); }
.brand img { width: 46px; height: 46px; object-fit: cover; object-position: center 24%; border-radius: 50%; border: 2px solid var(--red); margin-right: 10px; }
.nav-links { display: flex; gap: 32px; font-size: 17px; }
.nav-links a { opacity: .9; }
.nav-links a:hover { opacity: 1; color: var(--red); }
.menu-button { display: none; width: 46px; height: 46px; color: #fff; border: 0; background: transparent; font-size: 30px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid rgba(255,255,255,.26);
  border-radius: 9px;
  color: #fff;
  font-size: 19px;
  transform: skew(-2deg);
  box-shadow: 0 5px 0 rgba(0,0,0,.2);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-.6deg); box-shadow: 0 9px 0 rgba(0,0,0,.22); filter: saturate(1.15); }
.btn-red { background: linear-gradient(#fa4852, #db2230); }
.btn-dark { background: var(--navy); }
.btn-blue { background: #1768af; }
.btn-xl { min-height: 58px; padding-inline: 30px; font-size: 22px; }

.eyebrow { margin: 0 0 9px; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.section-heading h2 { margin: 0; font-size: clamp(50px, 7vw, 88px); line-height: .9; text-transform: uppercase; }
.section-heading h2 span { color: var(--red); }
.centered { text-align: center; }

.cursor-honk {
  position: fixed;
  left: 0; top: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  background: var(--red);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 5px 8px;
  font: 15px/1 Impact, sans-serif;
  transition: opacity .1s ease;
}
.cursor-honk.show { opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px) rotate(.6deg); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0) rotate(0); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px;
  font: 40px Impact, sans-serif; text-transform: uppercase;
  visibility: hidden; pointer-events: none; transform: translateY(-105%); transition: transform .25s ease, visibility 0s linear .25s;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
.mobile-close { position: absolute; right: 20px; top: 16px; width: 50px; height: 50px; font-size: 42px; line-height: 1; background: transparent; color: #fff; border: 0; cursor: pointer; }
.mobile-menu a:last-child { color: var(--red); }
.link-disabled { opacity: .5; cursor: not-allowed; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pop { 0%{ transform:scale(.95)} 50%{ transform:scale(1.03)} 100%{ transform:scale(1)} }
@keyframes flyGoose {
  0% { transform: translate(-50%, -50%) scale(.18) rotate(var(--start-rot)); opacity: 0; }
  12% { opacity: 1; }
  72% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(var(--scale)) rotate(var(--rot)); opacity: 0; }
}
@keyframes flyHonk {
  0% { transform: translate(-50%, -50%) scale(.55); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.12) rotate(var(--rot)); opacity: 0; }
}
.flying-goose-face {
  position: absolute; z-index: 9998; height: auto; object-fit: contain; pointer-events: none;
  filter: drop-shadow(0 8px 8px rgba(1, 26, 51, .28));
  will-change: transform, opacity; animation: flyGoose 1.15s cubic-bezier(.16, .75, .28, 1) forwards;
}
.flying-honk {
  position: absolute; z-index: 9999; font: 26px Impact, sans-serif; color: var(--red);
  letter-spacing: 0; white-space: nowrap; text-shadow: 2px 2px #fff, 4px 4px var(--navy);
  pointer-events: none; will-change: transform, opacity; animation: flyHonk 1.05s ease-out forwards;
}
body.honked .honk-button { animation: pop .35s ease; }

@media (max-width: 640px) {
  .flying-goose-face { max-width: 94px; }
  .flying-honk { font-size: 22px; }
}
