:root {
  color-scheme: dark;
  --bg: #07101f;
  --panel: #0e1625;
  --panel-soft: #101c2e;
  --line: #1e2d45;
  --text: #d9e4f0;
  --muted: #8ba3bf;
  --gold: #d8b84f;
  --ink: #eef6ff;
  font-family: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(216, 184, 79, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 184, 79, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 82% 0%, rgba(216, 184, 79, 0.14), transparent 28rem),
    var(--bg);
  background-size: 40px 40px, 40px 40px, auto, auto;
  color: var(--text);
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 42px;
}

.nav img {
  width: auto;
  height: 54px;
}

.nav a,
.cta a,
.text-link {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

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

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 7vw, 5.1rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

.compact-title {
  max-width: 980px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.08;
}

.lede {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.metrics,
.grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric,
.panel,
details,
.cta {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(14, 22, 37, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.metric,
.panel,
details {
  padding: 20px;
}

.metric strong,
.panel h2,
details summary {
  color: var(--ink);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
}

.metric span,
.panel p,
.panel li,
details p,
details li {
  color: var(--muted);
  line-height: 1.58;
}

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

.panel h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.panel p,
.panel ul {
  margin: 0;
}

.panel ul {
  padding-left: 18px;
}

.highlight-panel {
  border-color: rgba(216, 184, 79, 0.45);
  background: linear-gradient(135deg, rgba(216, 184, 79, 0.09), rgba(14, 22, 37, 0.92));
}

.highlight-panel .text-link {
  display: inline-flex;
  margin-top: 14px;
}

details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 22px;
}

.cta p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cta a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--gold);
  color: #07101f;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { align-items: flex-start; flex-direction: column; padding-bottom: 28px; }
  .nav img { height: 42px; }
  .metrics,
  .grid { grid-template-columns: 1fr; }
  .cta { align-items: stretch; flex-direction: column; }
  .cta a { justify-content: center; }
}
