:root {
  --bg-top: #081129;
  --bg-bottom: #040812;
  --panel: rgba(14, 23, 52, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(158, 176, 242, 0.16);
  --text-main: #eef3ff;
  --text-soft: #b4c2ea;
  --accent: #ffb84b;
  --accent-strong: #ff962f;
  --mint: #59d2a7;
  --shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: "Avenir Next Condensed", "Trebuchet MS", "Arial Narrow", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(89, 210, 167, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 184, 75, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

a {
  color: #fff3cf;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffffff;
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.site-hero {
  position: relative;
  padding: 0.75rem 0 1.2rem;
}

.site-hero__topbar {
  position: absolute;
  top: 0.1rem;
  right: 0;
  margin: 0;
}

.site-hero__button {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease;
}

.site-hero__button:hover {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.site-hero__eyebrow,
.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.88rem;
}

.site-hero__title {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.site-hero__logo {
  display: inline-block;
  color: var(--text-main);
  text-decoration: none;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-hero__copy {
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.content-hero,
.content-card,
.hub-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 23, 52, 0.92), rgba(8, 14, 33, 0.96));
  box-shadow: var(--shadow);
}

.content-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  padding: 1.35rem;
  margin-bottom: 1.15rem;
}

.content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 184, 75, 0.13), transparent 30%),
    radial-gradient(circle at bottom left, rgba(89, 210, 167, 0.1), transparent 30%);
  pointer-events: none;
}

.content-hero > * {
  position: relative;
  z-index: 1;
}

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

h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__lead,
.content-card p,
.content-card li,
.hub-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.62;
}

.layout {
  display: grid;
  gap: 1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.breadcrumbs__sep {
  opacity: 0.55;
}

.breadcrumbs__current {
  color: var(--text-main);
}

.content-card {
  border-radius: 1.55rem;
  padding: 1.2rem;
}

.content-card ul {
  padding-left: 1.2rem;
}

.content-card li + li {
  margin-top: 0.52rem;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 184, 75, 0.18), rgba(255, 150, 47, 0.08));
  border: 1px solid rgba(255, 184, 75, 0.18);
}

.cta-copy {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.45;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  color: #1d1202;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 24px rgba(255, 150, 47, 0.24);
}

.related {
  display: grid;
  gap: 0.75rem;
}

.related a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  background: var(--panel-soft);
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.related small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
}

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

.hub-card {
  border-radius: 1.4rem;
  padding: 1.15rem;
}

.hub-card a {
  font-size: 1.35rem;
  color: var(--text-main);
  text-decoration: none;
}

.footer-note {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 1rem 0 0.35rem;
}

.site-footer__inner {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
  color: rgba(180, 194, 234, 0.76);
  font-size: 0.9rem;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__inner a {
  color: rgba(238, 243, 255, 0.94);
  text-decoration: none;
}

.site-footer__inner a:hover {
  color: #ffffff;
}

.site-footer__sub {
  color: rgba(180, 194, 234, 0.62);
}

@media (max-width: 840px) {
  .page {
    width: min(100% - 1rem, 1120px);
    padding-top: 0.7rem;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
  }

  .breadcrumbs {
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
  }

  .site-hero {
    padding-bottom: 0.8rem;
  }

  .site-hero__topbar {
    top: 0;
    right: 0;
  }

  .site-hero__button {
    justify-content: center;
    min-height: 2.1rem;
    padding-inline: 0.8rem;
  }

  .site-footer {
    padding-top: 0.8rem;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 0.75rem, 1120px);
    padding-bottom: 1rem;
  }
}
