:root {
  --bg: #0D0D1A;
  --bg-2: #12122A;
  --fg: #F0EFF9;
  --fg-muted: #8B8AA8;
  --accent: #A855F7;
  --accent-dim: rgba(168, 85, 247, 0.12);
  --accent-glow: rgba(168, 85, 247, 0.35);
  --border: rgba(240, 239, 249, 0.08);
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(168,85,247,0.07) 0%, transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.court-glow {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.glow-1 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 0;
  right: 0;
}

.glow-2 {
  width: 120px;
  height: 120px;
  background: #6366F1;
  bottom: 40px;
  left: 0;
}

.clip-feed {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clip-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clip-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  min-width: 72px;
}

.clip-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}

.bar-1 { width: 70%; }
.bar-2 { width: 55%; }
.bar-3 { width: 82%; }
.bar-done { width: 65%; background: rgba(34, 197, 94, 0.3); }

/* PROOF */
.proof {
  padding: 120px 8vw;
  background: var(--bg);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-header {
  margin-bottom: 64px;
}

.proof-header h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

.proof-context {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 500px;
}

.proof-context strong {
  color: var(--fg);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.proof-card {
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.proof-old {
  background: var(--bg-2);
}

.proof-new {
  background: var(--accent-dim);
  border-color: rgba(168,85,247,0.3);
}

.proof-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.proof-number {
  font-family: var(--font-head);
  font-size: 96px;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-old .proof-number { color: var(--fg-muted); }
.proof-new .proof-number { color: var(--accent); }

.proof-card-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.proof-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.proof-fill {
  height: 100%;
  width: 6%;
  background: var(--fg-muted);
  border-radius: 2px;
}

.fill-full { width: 100%; background: var(--accent); }

.proof-caption {
  font-size: 16px;
  color: var(--fg-muted);
  font-style: italic;
}

/* PROCESS */
.process {
  padding: 120px 8vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.process-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}

.process-step:last-child { border-right: none; }

.step-number {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 120px 8vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-top {
  margin-bottom: 72px;
}

.features-top h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  padding: 48px 40px;
  background: var(--bg);
}

.feature-card:hover {
  background: var(--bg-2);
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PHILOSOPHY */
.philosophy {
  padding: 120px 8vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-text h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.philosophy-text p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.philosophy-cta {
  font-size: 18px !important;
  color: var(--fg) !important;
  font-weight: 500;
  margin-top: 32px !important;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.philosophy-visual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-block {
  padding: 40px 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
}

.stat-block:first-child { border-radius: 16px 16px 0 0; }
.stat-block:last-child { border-radius: 0 0 16px 16px; }
.stat-block:only-child { border-radius: 16px; }

.stat-value {
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* FOOTER */
.footer {
  padding: 64px 8vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 300px;
  text-align: right;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .proof-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-note { text-align: left; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero { padding: 60px 6vw; }
  .proof, .process, .features, .philosophy { padding: 80px 6vw; }
}