:root {
  --yellow: #ffd400;
  --yellow-dim: #c7a500;
  --yellow-soft: rgba(255, 212, 0, 0.12);
  --yellow-glow: rgba(255, 212, 0, 0.35);
  --black: #0a0a0a;
  --dark: #141414;
  --dark-2: #1a1a1a;
  --dark-3: #222;
  --grey: #a0a0a0;
  --light: #e8e8e8;
  --white: #f5f5f5;
  --border: rgba(255,255,255,.07);
  --border-hover: rgba(255,212,0,.25);
  --glass: rgba(18,18,18,.65);
  --glass-hover: rgba(18,18,18,.80);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --shadow-glow: 0 0 60px rgba(255,212,0,.08);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --container: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --transition: .3s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  min-width: 320px;
  color: var(--light);
  background: var(--black);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 212, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 30%, rgba(255, 212, 0, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255, 212, 0, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #101010 40%, #060606 100%);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
}
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
img { display: block; max-width: 100%; }

::selection { color: var(--black); background: var(--yellow); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2a2510; border: 3px solid var(--black); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ── LAYOUT ── */
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { max-width: 860px; }
.section { padding: 120px 0; position: relative; }

/* ── GLASS ── */
.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

/* ── UTILITIES ── */
.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
i.icon {
  width: auto;
  height: auto;
  font-size: 20px;
  line-height: 1;
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 200; padding: 12px 16px; color: #111; background: var(--yellow); border-radius: 10px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }

/* ── AMBIENT BG ── */
.ambient { position: fixed; pointer-events: none; z-index: -2; border-radius: 50%; filter: blur(120px); }
.ambient-one { width: 500px; height: 500px; background: var(--yellow); top: -5%; right: -15%; opacity: .08; animation: ambientFloat 20s ease-in-out infinite; }
.ambient-two { width: 400px; height: 400px; background: #8b6e00; bottom: 0; left: -15%; opacity: .06; animation: ambientFloat 25s ease-in-out infinite reverse; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .02; 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"); }

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── HEADER ── */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: all .35s var(--ease); }
.site-header.scrolled {
  background: rgba(10,10,10,.82);
  border-color: var(--border);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar { height: 80px; display:flex; align-items:center; justify-content:space-between; gap:30px; }

/* ── BRAND / LOGO ── */
.brand { display:inline-flex; align-items:center; gap:12px; font-family:Poppins,sans-serif; font-size:17px; font-weight:600; letter-spacing:-.3px; white-space:nowrap; transition: opacity .2s; }
.brand:hover { opacity: .85; }
.brand strong { color:var(--yellow); }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(255, 212, 0, .25));
  transition: filter .3s var(--ease);
}
.brand:hover .brand-mark { filter: drop-shadow(0 0 14px rgba(255, 212, 0, .45)); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

/* ── NAV LINKS ── */
.nav-links { display:flex; align-items:center; gap:6px; font-size:14px; font-weight:600; }
.nav-links > a:not(.button) {
  color: #999;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: all .25s var(--ease);
  position: relative;
}
.nav-links > a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all .25s var(--ease);
  transform: translateX(-50%);
}
.nav-links > a:not(.button):hover { color: var(--white); background: rgba(255,255,255,.04); }
.nav-links > a:not(.button):hover::after { width: 60%; }
.nav-links > a.active { color: var(--yellow); }
.nav-links > a.active::after { width: 60%; }

.menu-toggle { display:none; width:44px; height:44px; border:1px solid var(--border); background:rgba(255,255,255,.04); border-radius:12px; place-items:center; padding:10px; cursor:pointer; transition: all .2s; }
.menu-toggle:hover { background: rgba(255,255,255,.08); border-color: var(--border-hover); }
.menu-toggle span { display: block; width:20px; height:2px; background:var(--white); border-radius:2px; transition:.25s var(--ease); }
.menu-toggle span + span { margin-top: 5px; }

/* ── BUTTONS ── */
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:1px solid transparent; border-radius:14px;
  font-weight:700; cursor: pointer;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}
.button::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.button:hover::before { opacity: 1; }
.button:hover { transform:translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-small { min-height:44px; padding:0 18px; font-size:13px; }
.button-large { min-height:56px; padding:0 28px; font-size: 15px; }
.button-primary {
  color:#111; background: var(--yellow);
  box-shadow: 0 8px 30px rgba(255,212,0,.15), inset 0 1px 0 rgba(255,255,255,.2);
}
.button-primary:hover { box-shadow: 0 12px 45px rgba(255,212,0,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.button-ghost {
  color:var(--white);
  background:rgba(255,255,255,.04);
  border-color:var(--border);
}
.button-ghost:hover { background:rgba(255,255,255,.08); border-color: var(--border-hover); }
.glow { animation: pulseGlow 3s ease-in-out infinite; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 8px 30px rgba(255,212,0,.15), inset 0 1px 0 rgba(255,255,255,.2); }
  50% { box-shadow: 0 12px 50px rgba(255,212,0,.35), inset 0 1px 0 rgba(255,255,255,.2); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 160px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,212,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: 50%; bottom: 60px;
  width: min(900px, 90vw); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,212,0,.35), transparent);
  transform: translateX(-50%);
}

/* Hero Logo */
.hero-logo {
  width: 140px; height: 140px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 40px rgba(255,212,0,.3));
  animation: heroLogoFloat 6s ease-in-out infinite;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(255,212,0,.3)); }
  50% { transform: translateY(-12px); filter: drop-shadow(0 0 60px rgba(255,212,0,.5)); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  color: #d0d0d0;
  border: 1px solid rgba(255,212,0,.15);
  background: rgba(255,212,0,.05);
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--yellow);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--yellow); }
  50% { opacity: .5; box-shadow: 0 0 6px var(--yellow); }
}

.hero h1 {
  margin: 28px 0 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: .95; letter-spacing: -5px;
  color: var(--white);
}
.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 0 80px rgba(255,212,0,.2);
}
.hero-subtitle {
  margin: 28px 0 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 600; letter-spacing: -.5px;
}
.hero-subtitle span { color: var(--yellow); margin: 0 10px; }
.hero-copy { max-width: 560px; margin: 16px auto 0; color: var(--grey); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center;
  margin-top: 80px; padding: 24px 36px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(255,212,0,.12), transparent 50%, rgba(255,212,0,.06));
  z-index: -1; opacity: 0;
  transition: opacity .4s;
}
.hero-stats:hover::before { opacity: 1; }
.hero-stats div { min-width: 130px; padding: 0 24px; text-align: center; }
.hero-stats div + div { border-left: 1px solid var(--border); }
.hero-stats strong {
  display: block; color: var(--yellow);
  font-family: Poppins, sans-serif; font-size: 28px;
  font-weight: 800; letter-spacing: -1px;
}
.hero-stats span { color: #777; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }

/* ── SECTION HEADINGS ── */
.section-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow); font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}
.eyebrow::after { background: linear-gradient(90deg, var(--yellow), transparent); }
.section-heading h2, .support-card h2 {
  margin: 0;
  font-family: Poppins, sans-serif; color: var(--white);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1; letter-spacing: -2px; font-weight: 800;
}
.section-heading p { margin: 18px auto 0; color: var(--grey); max-width: 600px; font-size: 15px; }

/* ── RULES SECTION ── */
.rules-section {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,212,0,.015) 50%, transparent 100%);
}

.search-panel { padding: 18px; border-radius: var(--radius); margin-bottom: 32px; }
.search-field {
  min-height: 58px;
  display: flex; align-items: center; gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--border);
  background: rgba(8,8,8,.6);
  border-radius: var(--radius-sm);
  color: #666;
  transition: all .3s var(--ease);
}
.search-field:focus-within {
  border-color: rgba(255,212,0,.5);
  box-shadow: 0 0 0 4px rgba(255,212,0,.06), 0 0 30px rgba(255,212,0,.05);
  color: var(--yellow);
}
.search-field input { width:100%; color:var(--white); background:transparent; border:0; outline:0; font-size: 15px; }
.search-field input::placeholder { color:#555; }
kbd {
  padding: 4px 10px; color: #666;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 7px; font: 11px/1 Inter,sans-serif; white-space: nowrap;
}
.search-status { padding: 12px 4px 0; color: #666; font-size: 12px; font-weight: 500; }

/* Rules Grid */
.rules-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }

.rule-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-radius: var(--radius);
  position: relative;
  transition: all .35s var(--ease);
}
.rule-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(255,212,0,.2), transparent 40%, transparent 60%, rgba(255,212,0,.1));
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.rule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,212,0,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), var(--shadow-glow);
}
.rule-card:hover::before { opacity: 1; }

.rule-card-header { display: flex; align-items: center; gap: 16px; padding: 24px; }
.category-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid rgba(255,212,0,.14);
  border-radius: 16px;
  transition: all .3s var(--ease);
}
.rule-card:hover .category-icon {
  background: rgba(255,212,0,.18);
  box-shadow: 0 0 20px rgba(255,212,0,.1);
}
.category-icon svg { width: 26px; height: 26px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.category-icon i {
  font-size: 26px;
  line-height: 1;
}
.rule-card-title { min-width: 0; flex: 1; }
.rule-card-title h3 { margin: 0; color: var(--white); font-family: Poppins, sans-serif; font-size: 17px; font-weight: 700; }
.rule-card-title p { margin: 4px 0 0; color: #666; font-size: 13px; }
.rule-count { color: #555; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }

.rule-list { border-top: 1px solid var(--border); }
.rule-item + .rule-item { border-top: 1px solid rgba(255,255,255,.04); }
.rule-trigger {
  width: 100%; display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center; gap: 12px;
  padding: 18px 24px;
  text-align: left; border: 0;
  background: transparent; cursor: pointer;
  transition: background .2s;
}
.rule-trigger:hover { background: rgba(255,212,0,.03); }
.rule-number { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .5px; }
.rule-trigger strong { color: #d0d0d0; font-size: 14px; font-weight: 600; }
.rule-trigger .chevron { width: 18px; height: 18px; color: #555; transition: all .3s var(--ease); }
.rule-item.open .chevron { transform: rotate(180deg); color: var(--yellow); }
.rule-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.rule-content > div { overflow: hidden; }
.rule-content p { margin: 0; padding: 0 24px 20px 84px; color: #888; font-size: 13.5px; line-height: 1.7; }
.rule-item.open .rule-content { grid-template-rows: 1fr; }
.rule-card.hidden, .rule-item.hidden { display: none; }

.empty-state { padding: 60px 24px; border-radius: var(--radius); text-align: center; }
.empty-icon { width: 44px; height: 44px; margin: 0 auto 20px; color: var(--yellow); fill:none; stroke:currentColor; stroke-width:1.5; display: inline-flex; align-items: center; justify-content: center; }
i.empty-icon {
  width: auto;
  height: auto;
  font-size: 44px;
  line-height: 1;
}
.empty-state h3 { margin: 0 0 8px; color: var(--white); font-family: Poppins, sans-serif; }
.empty-state p { margin: 0; color: var(--grey); }


/* ── FAQ ── */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.faq-item:hover { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.faq-item.open { border-color: rgba(255,212,0,.15); background: rgba(255,212,0,.02); }
.faq-question {
  width: 100%; min-height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 0 24px;
  color: var(--white); background: transparent;
  border: 0; text-align: left;
  font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all .2s;
}
.faq-question:hover { background: rgba(255,255,255,.02); }
.faq-plus {
  position: relative; width: 24px; height: 24px;
  flex: 0 0 auto; color: var(--yellow);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute;
  left: 5px; top: 11px;
  width: 14px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: .25s var(--ease);
}
.faq-plus::after { transform: rotate(90deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: #888; font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* ── SUPPORT ── */
.support-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 56px;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, rgba(255,212,0,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,212,0,.18);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.support-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,212,0,.12), transparent 60%);
  pointer-events: none;
}
.support-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -80px; top: -100px;
  background: var(--yellow);
  filter: blur(120px); opacity: .12;
  animation: supportGlow 5s ease-in-out infinite alternate;
}
@keyframes supportGlow {
  0% { opacity: .08; transform: scale(.9); }
  100% { opacity: .16; transform: scale(1.1); }
}
.support-card > * { position: relative; z-index: 1; }
.support-card h2 { font-size: clamp(28px, 4vw, 42px); }
.support-card p { max-width: 600px; margin: 14px 0 0; color: #999; font-size: 15px; line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.5));
}
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer .brand-mark { filter: drop-shadow(0 0 6px rgba(255,212,0,.2)); }
.footer-links { display: flex; gap: 24px; color: #777; font-size: 13px; font-weight: 500; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer p { margin: 0; color: #555; font-size: 12px; text-align: right; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 60;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: #111; background: var(--yellow);
  border: 0; border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3), 0 0 20px rgba(255,212,0,.15);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all .35s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 30px rgba(255,212,0,.25); }
.back-to-top:active { transform: translateY(0) scale(.92); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .menu-toggle { display: grid; }
  .nav-links {
    position: fixed; inset: 80px 20px auto;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px;
    background: rgba(12,12,12,.97);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0; visibility: hidden;
    transform: translateY(-16px) scale(.97);
    transition: all .3s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { padding: 14px 16px; border-radius: var(--radius-xs); }
  .nav-links > a:not(.button)::after { display: none; }
  .nav-links .button { margin-top: 8px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .rules-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer p { text-align: center; }
  .hero-logo { width: 110px; height: 110px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 88px 0; }
  .navbar { height: 70px; }
  .nav-links { inset: 70px 14px auto; }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 100px; }
  .hero h1 { letter-spacing: -3px; }
  .hero-subtitle span { display: none; }
  .hero-subtitle { max-width: 300px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-stats { width: 100%; justify-content: center; padding: 18px 10px; }
  .hero-stats div { min-width: 0; flex: 1; padding: 0 10px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 9px; }
  .hero-logo { width: 90px; height: 90px; margin-bottom: 20px; }
  .section-heading { margin-bottom: 36px; }
  .search-panel { padding: 12px; }
  kbd { display: none; }
  .rule-card-header { padding: 20px; }
  .rule-count { display: none; }
  .rule-trigger { grid-template-columns: 40px 1fr 20px; padding: 16px 20px; }
  .rule-content p { padding: 0 20px 18px 72px; }
  .table-tools { flex-direction: column; }
  .search-field.compact, .select-field { width: 100%; }
  .support-card { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .support-card .button { width: 100%; }
  .eyebrow::before, .eyebrow::after { width: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
