/* Design: Editorial meets Web3. Raw confident typography. Warm amber accent. Dark premium feel. */

:root {
  --bg: #0E0E0E;
  --bg-card: #161616;
  --bg-card-hover: #1E1E1E;
  --fg: #F5F5F0;
  --fg-muted: #8A8A8A;
  --accent: #E8A427;
  --accent-dim: rgba(232, 164, 39, 0.12);
  --border: rgba(245, 245, 240, 0.08);
  --border-strong: rgba(245, 245, 240, 0.15);
  --radius: 12px;
  --font-display: 'Bricolage Grotesque', 'Georgia', serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  max-width: 900px;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline .highlight {
  color: var(--accent);
}

.hero-lede {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0E0E0E;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary:hover { background: #f0b532; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover { background: var(--bg-card); }

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 80px;
}

.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  padding: 0 48px;
  flex: 1;
  min-width: 140px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* MANIFESTO / PROBLEM */
.manifesto {
  padding: 100px 80px;
}

.manifesto-inner { max-width: 760px; }

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

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
}

.cycle-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.cycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  min-width: 120px;
}

.cycle-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.cycle-text {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.3;
}

.cycle-arrow {
  color: var(--fg-muted);
  font-size: 18px;
  padding: 0 8px;
}

.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 80px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

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

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 24px;
}

.hiw-intro {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.compare-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.compare-card--accent {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.compare-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.compare-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.compare-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.results-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.result-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.result-headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.result-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROOF / HAYEK */
.proof {
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

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

.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  max-width: 760px;
  margin-bottom: 16px;
  font-style: italic;
}

.proof-cite {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.proof-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

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

.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.test-card {
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s;
}

.test-card:hover { border-color: var(--border-strong); }

.test-card--wide { grid-column: 1 / -1; }

.test-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.test-author {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* CLOSING CTA */
.closing {
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 700px; }

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 20px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero, .stats, .manifesto, .howitworks, .proof, .testimonials, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }

  .stats { padding-top: 32px; padding-bottom: 32px; }

  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }

  .cycle-diagram { flex-direction: column; align-items: flex-start; }
  .cycle-arrow { display: none; }

  .comparison { grid-template-columns: 1fr; }
  .results-row { grid-template-columns: 1fr; }

  .test-grid { grid-template-columns: 1fr; }
  .test-card--wide { grid-column: auto; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}