
:root {
  --bg: #0b0b0d;
  --panel: rgba(255,255,255,0.04);
  --text: #f5f2ea;
  --muted: #b6ae9d;
  --line: rgba(214,182,107,0.18);
  --gold: #d6b66b;
  --gold-strong: #e5c57f;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --max: 1240px;
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214,182,107,0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(214,182,107,0.05), transparent 22%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d10 55%, #111216 100%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--gold-strong);
  background: rgba(214,182,107,0.05); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 14px rgba(214,182,107,0.65);
}
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.04;
  margin: 0 0 18px; font-size: clamp(2rem, 5vw, 4.25rem);
}
.section-copy, .lead, p, li {
  color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.1rem); margin: 0;
}
.lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); max-width: 820px; }
header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px);
  background: rgba(9, 9, 11, 0.72); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-mark { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; letter-spacing: 0.03em; color: var(--text); }
.brand-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; }
nav ul {
  display: flex; align-items: center; gap: 28px; list-style: none;
  padding: 0; margin: 0; color: #ddd4c3; font-size: 0.95rem;
}
nav a:hover { color: var(--gold-strong); }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600; transition: 0.25s ease; cursor: pointer;
}
.btn-primary, .nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #121212; box-shadow: 0 10px 30px rgba(214,182,107,0.22);
}
.btn-secondary {
  border-color: var(--line); background: rgba(255,255,255,0.02); color: var(--text);
}
.hero { padding: 84px 0 46px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: stretch; }
.hero-copy { padding: 28px 0; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.2rem); line-height: 0.95;
  letter-spacing: -0.05em; font-weight: 500; margin: 18px 0 22px; max-width: 900px;
}
.hero h1 span { color: var(--gold-strong); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 22px; color: #d9cfba; font-size: 0.96rem; }
.hero-panel, .panel {
  border: 1px solid rgba(214,182,107,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 30px; padding: 28px; box-shadow: var(--shadow); overflow: hidden;
}
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 22px; }
.stat {
  padding: 18px; border-radius: 20px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-label {
  display: block; color: var(--muted); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 6px;
}
.stat strong { display: block; font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--text); }
.ticker {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.ticker-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; color: #e8dfcd; }
.ticker-row span { color: var(--muted); }
.section { padding: 84px 0; }
.section-header { max-width: 920px; margin-bottom: 36px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 12px; font-size: 1.35rem; color: var(--text);
  font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.02em;
}
.gold-line { width: 72px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 18px 0 20px; }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.feature-item:first-child { border-top: 0; padding-top: 0; }
.feature-number {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(214,182,107,0.10); color: var(--gold-strong); font-weight: 700; font-size: 0.92rem; border: 1px solid rgba(214,182,107,0.16);
}
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem); line-height: 1.2; color: var(--text); letter-spacing: -0.03em; margin: 0;
}
.signature { display: inline-flex; flex-direction: column; gap: 4px; margin-top: 28px; color: var(--muted); font-size: 0.95rem; }
.signature strong { color: var(--gold-strong); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.market-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.market-card {
  border-radius: 24px; overflow: hidden; border: 1px solid rgba(214,182,107,0.2);
  background: rgba(255,255,255,0.02); box-shadow: var(--shadow);
}
.market-head {
  padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); color: #d9cfba;
  font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 16px;
}
.market-card iframe { width: 100%; height: 520px; border: 0; display: block; }
.cta {
  padding: 34px; border-radius: 30px; border: 1px solid rgba(214,182,107,0.16);
  background: linear-gradient(135deg, rgba(214,182,107,0.11), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.list-tight { margin: 18px 0 0; padding-left: 18px; }
.list-tight li + li { margin-top: 10px; }
footer { padding: 34px 0 46px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--muted); font-size: 0.92rem; }
.footer-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.notice { margin-top: 16px; color: #d9cfba; font-size: 0.95rem; }
@media (max-width: 1040px) {
  .hero-grid, .grid-2, .grid-3, .market-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
}
@media (max-width: 720px) {
  .hero { padding-top: 56px; }
  .section { padding: 64px 0; }
  .hero-panel, .panel, .card, .cta { padding: 22px; }
  .stats { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
