/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --text: #1A1A1A;
  --navy: #0066FF;
  --navy-dark: #0052CC;
  --navy-light: #F0F4FF;
  --gold: #C5A572;
  --gold-light: #FAF6F0;
  --border: #EAEAEA;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --green: #2D6A4F;
  --green-light: #F0FDF4;
  --red: #9B2C2C;
  --red-light: #FEF2F2;
  --orange: #C2410C;
  --orange-light: #FFF7ED;
  --yellow: #D97706;
  --yellow-light: #FFFBEB;
  --shadow: none;
  --shadow-md: none;
  --radius: 4px;
  --blue: #0066FF;
  --blue-light: #F0F4FF;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.view { display: none; }
.view.active { display: block; }
.hidden { display: none !important; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  font-weight: 400;
}

.nav-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-dark);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold); }

/* Hero */
.hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 200px 48px 100px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  color: var(--navy);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 56px;
  line-height: 1.8;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Props */
.value-props {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-dark);
  font-weight: 500;
}

.value-icon {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--navy-light);
  padding: 5px 12px;
  border-radius: var(--radius);
  letter-spacing: -0.3px;
}

/* Input Box */
.input-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px 32px;
  transition: border-color 0.3s ease;
}

.input-box:focus-within {
  border-color: var(--navy);
}

.input-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.input-box textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: transparent;
}

.input-box textarea::placeholder { color: var(--gray-400); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
  width: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-primary:hover { background: var(--navy-dark); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary.btn-sm { padding: 8px 20px; width: auto; margin-top: 0; text-transform: none; letter-spacing: 0.5px; }
.btn-primary.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-primary.btn-cta { width: auto; margin-top: 0; padding: 18px 56px; font-size: 13px; text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }

.example-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.example-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.tag {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 20px;
  font-size: 13px;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.tag:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-light); }

/* Metric Strip */
.metric-strip-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}

.metric-strip {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 48px 48px;
}

.metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.metric-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Section Eyebrow */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}

/* How it works */
.how-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 48px;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 72px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  line-height: 1;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

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

/* Comparison Section */
.comparison-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 48px;
}

.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr;
}

.comparison-row.comparison-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.comparison-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.comparison-cell {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
}

.comparison-header .comparison-cell {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
}

.comparison-cell.comparison-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gray-50);
}

.comparison-cell.comparison-highlight {
  color: var(--navy);
  font-weight: 700;
  background: var(--navy-light);
  border-left: 2px solid var(--navy);
}

.comparison-header .comparison-cell.comparison-highlight {
  color: var(--navy);
  background: var(--navy-light);
  border-left: 2px solid var(--navy);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--navy);
}

.cta-title {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-section .btn-cta {
  background: var(--gold);
  color: var(--navy);
}

.cta-section .btn-cta:hover {
  background: #FFFFFF;
  color: var(--navy);
}

/* Fair Use Notice */
.notice-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.notice-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}

.notice-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.notice-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

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

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  color: var(--navy);
}

.footer-text {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Chat View */
.chat-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.chat-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--navy);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 0;
}

.msg {
  margin-bottom: 16px;
  display: flex;
}

.msg-ai { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }

.msg-bubble {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.6;
}

.msg-ai .msg-bubble {
  background: var(--gray-50);
  border: 1px solid var(--border);
  color: var(--text);
}

.msg-user .msg-bubble {
  background: var(--navy);
  color: #FFFFFF;
}

.chat-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.chat-tag {
  background: var(--navy-light);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 4px 14px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.chat-tag:hover { background: var(--navy); color: #FFFFFF; }

.chat-input-area {
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
}

.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.chat-input-row input:focus { border-color: var(--navy); }

.token-bar {
  margin-top: 8px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.token-bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

.token-bar span {
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 11px;
  color: var(--gray-400);
}

/* Proposal Card */
.proposal-card {
  max-width: 600px;
  margin: 100px auto;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.proposal-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 30px;
  margin-bottom: 32px;
  color: var(--navy);
}

.card-fields { display: flex; flex-direction: column; gap: 20px; }

.card-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.card-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.card-field input:focus { border-color: var(--navy); }

.card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Progress View */
.progress-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

.progress-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--navy);
}

.progress-proposal {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 36px;
}

.pause-warning {
  background: var(--yellow-light);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.pause-warning p {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.phase-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.phase-icon { font-size: 20px; }
.phase-header h3 { font-size: 16px; font-weight: 700; color: var(--navy); }

.progress-bar-wrap {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: width 0.3s;
}

.phase-detail {
  font-size: 14px;
  color: var(--gray-500);
}

.stress-counters {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.counter {
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.counter.pass { color: var(--green); }
.counter.fail { color: var(--red); }

/* Report View */
.report-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

.score-section {
  text-align: center;
  padding: 72px 0 48px;
}

.score-number {
  font-size: 104px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  letter-spacing: -3px;
}

.score-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Radar */
.radar-section {
  text-align: center;
  padding: 48px 0;
}

.radar-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--navy);
}

#radar-canvas {
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.radar-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.radar-label {
  font-size: 13px;
  color: var(--gray-500);
}

.radar-label span {
  font-weight: 700;
  color: var(--navy);
}

/* Paywall */
.paywall-section {
  position: relative;
  margin-top: 40px;
}

.blurred-content {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.blurred-content.unlocked {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.paywall-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  z-index: 10;
}

.paywall-overlay.hidden { display: none; }

.paywall-content {
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px;
}

.paywall-lock { font-size: 48px; margin-bottom: 20px; }
.paywall-content h3 { font-size: 26px; margin-bottom: 8px; color: var(--navy); font-family: 'Instrument Serif', serif; font-weight: 400; }
.paywall-content p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.paywall-price { font-size: 36px; font-weight: 800; color: var(--gold); margin: 24px 0; letter-spacing: -1px; }

/* Risk cards */
.risk-section, .moat-section, .assumptions-section, .summary-section, .pdf-section {
  margin-bottom: 48px;
}

.risk-section h2, .moat-section h2, .assumptions-section h2, .summary-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--navy);
}

.risk-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
}

.risk-card h4 { font-size: 16px; margin-bottom: 4px; color: var(--navy-dark); font-weight: 700; }
.risk-card .risk-rate { font-size: 13px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.risk-card p { font-size: 14px; color: var(--gray-500); margin-top: 8px; line-height: 1.7; }

.moat-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.moat-card h4 { font-size: 16px; margin-bottom: 4px; color: var(--navy-dark); font-weight: 700; }
.moat-card .moat-rate { font-size: 13px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.moat-card p { font-size: 14px; color: var(--gray-500); margin-top: 8px; line-height: 1.7; }

/* Assumptions table */
.assumption-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.assumption-text {
  flex: 1;
  font-size: 14px;
  color: var(--navy-dark);
}

.assumption-dim {
  font-size: 12px;
  color: var(--gray-400);
  width: 60px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.assumption-bar-wrap {
  width: 120px;
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.assumption-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s;
}

.assumption-rate {
  width: 40px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--navy-dark);
}

/* Summary cards */
.summary-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy-dark);
}

.pdf-section { text-align: center; }

/* Trust Strip */
.trust-strip {
  text-align: center;
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* Input Hint */
.input-hint {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

.input-box-header {
  margin-bottom: 4px;
}

/* Hero sub strong */
.hero-sub strong {
  color: var(--navy);
  font-weight: 600;
}

/* 3D Decorative Objects */
@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-anim {
  animation: float-up-down 3s ease-in-out infinite;
}

/* Base deco style */
.deco {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
  mix-blend-mode: multiply;
}

/* Make sections relative for deco positioning */
.hero, .how-section, .comparison-section, .cta-section {
  position: relative;
  overflow: hidden;
}

/* Hero decorations */
.deco-hero-left { top: 140px; left: -10px; width: 72px; height: 72px; }
.deco-hero-right { top: 120px; right: -5px; width: 64px; height: 64px; }
.deco-input { position: absolute; top: -30px; right: -30px; width: 56px; height: 56px; opacity: 0.5; }

/* How it works decorations */
.deco-how-left { top: 40px; left: 0; width: 72px; height: 72px; }
.deco-how-right { top: 60px; right: 0; width: 60px; height: 60px; }

/* Step card small deco */
.step-deco {
  width: 48px;
  height: 48px;
  object-fit: contain;
  float: right;
  margin: -8px -4px 8px 12px;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* Comparison decorations */
.deco-comp-left { top: 30px; left: 0; width: 64px; height: 64px; }
.deco-comp-right { bottom: 40px; right: 0; width: 56px; height: 56px; }

/* CTA decorations */
.deco-cta-left { top: 30px; left: 20px; width: 72px; height: 72px; opacity: 0.4; }
.deco-cta-right { bottom: 30px; right: 20px; width: 60px; height: 60px; opacity: 0.4; }

/* Phase card small illustrations */
.phase-illust {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-left: auto;
  border-radius: 0;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

/* Report page decorations */
.score-illust {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.paywall-illust {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 140px 24px 60px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .value-props { flex-direction: column; gap: 16px; align-items: center; }
  .metric-strip { flex-wrap: wrap; gap: 24px; padding: 32px 24px; }
  .metric-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .comparison-section { padding: 80px 24px; }
  .comparison-row { grid-template-columns: 80px 1fr 1fr 1fr; }
  .comparison-cell { padding: 10px 12px; font-size: 12px; }
  .score-number { font-size: 72px; }
  .chat-container { padding-top: 70px; }
  .how-section { padding: 80px 24px; }
  .cta-section { padding: 80px 24px; }
  .cta-title { font-size: 32px; }
  .nav-inner { padding: 18px 24px; }
  .paywall-content { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .section-title { font-size: 34px; }
  .deco { width: 48px; height: 48px; opacity: 0.4; }
  .deco-input { display: none; }
  .step-deco { width: 36px; height: 36px; }
  .phase-illust { width: 36px; height: 36px; }
  .score-illust { width: 60px; height: 60px; }
}
