:root {
  --bg: #0b0d0f;
  --surface: #14171a;
  --surface-2: #202428;
  --line: #242a30;
  --line-soft: #1c2126;
  --lime: #c8ff00;
  --blue: #00b8ff;
  --text: #f7f8f8;
  --muted: #9aa4ad;
  --faint: #69727b;
  --green: #29d17d;
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--lime); color: #0b0d0f; }

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

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 15, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; }
.brand b { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.brand b span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 15px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.08s ease, opacity 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--lime); color: #0b0d0f; }
.btn-primary:hover { opacity: 0.9; }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--faint); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; text-align: center; padding: 88px 0 72px; }
.hero::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.12), transparent 62%);
  pointer-events: none;
}
.hero-logo { width: 190px; height: auto; margin: 0 auto 8px; position: relative; }
.eyebrow {
  font-family: var(--body); font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lime); font-weight: 700; margin-bottom: 18px;
}
h1 {
  font-family: var(--display); font-weight: 900; letter-spacing: -0.03em; line-height: 0.98;
  font-size: clamp(40px, 8vw, 74px); text-wrap: balance;
}
h1 em { font-style: normal; color: var(--lime); }
.lede { color: var(--muted); font-size: clamp(17px, 2.4vw, 21px); max-width: 620px; margin: 22px auto 0; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.note { color: var(--faint); font-size: 14px; margin-top: 16px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; border-top: 1px solid var(--line-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(28px, 4.5vw, 42px); text-wrap: balance;
}
.section-head p { color: var(--muted); margin-top: 12px; font-size: 18px; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  position: relative; overflow: hidden;
}
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); margin-bottom: 16px;
}
.card .ico svg { width: 24px; height: 24px; stroke: var(--lime); fill: none; stroke-width: 2; }
.card.blue .ico svg { stroke: var(--blue); }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* Clubs band */
.band { background: var(--surface); border-radius: 24px; padding: 48px; border: 1px solid var(--line); }
.band-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .band { padding: 32px; } .band-inner { grid-template-columns: 1fr; } }
.band h2 { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; }
.band p { color: var(--muted); margin-top: 14px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .dot { color: var(--lime); font-weight: 900; }

/* CTA */
.cta-box { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 56px 28px; }
.cta-box h2 { font-family: var(--display); font-weight: 900; font-size: clamp(28px, 5vw, 46px); letter-spacing: -0.02em; }
.cta-box p { color: var(--muted); margin: 14px auto 0; max-width: 520px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 720px; margin: 0 auto; }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; text-align: center; }
.contact-card .label { color: var(--faint); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-card a { color: var(--blue); font-weight: 600; font-size: 18px; display: block; margin-top: 6px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line-soft); padding: 44px 0 40px; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.foot .brand b { font-size: 18px; }
.foot-links { display: flex; gap: 22px; font-size: 15px; color: var(--muted); }
.foot-links a:hover { color: var(--text); }
.foot-legal { color: var(--faint); font-size: 13px; margin-top: 22px; text-align: center; }
.foot-legal a { color: var(--faint); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.legal .back { color: var(--muted); font-size: 15px; display: inline-flex; gap: 6px; margin-bottom: 28px; }
.legal .back:hover { color: var(--text); }
.legal h1 { font-size: clamp(32px, 6vw, 48px); margin-bottom: 8px; }
.legal .updated { color: var(--faint); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-family: var(--display); font-weight: 700; font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); }
