:root {
  --bg: #111317;
  --bg-deep: #0a0c0f;
  --surface: rgba(27, 31, 37, 0.82);
  --surface-strong: rgba(31, 36, 43, 0.94);
  --gold: #d99a21;
  --gold-bright: #f2b84b;
  --gold-soft: #f7d794;
  --text: #f4f6f8;
  --muted: #9ca8b5;
  --line: rgba(242, 184, 75, 0.24);
  --border: rgba(242, 184, 75, 0.16);
  --shadow: 0 20px 70px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 23%, rgba(217,154,33,.12), transparent 26rem),
    radial-gradient(circle at 78% 18%, rgba(242,184,75,.07), transparent 20rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { min-height: 100vh; }

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark,
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: .96rem;
  letter-spacing: .22em;
  font-weight: 700;
}

.brand-copy small {
  color: var(--gold-bright);
  letter-spacing: .32em;
  font-size: .62rem;
  margin-top: 7px;
}

.g-letter,
.hero-g {
  font-family: Georgia, "Times New Roman", serif;
  color: #ffe9b0;
}

.g-letter {
  font-size: 1.32rem;
  line-height: 1;
}

.hero-g {
  font-size: clamp(4.4rem, 10vw, 7.4rem);
  line-height: .9;
  font-weight: 500;
  text-shadow: 0 0 22px rgba(217,154,33,.10);
}

.column-mark {
  width: 28px;
  height: 40px;
  display: grid;
  grid-template-rows: 7px 1fr 7px;
  gap: 2px;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 12px rgba(217,154,33,.18));
}

.column-mark .cap,
.column-mark .base {
  display: block;
  background: currentColor;
  clip-path: polygon(8% 0, 92% 0, 100% 42%, 88% 100%, 12% 100%, 0 42%);
}

.column-mark .shaft {
  display: flex;
  justify-content: center;
  gap: 3px;
  padding: 0 5px;
}

.column-mark .shaft i {
  display: block;
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background: currentColor;
}

.column-mark.large {
  width: 74px;
  height: 108px;
  grid-template-rows: 15px 1fr 15px;
  gap: 5px;
}

.column-mark.large .shaft {
  gap: 6px;
  padding: 0 12px;
}

.column-mark.large .shaft i { width: 8px; }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 58px 24px 90px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 70px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,184,75,.25), transparent);
}

.hero-content {
  width: min(1020px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: .76rem;
  letter-spacing: .31em;
  font-weight: 700;
}

.hero-logo {
  justify-content: center;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 800;
}

.lead {
  margin: 22px auto 0;
  max-width: 720px;
  color: #e8e1d3;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.7;
}

.divider {
  width: min(310px, 72%);
  height: 22px;
  margin: 30px auto 18px;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--line);
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.status {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  font-size: .98rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  text-align: left;
}

.card {
  min-height: 180px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(28,32,38,.84), rgba(16,18,22,.94));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.card.future {
  border-style: dashed;
}

.card-label {
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: .66rem;
  letter-spacing: .22em;
  font-weight: 800;
}

.card h2 {
  margin: 0 0 10px;
  color: #fff4d4;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .94rem;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(148,163,184,.10);
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #7e8792;
  font-size: .78rem;
}

.footer-dot { color: var(--gold); }

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero { padding-top: 40px; }
  .eyebrow { letter-spacing: .18em; }
  .cards { grid-template-columns: 1fr; }
  footer { flex-wrap: wrap; }
}
