:root {
  --gold: #F5B301;
  --gold-soft: #FFD24A;
  --bg: #000;
  --white: #fff;
  --muted: rgba(255,255,255,0.7);
  --dim: rgba(255,255,255,0.55);
  --faint: rgba(255,255,255,0.4);
  --line: rgba(255,255,255,0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }

/* Top announcement bar */
.topbar {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 10px 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 44px);
  background-color: #000;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.95) 100%),
    url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px;
  min-height: calc(100vh - 44px);
  display: flex;
  flex-direction: column;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.logo-white { color: #fff; }
.logo-gold  { color: var(--gold); }
.logo-tld {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--gold);
  background: rgba(245,179,1,0.08);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  border-radius: 2px;
}
.bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.title {
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.title .w { color: #fff; }
.title .g { color: var(--gold); }
.title .grad {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 32px 0 0;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}
.lead strong { color: #fff; font-weight: 600; }

/* CTA */
.cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cta .btn { text-transform: lowercase; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  box-shadow: 0 15px 45px -12px var(--gold);
  transition: transform 0.2s ease;
}
.btn:hover { transform: scale(1.02); }
.note { font-size: 14px; color: var(--dim); }

/* Footer */
.foot {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--faint);
}
.foot .upper { text-transform: uppercase; letter-spacing: 0.25em; }

/* Responsive */
@media (max-width: 640px) {
  .wrap { padding: 24px 20px; }
  .content { padding: 40px 0; }
  .status { display: none; }
  .btn { width: 100%; justify-content: center; }
}
