:root {
  --bg: #070b0d;
  --panel: #0d1417;
  --panel-soft: #121b1f;
  --ink: #f4f7f3;
  --muted: #a8b8b6;
  --line: rgba(141, 232, 236, 0.24);
  --cyan: #53e3ee;
  --cyan-soft: rgba(83, 227, 238, 0.16);
  --amber: #f2ad45;
  --amber-deep: #d9821f;
  --paper: #ece2cf;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(83, 227, 238, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 88px),
    var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 20;
  padding: 10px 14px;
  color: #061012;
  background: var(--cyan);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 13, 0.82);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #130e05;
  background: linear-gradient(180deg, #ffd46f, var(--amber));
  box-shadow: 0 14px 36px rgba(242, 173, 69, 0.22);
  font-weight: 800;
  text-decoration: none;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.cta--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.hero {
  min-height: 100svh;
  padding: 116px 0 44px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 11, 13, 0.18), rgba(7, 11, 13, 0.92)),
    linear-gradient(115deg, rgba(242, 173, 69, 0.18), transparent 31%),
    linear-gradient(295deg, rgba(83, 227, 238, 0.18), transparent 42%);
}

.hero__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.hero__kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(72px, 12vw, 156px);
  line-height: 0.84;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(72px, 10.6vw, 138px);
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  color: #d8e5df;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero__media {
  position: relative;
  min-height: 520px;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  transform: rotate(-4deg);
}

.hero__image {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.section {
  padding: clamp(70px, 10vw, 124px) 0;
}

.section--quiet {
  background: #0a0f12;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

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

.card,
.link-card,
.faq details,
.note-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.card {
  min-height: 230px;
  padding: 24px;
}

.card__icon,
.mini-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  background: var(--cyan-soft);
}

.report-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.report-preview {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(242, 173, 69, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 173, 69, 0.16), transparent 32%),
    #101417;
}

.report-preview img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.link-card {
  min-height: 190px;
  padding: 24px;
  text-decoration: none;
}

.link-card:hover {
  border-color: rgba(83, 227, 238, 0.42);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0 18px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 750;
}

.faq p {
  padding-bottom: 18px;
}

.final-cta {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(83, 227, 238, 0.1), transparent 35%, rgba(242, 173, 69, 0.1)),
    #080d10;
}

.final-cta .lead {
  margin-inline: auto;
}

.footer {
  padding: 34px 0;
  color: #8ea09e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070b0d;
}

.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer a {
  color: #c4d3cf;
  text-decoration: none;
}

.page-hero {
  padding: 150px 0 76px;
  background:
    linear-gradient(180deg, rgba(83, 227, 238, 0.12), transparent 45%),
    #080d10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article {
  padding: 70px 0 110px;
}

.article-layout {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.article h2 {
  margin-top: 54px;
  font-size: clamp(30px, 4vw, 46px);
}

.article ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article li {
  padding-left: 22px;
  color: #c7d4d0;
  line-height: 1.6;
  position: relative;
}

.article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
}

.note-box {
  padding: 24px;
  margin: 32px 0;
}

.meta-preview {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 860px) {
  .topbar__inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero__inner,
  .section-head,
  .report-band {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(56px, 18vw, 86px);
  }

  .hero__media {
    min-height: auto;
  }

  .hero__image {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
  }

  .grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .link-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .topbar__inner,
  .wrap,
  .footer__inner,
  .article-layout {
    width: min(100% - 24px, var(--max));
  }

  .brand span {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cta {
    width: 100%;
  }

  .topbar .cta {
    width: auto;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.95;
  }
}
