:root {
  --bg: #07090d;
  --bg-soft: #0d1118;
  --panel: rgba(255,255,255,.065);
  --panel-border: rgba(255,255,255,.12);
  --text: #f5f0e8;
  --muted: #b9b0a3;
  --gold: #c8a96a;
  --gold-light: #f1d998;
  --accent: #9ab4ff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(200,169,106,.16), transparent 28%), 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; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.page-glow { position: fixed; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 20%, rgba(154,180,255,.12), transparent 25%); z-index: -1; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(7,9,13,.72); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .2px; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(200,169,106,.55); border-radius: 50%; color: var(--gold-light); background: linear-gradient(135deg, rgba(200,169,106,.22), rgba(255,255,255,.03)); font-family: "Playfair Display", serif; }
.nav-links { display: flex; gap: 24px; align-items: center; color: var(--muted); font-size: 14px; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links .active { color: var(--text); }
.nav-toggle { display: none; background: none; color: var(--text); border: 0; font-size: 28px; }
.hero { min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { line-height: 1.1; margin: 0; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(46px, 7vw, 86px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero-text { max-width: 660px; font-size: 19px; color: var(--muted); margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #eed590); color: #16100a; }
.btn-secondary { border: 1px solid var(--panel-border); color: var(--text); background: rgba(255,255,255,.05); }
.hero-card, .category-card, .article-card, .newsletter, .trust-strip { border: 1px solid var(--panel-border); background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.hero-card { padding: 38px; border-radius: 32px; position: relative; overflow: hidden; }
.card-topline { position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.mini-label, .muted { color: var(--muted); }
.asset-orbit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 34px 0; }
.asset-orbit span { padding: 22px; border-radius: 20px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.08); text-align: center; color: var(--gold-light); font-weight: 800; }
.float-card { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: 24px; overflow: hidden; margin-top: -60px; }
.trust-strip div { padding: 24px; background: rgba(0,0,0,.18); }
.trust-strip strong { display: block; color: var(--gold-light); font-size: 24px; }
.trust-strip span { color: var(--muted); font-size: 14px; }
.section { padding: 110px 0 0; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.category-grid, .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card, .article-card { border-radius: 28px; padding: 30px; min-height: 270px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.category-card:hover, .article-card:hover { transform: translateY(-8px); border-color: rgba(200,169,106,.48); background: rgba(255,255,255,.09); }
.icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(200,169,106,.13); color: var(--gold-light); margin-bottom: 28px; }
.category-card p, .article-card p, .split-section p, .newsletter p, .site-footer p { color: var(--muted); }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.article-card { min-height: 300px; display: flex; flex-direction: column; }
.tag { width: fit-content; color: #16100a; background: var(--gold-light); border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 900; margin-bottom: 24px; }
.article-card a { margin-top: auto; color: var(--gold-light); font-weight: 800; }
.newsletter { border-radius: 32px; padding: 38px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; margin-bottom: 100px; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-controls { display: flex; gap: 12px; }
.newsletter-form input[type="email"] { flex: 1; min-width: 0; height: 52px; border-radius: 999px; border: 1px solid var(--panel-border); background: rgba(0,0,0,.25); color: var(--text); padding: 0 18px; outline: none; }
.newsletter-form input:focus { border-color: rgba(200,169,106,.7); box-shadow: 0 0 0 3px rgba(200,169,106,.14); }
.privacy-consent { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.45; }
.privacy-consent input { accent-color: var(--gold); margin-top: 4px; }
.privacy-consent a { color: var(--gold-light); font-weight: 800; }
.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: #050609; padding: 46px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer-grid a { display: block; color: var(--muted); margin: 8px 0; }
.footer-grid a:hover { color: var(--text); }
.footer-brand { color: var(--text) !important; }
.disclaimer { margin-top: 34px; font-size: 13px; color: #8d8478 !important; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.subpage-hero { padding: 115px 0 56px; }
.subpage-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.list-section { padding-bottom: 110px; }
.simple-card { border: 1px solid var(--panel-border); border-radius: 24px; background: rgba(255,255,255,.05); padding: 26px; margin-bottom: 16px; }
.simple-card p { color: var(--muted); }
.legal { max-width: 850px; padding-bottom: 100px; }
.legal p, .legal li { color: var(--muted); }
.article-layout { max-width: 900px; padding: 92px 0 110px; }
.back-link { display: inline-flex; color: var(--gold-light); font-weight: 800; margin-bottom: 34px; }
.article-header { border-bottom: 1px solid var(--panel-border); padding-bottom: 34px; margin-bottom: 38px; }
.article-intro { color: var(--muted); font-size: 20px; margin: 24px 0 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; color: var(--muted); font-size: 14px; }
.article-meta span { border: 1px solid var(--panel-border); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.045); }
.article-content { font-size: 18px; }
.article-content h2 { font-size: clamp(26px, 3vw, 38px); margin: 44px 0 14px; }
.article-content p { color: var(--muted); margin: 0 0 18px; }
.article-note { border-left: 3px solid var(--gold); background: rgba(200,169,106,.08); padding: 18px 20px; border-radius: 0 18px 18px 0; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 76px; display: none; flex-direction: column; align-items: flex-start; background: rgba(7,9,13,.96); padding: 22px; border: 1px solid var(--panel-border); border-radius: 22px; }
  .nav-links.open { display: flex; }
  .hero, .split-section, .newsletter, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; min-height: auto; }
  .trust-strip, .category-grid, .article-grid { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 60px; }
  .newsletter-controls { flex-direction: column; }
}
