:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f6f3ef;
  --muted: rgba(246, 243, 239, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --pink: #ff2e93;
  --orange: #ff5f1f;
  --gold: #ffd700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 95, 31, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 46, 147, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.5rem;
}

.brand span {
  color: var(--pink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.cta-link:hover,
.text-link:hover {
  color: #fff;
}

.cta-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--panel);
  transition: 0.2s ease;
}

.hero {
  padding: 88px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

h1,
h2,
h3 {
  font-family: "Cabinet Grotesk", Inter, Arial, sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.lead,
.copy {
  color: var(--muted);
  max-width: 72ch;
}

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

.button,
.button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
}

.button-alt {
  background: var(--panel);
}

.button:hover,
.button-alt:hover,
.card:hover {
  transform: translateY(-2px);
}

.section {
  padding: 30px 0 64px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 24px;
  transition: 0.2s ease;
}

.card strong,
.stat-value {
  color: #fff;
}

.meta-label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.5);
  margin-bottom: 12px;
}

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

.stat-value {
  font-size: 1.9rem;
  font-weight: 800;
}

.callout {
  border: 1px solid rgba(255, 215, 0, 0.18);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 95, 31, 0.05));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(246, 243, 239, 0.56);
  font-size: 0.9rem;
}

.breadcrumbs span {
  color: rgba(246, 243, 239, 0.38);
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
}

.media-frame {
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.13), rgba(255, 95, 31, 0.08), rgba(255, 255, 255, 0.02));
  position: relative;
}

.media-frame::before {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.93rem;
}

@media (max-width: 960px) {
  .grid-4,
  .stats,
  .grid-3,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .media-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }
}
