:root {
  --page-bg: #0f2333;
  --page-bg-soft: #17374d;
  --panel: rgba(12, 28, 40, 0.74);
  --panel-strong: rgba(10, 24, 36, 0.9);
  --line: rgba(166, 208, 217, 0.16);
  --text: #f2efe7;
  --muted: #c8d7da;
  --accent: #6fd6c4;
  --accent-strong: #a3ebcb;
  --warning: #ffd08b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --hero-gradient: radial-gradient(circle at top left, rgba(111, 214, 196, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 208, 139, 0.12), transparent 28%),
    linear-gradient(180deg, #183549 0%, #0f2333 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--hero-gradient);
  background-size: 36px 36px, 36px 36px, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 42px;
}

.site-header,
.site-footer,
.hero-panel,
.section-block,
.policy-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 25, 35, 0.55);
  box-shadow: var(--shadow);
}

.brand-mark {
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.hero-panel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 42, 58, 0.92), rgba(8, 19, 29, 0.9));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.policy-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.9rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-text,
.feature-card p,
.rollout-card p,
.policy-card p,
.policy-intro {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #7ce0ca, #c4f0b4);
  color: #08212d;
  border-color: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-status-card,
.feature-card,
.rollout-card,
.policy-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 24px;
}

.hero-status-card {
  padding: 22px;
  align-self: stretch;
}

.hero-status-card h2 {
  margin: 8px 0 10px;
  font-size: 1.6rem;
}

.status-label,
.rollout-tag,
.policy-updated {
  color: var(--warning);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
}

.dot-live {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(111, 214, 196, 0.15);
}

.dot-warn {
  background: var(--warning);
  box-shadow: 0 0 0 5px rgba(255, 208, 139, 0.12);
}

.section-block {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(10, 24, 36, 0.72);
  box-shadow: var(--shadow);
}

.section-highlight {
  background: linear-gradient(180deg, rgba(17, 36, 50, 0.92), rgba(10, 24, 36, 0.82));
}

.section-heading {
  max-width: 58rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  margin-top: 4px;
}

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

.feature-card,
.rollout-card,
.policy-card {
  padding: 22px;
}

.feature-card h3,
.rollout-card h3,
.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.rollout-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.policy-layout {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.policy-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.policy-updated {
  margin: 14px 0 0;
}

.site-footer {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 25, 35, 0.62);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-panel,
  .feature-grid,
  .rollout-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 16px, 100%);
    padding-top: 14px;
  }

  .site-header,
  .section-block,
  .hero-panel,
  .site-footer {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
