@import url("./assets/fonts/fonts.css?v=20260911");

:root {
  --bg: #14051f;
  --panel: #241035;
  --text: #ffffff;
  --muted: #d9c8e1;
  --soft: #a992b5;
  --pink: #ff5fb5;
  --acid: #fff24a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 86px);
  background: rgba(14, 3, 22, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 900; }
.brand-orb { width: 20px; height: 20px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #ffd5ee 0 12%, var(--pink) 32%, #7b35ff 75%); }
.nav-link { color: var(--muted); font-size: 13px; font-weight: 850; }
.nav-link:hover { color: var(--acid); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  min-height: min(620px, 82vh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy { display: grid; align-content: center; padding: clamp(44px, 8vw, 110px); }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: 12px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Unbounded, Inter, sans-serif; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(44px, 6vw, 78px); }
h2 { font-size: clamp(27px, 3.4vw, 46px); }
h3 { font-size: 18px; }
.lead { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); }

.hero-image { min-height: 380px; background: linear-gradient(0deg, rgba(20, 5, 31, 0.72), rgba(20, 5, 31, 0.05)), var(--hero-image) center / cover; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 84px 0; }
.summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: -48px; position: relative; z-index: 1; }
.summary article, .content-card, .challenge { padding: 22px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.summary span, .section-label { display: block; margin-bottom: 8px; color: var(--soft); font-size: 12px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.summary p, .content-card p { margin: 0; color: var(--muted); }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.content-card ul { margin: 10px 0 0; padding-left: 20px; color: var(--muted); }
.content-card li + li { margin-top: 6px; }
.content-card.wide { grid-column: 1 / -1; }
.fact { color: var(--acid) !important; font-weight: 750; }

.challenge { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin-top: 44px; background: linear-gradient(115deg, rgba(255, 95, 181, 0.22), rgba(255, 242, 74, 0.08)), var(--panel); }
.challenge p { margin: 12px 0 0; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; color: #160721; background: var(--acid); border-radius: 10px; font-size: 13px; font-weight: 900; }
.button:hover { background: var(--pink); }

.sources { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.sources a { padding: 8px 10px; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 750; }
.sources a:hover { color: #160721; background: var(--pink); }

.footer { display: flex; justify-content: space-between; gap: 16px; padding: 30px max(20px, calc((100vw - 1180px) / 2)); color: var(--soft); border-top: 1px solid var(--line); font-size: 12px; }

a:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }

@media (max-width: 760px) {
  .topbar { min-height: 64px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 54px 20px; }
  .hero-image { min-height: 300px; }
  .wrap { width: min(100% - 32px, 1180px); padding: 54px 0; }
  .summary, .content-grid, .challenge { grid-template-columns: 1fr; }
  .summary { margin-top: -28px; }
  .content-card.wide { grid-column: auto; }
  .button { width: 100%; }
  .footer { flex-direction: column; padding: 24px 20px 82px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
