:root {
  --bg: #0c0c0e;
  --bg-surface: #141417;
  --bg-card: #1a1a1f;
  --fg: #f0ede6;
  --fg-muted: #8a8794;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --green: #3ecf8e;
  --red: #e85c4a;
  --amber: #e8a838;
  --blue: #4a9eff;
  --border: rgba(255,255,255,0.07);
}

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

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

/* Navbar */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-validation {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.val-badge {
  font-size: 11px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.card-big {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.card-unit {
  font-size: 40px;
  color: var(--accent);
}
.card-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.card-bench {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.card-bar {
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.bar-articos {
  height: 20px;
  border-radius: 2px;
  background: var(--accent);
  width: 86%;
}
.bar-raw {
  height: 4px;
  border-radius: 2px;
  background: var(--fg-muted);
  width: 14%;
  opacity: 0.4;
}
.card-mult {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* Stats */
.stats {
  padding: 48px;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-unit {
  font-size: 24px;
  color: var(--accent);
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 48px;
}

/* How it works */
.howitworks {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-header {
  margin-bottom: 56px;
}
.overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.hiw-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.hiw-step {
  flex: 1;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.hiw-arrow {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hiw-arrow::after {
  content: '→';
  font-size: 20px;
  color: var(--fg-muted);
}

/* Output */
.output {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.output-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.output-header {
  margin-bottom: 48px;
}
.output-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-top: 8px;
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.output-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.oc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}
.output-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}
.output-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.oc-visual {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.pv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pv-label { font-size: 10px; color: rgba(255,255,255,0.6); }
.pv-val { font-size: 16px; font-weight: 600; }
.pv-agree { background: var(--green); color: #0c0c0e; }
.pv-neutral { background: #3a3a45; }
.pv-disagree { background: var(--red); color: #0c0c0e; }
.pv-outlier { background: #2a2a35; }
.oc-insights { display: flex; flex-direction: column; gap: 12px; }
.insight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.ins-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ins-status.green { background: var(--green); }
.ins-status.red { background: var(--red); }
.ins-status.amber { background: var(--amber); }
.ins-status.blue { background: var(--blue); }

/* Proof */
.proof {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.logo-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  text-align: center;
}
.logos-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
  opacity: 0.6;
}
.proof-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 16px;
  font-style: italic;
}
.quote cite {
  font-size: 11px;
  color: var(--accent);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why */
.why {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-header {
  margin-bottom: 48px;
}
.why-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-top: 8px;
}
.why-table {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.wt-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.wt-row:last-child { border-bottom: none; }
.wt-row.wt-header .wt-col {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  padding: 16px 20px;
  font-weight: 500;
}
.wt-col {
  padding: 18px 20px;
  font-size: 13px;
  color: var(--fg-muted);
  border-right: 1px solid var(--border);
}
.wt-col:last-child { border-right: none; }
.wt-label {
  font-weight: 500;
  color: var(--fg);
}
.wt-articos {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}

/* Closing */
.closing {
  padding: 100px 48px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cl-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 600px;
}
.cl-headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 320px;
}
.footer-link {
  font-size: 14px;
  color: var(--accent);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 48px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .card-big { font-size: 60px; }
  .stats { padding: 32px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .howitworks { padding: 48px 24px; }
  .hiw-steps { flex-direction: column; gap: 16px; }
  .hiw-arrow { display: none; }
  .output { padding: 48px 24px; }
  .output-grid { grid-template-columns: 1fr; }
  .proof { padding: 48px 24px; }
  .proof-quotes { grid-template-columns: 1fr; }
  .why { padding: 48px 24px; }
  .wt-row { grid-template-columns: 1fr; }
  .wt-col { border-right: none; border-bottom: 1px solid var(--border); }
  .wt-row.wt-header { display: none; }
  .closing { padding: 64px 24px; }
  .cl-headline { font-size: 32px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}