:root {
  --wc-dark: #060d18;
  --wc-navy: #0a1628;
  --wc-navy-2: #0e1d33;
  --wc-gold: #f5c518;
  --wc-green: #00a651;
  --text: #e8eef7;
  --muted: #97a6bd;
  --border: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--wc-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(6, 13, 24, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand img { height: 32px; width: auto; }
.brand.small img { height: 24px; }
.brand .dot { color: var(--wc-gold); }

.nav { display: flex; gap: 26px; font-size: 0.95rem; }
.nav a { color: var(--muted); transition: color 0.15s; }
.nav a:hover { color: var(--text); }
.nav .lang {
  font-weight: 800;
  color: var(--wc-gold);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.82rem;
}
.nav .lang:hover { color: var(--wc-gold); background: rgba(245, 197, 24, 0.1); }

/* Hero */
.hero {
  position: relative;
  padding: 96px 24px 80px;
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(245, 197, 24, 0.12), transparent 60%),
    radial-gradient(700px 360px at 85% 10%, rgba(0, 166, 81, 0.12), transparent 60%),
    linear-gradient(180deg, var(--wc-navy), var(--wc-dark));
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--wc-gold);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  font-weight: 800;
}

.grad {
  background: linear-gradient(90deg, var(--wc-gold), var(--wc-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 34px;
}
.lead strong { color: var(--text); }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--wc-dark);
  background: linear-gradient(90deg, var(--wc-gold), #ffd84a);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.25);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--card);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wc-gold);
  letter-spacing: -0.02em;
}
.stat .label { font-size: 0.85rem; color: var(--muted); }

/* Sections */
.section { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
.section-alt { background: var(--wc-navy); border-block: 1px solid var(--border); max-width: none; }
.section-alt > * { max-width: 1080px; margin-inline: auto; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin: 0 auto 10px;
  letter-spacing: -0.02em;
}
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 48px; max-width: 560px; }

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: rgba(245, 197, 24, 0.35); transform: translateY(-3px); }
.card .ico { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-n {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--wc-dark);
  background: linear-gradient(135deg, var(--wc-gold), var(--wc-green));
}
.steps h3 { margin: 4px 0 6px; font-size: 1.1rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Chips */
.chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chips li {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Code */
.code {
  background: #04101f;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}
.code .c { color: var(--wc-green); }
.code .cm { color: var(--muted); }
.note { text-align: center; color: var(--muted); max-width: 600px; margin: 24px auto 0; font-size: 0.95rem; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 24px; background: var(--wc-dark); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Kickers */
.kicker {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kicker-green { color: var(--wc-green); }
.kicker-gold { color: var(--wc-gold); }

/* Two ways to play */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.split-card {
  display: block;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.15s, border-color 0.15s;
}
.split-card:hover { transform: translateY(-4px); }
.split-card.fans:hover { border-color: rgba(0, 166, 81, 0.5); }
.split-card.biz:hover { border-color: rgba(245, 197, 24, 0.5); }
.split-ico { font-size: 2.4rem; margin-bottom: 14px; }
.split-card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.split-card p { margin: 0 0 18px; color: var(--muted); }
.split-link { font-weight: 700; }
.split-card.fans .split-link { color: var(--wc-green); }
.split-card.biz .split-link { color: var(--wc-gold); }

/* Mini titles within sections */
.mini-title {
  text-align: center;
  font-size: 1.4rem;
  margin: 56px 0 8px;
  letter-spacing: -0.01em;
}
.mini-title.left { text-align: left; margin-top: 52px; }
.mini-sub { text-align: center; color: var(--muted); margin: 0 0 28px; }

/* Inline code */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: rgba(245, 197, 24, 0.1);
  color: var(--wc-gold);
  padding: 2px 7px;
  border-radius: 6px;
}

/* Scoring matrix */
.scoring {
  margin: 64px auto 0;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.score-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}
.pts {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.pts.gold { background: rgba(245, 197, 24, 0.16); color: var(--wc-gold); }
.pts.green { background: rgba(0, 166, 81, 0.16); color: #86efac; }
.score-rule strong { display: block; font-size: 1rem; }
.score-rule span:last-child { color: var(--muted); font-size: 0.9rem; }

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 26px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
}
.trust-item span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.trust-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Section CTA (centered button at end of a section) */
.section-cta { text-align: center; margin-top: 44px; }

/* Final CTA */
.cta-final { text-align: center; }
.cta-final .cta-row { justify-content: center; }

@media (max-width: 640px) {
  .nav a:not(.lang) { display: none; }
  .stats { gap: 28px; }
  .mini-title.left { text-align: center; }
}
