/* ===== RIZEUP — shared base styles ===== */
:root {
  --primary: #dbeafe;
  --primary-2: #e8f0fe;
  --accent: #2563eb;
  --accent-2: #3b82f6;
  --navy: #1e3a8a;
  --navy-2: #1e40af;
  --dark: #0f172a;
  --black: #0a0f1e;
  --ink: #0b1430;
  --muted: #64748b;
  --line: rgba(15,23,42,0.08);
  --line-strong: rgba(15,23,42,0.14);

  --tools: #3b82f6;
  --kennis: #f59e0b;
  --coaching: #10b981;
  --coach-green: #1D9E75;
  --player-cyan: #00ffc8;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px -8px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.05);
  --shadow-lg: 0 30px 60px -20px rgba(15,23,42,0.25), 0 10px 24px -12px rgba(15,23,42,0.18);
  --shadow-xl: 0 50px 100px -30px rgba(15,23,42,0.45), 0 20px 40px -20px rgba(15,23,42,0.25);

  --max: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ------- NAV ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(219, 234, 254, 0.72);
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--navy));
  display: grid; place-items: center;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.6);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 60%);
}
.logo-mark span { position: relative; z-index: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--dark);
  opacity: 0.78;
  border-radius: 8px;
  transition: all .2s ease;
}
.nav-links a:hover { opacity: 1; background: rgba(30, 58, 138, 0.06); }
.nav-links a.active { opacity: 1; color: var(--accent); }
.nav-links .btn { margin-left: 8px; }

/* ------- BUTTONS ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 24px -10px rgba(37,99,235,0.6), 0 2px 4px rgba(37,99,235,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 18px 36px -14px rgba(37,99,235,0.7), 0 3px 6px rgba(37,99,235,0.3); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--dark);
  border-color: rgba(30,58,138,0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.9); border-color: rgba(30,58,138,0.3); transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: white;
  box-shadow: 0 10px 24px -10px rgba(15,23,42,0.5);
}
.btn-dark:hover { background: #1c2742; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.22);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-disabled {
  background: rgba(15,23,42,0.06);
  color: rgba(15,23,42,0.5);
  border-color: rgba(15,23,42,0.08);
  cursor: not-allowed;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover:not(.btn-disabled) .arrow { transform: translateX(3px); }

/* ------- COMMON HERO ------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 96px) 0 clamp(60px, 10vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(37, 99, 235, 0.10), transparent 60%),
    var(--primary);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
#particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }

/* Compact hero used on inner pages */
.hero-compact {
  text-align: center;
  padding: clamp(64px, 8vw, 110px) 0 clamp(48px, 6vw, 76px);
}
.hero-compact .hero-title {
  margin: 22px auto 18px;
  max-width: 880px;
}
.hero-compact .hero-sub {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(30,58,138,0.15);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
  color: var(--dark);
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, #60a5fa 50%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(15,23,42,0.72);
  max-width: 560px;
  text-wrap: pretty;
}

/* ------- SECTION HEADERS ------- */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}
.section-alt {
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(59,130,246,0.25), transparent 60%),
    radial-gradient(800px 400px at 10% 110%, rgba(16,185,129,0.10), transparent 60%),
    var(--navy);
  color: white;
}
.section-alt::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  pointer-events: none;
}
.section-white { background: #fbfcfe; }
.section-inner { position: relative; z-index: 1; }

.section-head {
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}
.section-head.left { text-align: left; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(15,23,42,0.55);
  margin-bottom: 18px;
}
.section-alt .section-eyebrow { color: rgba(255,255,255,0.6); }
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; width: 24px; height: 1px; background: rgba(15,23,42,0.2);
}
.section-alt .section-eyebrow::before,
.section-alt .section-eyebrow::after { background: rgba(255,255,255,0.2); }
.section-head.left .section-eyebrow::after { display: none; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--dark);
  text-wrap: balance;
}
.section-alt .section-title { color: white; }
.section-sub {
  font-size: 17px;
  color: rgba(15,23,42,0.65);
  max-width: 540px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-alt .section-sub { color: rgba(255,255,255,0.65); }
.section-head.left .section-sub { margin: 0; }

/* ------- CTA STRIP ------- */
.cta {
  background: var(--dark);
  color: white;
  padding: clamp(60px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 60%);
  top: -200px; right: -150px;
  filter: blur(40px);
}
.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left { flex: 1 1 auto; min-width: 280px; }
.cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-eyebrow::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.3); }
.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------- FOOTER ------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  transition: color .2s ease;
}
.footer-links a:hover { color: white; }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
}
.footer .logo { color: white; }

/* ------- REVEAL ------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------- FORM CONTROLS ------- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(15,23,42,0.55);
}
.input, .textarea, .select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: white;
  border: 1px solid rgba(30,58,138,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.textarea { resize: vertical; min-height: 120px; }

/* ------- BADGES ------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.badge-soft {
  background: rgba(15,23,42,0.04);
  color: rgba(15,23,42,0.55);
  border-color: rgba(15,23,42,0.08);
}

/* ------- MOBILE ------- */
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}
