:root {
  --bg-0: #050912;
  --bg-1: #0a1220;
  --bg-2: #101c34;
  --text: #f5f7fb;
  --muted: #cbd3e4;
  --line: rgba(255,255,255,.1);
  --brand: #ff6e40;
  --brand-2: #ff9b78;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,110,64,.18), transparent 34%),
    linear-gradient(165deg, var(--bg-0), var(--bg-1) 48%, var(--bg-2));
}
a { color: inherit; }
.page {
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8,14,24,.78);
  backdrop-filter: blur(12px);
  padding: 10px 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
}
.logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.nav {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 900;
}
.btn-primary {
  border-color: rgba(255,110,64,.55);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #160802;
}
.hero,
.article,
.related {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 22px 56px rgba(0,0,0,.28);
}
.hero {
  margin-top: 26px;
  padding: clamp(28px, 6vw, 62px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}
.article {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 42px);
}
.article h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
}
.article p,
.article li {
  color: rgba(245,247,251,.84);
  font-size: 1.02rem;
  line-height: 1.78;
}
.article ul {
  padding-left: 22px;
}
.note {
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  background: rgba(255,110,64,.1);
  padding: 16px 18px;
  color: #fff;
}
.cta {
  margin-top: 28px;
  border: 1px solid rgba(255,110,64,.32);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0%, rgba(255,110,64,.22), transparent 38%), rgba(255,255,255,.05);
  padding: 22px;
}
.cta h2 {
  margin-top: 0;
}
.related {
  margin-top: 22px;
  padding: 22px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.related a {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  padding: 14px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.3;
}
.footer {
  margin-top: 26px;
  color: rgba(245,247,251,.62);
  font-size: .88rem;
}
@media (max-width: 720px) {
  .topbar {
    align-items: stretch;
    border-radius: 22px;
    flex-direction: column;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero,
  .article,
  .related {
    border-radius: 22px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
