:root {
  --bg: #0c0406;
  --bg-2: #15080c;
  --bg-3: #1f0c12;
  --surface: #2a1118;
  --wine: #5a1420;
  --wine-bright: #8b1e2c;
  --crimson: #c41e3a;
  --red-soft: #e34b5f;
  --gold: #d4af37;
  --gold-bright: #f2c94c;
  --gold-dim: #a88728;
  --ink: #f5e9d5;
  --ink-dim: #c9b89a;
  --ink-muted: #8a7a62;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at top, rgba(139, 30, 44, 0.35), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(90, 20, 32, 0.25), transparent 60%),
    linear-gradient(180deg, #0c0406 0%, #15080c 50%, #0c0406 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.02  0 0 0 0 0.04  0 0 0 0 0.25 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-bright); }

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
}

h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p { margin: 0 0 1em; color: var(--ink-dim); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ========= PETALS ========= */
.petals-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  font-size: 18px;
  opacity: 0.65;
  animation: petal-fall linear forwards;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
@keyframes petal-fall {
  0% { transform: translate(0, -40px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  100% { transform: translate(var(--drift, 40px), 110vh) rotate(720deg); opacity: 0; }
}

/* ========= FLOATING FRUITS ========= */
.floating-fruits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.fruit {
  position: absolute;
  font-size: clamp(28px, 4vw, 48px);
  opacity: 0.25;
  animation: fruit-float 8s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
  user-select: none;
}
@keyframes fruit-float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

/* ========= MARQUEE ========= */
.marquee {
  background: linear-gradient(90deg, var(--wine-bright), var(--crimson), var(--wine-bright));
  border-top: 1px solid rgba(212,175,55,0.35);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.marquee-top { position: sticky; top: 0; }
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #fff4c4;
  text-shadow: 0 1px 0 #3a0a12, 0 0 20px rgba(212,175,55,0.3);
}
.marquee-track span { padding-right: 40px; }
.marquee-reverse { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========= Buttons ========= */
.btn-primary,
.btn-ghost,
.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-xl { padding: 18px 36px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #1a0a0e;
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(212, 175, 55, 0.8), inset 0 1px 0 rgba(255,255,255,0.5);
  color: #1a0a0e;
}
.btn-primary:hover::after { left: 120%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,175,55,0.08);
}

.btn-copy {
  padding: 10px 18px;
  font-size: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.btn-copy:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-bright);
}
.btn-copy.copied {
  background: var(--gold);
  color: #1a0a0e;
}

/* ========= Header ========= */
.site-header {
  position: sticky;
  top: 48px;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(12, 4, 6, 0.7);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-family: 'Great Vibes', cursive;
  font-size: 40px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.35;
  padding: 6px 4px 6px 10px;
  flex-shrink: 0;
  overflow: visible;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
  transition: all .2s ease;
}
.icon-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

/* ========= Hero ========= */
.hero {
  position: relative;
  padding: 60px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 500px at var(--mx, 50%) var(--my, 30%), rgba(255, 228, 150, 0.18), transparent 70%);
  transition: background 0.15s ease;
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.15), transparent 45%),
    radial-gradient(ellipse at center, rgba(139, 30, 44, 0.3), transparent 60%);
  z-index: 0;
}

.hero-inner { position: relative; z-index: 2; }

.hero-art {
  position: relative;
  max-width: 920px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 140px rgba(139, 30, 44, 0.45);
  animation: floatIn 1.2s ease-out .1s both;
}

.hero-art img { width: 100%; height: auto; display: block; }

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 228, 150, 0.12), transparent 50%);
  mix-blend-mode: screen;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s ease-out .3s forwards;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #f8e194 0%, #d4af37 40%, #c88e1a 60%, #f2c94c 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 24px rgba(212, 175, 55, 0.4));
  opacity: 0;
  animation: fadeUp 1s ease-out .4s forwards;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--ink);
  max-width: 720px;
  margin: 24px auto 32px;
  line-height: 1.3;
  opacity: 0;
  animation: fadeUp .8s ease-out .4s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s ease-out .6s forwards;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 17, 24, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.stat-icon { font-size: 18px; }
.stat-text { letter-spacing: 0.04em; }

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease-out .7s forwards;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= Section Base ========= */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head h2 { font-size: clamp(34px, 5vw, 52px); }

.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
}

h2 { font-size: clamp(32px, 4.5vw, 48px); }

h2 strong {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========= About ========= */
.about {
  background: linear-gradient(180deg, transparent, rgba(139, 30, 44, 0.08), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(139, 30, 44, 0.25);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-image:hover img { transform: scale(1.04); }

.frame-gold {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
}

.about-text h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 24px;
}
.about-text p { font-size: 17px; color: var(--ink-dim); }
.about-text p strong { color: var(--gold); font-weight: 600; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
  transition: all .25s ease;
}
.pill:hover {
  background: rgba(212,175,55,0.18);
  transform: translateY(-2px);
  border-color: var(--gold);
}

/* ========= The Court ========= */
.court {
  background:
    radial-gradient(ellipse at center, rgba(139, 30, 44, 0.12), transparent 60%),
    linear-gradient(180deg, transparent, rgba(42, 17, 24, 0.3), transparent);
}

.court-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.courtier {
  padding: 28px 20px 24px;
  background: linear-gradient(160deg, rgba(42, 17, 24, 0.7), rgba(15, 6, 9, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  cursor: default;
}
.courtier:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 40px -18px rgba(212, 175, 55, 0.35);
}
.courtier-face {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform .4s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.courtier:hover .courtier-face {
  transform: scale(1.18) rotate(-8deg);
}
.courtier h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--ink);
}
.courtier p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  font-style: italic;
}

.court-note {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 24px;
}

/* ========= Community Links ========= */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(42, 17, 24, 0.6), rgba(21, 8, 12, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  color: var(--ink);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px -20px rgba(212, 175, 55, 0.3);
  color: var(--ink);
}
.link-card:hover::before { opacity: 1; }

.link-card .link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  margin-bottom: 4px;
}

.link-card h3 { font-size: 22px; margin: 0 0 4px; }
.link-card p { color: var(--ink-muted); margin: 0; font-size: 14px; }

.link-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold);
  font-size: 22px;
  transition: transform .3s ease;
}
.link-card:hover .link-arrow { transform: translate(4px, -4px); }

.link-card.soon { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

/* ========= How to Buy ========= */
.how-to-buy {
  background: linear-gradient(180deg, transparent, rgba(90, 20, 32, 0.15), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.step {
  position: relative;
  padding: 32px 24px 28px;
  background: linear-gradient(160deg, rgba(42, 17, 24, 0.7), rgba(15, 6, 9, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 48px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 10px; color: var(--ink); }
.step p { margin: 0; font-size: 14px; color: var(--ink-muted); }

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

/* ========= Tokenomics ========= */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tok-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(160deg, rgba(42, 17, 24, 0.6), rgba(15, 6, 9, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}
.tok-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
}

.tok-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.tok-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}

.contract-box {
  padding: 28px;
  background: linear-gradient(160deg, rgba(42, 17, 24, 0.75), rgba(15, 6, 9, 0.75));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}
.contract-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}
.contract-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contract-row code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px;
  color: var(--ink);
  background: rgba(0,0,0,0.35);
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  word-break: break-all;
}

/* ========= Footer ========= */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-inner { position: relative; z-index: 2; }

.brand-footer {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  line-height: 1.4;
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-socials a:hover { color: var(--gold-bright); border-color: var(--gold); }

.disclaimer {
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.copy { font-size: 12px; color: var(--ink-muted); margin: 0; }

/* ========= Reveal animation ========= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========= Toast ========= */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a0a0e;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  z-index: 100;
  box-shadow: 0 12px 32px -8px rgba(212, 175, 55, 0.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ========= Responsive ========= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 420px; margin: 0 auto; }
  .links-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-grid { grid-template-columns: repeat(2, 1fr); }
  .court-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .section { padding: 70px 0; }
  .hero { padding: 40px 0 70px; }
  .header-buy { padding: 12px 20px; font-size: 13px; }
  .fruit { font-size: 26px; }
  .marquee-track { font-size: 12px; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .court-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .courtier { padding: 20px 12px; }
  .courtier-face { font-size: 42px; }
  .brand { font-size: 30px; }
  .header-actions { gap: 8px; }
  .icon-btn { width: 34px; height: 34px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; }
  .hero-stats { gap: 8px; }
  .stat { padding: 8px 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .fruit, .petal, .marquee-track, .hero-title, .hero-sub, .hero-eyebrow, .hero-stats, .hero-cta, .hero-art {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
