/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f6;
  --bg2: #f3f0eb;
  --bg3: #ede9e2;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.13);

  --text: #1a1612;
  --text-muted: #6b6358;
  --text-dim: #b0a89e;

  --green: #00c27a;
  --green-light: rgba(0,194,122,0.1);
  --green-glow: rgba(0,194,122,0.3);

  --yellow: #f5c842;
  --yellow-light: rgba(245,200,66,0.15);

  --coral: #ff6b47;
  --coral-light: rgba(255,107,71,0.1);

  --purple: #7c5cfc;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--green); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 0.92rem; font-weight: 500;
}
.nav-links a { color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--text) !important; color: var(--bg) !important;
  padding: 9px 20px; border-radius: 100px;
  font-weight: 800 !important; font-family: var(--font-display) !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.8 !important; }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: white;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--green-glow); }
.btn-primary.small { padding: 10px 20px; font-size: 0.88rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text-muted);
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--border2); cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.3); transform: translateY(-2px); }
.btn-ghost.small { padding: 10px 20px; font-size: 0.88rem; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 80px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,122,0.12) 0%, transparent 70%);
  top: -150px; right: -150px; border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.18) 0%, transparent 70%);
  bottom: -80px; left: -80px; border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--green); border: 2px solid rgba(0,194,122,0.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  background: var(--green-light);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.highlight { color: var(--green); }
.highlight-box {
  background: var(--yellow); padding: 0 8px 2px;
  border-radius: 6px; display: inline-block;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 460px; line-height: 1.75; margin-bottom: 36px;
}
.hero-tagline {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.tag-pill {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  border: 2px solid var(--border2); background: var(--surface); color: var(--text-muted);
}
.tag-pill.green { border-color: rgba(0,194,122,0.4); background: var(--green-light); color: #007a4d; }
.tag-pill.yellow { border-color: rgba(245,200,66,0.5); background: var(--yellow-light); color: #9a7a00; }
.tag-plus { color: var(--text-dim); font-size: 1.1rem; font-weight: 700; }

.hero-ctas { display: flex; gap: 14px; margin-bottom: 52px; flex-wrap: wrap; }

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 28px; width: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.stat { text-align: left; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900; line-height: 1; margin-bottom: 2px;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

/* ─── GAME WINDOW ──────────────────────────────────────────── */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
}
.game-window {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-xl); border: 2px solid rgba(0,0,0,0.15);
  background: #1a1612;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 24px 60px rgba(0,0,0,0.18), 0 0 0 6px rgba(0,0,0,0.04);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  transform: rotate(-1.5deg);
}
@keyframes float { 0%,100% { transform: rotate(-1.5deg) translateY(0); } 50% { transform: rotate(-1.5deg) translateY(-12px); } }

.game-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #28ca41; }
.game-title { margin-left: 8px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.35); }

.game-screen { padding: 20px; background: #1a1612; }

.sim-scene {
  height: 200px; background: linear-gradient(180deg, #0d1f2d 0%, #162d40 100%);
  border-radius: 12px; position: relative; overflow: hidden;
  margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.05);
}
.sim-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55px;
  background: linear-gradient(180deg, transparent, rgba(0,194,122,0.06));
  border-top: 1px solid rgba(0,194,122,0.18);
}
.sim-floor::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(0,194,122,0.07) 1px, transparent 1px);
  background-size: 24px 100%;
}
.sim-robot {
  position: absolute; bottom: 52px; left: 50%;
  animation: robot-move 3s ease-in-out infinite;
}
@keyframes robot-move { 0%,100% { transform: translateX(calc(-50% - 24px)); } 50% { transform: translateX(calc(-50% + 24px)); } }
.robot-body { position: relative; width: 32px; }
.robot-head {
  width: 22px; height: 18px; background: var(--green);
  border-radius: 5px 5px 2px 2px; margin: 0 auto; position: relative;
  box-shadow: 0 0 14px var(--green-glow);
}
.robot-head::before,.robot-head::after {
  content: ''; position: absolute;
  width: 5px; height: 5px; background: #0d1f2d; border-radius: 50%; top: 5px;
}
.robot-head::before { left: 4px; } .robot-head::after { right: 4px; }
.robot-torso { width: 28px; height: 22px; background: #1e3a2e; border: 1.5px solid var(--green); border-radius: 3px; margin: 2px auto 0; }
.robot-arm { position: absolute; width: 6px; height: 15px; background: #1e3a2e; border: 1.5px solid rgba(0,194,122,0.5); border-radius: 3px; top: 18px; }
.robot-arm.left { left: -5px; animation: arm-l 3s ease-in-out infinite; }
.robot-arm.right { right: -5px; animation: arm-r 3s ease-in-out infinite; }
@keyframes arm-l { 0%,100% { transform:rotate(-10deg); } 50% { transform:rotate(20deg); } }
@keyframes arm-r { 0%,100% { transform:rotate(10deg); } 50% { transform:rotate(-20deg); } }

.sim-object { position: absolute; bottom: 58px; width: 22px; height: 22px; border-radius: 4px; }
.box1 { left: 22%; background: rgba(255,107,71,.75); border: 1.5px solid #ff6b47; box-shadow: 0 0 10px rgba(255,107,71,.4); }
.box2 { right: 22%; background: rgba(124,92,252,.75); border: 1.5px solid #7c5cfc; box-shadow: 0 0 10px rgba(124,92,252,.4); }
.sim-target {
  position: absolute; bottom: 55px; right: 14%;
  width: 30px; height: 30px; border: 2.5px dashed var(--green); border-radius: 6px;
  animation: target-pulse 1.5s ease-in-out infinite;
}
@keyframes target-pulse { 0%,100% { opacity:1; box-shadow:0 0 10px var(--green-glow); } 50% { opacity:.4; box-shadow:none; } }

.score-pop {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--yellow);
  animation: score-bounce 1s ease-in-out infinite alternate;
  text-shadow: 0 0 20px rgba(245,200,66,.5);
}
@keyframes score-bounce { from { transform:scale(1) rotate(-3deg); } to { transform:scale(1.1) rotate(3deg); } }

.game-hud { display: flex; justify-content: space-between; margin-bottom: 12px; }
.hud-label { display: block; font-family: var(--font-mono); font-size: .62rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.hud-value { font-family: var(--font-mono); font-size: .82rem; color: rgba(255,255,255,.8); }
.hud-value.green { color: var(--green); }
.game-progress-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.game-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 4px; animation: progress 4s ease-in-out infinite;
}
@keyframes progress { 0% { width:40%; } 100% { width:85%; } }

.floating-tag {
  position: absolute; background: white;
  border: 2px solid var(--border2); border-radius: 14px;
  padding: 10px 16px; font-family: var(--font-display);
  font-size: .82rem; font-weight: 700; color: var(--text);
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.tag-top { top: 8%; right: -8%; animation: float-tag 3s ease-in-out infinite .5s both; }
.tag-bottom { bottom: 10%; left: -8%; color: #007a4d; border-color: rgba(0,194,122,.3); background: rgba(0,194,122,.06); animation: float-tag 3s ease-in-out infinite 1s both; }
@keyframes float-tag { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }

/* ─── LABELS ───────────────────────────────────────────────── */
.split-label {
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--green);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.split-label::before { content: ''; width: 20px; height: 3px; background: var(--green); border-radius: 2px; display: inline-block; }

/* ─── FOR YOU ──────────────────────────────────────────────── */
.section-for-you {
  padding: 100px 80px;
  max-width: 1100px; margin: 0 auto;
}
.section-for-you > h2 {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px;
}
.section-for-you > p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 48px; }

.for-you-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.for-card { border-radius: var(--radius-xl); padding: 44px; border: 2px solid var(--border); }
.for-card.players { background: linear-gradient(135deg,#fff9e6,#fffdf5); border-color: rgba(245,200,66,.4); }
.for-card.labs { background: var(--surface); }
.for-card-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.for-card.players .for-card-label { background: var(--yellow-light); color: #9a7a00; border: 1.5px solid rgba(245,200,66,.4); }
.for-card.labs .for-card-label { background: var(--green-light); color: #007a4d; border: 1.5px solid rgba(0,194,122,.3); }
.for-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.3; }
.for-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 28px; line-height: 1.7; }
.for-card-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; }
.perk::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.for-card.players .perk::before { background: var(--yellow); }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.section-how {
  background: var(--text); color: white;
  padding: 100px 80px;
}
.section-how-inner { max-width: 1000px; margin: 0 auto; }
.section-how .split-label { color: var(--green); }
.section-how .split-label::before { background: var(--green); }
.section-how h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 56px; color: white; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.how-step { position: relative; }
.how-step-num { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.3); letter-spacing: .12em; margin-bottom: 14px; }
.how-step-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.how-step h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: white; margin-bottom: 8px; }
.how-step p { color: rgba(255,255,255,.5); font-size: .92rem; line-height: 1.65; }
.how-step-connector { position: absolute; top: 38px; right: -16px; color: rgba(255,255,255,.15); font-size: 1.4rem; z-index: 1; }

/* ─── EARNINGS ─────────────────────────────────────────────── */
.section-earn {
  padding: 100px 80px; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.earn-content h2 { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.15; }
.earn-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }
.earn-visual { background: var(--surface); border: 2px solid var(--border2); border-radius: var(--radius-xl); padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,.06); }
.earn-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.earn-row:last-of-type { border-bottom: none; }
.earn-task { font-weight: 600; font-size: .92rem; }
.earn-task-sub { font-size: .78rem; color: var(--text-muted); }
.earn-amount { font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--green); }
.earn-total { margin-top: 16px; background: var(--green-light); border: 1.5px solid rgba(0,194,122,.3); border-radius: var(--radius); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.earn-total span:first-child { font-weight: 700; font-size: .9rem; }
.earn-total span:last-child { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--green); }

/* ─── VALUES ───────────────────────────────────────────────── */
.section-values { background: var(--yellow); padding: 80px; }
.section-values-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.section-values h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: -.03em; color: var(--text); line-height: 1.2; }
.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.55); border-radius: var(--radius-lg); padding: 20px 24px; }
.value-emoji { font-size: 1.5rem; flex-shrink: 0; }
.value-item h4 { font-family: var(--font-display); font-weight: 800; margin-bottom: 4px; }
.value-item p { font-size: .9rem; color: var(--text-muted); }

/* ─── CTA ──────────────────────────────────────────────────── */
.section-cta { padding: 120px 80px; text-align: center; position: relative; overflow: hidden; }
.section-cta::before { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,194,122,.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.section-cta h2 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 16px; position: relative; }
.section-cta > p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-form input, .cta-form select {
  background: white; border: 2px solid var(--border2); border-radius: 100px;
  color: var(--text); padding: 14px 22px; font-family: var(--font-body);
  font-size: .95rem; outline: none; transition: border-color .2s; min-width: 220px;
}
.cta-form input::placeholder { color: var(--text-dim); }
.cta-form input:focus, .cta-form select:focus { border-color: var(--green); }
.cta-note { color: var(--green) !important; font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 1rem !important; margin-top: 20px !important; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer { border-top: 2px solid var(--border); padding: 48px 80px; background: var(--surface); }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand p { color: var(--text-muted); font-size: .85rem; margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-dim); font-size: .8rem; width: 100%; }

/* ─── INNER PAGES ──────────────────────────────────────────── */
.page-hero { padding: 140px 80px 80px; max-width: 960px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.1; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 540px; }

.steps-section { padding: 0 80px 100px; max-width: 960px; margin: 0 auto; }
.big-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 48px 0; border-bottom: 2px solid var(--border); }
.big-step:last-child { border-bottom: none; }
.step-num-big { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--text-dim); line-height: 1; padding-top: 6px; }
.step-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 12px; }
.step-body p { color: var(--text-muted); max-width: 560px; font-size: 1rem; line-height: 1.75; }
.step-detail-pills { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.detail-pill { font-family: var(--font-display); font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; background: var(--bg2); border: 2px solid var(--border2); color: var(--text-muted); }

.labs-hero { padding: 140px 80px 60px; max-width: 960px; margin: 0 auto; }
.labs-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px; max-width: 700px; line-height: 1.1; }
.labs-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }

.compare-table { margin: 0 auto 80px; max-width: 960px; border: 2px solid var(--border2); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.05); }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th { padding: 18px 24px; text-align: left; font-family: var(--font-display); font-weight: 800; font-size: .9rem; background: var(--bg2); border-bottom: 2px solid var(--border2); }
.compare-table th:first-child { color: var(--text-muted); font-weight: 600; }
.compare-table th.us { color: var(--green); }
.compare-table td { padding: 16px 24px; font-size: .92rem; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 500; }
.compare-table td:first-child { color: var(--text); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.good { color: var(--green); font-weight: 700; }
.compare-table td.bad { color: var(--coral); font-weight: 700; }
.compare-table td.mid { color: #c07a00; font-weight: 700; }
.compare-table tr:hover td { background: var(--bg); }

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fade-up { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-content > * { animation: fade-up 0.5s ease both; }
.hero-badge { animation-delay: .05s; } .hero-headline { animation-delay: .1s; }
.hero-sub { animation-delay: .17s; } .hero-tagline { animation-delay: .23s; }
.hero-ctas { animation-delay: .28s; } .hero-stats { animation-delay: .33s; }
.hero-visual { animation: fade-up .7s ease .15s both; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .stat-extra { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .section-for-you, .section-earn { padding: 60px 24px; }
  .section-how { padding: 60px 24px; }
  .for-you-grid, .how-steps, .section-earn { grid-template-columns: 1fr; gap: 20px; }
  .section-values { padding: 60px 24px; }
  .section-values-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-cta, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 20px; } .nav-links { display: none; } .nav-hamburger { display: block; }
  .page-hero, .steps-section, .labs-hero { padding-left: 24px; padding-right: 24px; }
  .compare-table { margin: 0 24px 60px; }
  .footer-inner { flex-direction: column; }
  .big-step { grid-template-columns: 1fr; }
  .how-step-connector { display: none; }
}
