:root {
  --black: #070605;
  --ink: #0c0a08;
  --panel: #12100c;
  --panel-2: #18150f;
  --gold: #d4af37;
  --gold-bright: #f0d78c;
  --gold-deep: #8a6d1f;
  --champagne: #e8d5a3;
  --ivory: #f4efe4;
  --mute: #9a917f;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cinzel", "Times New Roman", serif;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --script: "Great Vibes", cursive;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(900px 600px at 110% 8%, rgba(212, 175, 55, 0.1), transparent 50%),
    linear-gradient(180deg, #0a0806 0%, var(--black) 40%, #090807 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.x-icon {
  width: 16px;
  height: 16px;
}

.grain,
.pinstripes,
#gold-dust {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
}

.grain {
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.pinstripes {
  opacity: 0.16;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 46px,
    rgba(212, 175, 55, 0.22) 46px,
    rgba(212, 175, 55, 0.22) 47px
  );
  animation: stripe-drift 40s linear infinite;
}

#gold-dust {
  z-index: 2;
}

@keyframes stripe-drift {
  from { background-position: 0 0; }
  to { background-position: 94px 0; }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.42) 70%, transparent);
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(7, 6, 5, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-goldline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-crest {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(212, 175, 55, 0.2);
}

.brand-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-symbol {
  font-family: var(--display);
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--champagne);
  position: relative;
}

.site-nav a:not(.nav-buy)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:not(.nav-buy):hover::after {
  width: 100%;
}

.nav-buy,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  padding: 12px 18px;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn img,
.nav-buy img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.nav-buy,
.btn-gold {
  color: #1a1406;
  background: linear-gradient(180deg, #f3e2a0 0%, #d4af37 42%, #a98524 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 8px 24px rgba(212, 175, 55, 0.22);
  position: relative;
  overflow: hidden;
}

.nav-buy::before,
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  animation: btn-sheen 3.6s ease-in-out infinite;
}

@keyframes btn-sheen {
  0%, 55% { left: -40%; }
  100% { left: 130%; }
}

.nav-buy:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn-ghost {
  background: rgba(12, 10, 8, 0.55);
  color: var(--gold-bright);
}

.btn-ghost.light {
  background: rgba(7, 6, 5, 0.42);
  color: var(--ivory);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 0;
  overflow: hidden;
}

.hero-video,
.hero-veil,
.hero-rays,
.fight-watermark {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(0.35) contrast(1.15);
}

.hero-veil {
  background:
    radial-gradient(circle at 28% 42%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.2) 0%, rgba(7, 6, 5, 0.72) 58%, rgba(7, 6, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.15), rgba(7, 6, 5, 0.88));
}

.hero-rays {
  background: conic-gradient(from 210deg at 28% 46%, transparent 0 8%, rgba(212, 175, 55, 0.08) 10%, transparent 14%, rgba(240, 215, 140, 0.07) 18%, transparent 22%);
  animation: ray-turn 22s linear infinite;
  mix-blend-mode: screen;
}

.fight-watermark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4vw;
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.12);
  transform: rotate(-8deg);
  pointer-events: none;
}

@keyframes ray-turn {
  to { transform: rotate(360deg); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 210px);
}

.crest-orbit {
  position: relative;
  width: min(430px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.orbit-ring.delay {
  inset: -38px;
  border-style: solid;
  border-color: rgba(212, 175, 55, 0.16);
  animation-duration: 44s;
  animation-direction: reverse;
}

.crest-frame {
  position: relative;
  height: 100%;
  clip-path: polygon(50% 0, 93% 18%, 100% 58%, 74% 100%, 26% 100%, 0 58%, 7% 18%);
  border: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.28));
  animation: crest-float 6.5s ease-in-out infinite;
}

.crest-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(240, 215, 140, 0.22) 48%, transparent 62%);
  animation: sheen 5.5s ease-in-out infinite;
}

.crest-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.85);
}

.crest-caption {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--display);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 12px;
}

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

@keyframes crest-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sheen {
  0%, 100% { transform: translateX(-40%); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translateX(40%); opacity: 0; }
}

.hero-copy-col {
  padding-top: 10px;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 12px;
  margin: 0 0 18px;
}

.eyebrow .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow .rule:first-child {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.wordmark {
  margin: 0;
  line-height: 0.86;
}

.word-official,
.word-eric,
.word-trump {
  display: block;
  text-transform: uppercase;
}

.word-eric {
  display: flex;
  align-items: center;
  gap: 14px;
}

.word-eric i.star,
.word-star {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
  flex: 0 0 auto;
}

.word-star {
  width: 10px;
  height: 10px;
  margin: 14px 0 0 8px;
}

.word-official {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.62em;
  color: var(--gold);
  margin-bottom: 10px;
}

.word-eric {
  display: flex;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 126px);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #cfc7b6 38%, #8d8778 62%, #f3efe6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  animation: metal-shift 7s linear infinite;
  background-size: 100% 220%;
}

.word-trump {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 98px);
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #fff1b8 0%, #f0d78c 18%, #d4af37 46%, #8a6d1f 78%, #f6e7a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 100% 240%;
  animation: metal-shift 8s linear infinite reverse;
}

@keyframes metal-shift {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

.hero-symbol {
  margin: 18px 0 8px;
  font-family: var(--display);
  letter-spacing: 0.4em;
  color: var(--gold-bright);
}

.hero-tagline {
  margin: 0 0 8px;
  max-width: 34ch;
  font-size: 20px;
  color: var(--ivory);
}

.hero-script {
  margin: 0 0 26px;
  font-family: var(--script);
  font-size: 34px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 22px;
  background: rgba(18, 16, 12, 0.78);
  border: 1px solid var(--line);
  max-width: 560px;
}

.ca-label {
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
}

#ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--champagne);
  font-size: 13px;
}

.ca-copy {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  padding: 6px 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: 11px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ticker {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 6, 5, 0.55);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.about,
.howtobuy,
.chart {
  padding: 110px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2,
.join-inner h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: 0.03em;
}

.section-lead {
  margin: 0;
  color: var(--mute);
  font-size: 18px;
  max-width: 52ch;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
}

.about-manifesto {
  position: relative;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.07), transparent 28%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-manifesto::before,
.about-manifesto::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
}

.about-manifesto::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.about-manifesto::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.about-manifesto p {
  color: #d8d0c0;
  line-height: 1.75;
  font-size: 17px;
}

.about-close {
  color: var(--champagne) !important;
  font-weight: 600;
}

.doctrine {
  display: grid;
  gap: 16px;
}

.doctrine-card {
  padding: 22px 22px 20px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.doctrine-card:nth-child(2).reveal { transition-delay: 0.1s; }
.doctrine-card:nth-child(3).reveal { transition-delay: 0.2s; }

.doctrine-num {
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 12px;
}

.doctrine-card h3 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: 22px;
}

.doctrine-card p {
  margin: 0;
  color: var(--mute);
}

.buy-step:nth-child(2).reveal { transition-delay: 0.08s; }
.buy-step:nth-child(3).reveal { transition-delay: 0.16s; }
.buy-step:nth-child(4).reveal { transition-delay: 0.24s; }

.buy-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0 0 36px;
  position: relative;
}

.buy-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.buy-step {
  position: relative;
  padding: 22px 18px 20px;
  background: rgba(18, 16, 12, 0.82);
  border: 1px solid var(--line);
}

.step-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
}

.buy-step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 20px;
}

.buy-step p {
  margin: 0;
  color: var(--mute);
  line-height: 1.65;
}

.buy-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--champagne);
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.chart-frame {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08), var(--shadow);
  background: #0b0b0b;
  overflow: hidden;
}

.chart-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: none;
}

.chart-frame.has-embed iframe {
  display: block;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
  color: var(--champagne);
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12), transparent 40%),
    #0b0b0b;
}

.chart-frame.has-embed .chart-fallback {
  display: none;
}

.joinus {
  padding: 0 0 40px;
}

.join-banner {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.join-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: banner-pan 18s ease-in-out infinite alternate;
}

@keyframes banner-pan {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.28), rgba(7, 6, 5, 0.72) 70%, rgba(7, 6, 5, 0.88)),
    radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.16), transparent 36%);
}

.join-inner {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin-left: auto;
  padding: 120px 6vw 90px 0;
}

.join-inner .section-index.light {
  color: var(--gold-bright);
}

.join-inner p {
  max-width: 42ch;
  color: #efe7d4;
  font-size: 18px;
  line-height: 1.7;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand.compact .brand-crest {
  width: 40px;
  height: 40px;
}

.footer-note {
  margin: 0;
  color: var(--mute);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-layout,
  .buy-track,
  .footer-inner {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .footer-inner {
    text-align: center;
    align-items: center;
  }

  .buy-track::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 24px;
  }

  .join-inner {
    margin: 0 auto;
    padding: 90px 0;
    text-align: center;
  }

  .join-inner p {
    margin-left: auto;
    margin-right: auto;
  }

  .join-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    padding: 18px;
    background: rgba(12, 10, 8, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .word-official {
    letter-spacing: 0.28em;
  }

  .ca-strip {
    flex-wrap: wrap;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 480px;
    height: 480px;
  }

  .join-banner {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
