@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #f6f7fb;
  --bg-2: #ffffff;
  --ink: #0f172a;
  --ink-2: #1f2937;
  --muted: #5b6578;
  --muted-2: #7d8798;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --blue: #5b6cff;
  --blue-2: #7c4dff;
  --green: #15b987;
  --mint: #c5f5e6;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.06);
  --radius-2xl: 32px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(91, 108, 255, 0.10), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(21, 185, 135, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100vw - 32px)); margin: 0 auto; }
.small { font-size: 13px; line-height: 1.6; color: var(--muted-2); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.badge, .pill, .tag, .mini-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}
.badge {
  color: var(--blue);
  background: rgba(91, 108, 255, 0.06);
  border-color: rgba(91, 108, 255, 0.10);
}
.pill {
  color: var(--ink-2);
  background: rgba(255,255,255,0.92);
  border-color: rgba(15,23,42,0.08);
}
.tag {
  color: #0d6b4f;
  background: var(--mint);
}
.mini-note {
  color: var(--muted);
  background: rgba(15, 23, 42, 0.04);
}
.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button,
.button-secondary { padding: 15px 20px; }
.button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  box-shadow: 0 16px 40px rgba(91, 108, 255, 0.22);
}
.button-secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.button-link {
  padding: 0;
  color: var(--blue);
}
.button:hover,
.button-secondary:hover,
.button-link:hover { transform: translateY(-1px); }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 251, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  box-shadow: 0 14px 28px rgba(91, 108, 255, 0.18);
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-copy .small { margin-top: 2px; }
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.hero {
  padding: 52px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 32px;
  align-items: center;
}
.hero-copy h1,
.section-heading,
.report-title {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.94;
}
.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(44px, 5.8vw, 72px);
  max-width: 11ch;
}
.hero-copy .section-lead {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.proof-card,
.surface,
.kpi-card,
.case-card,
.table-wrap-card,
.cta-card,
.report-shell,
.story-card,
.logic-card,
.quote-card,
.preview-shell,
.signal-strip {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.proof-card,
.surface,
.kpi-card,
.case-card,
.table-wrap-card,
.cta-card,
.story-card,
.logic-card,
.quote-card,
.signal-strip { padding: 20px; }
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-gradient {
  position: absolute;
  inset: 28px 0 60px 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(21, 185, 135, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(91, 108, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(91, 108, 255, 0.14), rgba(124, 77, 255, 0.08) 45%, rgba(21, 185, 135, 0.10));
  filter: blur(0.2px);
}
.preview-shell {
  position: absolute;
  inset: 20px 0 0 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.preview-dots {
  display: flex;
  gap: 8px;
}
.preview-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.15);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
}
.preview-main {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.preview-aside {
  padding: 22px;
  background: linear-gradient(180deg, #f8faff 0%, #f2f6fb 100%);
}
.preview-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.kpi-card strong,
.preview-metric strong,
.story-kpi strong,
.big-number {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.preview-metric,
.story-kpi {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.preview-flow {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.flow-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.flow-row:last-child { border-bottom: none; }
.flow-row .small { margin: 0; }
.section {
  padding: 30px 0;
}
.section-heading {
  font-size: clamp(34px, 4vw, 56px);
}
.section-lead {
  margin: 14px 0 0;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.grid-3,
.grid-2,
.kpi-grid,
.logic-grid,
.story-grid {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.logic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.surface h3,
.logic-card h3,
.case-card h3,
.story-card h3,
.cta-card h3,
.quote-card h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.body-copy { color: var(--muted); line-height: 1.7; }
.kpi-card { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.kpi-label { margin-top: 8px; font-weight: 700; }
.table-wrap { overflow-x: auto; }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th,
.table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: top;
}
.table th {
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.table tbody tr:hover { background: rgba(91, 108, 255, 0.02); }
.risk {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.risk.high { color: #a53b59; background: rgba(255, 121, 156, 0.12); }
.risk.medium { color: #8a5b00; background: rgba(255, 200, 87, 0.18); }
.quote-card {
  background: linear-gradient(135deg, rgba(91, 108, 255, 0.08), rgba(21, 185, 135, 0.07));
}
.story-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.story-kpi { min-width: 190px; }
.timeline {
  display: grid;
  gap: 12px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-date { font-weight: 700; color: var(--ink-2); }
.timeline-copy { color: var(--muted); line-height: 1.7; }
.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(91, 108, 255, 0.08), rgba(21, 185, 135, 0.06), #ffffff);
}
.footer {
  padding: 0 0 42px;
}
.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.report-hero {
  padding: 46px 0 18px;
}
.report-shell {
  padding: 28px;
}
.report-title {
  font-size: clamp(36px, 4.8vw, 64px);
}
.report-sub {
  margin-top: 14px;
  max-width: 64ch;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.signal-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1080px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .kpi-grid,
  .logic-grid,
  .story-grid,
  .hero-proof,
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-gradient,
  .preview-shell {
    position: relative;
    inset: auto;
  }
  .preview-main {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 760px) {
  .nav-inner,
  .section-top,
  .cta-card,
  .footer-card,
  .story-head,
  .report-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  .timeline-row,
  .flow-row { grid-template-columns: 1fr; }
}
