* { box-sizing: border-box; }

:root {
  --ink: #1f2937;
  --muted: #64748b;
  --line: #dbe3ea;
  --paper: #fffdf8;
  --mist: #edf6f4;
  --accent: #2f7d7e;
  --accent-dark: #1d5558;
  --sun: #f4b860;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  line-height: 1.65;
}

a { color: var(--accent-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 80px);
  background: #f8f3e8;
}

.hero h1,
.page h1 {
  margin: 0;
  max-width: 860px;
  color: #172033;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: #455468;
  font-size: clamp(18px, 2vw, 22px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.link-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary,
.link-row a {
  background: transparent;
  color: var(--accent-dark);
}

.hero-panel {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: #183642;
  color: white;
  border: 1px solid #0d2730;
}

.moon {
  width: 148px;
  height: 148px;
  margin: 48px 0 0 48px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 80px rgba(244, 184, 96, 0.36);
}

.player {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.player h2 {
  margin: 4px 0;
  font-size: 30px;
  letter-spacing: 0;
}

.label,
.muted {
  color: var(--muted);
}

.hero-panel .label,
.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  height: 6px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--sun);
}

.section,
.page {
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 80px);
}

.page {
  max-width: 1040px;
  margin: 0 auto;
}

.compact {
  padding-left: 0;
  padding-right: 0;
}

.band {
  background: var(--mist);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 38px;
  font-size: 24px;
}

.faq {
  margin: 0;
}

.faq dt {
  margin-top: 24px;
  font-weight: 800;
}

.faq dd {
  margin: 6px 0 0;
  color: #455468;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.filing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filing img {
  width: 18px;
  height: 18px;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 340px;
  }

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