:root {
  --red: #a11b1b;
  --red-deep: #6e1010;
  --red-hot: #d42828;
  --gold: #fdb813;
  --gold-soft: #ffd56a;
  --cream: #f9f3e3;
  --cream-dark: #efe4c8;
  --ink: #2a120f;
  --ink-soft: #5c3a32;
  --orange: #e87820;
  --stripe-1: #c41e1e;
  --stripe-2: #f0a020;
  --stripe-3: #f5d76e;
  --glass: rgba(249, 243, 227, 0.12);
  --shadow: 0 18px 50px rgba(110, 16, 16, 0.28);
  --radius: 22px;
  --header-h: 78px;
  --font-display: "Lilita One", system-ui, sans-serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Karla", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

/* ---------- Atmosphere ---------- */

.bg-wash {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(253, 184, 19, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 20%, rgba(161, 27, 27, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 120, 32, 0.18), transparent 55%),
    linear-gradient(180deg, #fff8ea 0%, var(--cream) 35%, #f3e6c8 70%, #ead9b0 100%);
}

.bg-stripes {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.14;
  background: repeating-linear-gradient(
    -12deg,
    var(--stripe-1) 0 18px,
    var(--stripe-2) 18px 36px,
    var(--stripe-3) 36px 54px,
    var(--cream) 54px 72px
  );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
  animation: stripeDrift 40s linear infinite;
  pointer-events: none;
}

.bg-checker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  z-index: -2;
  opacity: 0.12;
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 36px 36px;
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
  animation: checkerSlide 18s linear infinite;
}

@keyframes stripeDrift {
  from { background-position: 0 0; }
  to { background-position: 280px 0; }
}

@keyframes checkerSlide {
  from { background-position: 0 0, 0 18px, 18px -18px, -18px 0; }
  to { background-position: 72px 0, 72px 18px, 90px -18px, 54px 0; }
}

.bubbles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(253, 184, 19, 0.08) 45%, rgba(161, 27, 27, 0.06));
  box-shadow: inset -4px -6px 12px rgba(161, 27, 27, 0.08);
  animation: rise linear forwards;
  opacity: 0.75;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.45; }
  100% {
    transform: translateY(-110vh) scale(1.15);
    opacity: 0;
  }
}

.sparkles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(253, 184, 19, 0.8);
  animation: twinkle ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(249, 243, 227, 0.82);
  border-bottom: 3px solid rgba(161, 27, 27, 0.15);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(110, 16, 16, 0.15);
  background: rgba(249, 243, 227, 0.94);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 2px var(--red), 0 6px 16px rgba(161, 27, 27, 0.3);
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--red), 0 6px 16px rgba(161, 27, 27, 0.3); }
  50% { box-shadow: 0 0 0 3px var(--red), 0 0 22px rgba(253, 184, 19, 0.55); }
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--red);
}

.brand-sub {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: 1.5rem;
  flex: 1;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: var(--red);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  border: 2px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.25));
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(161, 27, 27, 0.35);
}

/* Icons: cream/white on red; deep red on light/gold surfaces */
.btn-ico,
.buy-link img,
.footer-links a img,
.chart-open img {
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.btn-secondary .btn-ico,
.btn-ghost .btn-ico {
  filter: brightness(0) saturate(100%) invert(14%) sepia(78%) saturate(3200%) hue-rotate(346deg) brightness(0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-buy,
.btn-primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red-deep));
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(161, 27, 27, 0.35);
}

.btn-primary:hover,
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(161, 27, 27, 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--ink);
  border-color: var(--red);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 120, 32, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--red);
  border-color: var(--red);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: var(--red);
  border: 2px solid var(--gold);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  transition: 0.25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Ticker ---------- */

.ticker {
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  color: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.tick-star {
  color: var(--gold);
  animation: spinStar 3s linear infinite;
}

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

@keyframes spinStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 42px);
  padding: 3.5rem 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 19, 0.45), transparent 68%);
  filter: blur(8px);
  animation: glowBreathe 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowBreathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.script {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero .eyebrow.script {
  font-size: 1.25rem;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero-title {
  line-height: 0.92;
  margin-bottom: 1.1rem;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  color: var(--cream);
  -webkit-text-stroke: 4px var(--red);
  paint-order: stroke fill;
  text-shadow:
    4px 5px 0 var(--red-deep),
    0 12px 30px rgba(161, 27, 27, 0.35);
  letter-spacing: 0.02em;
  animation: titlePop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold);
  text-shadow: 2px 3px 0 var(--red);
  margin-top: 0.15rem;
  animation: titlePop 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes titlePop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 0.65rem;
}

.hero-symbol {
  font-size: 0.95rem;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-symbol strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.contract-box {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.contract-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.contract-addr {
  font-size: 0.88rem;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}

.copy-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1.5px solid var(--gold);
  transition: transform 0.15s, background 0.15s;
}

.copy-btn:hover {
  transform: scale(1.04);
  background: var(--red-hot);
}

.copy-btn.copied {
  background: #1f7a3a;
  border-color: #8de0a6;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-frame {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 3px dashed rgba(253, 184, 19, 0.65);
  animation: spinSlow 28s linear infinite;
}

.logo-ring-2 {
  inset: -2%;
  border-style: solid;
  border-color: rgba(161, 27, 27, 0.2);
  animation-direction: reverse;
  animation-duration: 40s;
}

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

.hero-logo {
  width: 88%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(110, 16, 16, 0.4));
  animation: floatLogo 5s ease-in-out infinite;
}

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

.float-spark {
  position: absolute;
  z-index: 3;
  color: var(--gold);
  font-size: 1.6rem;
  text-shadow: 0 0 12px rgba(253, 184, 19, 0.9);
  animation: twinkle 2.4s ease-in-out infinite;
}

.spark-1 { top: 8%; right: 12%; animation-delay: 0s; }
.spark-2 { bottom: 18%; left: 6%; animation-delay: 0.8s; font-size: 1.2rem; }
.spark-3 { top: 28%; left: 10%; animation-delay: 1.4s; font-size: 1rem; }

.hero-apron {
  font-size: 1.35rem;
  color: var(--red);
  text-align: center;
}

.hero-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  background-color: #fff;
  opacity: 0.55;
  mask-image: linear-gradient(0deg, #000 40%, transparent);
  animation: checkerSlide 12s linear infinite;
}

/* ---------- Sections ---------- */

.section {
  padding: 5.5rem 1.25rem;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0 rgba(253, 184, 19, 0.35);
}

.section-lead {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

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

.reveal-delay {
  transition-delay: 0.15s;
}

/* ---------- About ---------- */

.about {
  background:
    linear-gradient(180deg, transparent, rgba(161, 27, 27, 0.05) 20%, rgba(161, 27, 27, 0.08) 80%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.about-fact-wrap {
  display: flex;
  justify-content: center;
}

.about-fact {
  width: 100%;
  max-width: 440px;
  border-radius: 18px;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 4px var(--red),
    0 24px 50px rgba(110, 16, 16, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-fact-wrap:hover .about-fact {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 0 0 4px var(--red),
    0 32px 60px rgba(110, 16, 16, 0.42);
}

.about-script {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.about-body p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.about-body strong {
  color: var(--red);
}

.about-bullets {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(110, 16, 16, 0.08);
}

.bullet-star {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- How to Buy ---------- */

.howtobuy {
  background:
    radial-gradient(ellipse at top, rgba(253, 184, 19, 0.18), transparent 55%);
}

.menu-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.menu-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(249, 243, 227, 0.55));
  border: 2px solid rgba(161, 27, 27, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(110, 16, 16, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.menu-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.menu-step:hover {
  transform: translateX(6px);
  border-color: var(--red);
  box-shadow: 0 16px 36px rgba(110, 16, 16, 0.16);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  text-shadow: 1px 1px 0 var(--gold);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.step-body p {
  color: var(--ink-soft);
}

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

.buy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.4rem;
  background: var(--red);
  color: var(--cream);
  border-radius: 999px;
  border: 2px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(161, 27, 27, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.buy-link img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.buy-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(161, 27, 27, 0.4);
}

/* ---------- Chart ---------- */

.chart-frame {
  position: relative;
  background: linear-gradient(160deg, var(--red-deep), var(--red));
  border-radius: 28px;
  padding: 1.35rem 1.15rem 1.15rem;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(161, 27, 27, 0.25),
    0 30px 60px rgba(110, 16, 16, 0.35);
  overflow: hidden;
}

.chart-bulbs {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
}

.chart-bulbs span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff6c8, var(--gold) 55%, #c88700);
  box-shadow: 0 0 10px rgba(253, 184, 19, 0.8);
  animation: bulbBlink 2.4s ease-in-out infinite;
}

.chart-bulbs span:nth-child(odd) { animation-delay: 0.3s; }
.chart-bulbs span:nth-child(3n) { animation-delay: 0.7s; }
.chart-bulbs span:nth-child(4n) { animation-delay: 1.1s; }

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

.chart-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  color: var(--cream);
}

.chart-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.chart-live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3dde7a;
  box-shadow: 0 0 10px #3dde7a;
  display: inline-block;
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid var(--gold);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.chart-open img {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

.chart-open:hover {
  background: rgba(255, 255, 255, 0.22);
}

.chart-embed {
  border-radius: 16px;
  overflow: hidden;
  background: #0b0e11;
  border: 2px solid rgba(253, 184, 19, 0.35);
  min-height: 520px;
}

.chart-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

/* ---------- Join Us ---------- */

.joinus {
  padding-bottom: 4rem;
}

.banner-stage {
  position: relative;
  margin-bottom: 2rem;
}

.banner-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(253, 184, 19, 0.4), transparent 65%);
  filter: blur(20px);
  animation: glowBreathe 4.5s ease-in-out infinite;
  pointer-events: none;
}

.join-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 5px var(--red),
    0 28px 55px rgba(110, 16, 16, 0.35);
  animation: bannerShine 8s ease-in-out infinite;
}

@keyframes bannerShine {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.08) brightness(1.04); }
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  color: var(--cream);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 1.25rem;
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
  opacity: 0.9;
}

.footer-inner {
  max-width: 1100px;
  margin: 1rem auto 0;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.footer-brand span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--gold);
  transition: transform 0.2s, background 0.2s;
}

.footer-links a img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.25));
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.7;
  max-width: 36rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid,
  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-tagline,
  .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .contract-box {
    justify-content: center;
  }

  .contract-box {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(249, 243, 227, 0.97);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 16px 30px rgba(110, 16, 16, 0.15);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-buy {
    display: none;
  }

  .about-bullets li {
    text-align: left;
  }

  .chart-embed iframe {
    height: 420px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 68px;
  }

  .brand-text {
    display: none;
  }

  .title-line {
    -webkit-text-stroke-width: 3px;
  }

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .chart-bulbs span:nth-child(n + 11) {
    display: none;
  }

  .chart-embed {
    min-height: 380px;
  }

  .chart-embed iframe {
    height: 380px;
  }
}

@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;
  }
}
