:root {
  --black: #111111;
  --anthracite: #2e2d2d;
  --gold: #d4af37;
  --gold-light: #e4c86a;
  --gold-dark: #a98219;
  --white: #f7f7f2;
  --muted: rgba(247, 247, 242, .72);
  --line: rgba(212, 175, 55, .26);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(22px, 4vw, 64px);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 18%, rgba(0,0,0,.68) 34%, rgba(0,0,0,0) 58%),
    linear-gradient(to bottom, rgba(17,17,17,.94), rgba(17,17,17,0));
}
.brand { position: relative; display: inline-block; }
.brand::before {
  content: "";
  position: absolute;
  inset: -34px -52px -38px -40px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 28% 28%, rgba(0,0,0,.98) 0%, rgba(0,0,0,.92) 36%, rgba(0,0,0,.52) 58%, rgba(0,0,0,0) 78%);
  filter: blur(10px);
}
.brand img { width: clamp(220px, 26vw, 410px); height: auto; display: block; }
.socials { display: flex; gap: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-light); }
.socials a:hover { color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(22px, 6vw, 90px) 80px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 42%, rgba(212,175,55,.11), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.05), transparent 30%),
    radial-gradient(ellipse at 6% 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,.95) 18%, transparent 44%),
    linear-gradient(135deg, #050505 0%, #151515 48%, #2e2d2d 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.68) 28%, rgba(0,0,0,.48) 52%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 34%);
}
.grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.35'/%3E%3C/svg%3E");
}
.light { position: absolute; width: 42vw; height: 42vw; border-radius: 999px; filter: blur(90px); opacity: .16; }
.light-one { background: var(--gold); right: -12vw; top: 12vh; }
.light-two { background: #ffffff; left: -18vw; bottom: -18vw; opacity: .06; }

.hero-content { max-width: 820px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .32em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  max-width: 900px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.lead { font-size: clamp(20px, 3vw, 34px); line-height: 1.35; color: var(--white); margin-bottom: 12px; }
.sublead { font-size: clamp(16px, 1.6vw, 20px); color: var(--muted); max-width: 650px; line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.btn-primary { color: #151515; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn-secondary { border: 1px solid var(--line); color: var(--white); background: rgba(255,255,255,.03); }
.btn:hover { transform: translateY(-1px); }
.status-card {
  position: absolute;
  right: clamp(22px, 6vw, 90px);
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  backdrop-filter: blur(18px);
  background: rgba(0,0,0,.25);
}
.status-dot { width: 10px; height: 10px; border-radius: 99px; background: var(--gold); box-shadow: 0 0 0 6px rgba(212,175,55,.12); }

.promise, .updates, .newsletter { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.promise { padding: 115px 0; display: grid; grid-template-columns: 1.25fr .75fr; gap: 54px; border-top: 1px solid rgba(255,255,255,.08); }
.promise h2 { font-size: clamp(30px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -.04em; }
.promise p { color: var(--muted); font-size: 18px; line-height: 1.8; }

.updates { padding: 20px 0 90px; }
.section-head { margin-bottom: 34px; }
.section-head h2, .newsletter h2 { font-size: clamp(34px, 5vw, 72px); line-height: 1; letter-spacing: -.05em; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.update-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border-radius: 28px;
}
.update-card span { color: var(--gold); font-weight: 800; letter-spacing: .18em; }
.update-card h3 { margin: 50px 0 14px; font-size: 24px; }
.update-card p { color: var(--muted); line-height: 1.7; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.value { padding: 42px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.value:last-child { border-right: 0; }
.value strong { display: block; color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; margin-bottom: 10px; }
.value span { color: var(--muted); }

.newsletter { padding: 100px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: end; }
.newsletter p { color: var(--muted); line-height: 1.7; }
.signup { display: flex; gap: 12px; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.035); }
.signup input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--white); padding: 0 14px; font: inherit; }
.signup input::placeholder { color: rgba(247,247,242,.42); }
.signup button { border: 0; border-radius: 14px; padding: 0 24px; min-height: 54px; font: inherit; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #151515; cursor: pointer; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 34px clamp(22px, 4vw, 64px); color: rgba(247,247,242,.55); border-top: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a:hover { color: var(--gold-light); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 860px) {
  .site-header { position: absolute; }
  .socials { display: none; }
  .hero { padding-top: 125px; }
  .status-card { position: static; width: fit-content; margin-top: 36px; }
  .promise, .newsletter { grid-template-columns: 1fr; }
  .timeline, .values { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .signup { flex-direction: column; }
  .signup input { min-height: 54px; }
  .site-footer { flex-direction: column; }
}
