:root {
  --bg: #07071a;
  --panel: #10142f;
  --panel-soft: #171b3c;
  --ink: #ffffff;
  --muted: #c8c9dc;
  --line: rgba(255, 255, 255, .12);
  --pink: #ff2da2;
  --purple: #8f2cff;
  --cyan: #24f0e6;
  --gold: #ffb33f;
  --success: #20d58c;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 44, 255, .24), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 45, 162, .20), transparent 30%),
    linear-gradient(180deg, #08071b 0%, #0a0e22 46%, #060713 100%);
  min-height: 100vh;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 26, .84);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 13px;
  color: #e9e9f7;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  border-color: rgba(255, 45, 162, .55);
  background: rgba(255, 45, 162, .12);
}

.hero {
  padding: 78px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 44, 255, .26), rgba(255, 45, 162, .22));
  border: 1px solid rgba(255, 255, 255, .14);
  color: #f6f0ff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  margin-top: 24px;
  font-size: clamp(38px, 6vw, 70px);
  max-width: 980px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
}

.lead {
  font-size: 22px;
  max-width: 860px;
}

.hero-card, .card, .panel, .callout {
  background: linear-gradient(180deg, rgba(23, 27, 60, .94), rgba(12, 15, 36, .96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.hero-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 162, .42), transparent 70%);
}

.hero-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  font-size: 15px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn.primary {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: white;
}

.btn.ghost {
  background: rgba(255, 255, 255, .06);
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card, .panel {
  padding: 24px;
}

.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 16px 36px rgba(255, 45, 162, .20);
  margin-bottom: 16px;
  font-size: 22px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(36, 240, 230, .12);
  color: #bffefa;
  border: 1px solid rgba(36, 240, 230, .28);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

td {
  color: var(--muted);
  font-size: 16px;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
}

li + li { margin-top: 8px; }

.callout {
  padding: 24px;
  border-color: rgba(36, 240, 230, .28);
  background: linear-gradient(135deg, rgba(36, 240, 230, .10), rgba(255, 45, 162, .08));
}

.footer {
  padding: 36px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mini {
  font-size: 14px;
  color: #aeb1ca;
}

.breadcrumb {
  padding: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.breadcrumb a { color: #fff; }

.page-title {
  padding: 46px 0 28px;
}

.page-title h1 { max-width: 1040px; }

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.step::before {
  content: counter(steps);
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 1000;
  color: white;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 28px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.report-section {
  scroll-margin-top: 110px;
}

.report-section + .report-section {
  margin-top: 28px;
}

.report-section h2 {
  margin-bottom: 14px;
}

.report-kicker {
  color: var(--cyan);
  font-weight: 1000;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.content-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.content-list .card {
  padding: 18px;
}

.content-list h3 {
  font-size: 18px;
}

.whats-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.whats-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.whats-toggle:checked + .whats-float {
  display: none;
}

.whats-message {
  position: relative;
  max-width: 280px;
  padding: 13px 46px 13px 16px;
  border-radius: 6px;
  color: #2d3442;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 20, 47, .10);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  font-size: 15px;
  line-height: 1.35;
}

.whats-message::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, .96) transparent transparent transparent;
}

.whats-close {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #b7b9c6;
  cursor: pointer;
  font-weight: 900;
}

.whats-close:hover {
  color: #111827;
  background: rgba(17, 24, 39, .06);
}

.whats-button {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c66b;
  border: 3px solid rgba(255, 255, 255, .78);
  box-shadow: 0 12px 32px rgba(32, 198, 107, .40), 0 0 0 7px rgba(32, 198, 107, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whats-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 42px rgba(32, 198, 107, .48), 0 0 0 9px rgba(32, 198, 107, .18);
}

.whats-button svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.whats-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ff2e57;
  color: white;
  font-size: 13px;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .metric-row {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
  .nav { justify-content: flex-start; }
  .shell { width: min(100% - 28px, 1180px); }
  .whats-float {
    right: 16px;
    bottom: 18px;
  }
  .whats-message {
    max-width: min(280px, calc(100vw - 36px));
  }
}

@media print {
  body { background: white; color: #111827; }
  .topbar, .footer, .cta-row, .whats-float, .whats-toggle { display: none; }
  .card, .panel, .hero-card, .callout { box-shadow: none; border-color: #d8dbe8; }
  p, li, td { color: #374151; }
  th { color: #111827; }
}
