:root {
    --primary-purple: #420420;
    --dusty-lavender: #7a6c80;
    --pink-orchid: #d6a6b8;
    --charcoal: #625d5d;
    --gold-accent: #FFD700;
    --white: #ffffff;
    --dark-bg: #0A0E14;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --emerald: #10B981;
    --sky: #57C7FF;
    --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.35);
    --gradient-primary: linear-gradient(135deg, #420420 0%, #7a6c80 100%);
    --gradient-accent: linear-gradient(135deg, #d6a6b8 0%, #FFD700 100%);
    --gradient-bg: linear-gradient(180deg, #0A0E14 0%, #161328 45%, #0A0E14 100%);
    --font-heading: 'Orbitron', 'Noto Serif Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--gradient-bg);
    color: #eef2ff;
    line-height: 1.65;
}
a { color: var(--gold-accent); text-decoration: none; }
a:hover { color: var(--pink-orchid); }
img { max-width: 100%; display: block; }
.skip-link {
    position: absolute;
    left: 12px;
    top: -44px;
    padding: 12px 16px;
    background: var(--gold-accent);
    color: #0A0E14;
    border-radius: 8px;
    z-index: 200;
    font-weight: 700;
}
.skip-link:focus { top: 12px; }
.site-shell { min-height: 100vh; }
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,215,0,0.25);
    background: linear-gradient(180deg, rgba(10,14,20,0.95), rgba(42,18,56,0.88));
}
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.brand-lockup img { width: 44px; height: 44px; }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.nav-menu a {
    color: #e5e7eb;
    font-size: 0.95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.nav-menu a:hover,
.nav-menu a[aria-current='page'] { border-bottom-color: var(--gold-accent); color: var(--gold-accent); }
.hero-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 32px;
    padding: 72px 0 48px;
}
.hero-copy h1 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.08;
}
.hero-copy .eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--gold-accent);
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    margin-bottom: 18px;
    font-weight: 700;
}
.hero-copy p {
    margin: 0 0 14px;
    color: #c9d2e3;
    font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
}
.btn-primary { background: var(--gold-accent); color: #0A0E14; }
.btn-secondary { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.15); }
.hero-visual {
    background: radial-gradient(circle at top right, rgba(255,215,0,0.15), transparent 48%), rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}
.section { padding: 30px 0 64px; }
.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin: 0 0 18px;
}
.section-intro { max-width: 780px; color: #c9d2e3; margin-bottom: 24px; }
.grid-3, .grid-4, .grid-2 {
    display: grid;
    gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-md);
}
.card h3 { margin: 0 0 12px; color: var(--gold-accent); font-size: 1.15rem; }
.card p, .card li { color: #dbe3ef; }
.card ul { margin: 0; padding-left: 18px; }
.highlight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.highlight {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.highlight strong { display: block; color: var(--gold-accent); font-size: 1.4rem; }
.visual-banner {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}
.policy-block {
    border-left: 4px solid var(--emerald);
    background: rgba(16,185,129,0.08);
    padding: 18px 20px;
    border-radius: 16px;
    margin: 16px 0;
}
.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 34px 0 48px;
    background: rgba(5,8,14,0.7);
}
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 24px; }
.footer h3 { margin-top: 0; color: var(--gold-accent); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(87,199,255,0.12);
    border: 1px solid rgba(87,199,255,0.3);
    color: #b7ecff;
    font-size: 0.92rem;
    font-weight: 700;
}
.asset-grid img { border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.inline-note { color: #b7bfd2; font-size: 0.95rem; }
@media (max-width: 980px) {
    .hero-panel, .grid-2, .grid-3, .grid-4, .highlight-strip, .footer-grid { grid-template-columns: 1fr; }
}
