/* === CRITIQ THEME === */
:root {
  --bg: #0e0e0f;
  --surface: #161618;
  --surface2: #1e1e21;
  --fg: #f5f0e8;
  --fg-muted: #9a948c;
  --accent: #ff4d2e;
  --accent-dim: rgba(255, 77, 46, 0.12);
  --border: rgba(245, 240, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

/* HERO */
.hero {
  padding: 80px 64px 96px;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.eyebrow-tag {
  color: var(--accent);
  font-weight: 600;
}

.eyebrow-divider { opacity: 0.3; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

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

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 77, 46, 0.25);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* CRITIQUE WINDOW */
.critique-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.cw-header {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.cw-dots {
  display: flex;
  gap: 6px;
}

.cw-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.cw-dots span:first-child { background: #ff5f57; }
.cw-dots span:nth-child(2) { background: #febc2e; }
.cw-dots span:nth-child(3) { background: #28c840; }

.cw-title {
  font-weight: 500;
  color: var(--fg-muted);
}

.cw-body { padding: 20px; }

.cw-meta {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.cw-section { margin-bottom: 4px; }

.cw-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.cw-score-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.cw-score {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
}

.cw-score-label {
  font-size: 16px;
  color: var(--fg-muted);
}

.cw-badge {
  background: rgba(255, 77, 46, 0.15);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}

.cw-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.cw-issue {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--fg-muted);
}

.issue-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.p0 { background: #ff3b3b; }
.p1 { background: #ff8c00; }
.p2 { background: #ffd60a; }
.p3 { background: #34c759; }

.cw-pros {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--fg-muted);
}

.pro-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  flex-shrink: 0;
}

.cw-footer {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: background 0.2s;
}

.step-card:hover { background: var(--surface2); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
}

.step-icon { margin-bottom: 20px; }

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
}

.feature-item {
  margin-bottom: 48px;
}

.feature-item:last-child { margin-bottom: 0; }

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

.feature-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.checks-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.checks-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.check-item:last-child { border-bottom: none; }

.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}

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

.manifesto-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--fg);
}

.manifesto-attribution {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 32px;
}

/* CLOSING */
.closing {
  padding: 96px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

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

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .how-it-works, .features, .manifesto, .closing { padding: 64px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 8px; padding: 32px 24px; }
  .cw-score { font-size: 36px; }
}