:root {
  --bg: #08111f;
  --bg-2: #0e1b2e;
  --card: #111f34;
  --ink: #f7f4ea;
  --muted: #b5c1d3;
  --gold: #d4af37;
  --gold-2: #f4d675;
  --silver: #d7dde7;
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,17,31,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { color: #07101c !important; background: linear-gradient(135deg, var(--gold), var(--gold-2)); padding: 10px 16px; border-radius: 999px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 75% 20%, rgba(212,175,55,.20), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--gold-2); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(44px, 6vw, 76px); max-width: 760px; }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: 22px; }
.lead { margin: 24px 0 0; max-width: 680px; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #07101c; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 12px 32px rgba(212,175,55,.24); }
.secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.06); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { color: var(--silver); font-size: 13px; font-weight: 700; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.05); }
.hero-art { padding: 22px; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.05); box-shadow: var(--shadow); }

.intro-section { padding: 62px 0; background: #f6f2e8; color: #132033; }
.intro-section .eyebrow { color: #927018; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.two-col p:last-child { color: #425066; font-size: 18px; margin: 0; }

.section { padding: 86px 0; }
.dark-section { background: var(--bg-2); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; margin-top: 16px; }
.process-grid, .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card, .feature-card, .stats-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.step { display: inline-flex; color: #07101c; background: var(--gold); font-weight: 900; border-radius: 999px; padding: 5px 10px; margin-bottom: 18px; }
.process-card p, .feature-card p { color: var(--muted); margin-bottom: 0; }

.risk-section { background: #f7f4ea; color: #132033; }
.risk-section .eyebrow { color: #927018; }
.risk-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 42px; align-items: center; }
.risk-copy p { color: #425066; font-size: 18px; }
.stats-card { background: #fff; border-color: rgba(19,32,51,.12); color: #132033; }
.stats-card ul { margin: 18px 0 0; padding-left: 20px; color: #425066; }
.stats-card li { margin: 10px 0; }
.stats-card strong { color: #132033; }
.features-grid { grid-template-columns: repeat(4, 1fr); }

.cta-section { padding: 18px 0 86px; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,.34);
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}
.cta-card p:last-child { color: var(--muted); margin-bottom: 0; }

.site-footer { background: #050a13; border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.footer-brand { color: var(--ink); }
.footer-contact { display: grid; gap: 8px; text-align: right; }
.footer-contact a { color: var(--gold-2); font-weight: 700; }
.disclaimer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: #95a3b8; }


.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(244,214,117,.16), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(215,221,231,.10), transparent 28%),
    var(--bg-2);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.about-art {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(244,214,117,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin-bottom: 22px;
}

.about-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(8,17,31,.54);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}

.about-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  margin: 0 0 20px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card strong {
  color: var(--gold-2);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .two-col, .risk-grid, .about-grid { grid-template-columns: 1fr; }
  .process-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card, .footer-grid { flex-direction: column; align-items: flex-start; }
  .about-art { max-width: 520px; margin: 0 auto; }
  .footer-contact { text-align: left; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1140px); }
  .hero { padding-top: 54px; }
  .process-grid, .features-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 26px; }
  .about-card { padding: 24px; }
}


.calendar-hero{
padding:90px 0 70px;
background:
radial-gradient(circle at 75% 20%, rgba(212,175,55,.20), transparent 30%),
linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.calendar-section{
background:#f7f4ea;
}

.calendar-card{
background:#fff;
padding:18px;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.calendar-card iframe{
border-radius:18px;
background:#fff;
}


.spot-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.spot-section {
  background: #f7f4ea;
  color: #132033;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.calendar-section{
background:#f7f4ea;
}

.calendar-card{
background:#fff;
padding:18px;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.calendar-card iframe{
border-radius:18px;
background:#fff;
}


.spot-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.spot-section {
  background: #f7f4ea;
  color: #132033;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.calendar-card{
background:#fff;
padding:18px;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.calendar-card iframe{
border-radius:18px;
background:#fff;
}


.spot-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.spot-section {
  background: #f7f4ea;
  color: #132033;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.spot-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.spot-section {
  background: #f7f4ea;
  color: #132033;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.spot-section {
  background: #f7f4ea;
  color: #132033;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.spot-card {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.16);
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.spot-card .eyebrow {
  color: #927018;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.spot-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.spot-frame iframe {
  display: block;
  border: 0;
  background: #ffffff;
}

.spot-note {
  margin: 16px 0 0;
  color: #425066;
  font-size: 14px;
}



.tradingview-widget-container {
  height: 620px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19,32,51,.16);
  background: #ffffff;
}

.tradingview-widget-container > div {
  height: 100%;
  width: 100%;
}



.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}

.page-hero h1 {
  max-width: 900px;
}

.about-page-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Expanded Counterfeit Risk page */
.counterfeit-hero { padding: 78px 0 70px; }
.counterfeit-hero-grid { grid-template-columns: .95fr 1.05fr; }
.counterfeit-art { padding: 14px; }
.counterfeit-page-section .section-heading p:last-child { color: #344258; }
.risk-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.risk-info-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 18px 50px rgba(19,32,51,.12);
}
.risk-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
  margin-bottom: 18px;
}
.risk-info-card p { color: #425066; margin-bottom: 0; }
.testing-section .section-heading { max-width: 850px; }
.test-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.test-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
}
.test-card p { color: var(--muted); margin-bottom: 0; }
.test-badge {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(244,214,117,.13);
  border: 1px solid rgba(244,214,117,.35);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.featured-test { border-color: rgba(244,214,117,.5); background: linear-gradient(180deg, rgba(212,175,55,.18), rgba(255,255,255,.035)); }
.layered-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 40px; align-items: center; }
.layered-grid p { color: #425066; font-size: 18px; }
.layer-stack { display: grid; gap: 14px; }
.layer-stack div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 16px 42px rgba(19,32,51,.10);
}
.layer-stack strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #07101c;
  background: var(--gold);
  font-weight: 900;
}
.layer-stack span { color: #132033; font-weight: 800; }
@media (max-width: 1000px) {
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-info-grid, .counterfeit-hero-grid, .layered-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .test-grid, .risk-info-grid { grid-template-columns: 1fr; }
}

/* Silver Forecast page */
.nav-links { gap: 13px; font-size: 12px; }
.silver-forecast-hero { padding: 78px 0 70px; }
.silver-hero-grid { grid-template-columns: .95fr 1.05fr; }
.silver-hero-art { padding: 12px; }
.silver-section { background: #f7f4ea; color: #132033; }
.silver-section .eyebrow { color: #927018; }
.forecast-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.forecast-intro-grid p { color: #425066; font-size: 18px; }
.forecast-metric-card {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.14);
}
.metric-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.forecast-metric-card strong {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
  color: #132033;
}
.forecast-metric-card p { margin-bottom: 0; }
.forecast-dark-section .section-heading { max-width: 850px; }
.forecast-driver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.forecast-driver-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
}
.driver-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
  margin-bottom: 18px;
}
.forecast-driver-card p { color: var(--muted); margin-bottom: 0; }
.visual-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.visual-card {
  padding: 16px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.14);
}
.forecast-copy-card {
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(19,32,51,.12);
  box-shadow: 0 20px 60px rgba(19,32,51,.12);
}
.forecast-copy-card p { color: #425066; font-size: 18px; }
.forecast-list { margin: 22px 0 0; padding-left: 20px; color: #425066; }
.forecast-list li { margin: 12px 0; }
.forecast-list strong { color: #132033; }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.scenario-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.scenario-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.scenario-card p { color: var(--muted); margin-bottom: 0; }
.highlight-scenario { border-color: rgba(244,214,117,.5); background: linear-gradient(180deg, rgba(212,175,55,.18), rgba(255,255,255,.035)); }
@media (max-width: 1080px) {
  .nav-links { gap: 12px; font-size: 12px; }
}
@media (max-width: 1000px) {
  .silver-hero-grid, .forecast-intro-grid, .visual-grid { grid-template-columns: 1fr; }
  .forecast-driver-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .forecast-driver-grid { grid-template-columns: 1fr; }
}


/* Gold Forecast page */
.gold-forecast-hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(215,221,231,.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}
.gold-section .eyebrow { color: #927018; }
.gold-metric-card { background: linear-gradient(180deg, #ffffff, #fbf7eb); }
.gold-metric-card strong { font-size: clamp(32px, 3.6vw, 52px); }
@media (max-width: 1180px) { .nav-links { gap: 9px; font-size: 11px; } }


/* Pricing page */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 75% 20%, rgba(212,175,55,.20), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0d2037 52%, #08111f 100%);
}
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.pricing-hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }
.pricing-art img { border-radius: 24px; }
.pricing-section { background: #f7f4ea; color: #132033; }
.pricing-section .eyebrow { color: #927018; }
.pricing-section .section-heading p:last-child { color: #425066; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pricing-card {
  border: 1px solid rgba(19,32,51,.12);
  border-radius: 28px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(19,32,51,.14);
}
.featured-pricing { border-color: rgba(212,175,55,.45); box-shadow: 0 22px 70px rgba(146,112,24,.18); }
.pricing-card-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.pricing-icon { display: inline-grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); font-size: 24px; box-shadow: 0 10px 22px rgba(212,175,55,.22); }
.pricing-card h3 { color: #132033; margin-bottom: 8px; }
.pricing-card p { margin: 0; color: #425066; }
.pricing-rules { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.pricing-rules span { font-size: 13px; font-weight: 800; color: #07101c; border-radius: 999px; padding: 8px 10px; background: #f2ead4; border: 1px solid rgba(146,112,24,.22); }
.pricing-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; font-size: 15px; }
.pricing-table th { text-align: left; color: #07101c; background: #eadcae; padding: 12px 14px; }
.pricing-table td { color: #25344a; padding: 12px 14px; border-bottom: 1px solid rgba(19,32,51,.10); }
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:nth-child(even) { background: #faf7ee; }
.pricing-notes-section { padding-top: 76px; }
.pricing-note-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; }
.pricing-note-card { border: 1px solid var(--line); border-radius: 28px; padding: 30px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); box-shadow: var(--shadow); }
.pricing-note-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.pricing-note-card li { margin: 10px 0; }

.pricing-section-graphic,
.scope-section-visual {
  margin: 0 auto 28px;
  max-width: 1120px;
}
.pricing-section-graphic img,
.scope-section-visual img,
.with-note-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 18px 52px rgba(7,16,28,.24);
}
.scope-section-visual { margin-bottom: 26px; }
.with-note-graphic img { margin-bottom: 22px; border: 1px solid rgba(255,255,255,.10); }

@media (max-width: 980px) {
  .pricing-hero-grid, .pricing-note-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* Pricing service scope update */
.service-scope-section {
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.service-scope-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(212,175,55,.11), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(215,221,231,.08), transparent 30%);
  pointer-events: none;
}
.service-scope-section .wrap { position: relative; }
.service-scope-section .section-heading p:last-child { color: var(--muted); }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.scope-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.scope-card h3 { margin-bottom: 14px; }
.scope-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.scope-card li { margin: 10px 0; }
.scope-card.includes { border-color: rgba(212,175,55,.28); }
.scope-card.excludes { border-color: rgba(215,221,231,.22); }
.pricing-section { background: #f7f4ea; }
@media (max-width: 760px) { .scope-grid { grid-template-columns: 1fr; } }

/* Mobile hamburger navigation */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-2);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header { z-index: 1000; }
  .nav { position: relative; min-height: 70px; }
  .mobile-menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(8,17,31,.98);
    box-shadow: 0 22px 55px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ink);
    font-size: 15px;
  }
  .nav-links a:hover { background: rgba(255,255,255,.07); }
  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 12px 16px;
  }
  body.menu-open { overflow-x: hidden; }
}

@media (max-width: 420px) {
  .brand span { font-size: 16px; }
  .brand img { width: 38px; height: 38px; }
  .mobile-menu-toggle { width: 42px; height: 42px; }
}
