:root {
  --gold: #d4af37;
  --gold-light: #f5d77a;
  --gold-bright: #ffe9a8;
  --gold-dark: #8b6914;
  --bronze: #a67c3d;
  --crimson: #8f1424;
  --crimson-deep: #4a0816;
  --blood: #c41e3a;
  --stone: #0c0908;
  --stone-mid: #1a1410;
  --stone-light: #2a2018;
  --marble: #f3ebe0;
  --marble-dim: #c4b5a3;
  --shadow: rgba(0, 0, 0, 0.6);
  --glow: rgba(212, 175, 55, 0.45);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, serif;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--marble);
  background: var(--stone);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: #fff;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* —— Global FX —— */
.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -10px;
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--blood) 55%, transparent 100%);
  box-shadow: 0 0 8px var(--glow);
  animation: ember-rise linear infinite;
  opacity: 0;
}

@keyframes ember-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 0)) scale(0.2);
    opacity: 0;
  }
}

.fx-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9995;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.fx-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9994;
  opacity: 0.03;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(212, 175, 55, 0.15) 2px,
    rgba(212, 175, 55, 0.15) 4px
  );
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Nav —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.92) 0%, rgba(12, 9, 8, 0.7) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(14px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 9, 8, 0.97);
  border-bottom-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--marble);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--glow);
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.55);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-symbol {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marble-dim);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(180deg, var(--blood) 0%, var(--crimson-deep) 100%);
  border: 1px solid var(--gold-dark);
  color: var(--marble) !important;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(143, 20, 36, 0.5);
  animation: cta-glow 2.5s ease-in-out infinite;
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(143, 20, 36, 0.45);
  }
  50% {
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
  }
}

.nav-cta:hover {
  filter: brightness(1.15);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  padding: 0.4rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  cursor: pointer;
  letter-spacing: 0.1em;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(143, 20, 36, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, var(--stone) 82%),
    linear-gradient(180deg, rgba(12, 9, 8, 0.25) 0%, rgba(74, 8, 22, 0.7) 50%, var(--stone) 100%);
}

.hero-laurel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(212, 175, 55, 0.12);
  font-family: var(--font-display);
  animation: laurel-float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-laurel--left {
  left: 4%;
}

.hero-laurel--right {
  right: 4%;
  animation-delay: -3s;
}

@keyframes laurel-float {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.12;
  }
  50% {
    transform: translateY(calc(-50% - 12px)) scale(1.05);
    opacity: 0.2;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
}

.hero-logo-wrap {
  position: relative;
  width: min(220px, 46vw);
  margin: 0 auto 1.75rem;
}

.hero-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212, 175, 55, 0.4);
  animation: ring-spin 8s linear infinite;
}

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

.hero-logo {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.12),
    0 0 60px var(--glow),
    0 20px 50px var(--shadow);
  animation: hero-logo-float 5s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: shimmer-text 4s ease-in-out infinite;
}

@keyframes shimmer-text {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px var(--glow);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  text-shadow: 0 4px 30px var(--shadow);
  animation: title-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-gold {
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-light) 35%,
    var(--gold-bright) 50%,
    var(--gold-light) 65%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    title-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both,
    gold-shimmer 5s linear infinite;
}

@keyframes title-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  color: var(--gold-light);
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--marble-dim);
  max-width: 38em;
  margin: 0 auto 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(12, 9, 8, 0.55);
  backdrop-filter: blur(6px);
  min-width: 120px;
  animation: pill-fade 0.8s ease both;
}

.stat-pill:nth-child(2) {
  animation-delay: 0.15s;
}

.stat-pill:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pill-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--marble);
}

.btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 2px;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: btn-shine 3.5s ease-in-out infinite;
}

@keyframes btn-shine {
  0%,
  70%,
  100% {
    left: -100%;
  }
  85% {
    left: 150%;
  }
}

.btn-primary {
  background: linear-gradient(180deg, #c41e3a 0%, var(--crimson-deep) 100%);
  color: var(--marble);
  box-shadow: 0 6px 24px rgba(196, 30, 58, 0.45);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--stone);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--marble-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.section-alt {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(143, 20, 36, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--stone-mid) 0%, var(--stone) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marble);
  margin-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: line-grow 1.2s ease both;
}

@keyframes line-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 90px;
    opacity: 1;
  }
}

.section-header p {
  color: var(--marble-dim);
  font-size: 1.1rem;
  max-width: 34em;
  margin-inline: auto;
}

.ornament {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  opacity: 0.7;
  animation: ornament-glow 4s ease-in-out infinite;
}

@keyframes ornament-glow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.9;
    text-shadow: 0 0 16px var(--glow);
  }
}

/* —— About —— */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-card {
  text-align: center;
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.about-frame {
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.35);
  padding: 6px;
  background: linear-gradient(145deg, rgba(42, 32, 24, 0.6), rgba(12, 9, 8, 0.8));
  box-shadow: 0 20px 50px var(--shadow);
  overflow: hidden;
}

.about-frame img {
  width: 100%;
  border-radius: 2px;
  transition: transform 0.6s ease;
}

.about-frame:hover img {
  transform: scale(1.04);
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  animation: corner-pulse 3s ease-in-out infinite;
}

.frame-corner--tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.frame-corner--tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
  animation-delay: -0.75s;
}

.frame-corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
  animation-delay: -1.5s;
}

.frame-corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
  animation-delay: -2.25s;
}

@keyframes corner-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px var(--glow);
  }
}

.about-copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.about-copy p {
  margin-bottom: 1.25rem;
  color: var(--marble-dim);
  font-size: 1.2rem;
}

.about-copy p:first-of-type {
  font-size: 1.35rem;
  color: var(--marble);
  font-weight: 600;
}

.battle-cry {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, rgba(143, 20, 36, 0.25), rgba(212, 175, 55, 0.08));
  animation: battle-cry-glow 3s ease-in-out infinite;
}

@keyframes battle-cry-glow {
  0%,
  100% {
    box-shadow: inset 0 0 0 transparent;
  }
  50% {
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.08);
  }
}

/* —— How to buy —— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: linear-gradient(145deg, rgba(42, 32, 24, 0.85) 0%, rgba(12, 9, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.step-card::before {
  content: attr(data-step);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.12);
  position: absolute;
  top: 0.4rem;
  right: 0.65rem;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  animation: icon-bob 3s ease-in-out infinite;
}

.step-card:nth-child(2) .step-icon {
  animation-delay: -0.75s;
}

.step-card:nth-child(3) .step-icon {
  animation-delay: -1.5s;
}

.step-card:nth-child(4) .step-icon {
  animation-delay: -2.25s;
}

@keyframes icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 1rem;
  color: var(--marble-dim);
}

.buy-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contract-box {
  margin-top: 2rem;
  text-align: center;
  padding: 1.25rem;
  border: 1px dashed rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.25);
}

.contract-box label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.contract-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.contract-row code {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--marble);
  word-break: break-all;
  max-width: 100%;
}

.btn-copy {
  font-size: 0.65rem;
  padding: 0.5rem 0.9rem;
}

/* —— Chart —— */
.chart-wrap {
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  overflow: hidden;
  background: #0d0b0a;
  min-height: 480px;
  box-shadow:
    0 12px 40px var(--shadow),
    0 0 0 1px rgba(212, 175, 55, 0.08) inset;
  position: relative;
}

.chart-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: chart-border-pulse 4s ease-in-out infinite;
}

@keyframes chart-border-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.chart-wrap iframe {
  width: 100%;
  height: min(70vh, 560px);
  border: 0;
  display: block;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 2rem;
  text-align: center;
  color: var(--marble-dim);
  font-style: italic;
}

.chart-actions {
  margin-top: 1.5rem;
  text-align: center;
}

/* —— Join us —— */
.join-section {
  background:
    radial-gradient(ellipse at center top, rgba(143, 20, 36, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    var(--stone-mid);
}

.join-banner-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto 2.5rem;
}

.join-banner {
  width: 100%;
  border: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 20px 60px var(--shadow);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.join-banner-wrap:hover .join-banner {
  transform: scale(1.01);
}

.join-banner-glow {
  position: absolute;
  inset: -8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--blood), var(--gold));
  opacity: 0.35;
  filter: blur(20px);
  z-index: 0;
  animation: banner-glow 4s ease-in-out infinite;
}

@keyframes banner-glow {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

.join-content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.join-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.join-content p {
  color: var(--marble-dim);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  min-width: 160px;
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.95rem;
  color: var(--marble-dim);
  background: var(--stone);
}

.footer-crest {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.site-footer strong {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.disclaimer {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.65;
  max-width: 50em;
  margin-inline: auto;
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .about-gallery {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-laurel {
    display: none;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(12, 9, 8, 0.98);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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