:root {
  --gold: #f3ba2f;
  --gold-light: #ffd95a;
  --gold-dark: #c4921a;
  --black: #070707;
  --dark: #101010;
  --navy: #111b34;
  --navy-deep: #0a1020;
  --red: #d92525;
  --white: #ffffff;
  --muted: #aaa;
  --glass: rgba(17, 27, 52, 0.55);
  --border: rgba(243, 186, 47, 0.28);
  --shadow-gold: 0 0 40px rgba(243, 186, 47, 0.25);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.gold {
  color: var(--gold-light);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section__head {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

/* Background FX */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(243, 186, 47, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(217, 37, 37, 0.08), transparent 50%),
    linear-gradient(180deg, #05070d 0%, var(--black) 40%, #0a0d14 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 186, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 186, 47, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.5;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orbFloat 14s ease-in-out infinite;
}

.bg-orb--1 {
  width: 42vw;
  height: 42vw;
  top: -10%;
  left: -8%;
  background: rgba(243, 186, 47, 0.22);
}

.bg-orb--2 {
  width: 30vw;
  height: 30vw;
  top: 40%;
  right: -8%;
  background: rgba(17, 27, 52, 0.9);
  animation-delay: -4s;
}

.bg-orb--3 {
  width: 28vw;
  height: 28vw;
  bottom: 5%;
  left: 30%;
  background: rgba(243, 186, 47, 0.12);
  animation-delay: -8s;
}

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, 3%, 0) scale(1.08); }
}

/* Pointer glow */
.pointer-glow {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.55), transparent 70%);
  transform: translate3d(-100px, -100px, 0);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: screen;
}

.pointer-glow.is-active {
  opacity: 1;
}

.pointer-glow.is-hot {
  width: 48px;
  height: 48px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(243, 186, 47, 0.35);
}

.nav__inner {
  width: min(1240px, calc(100% - 2rem));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  z-index: 1001;
}

.nav__brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(243, 186, 47, 0.35);
  animation: logoIn 0.9s var(--ease) both;
}

.nav__brand span {
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.05rem;
}

.nav__links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__links a:not(.nav__cta):hover,
.nav__links a:not(.nav__cta):focus-visible,
.nav__links a.is-active {
  color: var(--gold-light);
}

.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta):focus-visible::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black) !important;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(243, 186, 47, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 32px rgba(243, 186, 47, 0.5);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes logoIn {
  from { opacity: 0; transform: scale(0.6) rotate(-12deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: -1;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(243, 186, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 14px 40px rgba(243, 186, 47, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--ghost {
  border: 1px solid rgba(243, 186, 47, 0.55);
  background: rgba(243, 186, 47, 0.06);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(243, 186, 47, 0.08);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(243, 186, 47, 0.12);
  box-shadow: 0 0 28px rgba(243, 186, 47, 0.2);
}

.btn--copy {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  background: rgba(243, 186, 47, 0.12);
  border: 1px solid rgba(243, 186, 47, 0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.btn--copy.is-copied {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  animation: copyPulse 0.45s var(--ease);
}

.btn--sm {
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
}

.btn--lg {
  min-height: 58px;
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

@keyframes copyPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 2.5rem) 0 3.5rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 8%;
  right: 5%;
  width: min(55vw, 680px);
  height: min(55vw, 680px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.35), transparent 68%);
  filter: blur(20px);
  opacity: 0;
  animation: glowIn 1.4s var(--ease) 0.15s forwards;
  will-change: transform;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.bnb-shape {
  position: absolute;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  animation: shapeIn 1s var(--ease) forwards, floatY 7s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(243, 186, 47, 0.4);
  will-change: transform;
}

.bnb-shape--1 { top: 18%; left: 6%; animation-delay: 0.4s, 0.4s; }
.bnb-shape--2 { top: 28%; right: 8%; width: 28px; height: 28px; animation-delay: 0.6s, 1.2s; }
.bnb-shape--3 { bottom: 22%; left: 14%; width: 22px; height: 22px; animation-delay: 0.8s, 2s; }
.bnb-shape--4 { bottom: 30%; right: 18%; width: 34px; height: 34px; animation-delay: 1s, 0.8s; }

.hero__content {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 186, 47, 0.35);
  background: rgba(243, 186, 47, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero__title {
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__line {
  display: block;
}

.hero__line--gold {
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(243, 186, 47, 0.35);
}

.hero__lead {
  max-width: 28ch;
  margin-bottom: 0.55rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__tag {
  margin-bottom: 1.75rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.contract-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(243, 186, 47, 0.28);
  background: rgba(10, 16, 32, 0.7);
  backdrop-filter: blur(10px);
}

.contract-bar__label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.contract-bar__addr {
  color: var(--gold-light);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 560px);
  will-change: transform;
}

.hero__visual-glow {
  position: absolute;
  inset: 8% 5%;
  border-radius: 40% 40% 18% 18%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.45), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.hero__art {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(243, 186, 47, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(243, 186, 47, 0.22);
  animation: artRise 1.2s var(--ease) 0.35s both, floatY 5.5s ease-in-out 1.6s infinite;
}

@keyframes glowIn {
  to { opacity: 1; }
}

@keyframes shapeIn {
  from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  to { opacity: 0.85; transform: scale(1) rotate(0); }
}

@keyframes artRise {
  from { opacity: 0; transform: translateY(48px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Shimmer text */
.shimmer-text {
  background: linear-gradient(
    110deg,
    var(--gold-dark) 0%,
    var(--gold-light) 35%,
    #fff6c8 50%,
    var(--gold-light) 65%,
    var(--gold) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}

@keyframes shimmer {
  to { background-position: 220% center; }
}

/* Marquee */
.marquee {
  position: relative;
  border-block: 1px solid rgba(243, 186, 47, 0.28);
  background: linear-gradient(90deg, rgba(243, 186, 47, 0.1), rgba(17, 27, 52, 0.55), rgba(243, 186, 47, 0.1));
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.marquee__sep {
  opacity: 0.8;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about__intro {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.statement {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 186, 47, 0.22);
  background:
    linear-gradient(160deg, rgba(243, 186, 47, 0.08), transparent 45%),
    rgba(16, 16, 16, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.statement:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 186, 47, 0.55);
  box-shadow: var(--shadow-gold);
}

.statement--wide {
  grid-column: 1 / -1;
  text-align: center;
}

.statement__top {
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.statement__bottom {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(243, 186, 47, 0.25);
}

/* Mission */
.mission {
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(243, 186, 47, 0.12), transparent 55%),
    linear-gradient(180deg, transparent, rgba(17, 27, 52, 0.35), transparent);
}

.mission__rays {
  position: absolute;
  inset: 10% 20%;
  background: conic-gradient(from 0deg at 70% 50%, transparent 0deg, rgba(243, 186, 47, 0.12) 20deg, transparent 40deg, rgba(243, 186, 47, 0.08) 60deg, transparent 80deg, rgba(243, 186, 47, 0.1) 120deg, transparent 160deg);
  filter: blur(8px);
  opacity: 0.7;
  animation: raysSpin 28s linear infinite;
  pointer-events: none;
}

.mission__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mission__one {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mission__slogan {
  margin: 0.6rem 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mission__lines {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.mission__body {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.mission__art {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}

.mission__spotlight {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.45), transparent 68%);
  filter: blur(18px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.mission__art img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 50%;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

@keyframes raysSpin {
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature-card {
  position: relative;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 186, 47, 0.22);
  background: linear-gradient(165deg, rgba(243, 186, 47, 0.1), rgba(16, 16, 16, 0.92) 40%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(243, 186, 47, 0);
  transition: box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(243, 186, 47, 0.6);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(243, 186, 47, 0.18);
}

.feature-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(243, 186, 47, 0.45), 0 0 30px rgba(243, 186, 47, 0.2);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: rgba(243, 186, 47, 0.12);
  border: 1px solid rgba(243, 186, 47, 0.28);
  font-size: 1.4rem;
  transition: transform 0.35s var(--ease);
}

.feature-card:hover .feature-card__icon {
  transform: translateY(-4px) scale(1.08);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* Token */
.token-card {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(243, 186, 47, 0.35);
  background:
    linear-gradient(145deg, rgba(243, 186, 47, 0.12), transparent 40%),
    rgba(10, 16, 32, 0.88);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), var(--shadow-gold);
  overflow: hidden;
}

.token-card__glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.28), transparent 70%);
  pointer-events: none;
}

.token-card__brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.token-card__brand img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(243, 186, 47, 0.35);
}

.token-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.token-card__ticker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.token-card__meta {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.token-card__meta > div {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(243, 186, 47, 0.15);
}

.token-card__meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.token-card__meta dd {
  font-size: 1.1rem;
  font-weight: 700;
}

.token-card__ca dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.token-card__ca code {
  color: var(--gold-light);
  word-break: break-all;
}

.token-card__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* How to buy */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.steps__line {
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.step {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 186, 47, 0.24);
  background: rgba(16, 16, 16, 0.88);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 186, 47, 0.55);
  box-shadow: var(--shadow-gold);
}

.step__num {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(243, 186, 47, 0.35);
}

.step h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.step p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Memes */
.memes {
  overflow: hidden;
}

.memes__bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.memes__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.08);
}

.memes__inner {
  position: relative;
}

.memes__huge {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.meme-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meme-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 186, 47, 0.3);
  background: var(--dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.meme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.meme-card:hover img {
  transform: scale(1.05);
}

.meme-card--banner {
  grid-row: 1 / 3;
  min-height: 420px;
}

.meme-card--logo {
  min-height: 220px;
  background: radial-gradient(circle at center, rgba(243, 186, 47, 0.25), #0a0a0a 70%);
}

.meme-card--logo img {
  object-fit: contain;
  padding: 1.2rem;
}

.meme-card--crop {
  min-height: 180px;
}

.meme-card--crop img {
  object-position: 30% 20%;
  transform: scale(1.35);
}

.meme-card--crop:hover img {
  transform: scale(1.42);
}

.memes__cta {
  text-align: center;
}

/* Final CTA */
.final-cta {
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 760px);
  height: min(90vw, 760px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.35), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}

.final-cta__inner {
  position: relative;
}

.final-cta__title {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.final-cta__sub {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Footer */
.footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(243, 186, 47, 0.22);
  background: linear-gradient(180deg, transparent, rgba(17, 27, 52, 0.4));
}

.footer__inner {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer__ticker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer__links a {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--gold-light);
}

.footer__slogan {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.footer__disclaimer {
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="right"] {
  transform: translateX(36px);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  animation: none;
}

.hero .hero__badge.reveal,
.hero .hero__line.reveal,
.hero .hero__lead.reveal,
.hero .hero__tag.reveal,
.hero .hero__actions.reveal,
.hero .contract-bar.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.hero.is-ready .hero__badge.reveal { animation: fadeUp 0.8s var(--ease) 0.2s forwards; }
.hero.is-ready .hero__line.reveal:nth-child(1) { animation: fadeUp 0.8s var(--ease) 0.35s forwards; }
.hero.is-ready .hero__line.reveal:nth-child(2) { animation: fadeUp 0.8s var(--ease) 0.5s forwards; }
.hero.is-ready .hero__lead.reveal { animation: fadeUp 0.8s var(--ease) 0.65s forwards; }
.hero.is-ready .hero__tag.reveal { animation: fadeUp 0.8s var(--ease) 0.75s forwards; }
.hero.is-ready .hero__actions.reveal { animation: fadeUp 0.8s var(--ease) 0.9s forwards; }
.hero.is-ready .contract-bar.reveal { animation: fadeUp 0.8s var(--ease) 1.05s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav__links {
    gap: 0.15rem 0.75rem;
  }

  .nav__links a {
    font-size: 0.78rem;
  }

  .hero__content,
  .mission__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    width: min(100%, 480px);
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

  .mission__copy {
    text-align: center;
  }

  .mission__body {
    margin-inline: auto;
  }

  .mission__art {
    width: min(100%, 340px);
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 5rem 2rem 2rem;
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav.is-open .nav__links {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.15rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps__line {
    display: none;
  }

  .meme-gallery {
    grid-template-columns: 1fr;
  }

  .meme-card--banner {
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero__actions,
  .token-card__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contract-bar {
    width: 100%;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .statement--wide {
    grid-column: auto;
  }

  .bnb-shape {
    opacity: 0.5;
  }

  .pointer-glow {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: clamp(2.6rem, 14vw, 3.4rem);
  }

  .section__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .final-cta__title {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .token-card__ca dd {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero .hero__badge.reveal,
  .hero .hero__line.reveal,
  .hero .hero__lead.reveal,
  .hero .hero__tag.reveal,
  .hero .hero__actions.reveal,
  .hero .contract-bar.reveal,
  .hero__art,
  .hero__glow,
  .bnb-shape {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee__track {
    animation: none;
  }

  .pointer-glow,
  .particles {
    display: none;
  }
}
