
:root {
  --bg: #070b14;
  --surface: #0e1626;
  --surface-2: #121c2d;
  --text: #f8fafc;
  --muted: #a8b3c7;
  --gold: #d6a640;
  --gold-light: #fff0b5;
  --border: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7,11,20,.78);
  border-bottom: 1px solid var(--border);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; font-size: 22px; }
.brand-mark { width: 42px; height: 42px; }
.nav-links { display: flex; gap: 26px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--gold-light); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid rgba(214,166,64,.45);
  background: linear-gradient(135deg, #fff0b5, #d6a640 45%, #8a5b18);
  color: #121212; font-weight: 800;
  box-shadow: 0 14px 40px rgba(214,166,64,.22);
}
.hero {
  min-height: 760px;
  display: grid; align-items: center;
  background-image: linear-gradient(90deg, rgba(7,11,20,.98) 0%, rgba(7,11,20,.82) 46%, rgba(7,11,20,.28) 100%), url('assets/hero-gold-trading.svg');
  background-size: cover;
  background-position: center;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.kicker {
  display: inline-flex; gap: 10px; align-items: center; padding: 8px 12px;
  border: 1px solid rgba(214,166,64,.34); border-radius: 999px;
  color: var(--gold-light); background: rgba(214,166,64,.08); font-size: 13px; font-weight: 700;
}
h1 { font-size: clamp(44px, 7vw, 82px); line-height: .96; letter-spacing: -.07em; margin: 22px 0; }
.hero p { color: var(--muted); font-size: 19px; max-width: 620px; }
.hero-card {
  background: rgba(14,22,38,.76); border: 1px solid var(--border); border-radius: 32px; padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.metric { display:flex; justify-content:space-between; gap:20px; padding:18px 0; border-bottom: 1px solid var(--border); }
.metric:last-child { border-bottom: 0; }
.metric strong { color: var(--gold-light); font-size: 26px; }
.metric span { color: var(--muted); }
.section { padding: 50px 0; }
.section-title { max-width: 760px; margin-bottom: 42px; }
.section-title h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.05; margin: 0 0 16px; letter-spacing: -.05em; }
.section-title p { color: var(--muted); font-size: 18px; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--border); border-radius: 28px; padding: 26px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { color: var(--muted); margin: 0; }
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.image-grid img { width: 100%; border-radius: 28px; border: 1px solid var(--border); display: block; }
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.about-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 34px; }
.about-panel p { color: var(--muted); font-size: 17px; }
.contact {
  background: linear-gradient(135deg, rgba(214,166,64,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(214,166,64,.28); border-radius: 36px; padding: 42px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.contact h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 52px); letter-spacing: -.05em; }
.contact p { color: var(--muted); margin: 0; }
.contact-list { margin-top: 24px; color: var(--text); }
.footer { padding: 32px 0; color: var(--muted); border-top: 1px solid var(--border); font-size: 14px; }
@media (max-width: 860px) {
  .nav-links { display:none; }
  .hero { min-height: auto; padding: 96px 0; }
  .hero-grid, .about, .contact { grid-template-columns: 1fr; }
  .cards, .image-grid { grid-template-columns: 1fr; }
}
