:root {
    --navy-900: #060b1a;
    --navy-800: #0a1024;
    --navy-700: #0d1730;
    --navy-600: #122044;
    --panel: rgba(17, 30, 60, 0.72);
    --panel-solid: #101c38;
    --line: rgba(245, 182, 42, 0.18);
    --gold: #f5b62a;
    --gold-2: #ffd166;
    --gold-soft: rgba(245, 182, 42, 0.12);
    --ink: #eaf0fb;
    --muted: #93a1c2;
    --green: #38d39f;
    --red: #ff6b6b;
    --radius: 16px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 700px at 80% -10%, #14224a 0%, transparent 55%),
                radial-gradient(900px 600px at 0% 20%, #0f1c3e 0%, transparent 50%),
                linear-gradient(180deg, var(--navy-900), var(--navy-800));
    min-height: 100vh;
    line-height: 1.55;
    position: relative;
    overflow-x: hidden;
}

.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-orbs span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.bg-orbs span:nth-child(1) { width: 400px; height: 400px; background: #1c3a7a; top: -120px; right: -80px; }
.bg-orbs span:nth-child(2) { width: 320px; height: 320px; background: rgba(245,182,42,0.18); bottom: 10%; left: -100px; }
.bg-orbs span:nth-child(3) { width: 280px; height: 280px; background: #16306b; top: 40%; right: 10%; }

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 1;
}

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(7, 12, 27, 0.7);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--ink);
}

.brand__logo { height: 64px; width: auto; display: block; }
.brand__logo--sm { height: 44px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s;
}

.btn:hover { transform: translateY(-1px); }
.btn--gold { background: linear-gradient(145deg, var(--gold-2), var(--gold)); color: #1a1300 !important; box-shadow: 0 10px 26px rgba(245,182,42,0.32); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--gold-soft); }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 17px; }

/* Typography helpers */
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; }
.muted { color: var(--muted); }
.h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; }
.h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.6px; }
.gold-text { background: linear-gradient(120deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Panels */
.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

/* Hero */
.hero { text-align: center; padding: 70px 0 50px; }
.hero .eyebrow { display: inline-block; margin-bottom: 16px; }
.hero p.lead { color: var(--muted); font-size: 19px; max-width: 660px; margin: 18px auto 30px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.pill-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.pill { background: var(--gold-soft); border: 1px solid var(--line); color: var(--gold-2); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; }

/* Sections */
.section { padding: 40px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 10px; }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.value-card__title { font-size: 20px; font-weight: 800; margin: 8px 0 8px; }

/* Scenarios table */
.scenarios { overflow-x: auto; border-radius: var(--radius); }
.scenarios table { width: 100%; border-collapse: separate; border-spacing: 0 8px; min-width: 680px; }
.scenarios th { color: var(--gold); text-transform: uppercase; font-size: 13px; letter-spacing: .5px; padding: 10px 14px; text-align: center; }
.scenarios th small { display: block; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.scenarios td { background: rgba(220, 226, 240, 0.92); color: #16223d; font-weight: 800; text-align: center; padding: 13px 14px; }
.scenarios tr td:first-child { border-radius: 10px 0 0 10px; background: linear-gradient(145deg, var(--gold-2), var(--gold)); color: #1a1300; }
.scenarios tr td:last-child { border-radius: 0 10px 10px 0; }
.scenarios tbody tr:hover td { filter: brightness(1.05); }
.scenarios__note { font-size: 12.5px; margin-top: 14px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 10px; }
.feature { text-align: center; padding: 22px 16px; }
.feature .ic { font-size: 26px; }
.feature h4 { color: var(--gold-2); margin: 10px 0 4px; font-size: 15px; letter-spacing: .5px; }
.feature p { color: var(--muted); font-size: 13.5px; }

/* CTA band */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.cta-band .muted { margin-top: 6px; }

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    color: var(--muted);
    position: relative;
    z-index: 1;
}
.footer .brand { justify-content: center; margin-bottom: 8px; }
.footer p { font-size: 13px; }

@media (max-width: 880px) {
    .grid--3 { grid-template-columns: 1fr; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .nav__links a:not(.btn) { display: none; }
    .cta-band { flex-direction: column; align-items: flex-start; }
}
