/* ===========================
   ClearCut Local — Theme
   =========================== */

:root {
  --bg: #0F1E14;
  --bg-card: #152318;
  --bg-card-hover: #1C2D1E;
  --fg: #E8F0E6;
  --fg-muted: #8FA98A;
  --accent: #E8A838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --border: rgba(232, 168, 56, 0.15);
  --font: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
.nav { padding: 20px 0; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; color: var(--fg); }
.nav-cta { background: var(--accent); color: var(--bg); font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 6px; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.85; }
.nav-link { color: var(--fg-muted); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--fg); }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section-label { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-heading { font-size: clamp(32px, 5vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: var(--fg); margin-bottom: 12px; }
.section-sub { color: var(--fg-muted); font-size: 16px; margin-bottom: 48px; }

/* Hero */
.hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.hero-badge { display: inline-block; background: var(--accent-dim); color: var(--accent); font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; margin-bottom: 28px; }
.hero-headline { font-size: clamp(44px, 7vw, 80px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; color: var(--fg); margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 48px; max-width: 480px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; max-width: 700px; }
.stat { padding: 24px 32px; display: flex; flex-direction: column; gap: 4px; }
.stat-divider { width: 1px; background: var(--border); }
.stat-val { font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--fg); }
.stat-label { font-size: 12px; color: var(--fg-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.5px; }

/* Paths */
.paths { padding: 80px 0; border-bottom: 1px solid var(--border); }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.path-card { background: var(--bg-card); padding: 36px 32px; transition: background 0.2s; }
.path-card:hover { background: var(--bg-card-hover); }
.path-icon { margin-bottom: 20px; }
.path-title { font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.path-speed { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.path-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.path-facts li { font-size: 14px; color: var(--fg-muted); padding-left: 16px; position: relative; }
.path-facts li::before { content: '\2014'; position: absolute; left: 0; color: var(--accent); font-family: var(--mono); font-size: 12px; }

/* Math */
.math { padding: 80px 0; border-bottom: 1px solid var(--border); }
.math-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.math-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.math-label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 20px; }
.math-numbers { display: flex; flex-direction: column; gap: 10px; }
.math-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.math-key { font-size: 13px; color: var(--fg-muted); }
.math-val { font-family: var(--mono); font-size: 14px; color: var(--fg); }
.math-neg { color: #E87070; }
.math-pos { color: #6EC88A; }
.math-total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.math-total .math-key { font-weight: 700; color: var(--fg); }
.math-total .math-val { font-size: 18px; font-weight: 500; }
.math-note { margin-top: 32px; font-size: 14px; color: var(--fg-muted); font-style: italic; border-left: 3px solid var(--accent); padding-left: 16px; }

/* Launch */
.launch { padding: 80px 0; border-bottom: 1px solid var(--border); }
.weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.week { background: var(--bg-card); padding: 32px 28px; }
.week-num { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.week-title { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 16px; }
.week-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.week-list li { font-size: 13px; color: var(--fg-muted); padding-left: 14px; position: relative; line-height: 1.4; }
.week-list li::before { content: '\00B7'; position: absolute; left: 0; color: var(--accent); }

/* Why */
.why { padding: 80px 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.why-heading { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; margin-bottom: 48px; max-width: 600px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.why-stat { font-family: var(--mono); font-size: 40px; font-weight: 500; color: var(--accent); margin-bottom: 8px; }
.why-text { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }

/* Closing */
.closing { padding: 100px 0; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 680px; }
.closing-heading { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 40px; }
.closing-statement { font-family: var(--mono); font-size: 15px; color: var(--accent); border-left: 3px solid var(--accent); padding-left: 20px; }

/* Footer */
.footer { padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-name { font-size: 16px; font-weight: 900; color: var(--fg); margin-bottom: 4px; }
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-link { color: var(--fg-muted); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; }
  .weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: 40px; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .stat { padding: 16px 20px; }
  .stat-val { font-size: 16px; }
  .weeks-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(232,168,56,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 100% 100%, rgba(110,200,138,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
section, nav, footer { position: relative; z-index: 1; }
