/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* palette pulled from Koop image */
  --night-deep:    #1a1240;
  --night-mid:     #2d1b4e;
  --night-soft:    #3d2a6b;
  --lavender:      #9b8bb5;
  --pink-soft:     #fce4ec;
  --pink-mid:      #f8bbd0;
  --orange-glow:   #ff8c42;
  --orange-warm:   #e85d04;
  --yellow-car:    #ffd700;
  --gray-hair:     #b0a8b8;

  --bg:            rgba(26, 18, 64, 0.55);
  --bg-card:       rgba(45, 27, 78, 0.72);
  --bg-elevated:   rgba(61, 42, 107, 0.78);
  --border:        rgba(248, 187, 208, 0.15);
  --border-light:  rgba(155, 139, 181, 0.25);
  --text:          #fce4ec;
  --text-muted:    rgba(252, 228, 236, 0.72);
  --text-dim:      rgba(155, 139, 181, 0.85);
  --accent:        #fce4ec;
  --accent-dim:    #f8bbd0;
  --warning:       #ff8c42;
  --ticker-bg:     rgba(26, 18, 64, 0.88);
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --container:     1100px;
  --radius:        8px;
  --glass-blur:    16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(255, 140, 66, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(248, 187, 208, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night-mid) 45%, #150e30 100%);
  background-attachment: fixed;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Glass panels ── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--ticker-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding: 10px 0;
  width: max-content;
}

.ticker span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}

.ticker .diamond {
  color: var(--orange-glow);
  font-size: 8px;
}

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

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: rgba(26, 18, 64, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--pink-soft);
  text-shadow: 0 0 24px rgba(248, 187, 208, 0.3);
}

.handle {
  font-size: 13px;
  font-weight: 500;
  color: var(--lavender);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.handle:hover {
  color: var(--pink-soft);
}

/* ── Hero ── */
.hero {
  padding: 80px 0 72px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 45%, rgba(255, 140, 66, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 25% 55%, rgba(248, 187, 208, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  order: 1;
}

.hero-visual {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 0 60px rgba(255, 140, 66, 0.2),
    0 0 120px rgba(45, 27, 78, 0.6),
    0 24px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-glow);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 130px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--pink-soft);
  margin-bottom: 32px;
  text-shadow: 0 0 40px rgba(248, 187, 208, 0.25);
}

.hero-title .dot {
  color: var(--orange-glow);
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}

/* ── Hero Disclaimer List ── */
.disclaimer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
  max-width: 480px;
}

.disclaimer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  line-height: 1.5;
}

.disclaimer-icon {
  color: var(--orange-glow);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

.disclaimer-item strong {
  color: var(--pink-soft);
  font-weight: 600;
}

.hero-sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--pink-mid);
  color: var(--pink-soft);
  background: rgba(248, 187, 208, 0.08);
}

.btn-outline:hover {
  border-color: var(--orange-glow);
  color: var(--orange-glow);
  background: rgba(255, 140, 66, 0.12);
  box-shadow: 0 0 24px rgba(255, 140, 66, 0.2);
}

.btn-primary {
  border: 1px solid var(--orange-glow);
  background: linear-gradient(135deg, var(--orange-glow), var(--orange-warm));
  color: var(--night-deep);
  font-weight: 700;
}

.btn-primary:hover {
  background: transparent;
  color: var(--orange-glow);
  box-shadow: 0 0 32px rgba(255, 140, 66, 0.3);
}

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

/* ── Pillars ── */
.pillars {
  padding: 64px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card {
  padding: 40px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(255, 140, 66, 0.1);
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(155, 139, 181, 0.35);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.pillar-card h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--pink-soft);
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Legal ── */
.legal {
  padding: 64px 0;
}

.legal-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px;
}

.legal-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.05em;
  color: var(--pink-soft);
  margin-bottom: 16px;
}

.legal-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 24px;
}

.legal-lead strong {
  color: var(--orange-glow);
  font-weight: 700;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--orange-glow);
  color: var(--orange-glow);
  border-radius: var(--radius);
  background: rgba(255, 140, 66, 0.1);
}

.legal-body p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body strong {
  color: var(--pink-soft);
  font-weight: 600;
}

/* ── Non-Negotiables ── */
.non-negotiables {
  padding: 64px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.05em;
  color: var(--pink-soft);
  margin-bottom: 48px;
  text-shadow: 0 0 30px rgba(248, 187, 208, 0.15);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rule-card {
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.rule-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(248, 187, 208, 0.08);
}

.rule-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(155, 139, 181, 0.35);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.rule-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pink-soft);
  margin-bottom: 10px;
  line-height: 1.4;
}

.rule-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA ── */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 40px;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 72px);
  letter-spacing: 0.05em;
  color: var(--pink-soft);
  margin-bottom: 16px;
}

.cta-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dim);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-note {
  font-size: 12px;
  color: var(--lavender);
  margin-top: 20px;
  letter-spacing: 0.02em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(45, 27, 78, 0.5);
  transition: border-color 0.2s, color 0.2s;
}

.tags span:hover {
  border-color: var(--orange-glow);
  color: var(--orange-glow);
}

/* ── Footer ── */
.site-footer {
  padding: 48px 0 56px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--lavender);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink-soft);
}

.sep {
  color: var(--border-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

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

  .hero-img {
    max-width: 280px;
  }

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

  .legal-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

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

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 40px;
  }

  .pillar-card,
  .rule-card {
    padding: 28px 24px;
  }

  .legal,
  .non-negotiables,
  .pillars {
    padding: 48px 0;
  }

  .cta {
    padding: 56px 0;
  }

  .cta-inner {
    padding: 40px 24px;
  }

}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
