:root {
  --color-dark: #231b3b;
  --color-purple: #483778;
  --color-light-purple: #6f658c;
  --color-grey-purple: #c7c1d9;
  --color-pink: #ff7fe8;
  --color-yellow: #deff00;
  --color-cyan: #72ffff;
  --color-blue-purple: #8052fe;
  --color-red: #e8443a;
  --color-amber: #e8922a;
  --color-green: #22c55e;
  --tint-red-bg: rgba(232, 68, 58, 0.04);
  --tint-red-border: rgba(232, 68, 58, 0.18);
  --tint-amber-bg: rgba(232, 146, 42, 0.05);
  --tint-amber-border: rgba(232, 146, 42, 0.2);
  --tint-green-bg: rgba(34, 197, 94, 0.04);
  --tint-green-border: rgba(34, 197, 94, 0.18);
  --font: "Poppins", sans-serif;
  --tight: -0.027em;
  --report-max-width: 1120px;
  --card-radius: 16px;
  --card-padding: 30px 32px;
  --page-bg: #f4f2f9;
}

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

body {
  min-height: 100vh;
  font-family: var(--font);
  line-height: 1.4;
  color: var(--color-dark);
  background: var(--page-bg);
}

.logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--tight);
  color: white;
  text-decoration: none;
}

.logo .ai {
  color: var(--color-pink);
}

.logo .tm {
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  vertical-align: super;
  font-weight: 400;
}

.logo.dark {
  color: var(--color-purple);
}

.logo.dark .ai {
  color: var(--color-pink);
}

.logo.dark .tm {
  color: var(--color-light-purple);
}

.btn-ghost,
.btn-pink,
.btn-cta,
.btn-outline {
  text-decoration: none;
}

.btn-ghost {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.14s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-pink {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-pink);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.14s ease;
  white-space: nowrap;
}

.btn-pink:hover,
.btn-cta:hover {
  background: #ff60e0;
  transform: translateY(-1px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-pink);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.14s ease;
}

.btn-outline {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-light-purple);
  background: white;
  border: 1.5px solid var(--color-grey-purple);
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.14s ease;
}

.btn-outline:hover {
  color: var(--color-purple);
  border-color: var(--color-purple);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 127, 232, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -90px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 82, 254, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-nav-actions {
  display: flex;
  gap: 10px;
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: var(--report-max-width);
  margin: 0 auto;
  padding: 48px 40px 56px;
}

.hero-eyebrow,
.section-eyebrow,
.mini-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-eyebrow {
  margin-bottom: 18px;
  font-size: 10px;
  color: var(--color-pink);
}

.hero-name {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: var(--tight);
  font-weight: 800;
  color: white;
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-value-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-value-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-value-word {
  font-size: 24px;
  line-height: 1;
  letter-spacing: var(--tight);
  font-weight: 800;
}

.hero-value-word.green {
  color: var(--color-green);
}

.hero-value-word.amber {
  color: var(--color-amber);
}

.hero-value-word.muted {
  color: rgba(255, 255, 255, 0.42);
}

.section-eyebrow,
.mini-label {
  margin-bottom: 6px;
  font-size: 10px;
  color: var(--color-light-purple);
}

.section-title {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: var(--tight);
  font-weight: 800;
}

.section-defn {
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-light-purple);
}

.card {
  padding: var(--card-padding);
  border: 1px solid rgba(199, 193, 217, 0.52);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(35, 27, 59, 0.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge.amber {
  color: #9a5300;
  background: rgba(232, 146, 42, 0.14);
}

.badge.green {
  color: #0b7e38;
  background: rgba(34, 197, 94, 0.14);
}

.hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .hero-nav {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .hero-body {
    padding: 32px 20px 42px;
  }

  .section-title {
    font-size: 24px;
  }
}
