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

:root {
    --gold: #C9A84C;
    --dark: #0a0a0a;
    --dark-2: #111;
    --dark-3: #1a1a1a;
    --text: #e0e0e0;
    --dim: #888;
}

body { font-family: 'Raleway', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

nav {
    position: fixed; top: 0; width: 100%;
    padding: 20px 60px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}
nav img { height: 50px; }
nav ul { display: flex; gap: 40px; list-style: none; }
nav ul a { color: var(--dim); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: color .3s; }
nav ul a:hover, nav ul a.gold { color: var(--gold); }

.hero {
    height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; position: relative;
    background: radial-gradient(ellipse at center, #1a1200 0%, #000 70%);
    padding: 0 20px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.eyebrow { font-size: 11px; letter-spacing: 6px; color: var(--gold); text-transform: uppercase; margin-bottom: 30px; font-weight: 600; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px); line-height: 1.1; margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero > p { font-size: 15px; color: var(--dim); max-width: 560px; line-height: 1.9; margin-bottom: 50px; font-weight: 300; }

.btn {
    display: inline-block; padding: 18px 48px;
    border: 1px solid var(--gold); color: var(--gold);
    text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    transition: all .3s; position: relative; overflow: hidden; z-index: 0;
}
.btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); transition: transform .3s; z-index: -1; }
.btn:hover { color: #000; }
.btn:hover::before { transform: translateX(0); }

.scroll-hint { position: absolute; bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--dim); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.2} 50%{opacity:1} }

.ticker { background: var(--dark-3); border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 40s linear infinite; }
.tick { display: inline-block; margin: 0 40px; font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.tick .nm { color: var(--dim); margin-right: 8px; }
.up { color: #4caf92; }
.dn { color: #cf4c4c; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.label { font-size: 10px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.2; }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 30px 0; }

.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: #222; border: 1px solid #222; margin-top: 60px; }
.mcard { background: var(--dark-2); padding: 40px 30px; transition: background .3s; }
.mcard:hover { background: var(--dark-3); }
.micon { font-size: 28px; margin-bottom: 20px; }
.mcard h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; }
.mcard p { font-size: 13px; color: var(--dim); line-height: 1.7; font-weight: 300; }

.stats-wrap { background: var(--dark-2); border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 80px 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat h2 { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--gold); margin-bottom: 8px; }
.stat p { font-size: 11px; letter-spacing: 3px; color: var(--dim); text-transform: uppercase; }

.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.approach-text p { color: var(--dim); line-height: 1.9; font-size: 15px; font-weight: 300; margin-bottom: 20px; }
.feat { padding: 25px 0; border-bottom: 1px solid #1a1a1a; display: flex; gap: 20px; }
.feat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: #2a2a2a; min-width: 50px; line-height: 1; }
.feat h4 { font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.feat p { font-size: 13px; color: var(--dim); line-height: 1.6; font-weight: 300; }

.cta-wrap { background: linear-gradient(135deg, #0d0d00, #000); border-top: 1px solid #1a1a1a; padding: 120px 60px; text-align: center; }
.cta-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.cta-wrap > p { color: var(--dim); font-size: 15px; margin-bottom: 50px; font-weight: 300; }

footer { background: #000; border-top: 1px solid #1a1a1a; padding: 60px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
footer img { height: 40px; opacity: .7; }
.footer-address { font-size: 13px; color: var(--dim); line-height: 2; font-weight: 300; }
.footer-address strong { color: var(--gold); display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.footer-legal { font-size: 11px; color: #444; text-align: right; line-height: 1.8; }

@media (max-width: 768px) {
    nav { padding: 20px 24px; }
    nav ul { display: none; }
    section { padding: 60px 24px; }
    .approach-grid { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 40px 24px; flex-direction: column; }
    .footer-legal { text-align: left; }
}
