:root {
  --bg-ink: #050a12;
  --bg-mid: #0a1322;
  --text-main: #f2f4f7;
  --text-dim: #b8c0cc;
  --gold: #cda56a;
  --gold-bright: #f0c88a;
  --line: rgba(240, 200, 138, 0.28);
  --panel: rgba(10, 19, 34, 0.78);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% -10%, rgba(205, 165, 106, 0.22), transparent 40%),
    radial-gradient(circle at 85% 5%, rgba(55, 94, 160, 0.25), transparent 35%),
    linear-gradient(165deg, var(--bg-mid), var(--bg-ink) 65%);
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
  min-height: 100vh;
  position: relative;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(240, 200, 138, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(240, 200, 138, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0.9), rgba(5, 10, 18, 0.45));
  border-bottom: 1px solid rgba(240, 200, 138, 0.12);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  letter-spacing: 0.08em;
}

.brand-wrap {
  display: grid;
  gap: 2px;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.82;
}

.top-nav {
  display: flex;
  gap: 24px;
}

.top-nav a,
.site-footer a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color 180ms ease;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 54px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  text-wrap: balance;
}

.lead,
.sub-lead {
  color: var(--text-dim);
  max-width: 66ch;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.lead {
  margin-top: 18px;
}

.sub-lead {
  margin-top: 12px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #201205;
  background: linear-gradient(100deg, var(--gold), var(--gold-bright));
  box-shadow: 0 10px 24px rgba(240, 200, 138, 0.22);
}

.btn-ghost {
  color: var(--text-main);
  border-color: var(--line);
  background: rgba(11, 23, 38, 0.45);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #201205;
  background: linear-gradient(100deg, var(--gold), var(--gold-bright));
}

.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(16, 28, 46, 0.85), rgba(7, 12, 22, 0.75));
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 200, 138, 0.09);
}

.signal-row span {
  color: var(--text-dim);
}

.signal-row strong {
  color: var(--text-main);
}

.signal-row .alert {
  color: var(--gold-bright);
}

.panel-line {
  height: 1px;
  margin: 22px 0 14px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.panel-note {
  color: var(--text-dim);
}

.section {
  padding: clamp(70px, 10vw, 110px) 0;
}

.section.alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.18));
  border-top: 1px solid rgba(240, 200, 138, 0.08);
  border-bottom: 1px solid rgba(240, 200, 138, 0.08);
}

.section-head {
  margin-bottom: 34px;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  max-width: 23ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--panel);
}

.card h3 {
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
  display: grid;
  gap: 8px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--panel);
}

.step {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(205, 165, 106, 0.16);
  color: var(--gold-bright);
  font-weight: 700;
}

.timeline p {
  color: var(--text-dim);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mock-shot {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(2, 8, 16, 0.9);
}

.mock-shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: rgba(2, 8, 16, 0.95);
  cursor: zoom-in;
}

.mock-shot img:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: -2px;
}

.mock-shot figcaption {
  padding: 12px 14px;
  color: var(--text-dim);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 30px);
  background: rgba(3, 7, 13, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-figure {
  margin: 0;
  width: min(1240px, 96vw);
  max-height: 92vh;
  display: grid;
  gap: 10px;
}

.lightbox-figure img {
  width: 100%;
  height: auto;
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: rgba(2, 8, 16, 0.97);
}

.lightbox-figure figcaption {
  color: var(--text-dim);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 12, 22, 0.9);
  color: var(--text-main);
  padding: 8px 14px;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--gold-bright);
}

.statement {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-top: 16px;
  color: var(--text-dim);
  max-width: 70ch;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--panel);
}

.roadmap h3 {
  margin-bottom: 10px;
  color: var(--gold-bright);
}

.roadmap p {
  color: var(--text-dim);
}

.cta-band {
  padding-top: 52px;
  padding-bottom: 70px;
}

.cta-content {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4.5vw, 46px);
  background:
    radial-gradient(circle at 80% 25%, rgba(240, 200, 138, 0.18), transparent 45%),
    linear-gradient(to right, rgba(12, 24, 40, 0.92), rgba(8, 14, 24, 0.84));
  display: grid;
  gap: 22px;
  justify-items: start;
}

.cta-content h2 {
  max-width: 27ch;
}

.site-footer {
  border-top: 1px solid rgba(240, 200, 138, 0.14);
  padding: 18px 0;
}

.foot-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.foot-wrap p {
  color: var(--text-dim);
}

.foot-note {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .roadmap,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 64px;
    gap: 12px;
  }

  .brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .btn {
    width: 100%;
  }

  .btn-small {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .foot-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
