:root {
  --bg: #0c0c12;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --fg: #f0ede8;
  --fg-2: #9e9a95;
  --fg-3: #5a5752;
  --teal: #00d4aa;
  --teal-dim: rgba(0, 212, 170, 0.12);
  --teal-glow: rgba(0, 212, 170, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-2);
  letter-spacing: 0.03em;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Report stack */
.report-stack {
  position: relative;
  height: 340px;
  transform: translateY(20px);
}

.report-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  width: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.report-card-back {
  top: 0; left: 8px;
  width: 88%;
  opacity: 0.4;
  transform: rotate(-1.5deg) scale(0.92);
  z-index: 1;
}
.report-card-mid {
  top: 18px; left: 4px;
  width: 92%;
  opacity: 0.65;
  transform: rotate(-0.5deg) scale(0.96);
  z-index: 2;
}
.report-card-front {
  top: 36px; left: 0;
  width: 96%;
  z-index: 3;
  background: var(--surface-2);
  border-color: var(--teal-dim);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fg-3);
  flex-shrink: 0;
}
.card-icon-teal {
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal-glow);
}
.card-label {
  font-size: 0.72rem;
  color: var(--fg-2);
  font-weight: 500;
}
.card-badge {
  font-size: 0.65rem;
  color: var(--fg-3);
  background: var(--surface);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.card-badge-teal {
  color: var(--teal);
  background: var(--teal-dim);
  border-color: rgba(0,212,170,0.2);
}

.card-body { padding-top: 0.2rem; }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 0.8rem;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.card-stats {
  display: flex;
  gap: 1.2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.stat-l { font-size: 0.65rem; color: var(--fg-3); }

.card-table { display: flex; flex-direction: column; gap: 0.35rem; }
.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
}
.tag {
  font-size: 0.6rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-weight: 500;
}
.tag.green { background: rgba(0,212,170,0.15); color: var(--teal); }
.tag.yellow { background: rgba(255,200,80,0.12); color: #ffc850; }
.tag.gray { background: rgba(255,255,255,0.06); color: var(--fg-3); }

.card-list { display: flex; flex-direction: column; gap: 0.35rem; }
.list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--fg-2);
}
.list-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Hero proof */
.hero-proof {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.proof-stat { display: flex; flex-direction: column; }
.proof-n {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--fg);
  line-height: 1;
}
.proof-l { font-size: 0.7rem; color: var(--fg-3); margin-top: 0.2rem; }
.proof-divider {
  width: 1px; height: 28px;
  background: var(--border-2);
}

/* ── PROOF STRIP ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
  text-align: center;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.proof-co {
  font-size: 0.8rem;
  color: var(--fg-2);
  font-weight: 500;
  opacity: 0.7;
}

/* ── HOW ── */
.how {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: calc(33.33% + 0.5rem);
  right: calc(33.33% + 0.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border-2), var(--teal-dim), var(--border-2));
}
.step-num {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-sub {
  color: var(--fg-2);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s;
}
.tier:hover { border-color: rgba(255,255,255,0.18); }
.tier-featured {
  background: var(--surface-2);
  border-color: var(--teal-dim);
}
.tier-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.tier-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.tier-price {
  margin-bottom: 0.5rem;
}
.price {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.tier-desc {
  font-size: 0.8rem;
  color: var(--fg-2);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.tier-features li {
  font-size: 0.82rem;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tier-features li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.tier-cta {
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  border: 1px solid var(--border-2);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.tier-cta-teal {
  background: var(--teal-dim);
  border-color: rgba(0,212,170,0.3);
  color: var(--teal);
}

/* Subscription */
.subscription {
  margin-top: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}
.sub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.sub-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal-dim);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.sub-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.sub-desc {
  font-size: 0.85rem;
  color: var(--fg-2);
  max-width: 500px;
  line-height: 1.6;
}
.sub-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}
.sub-price {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.sub-price span {
  font-size: 0.9rem;
  color: var(--fg-2);
  font-family: 'DM Sans', sans-serif;
}
.sub-cta {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.manifesto-statement {
  margin-bottom: 2rem;
}
.manifesto-statement p {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.manifesto-statement em { color: var(--fg); font-style: italic; }
.manifesto-divider {
  height: 1px;
  background: var(--border-2);
  margin: 3rem 0;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  overflow: hidden;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.closing-doc {
  position: relative;
  height: 280px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: doc-float 4s ease-in-out infinite;
}
@keyframes doc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.doc-line {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.doc-line-1 { width: 75%; }
.doc-line-2 { width: 90%; }
.doc-line-3 { width: 60%; }
.doc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 0.5rem;
  flex: 1;
}
.dbar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--teal) 0%, rgba(0,212,170,0.4) 100%);
  border-radius: 4px 4px 0 0;
}
.closing-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-2);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.closing-cta {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal);
  letter-spacing: -0.01em;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-3);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-links span {
  font-size: 0.8rem;
  color: var(--fg-3);
  cursor: pointer;
}
.footer-links span:hover { color: var(--fg-2); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--fg-3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-headline { font-size: 2.8rem; }
  .report-stack { height: 260px; }
  .steps, .tiers {
    grid-template-columns: 1fr;
  }
  .steps::before { display: none; }
  .sub-inner { flex-direction: column; align-items: flex-start; }
  .sub-right { align-items: flex-start; }
  .closing-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .proof-stats { flex-wrap: wrap; gap: 1rem; }
}