*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4A843;
  --gold-light: #F0C060;
  --gold-dark: #B8902A;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1E1E1E;
  --dark-4: #2A2A2A;
  --text: #E8E8E8;
  --text-muted: #888;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-4);
  padding: 16px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--gold); }
.dot { color: var(--text); }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
nav a:hover { color: var(--text); }
.btn-nav {
  background: var(--gold); color: var(--dark) !important;
  padding: 8px 18px; border-radius: 8px; font-weight: 600;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

/* HERO */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,168,67,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,.12); border: 1px solid rgba(212,168,67,.3);
  color: var(--gold); font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.gold { color: var(--gold); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 16px 32px; border-radius: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-note { color: var(--text-muted); font-size: 13px; }

/* GOLD BAR VISUAL */
.hero-visual {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  opacity: .15; pointer-events: none;
}
.gold-bar {
  width: 180px; height: 80px;
  background: linear-gradient(135deg, #8a6914, #D4A843, #f5d980, #c89820, #8a6914);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(212,168,67,.4);
}
.bar-text { font-size: 13px; font-weight: 700; color: rgba(0,0,0,.6); letter-spacing: 2px; }

/* FEATURES */
.features { padding: 80px 0; background: var(--dark-2); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--dark-3); border: 1px solid var(--dark-4);
  padding: 32px; border-radius: var(--radius);
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(212,168,67,.3); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 15px; }

/* NEWS */
.news-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 16px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.news-card {
  background: var(--dark-3); border: 1px solid var(--dark-4);
  padding: 28px; border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.news-card:hover { border-color: rgba(212,168,67,.3); transform: translateY(-3px); }
.news-meta { margin-bottom: 12px; }
.news-date { font-size: 12px; color: var(--gold); font-weight: 500; }
.news-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.news-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.news-cta {
  display: inline-block; margin-top: 16px;
  color: var(--gold); font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.news-cta:hover { color: var(--gold-light); }

/* SIGNUP */
.signup-section { padding: 80px 0; background: var(--dark-2); }
.signup-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.signup-text h2 { font-size: 34px; font-weight: 700; margin-bottom: 16px; }
.signup-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.signup-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.signup-benefits li { font-size: 15px; color: var(--text-muted); }
.signup-benefits li::first-letter { color: var(--gold); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.optional { font-weight: 400; font-size: 12px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark-3); border: 1px solid var(--dark-4);
  color: var(--text); font-family: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 8px;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; padding: 16px; border-radius: 10px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-privacy { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

.form-success {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  padding: 40px 32px; border-radius: var(--radius); text-align: center;
}
.success-icon { font-size: 48px; color: #22c55e; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

.form-error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  padding: 16px 20px; border-radius: 8px; font-size: 14px;
  color: #f87171; margin-top: 12px;
}

/* FOOTER */
.site-footer { padding: 48px 0; border-top: 1px solid var(--dark-4); text-align: center; }
.footer-logo { font-size: 20px; font-weight: 700; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }
.site-footer p { color: var(--text-muted); font-size: 14px; margin-bottom: 6px; }
.footer-small { font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav a:not(.btn-nav) { display: none; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-visual { display: none; }
  h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .signup-box { grid-template-columns: 1fr; gap: 40px; }
}
