:root {
  --ink: #0F172A;
  --ink-2: #1E293B;
  --ink-3: #334155;
  --paper: #FFFFFF;
  --paper-warm: #FBF9F4;
  --paper-warm-2: #F4F0E6;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E5E1D6;
  --accent: #C97B3F;
  --accent-soft: #F4A261;
  --green: #047857;
  --red: #B91C1C;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper-warm);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.center { text-align: center; }
.center-h2 { margin-left: auto; margin-right: auto; }
.center-p { margin-left: auto; margin-right: auto; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(251, 249, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -1px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-3);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--ink-2); transform: translateY(-1px); }

/* === HERO === */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,162,97,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-lede {
  font-size: 19px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 40px;
}
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(15,23,42,0.4);
}
.btn-primary svg {
  transition: transform 0.2s;
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  padding: 16px 24px;
  color: var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.btn-secondary:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 600px;
  perspective: 1500px;
}
.report-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.report-page {
  position: absolute;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(15,23,42,0.06),
    0 30px 60px -30px rgba(15,23,42,0.5),
    0 18px 36px -18px rgba(15,23,42,0.3);
  overflow: hidden;
  background: white;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.report-page img { display: block; width: 100%; }
.report-page-1 {
  width: 65%;
  top: 0; right: 0;
  transform: rotate(4deg) translateZ(40px);
  z-index: 3;
}
.report-page-2 {
  width: 65%;
  top: 60px; right: 80px;
  transform: rotate(-3deg) translateZ(20px);
  z-index: 2;
}
.report-page-3 {
  width: 65%;
  top: 100px; right: 30px;
  transform: rotate(2deg) translateZ(0);
  z-index: 1;
}
.hero-visual:hover .report-page-1 { transform: rotate(2deg) translateZ(60px) translateY(-8px); }
.hero-visual:hover .report-page-2 { transform: rotate(-1deg) translateZ(30px) translateX(-15px); }
.hero-visual:hover .report-page-3 { transform: rotate(4deg) translateZ(10px) translateX(20px); }

.hero-badge {
  position: absolute;
  bottom: 30px; left: -10px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.5);
  transform: rotate(-3deg);
  z-index: 10;
  max-width: 230px;
}
.hero-badge strong {
  color: var(--accent-soft);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

/* === SECTIONS === */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 800px;
}
h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-lede {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.55;
}

/* === PROBLEM === */
.problem {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.problem h2 { color: var(--paper); }
.problem .section-eyebrow { color: var(--accent-soft); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
  align-items: start;
}
.pain-list {
  list-style: none;
  counter-reset: pain;
}
.pain-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  counter-increment: pain;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.pain-item::before {
  content: counter(pain, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-soft);
  padding-top: 4px;
}
.pain-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--paper);
}
.pain-item p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.55;
}
.stat-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.stat-label {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-it-works { background: var(--paper-warm); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}
.step {
  background: var(--paper);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.2);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--paper-warm-2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* === FEATURES === */
.features { background: var(--ink); color: var(--paper); }
.features h2 { color: var(--paper); }
.features .section-eyebrow { color: var(--accent-soft); }
.features .section-lede { color: var(--muted-2); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 70px;
}
.feature {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.feature:hover { border-color: var(--accent); }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: var(--paper);
}
.feature p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
}
.feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(244,162,97,0.3);
  border-radius: 999px;
}

/* === SHOWCASE === */
.showcase {
  background: var(--paper-warm);
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.report-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.report-gallery img {
  border-radius: 8px;
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.3);
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.report-gallery img:hover { transform: translateY(-4px) scale(1.02); }
.report-gallery img:nth-child(1) { transform: rotate(-1deg); }
.report-gallery img:nth-child(2) { transform: rotate(1deg); }
.report-gallery img:nth-child(3) { transform: rotate(0.5deg); }
.report-gallery img:nth-child(4) { transform: rotate(-0.5deg); }

.showcase-h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
}
.showcase-p {
  font-size: 16px;
  color: var(--ink-3);
  margin-top: 14px;
  line-height: 1.6;
}
.showcase-cta { margin-top: 32px; }

.showcase-list { list-style: none; margin-top: 32px; }
.showcase-list li {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-3);
}
.showcase-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.showcase-list strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }

/* === PRICING === */
.pricing { background: var(--paper); }
.price-card-wrap {
  margin-top: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,162,97,0.2), transparent 70%);
  border-radius: 50%;
}
.price-card-inner { position: relative; z-index: 1; }
.price-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 6px;
}
.price-amount .currency { font-size: 48px; vertical-align: top; margin-right: 4px; }
.price-amount .period { font-size: 22px; color: var(--muted-2); font-weight: 400; letter-spacing: -0.5px; }
.price-sub {
  color: var(--muted-2);
  font-size: 15px;
  margin-bottom: 38px;
}
.price-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 40px;
}
.price-features li {
  font-size: 14px;
  color: var(--paper);
  display: flex;
  align-items: start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--accent-soft);
  font-weight: 700;
  flex-shrink: 0;
}
.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s;
}
.price-cta:hover { transform: translateY(-2px); }
.price-footnote {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

/* === ABOUT === */
.about {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 22px;
}
.about-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 30px;
}
.about-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-sig-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.about-sig-title {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

/* === FAQ === */
.faq { background: var(--paper); }
.faq-list { margin-top: 60px; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.faq-q::after {
  content: '+';
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px 0;
}

/* === CTA FINAL === */
.cta-final {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,162,97,0.15), transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  color: var(--paper);
  margin: 0 auto 24px;
  text-align: center;
}
.cta-final p {
  color: var(--muted-2);
  font-size: 19px;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-final .cta-row { justify-content: center; }
.cta-final .btn-primary { background: var(--paper); color: var(--ink); }
.cta-final .btn-primary:hover { background: var(--paper-warm); }
.cta-final .btn-secondary { background: transparent; color: var(--paper); border-color: var(--ink-3); }
.cta-final .btn-secondary:hover { border-color: var(--paper); }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--muted-2);
  padding: 60px 0 40px;
  border-top: 1px solid var(--ink-3);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo { color: var(--paper); }
.footer-brand p { margin-top: 16px; max-width: 280px; line-height: 1.5; }
footer h4 {
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a:hover { color: var(--paper); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--ink-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid, .problem-grid, .showcase-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { height: 480px; }
  .steps, .feature-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .price-features { grid-template-columns: 1fr; }
  .price-amount { font-size: 64px; }
  .price-amount .currency { font-size: 36px; }
  .nav-links { display: none; }
  section { padding: 70px 0; }
  .hero { padding: 110px 0 70px; }
  .container { padding: 0 24px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
