:root {
  --bg: #08111d;
  --bg-soft: #0d1728;
  --card: rgba(13, 23, 40, 0.92);
  --text: #eef4ff;
  --muted: #9cb0cc;
  --line: rgba(255, 200, 74, 0.24);
  --gold: #ffc84a;
  --gold-soft: #ffe7a6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 200, 74, 0.12), transparent 30%),
    linear-gradient(180deg, #0b1627 0%, #07111c 100%);
  color: var(--text);
}

a {
  color: var(--gold-soft);
}

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

.hero,
.subhero,
.card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero,
.subhero {
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 200, 74, 0.82);
  border-radius: 22px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  line-height: 0.95;
}

h2 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--gold-soft);
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 74, 0.35);
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button.primary {
  background: linear-gradient(180deg, #ffd667 0%, #ffc84a 100%);
  color: #172235;
  border-color: #ffd667;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  border-radius: 24px;
  padding: 24px;
}

.article-card {
  margin-top: 22px;
  padding: 28px;
}

.article p,
.article li,
.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.link-list {
  list-style: none;
  padding-left: 0;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 0 6px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.sep {
  margin: 0 10px;
  opacity: 0.45;
}

.updated {
  margin-top: 28px;
  font-size: 0.95rem;
  color: #7f96b6;
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 18px;
  }

  .hero,
  .subhero,
  .card,
  .article-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hero::before,
  .subhero::before {
    inset: 8px;
    border-radius: 16px;
  }

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