:root {
    --bg: #070b13;
    --panel: rgba(15, 22, 36, 0.72);
    --panel-strong: rgba(17, 25, 41, 0.92);
    --cyan: #58a6ff;
    --blue: #4e8cff;
    --purple: #8b6cff;
    --gold: #f4c563;
    --text: #eef5ff;
    --muted: #93a0b5;
    --line: rgba(117, 185, 255, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 76% 14%, rgba(41, 111, 214, 0.22), transparent 27%),
        radial-gradient(circle at 18% 42%, rgba(121, 70, 210, 0.12), transparent 30%),
        linear-gradient(180deg, #090f1c 0%, #070b13 42%, #090d17 100%);
}

.space-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .35;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(88,166,255,.55) 0 1px, transparent 1.5px);
    background-position: 0 0, 45px 65px;
    background-size: 120px 120px, 190px 190px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

h1, h2, h3 { margin-top: 0; font-family: 'Saira', sans-serif; line-height: 1.12; }
a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 72px;
    padding: 0 clamp(20px, 5vw, 84px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(7, 11, 19, .82);
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font: 700 19px/1 'Saira', sans-serif;
    text-decoration: none;
    letter-spacing: .01em;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: rotate(-10deg);
}

.brand-mark i { position: absolute; display: block; width: 18px; height: 3px; background: #fff; border-radius: 4px; }
.brand-mark i:first-child { transform: translateY(-6px) rotate(38deg); }
.brand-mark i:nth-child(2) { transform: rotate(-38deg); }
.brand-mark i:last-child { transform: translateY(6px) rotate(38deg); }
.brand-logo { display: block; width: 40px; height: 40px; object-fit: contain; }

nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 38px); }
nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}
nav a:hover, nav .nav-current { color: #fff; }
.nav-current { position: relative; }
.nav-current::after { content: ''; position: absolute; height: 2px; left: 0; right: 0; bottom: -25px; background: var(--cyan); }
nav .nav-cta { padding: 10px 17px; color: #fff; border: 1px solid rgba(88,166,255,.45); border-radius: 999px; background: rgba(88,166,255,.08); }

main { overflow: hidden; }
.hero {
    width: min(1420px, 100%);
    min-height: 680px;
    margin: 0 auto;
    padding: 108px clamp(24px, 7vw, 108px) 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.hero-copy { max-width: 820px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan);
    font: 700 12px/1.2 'Saira', sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.signal-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 14px var(--cyan); }
.hero h1 { margin: 22px 0 24px; font-size: clamp(48px, 6vw, 86px); letter-spacing: -.045em; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(100deg, #fff 5%, var(--cyan) 48%, #889eff 90%); -webkit-background-clip: text; background-clip: text; }
.hero h1 .hero-kicker { color: #fff; background: none; font-size: .8em; white-space: nowrap; }
.hero-copy .hero-subheadline {
    margin: 18px 0 -10px;
    color: #f5f7fc;
    font: 700 clamp(22px, 2.4vw, 34px) 'Saira';
    line-height: 1.2;
    letter-spacing: -.015em;
}
.hero-copy > p { max-width: 720px; color: #b3bfd0; font-size: clamp(17px, 1.5vw, 21px); }
.v4v-inline-link { color: inherit; text-decoration-color: #42a5ff; text-decoration-thickness: 2px; text-underline-offset: 4px; transition: color .18s ease, text-decoration-color .18s ease; }
.v4v-inline-link:hover, .v4v-inline-link:focus-visible { color: #73baff; text-decoration-color: #73baff; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid rgba(83,216,255,.55);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,190,240,.28), rgba(92,91,238,.3));
    box-shadow: inset 0 1px rgba(255,255,255,.15), 0 9px 30px rgba(0,145,220,.18);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.text-link { color: #c4cede; font-weight: 600; text-decoration: none; }
.text-link span { color: var(--cyan); }

.glass-panel {
    background: linear-gradient(145deg, rgba(26,38,60,.76), rgba(8,14,25,.76));
    border: 1px solid rgba(101,178,255,.24);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.08);
}

.hero-com-card { margin: 0; overflow: hidden; border-radius: 30px; }
.hero-com-image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.hero-com-image::after { content: ''; position: absolute; inset: 78% 0 0; background: linear-gradient(transparent, rgba(7,13,23,.72)); pointer-events: none; }
.hero-com-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-com-card figcaption { position: relative; margin-top: 0; padding: 24px 30px 30px; }
.hero-com-card h2 { margin: 8px 0 7px; font-size: 35px; }
.hero-com-card p { margin: 0; color: #b9c5d6; font-size: 13px; line-height: 1.55; }

.contribute-section { width: min(1480px, 100%); margin: 0 auto; padding: 0 clamp(22px, 5vw, 76px) 50px; }
.contribute-panel { position: relative; padding: clamp(28px, 3.4vw, 46px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); align-items: center; gap: clamp(36px, 6vw, 90px); overflow: hidden; border-color: rgba(38,172,255,.58); border-radius: 27px; background: linear-gradient(125deg, rgba(8,35,61,.9), rgba(9,24,42,.93) 48%, rgba(6,14,27,.96)); box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 0 34px rgba(0,145,255,.08), inset 0 1px rgba(255,255,255,.08); }
.contribute-panel::before { content: ''; position: absolute; inset: -80% auto auto 22%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(0,174,255,.17), transparent 68%); pointer-events: none; }
.contribute-intro, .contribute-actions { position: relative; }
.contribute-intro h2 { margin: 11px 0 10px; font-size: clamp(29px, 3vw, 43px); letter-spacing: -.025em; }
.contribute-intro p { max-width: 650px; margin: 0 0 18px; color: #bac6d5; font-size: 14px; line-height: 1.65; }
.contribute-actions { display: grid; gap: 11px; }
.payment-label { color: #9db0c8; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.frequency-options { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.payment-choice, .amount-options button { min-height: 35px; border: 1px solid rgba(73,187,255,.3); border-radius: 8px; color: #c9d8e8; background: rgba(3,16,29,.62); font: 700 11px 'Inter'; cursor: pointer; }
.payment-choice.is-selected, .amount-options button.is-selected { border-color: rgba(88,166,255,.72); color: #fff; background: rgba(0,156,225,.2); box-shadow: inset 0 0 18px rgba(0,174,255,.1); }
.amount-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.amount-options button { min-height: 32px; }
.contribute-actions .checkout-button { width: 100%; min-height: 47px; margin-top: 2px; cursor: pointer; font: 700 12px 'Inter'; text-align: center; }
.contribute-actions .checkout-button:disabled { cursor: wait; opacity: .68; }
.custom-amount { display: grid; gap: 6px; color: #92a6bb; font: 700 10px 'Inter'; text-transform: uppercase; letter-spacing: .08em; }
.custom-amount[hidden] { display: none; }
.custom-amount input { width: 100%; min-height: 39px; padding: 0 12px; border: 1px solid rgba(73,187,255,.4); border-radius: 8px; color: #f4f8ff; background: rgba(3,16,29,.7); font: 600 13px 'Inter'; outline: none; }
.custom-amount input:focus { border-color: #46bfff; box-shadow: 0 0 0 2px rgba(35,153,255,.16); }
.contribution-status { min-height: 18px; margin: 0; color: #75cfff; font: 600 11px/1.45 'Inter'; }
.contribute-actions small { color: var(--muted); font-size: 10px; line-height: 1.4; text-align: center; }

.commission-label { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.support-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid rgba(255,255,255,.07);
    background: rgba(7,12,21,.72);
}
.support-band div { padding: 25px 3vw; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.support-band div:last-child { border-right: 0; }
.support-band strong, .support-band span { display: block; }
.support-band strong { font-family: 'Saira'; font-size: 16px; }
.support-band span { color: var(--muted); font-size: 12px; }

.spread-section, .rank-section, .talent-section, .v4v-credit { width: min(1480px, 100%); margin: 0 auto; padding: 105px clamp(22px, 5vw, 76px); }
.section-heading { margin-bottom: 44px; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 50px; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(34px, 4.2vw, 58px); letter-spacing: -.025em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; }
.earning-path-heading { margin-bottom: 9px; }
.earning-path-heading strong { color: transparent; background: linear-gradient(100deg, #fff 4%, var(--cyan) 58%, #718dff); -webkit-background-clip: text; background-clip: text; font: 700 clamp(38px, 4vw, 58px)/.95 'Saira'; letter-spacing: -.025em; }
.earning-path-heading + h2 { font-size: clamp(28px, 3.1vw, 43px); line-height: 1.08; }

.academy-section, .talent-section, .recognition-section { border-top: 1px solid rgba(88,166,255,.2); }
.academy-section { padding-top: 90px; }
.talent-section, .recognition-section { padding-top: 82px; }

.spread-section { padding-top: 72px; padding-bottom: 28px; }
.spread-callout { padding: clamp(28px, 4vw, 52px); border: 1px solid rgba(88,166,255,.28); border-radius: 26px; background: linear-gradient(135deg, rgba(8,37,53,.76), rgba(8,13,24,.9) 58%, rgba(50,35,15,.4)); }
.spread-copy { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 48px; }
.spread-copy h2 { margin: 13px 0 0; font-size: clamp(34px, 4vw, 54px); letter-spacing: -.025em; }
.spread-copy p { margin: 0; color: #bac7d8; font-size: 15px; line-height: 1.7; }
.spread-actions { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; }
.spread-actions div { padding: 22px; border-right: 1px solid rgba(255,255,255,.08); background: rgba(3,10,18,.43); }
.spread-actions div:last-child { border-right: 0; }
.spread-actions strong, .spread-actions span { display: block; }
.spread-actions strong { margin-bottom: 7px; color: #fff; font: 700 17px 'Saira'; }
.spread-actions span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.spread-note { margin: 19px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.rank-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.academy-section { padding-bottom: 70px; }
.recognition-section { padding-top: 70px; border-top: 1px solid rgba(255,255,255,.07); }
.academy-card { min-height: 300px; }
.academy-card h3 { font-size: 21px; }
.academy-card .rank-image {
    display: block;
    width: 156px;
    height: 156px;
    margin: 20px auto 8px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.34));
}
.academy-graduate { border-color: rgba(244,197,99,.48); background: linear-gradient(160deg, rgba(50,43,33,.78), rgba(10,16,28,.94)); }
.recognition-section .rank-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.concept-sheet { margin: 42px 0 0; overflow: hidden; border: 1px solid rgba(244,197,99,.28); border-radius: 24px; background: #07090b; box-shadow: 0 25px 60px rgba(0,0,0,.32); }
.concept-sheet img { display: block; width: 100%; height: auto; }
.concept-sheet figcaption { padding: 16px 21px 18px; color: var(--muted); font-size: 12px; }
.concept-sheet figcaption span { margin-right: 10px; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.master-com-block { margin-top: 20px; padding: 24px 28px; display: flex; align-items: center; gap: 28px; border: 1px solid rgba(244,197,99,.32); border-radius: 22px; background: linear-gradient(135deg, rgba(40,31,20,.72), rgba(8,13,22,.88)); }
.master-com-block img { flex: 0 0 170px; width: 170px; height: 170px; border-radius: 50%; object-fit: cover; }
.master-com-block h3 { margin: 9px 0 5px; font-size: 31px; }
.master-com-block p { max-width: 720px; margin: 0; color: var(--muted); }
.rank-card {
    position: relative;
    min-height: 330px;
    padding: 21px 19px 24px;
    overflow: hidden;
    border: 1px solid rgba(123,169,220,.17);
    border-radius: 19px;
    background: linear-gradient(160deg, rgba(20,29,46,.8), rgba(8,13,23,.9));
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.rank-card:hover { transform: translateY(-5px); border-color: rgba(88,166,255,.45); box-shadow: 0 20px 45px rgba(0,0,0,.34); }
.rank-card::after { content: ''; position: absolute; inset: auto -30% -45% -30%; height: 65%; background: radial-gradient(ellipse, rgba(0,147,255,.13), transparent 66%); pointer-events: none; }
.rank-topline { display: flex; justify-content: space-between; gap: 10px; color: #72829a; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rank-topline span:last-child { color: var(--cyan); letter-spacing: .04em; }
.rank-card h3 { margin: 17px 0 9px; font-size: 24px; }
.rank-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.rank-card.featured { border-color: rgba(244,197,99,.48); background: linear-gradient(160deg, rgba(50,43,33,.78), rgba(10,16,28,.94)); box-shadow: 0 20px 55px rgba(244,170,60,.08); }
.feature-flag { position: absolute; top: 0; right: 0; padding: 5px 11px; color: #211604; background: var(--gold); border-radius: 0 18px 0 12px; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rank-captain .rank-topline { padding-top: 14px; }
.rank-fleet { border-color: rgba(139,108,255,.42); }

.recognition-image {
    display: block;
    width: 176px;
    height: 176px;
    margin: 21px auto 8px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.42));
}

.recognition-card, .recognition-grid .rank-card { display: flex; flex-direction: column; }
.recognition-grid .rank-card p { flex: 1; }
.rank-contribute, .secondary-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(88,166,255,.42);
    border-radius: 9px;
    color: #eafaff;
    background: rgba(0,180,255,.09);
    font: 700 12px 'Saira';
    text-decoration: none;
}
.rank-contribute:hover, .secondary-button:hover { border-color: var(--cyan); background: rgba(88,166,255,.16); }
.recognition-note, .talent-note { margin: 22px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.talent-section { border-top: 1px solid rgba(255,255,255,.07); }
.talent-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.talent-panel { padding: 30px; border-radius: 22px; }
.talent-list { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.talent-list div { padding: 17px; border: 1px solid rgba(123,169,220,.15); border-radius: 13px; background: rgba(7,13,23,.44); }
.talent-list strong, .talent-list span { display: block; }
.talent-list strong { margin-bottom: 6px; color: #f4f7fc; font: 700 15px 'Saira'; }
.talent-list span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.talent-process ol { margin: 23px 0 0; padding: 0; list-style: none; counter-reset: talent-step; }
.talent-process li { position: relative; min-height: 52px; margin: 0 0 16px; padding-left: 50px; counter-increment: talent-step; }
.talent-process li::before { content: counter(talent-step); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(88,166,255,.42); border-radius: 50%; color: var(--cyan); font: 700 13px 'Saira'; }
.talent-process b, .talent-process span { display: block; }
.talent-process b { margin-bottom: 3px; color: #fff; font: 700 15px 'Saira'; }
.talent-process span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.talent-process .secondary-button { width: 100%; }
.talent-marketplace { margin-top: 18px; padding: 30px; border-radius: 22px; }
.talent-marketplace-intro { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); column-gap: 48px; align-items: end; }
.talent-marketplace-intro .eyebrow { grid-column: 1; }
.talent-marketplace-intro h3 { grid-column: 1; margin: 10px 0 0; color: #fff; font-size: clamp(25px, 2.35vw, 36px); line-height: 1.08; }
.talent-marketplace-intro p { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.talent-marketplace-steps { margin-top: 26px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.talent-marketplace-steps > div { min-height: 132px; padding: 20px; display: grid; grid-template-columns: 32px 1fr; align-content: start; gap: 12px; border-right: 1px solid var(--line); background: rgba(7,13,23,.44); }
.talent-marketplace-steps > div:last-child { border-right: 0; }
.talent-marketplace-steps b { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(88,166,255,.42); border-radius: 50%; color: var(--cyan); font: 700 13px 'Saira'; }
.talent-marketplace-steps strong, .talent-marketplace-steps span { display: block; }
.talent-marketplace-steps strong { margin-bottom: 5px; color: #fff; font: 700 15px 'Saira'; }
.talent-marketplace-steps span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.talent-marketplace-footer { margin-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.talent-marketplace-footer p { max-width: 920px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.talent-marketplace-footer span { flex: 0 0 auto; color: var(--cyan); font: 700 11px 'Saira'; letter-spacing: .16em; }
.talent-awards { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.talent-awards div { padding: 19px; text-align: center; border-right: 1px solid var(--line); background: rgba(8,15,26,.68); }
.talent-awards div:last-child { border-right: 0; }
.talent-awards strong, .talent-awards span { display: block; }
.talent-awards strong { color: var(--cyan); font: 700 17px 'Saira'; }
.talent-awards span { margin-top: 4px; color: var(--muted); font-size: 11px; }

.insignia {
    position: relative;
    width: 108px;
    height: 108px;
    margin: 28px auto 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding-bottom: 18px;
    border: 1px solid rgba(88,166,255,.25);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,139,213,.19), rgba(6,13,24,.25) 60%, transparent 62%);
    box-shadow: inset 0 0 24px rgba(88,166,255,.07), 0 0 25px rgba(0,112,255,.06);
}
.insignia::before, .insignia::after { content: ''; position: absolute; border: 1px solid rgba(88,144,255,.3); border-radius: 50%; }
.insignia::before { inset: 21px; transform: rotate(35deg) scaleY(.42); }
.insignia::after { inset: 21px; transform: rotate(-35deg) scaleY(.42); }
.insignia b { position: absolute; top: 34px; left: 50%; width: 29px; height: 29px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: radial-gradient(circle at 35% 28%, #7deaff, #1763bc 52%, #081326 74%); box-shadow: 0 0 16px rgba(88,166,255,.45); }
.insignia i { position: relative; z-index: 2; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px rgba(88,166,255,.8); }
.insignia em { position: absolute; top: 15px; width: 48px; height: 4px; border-radius: 9px; background: linear-gradient(90deg, transparent, var(--gold), transparent); box-shadow: 0 0 12px rgba(244,197,99,.5); }
.admiral-insignia { border-color: rgba(244,197,99,.33); }
.admiral-insignia i, .fleet-insignia i { background: var(--gold); box-shadow: 0 0 9px rgba(244,197,99,.8); }
.chancellor-insignia { border-color: rgba(139,108,255,.55); box-shadow: inset 0 0 30px rgba(139,108,255,.14), 0 0 30px rgba(139,108,255,.12); }
.chancellor-insignia i { background: #ad92ff; box-shadow: 0 0 9px rgba(173,146,255,.8); }
.fleet-insignia { width: 116px; height: 116px; border: 1px solid rgba(139,108,255,.55); box-shadow: inset 0 0 30px rgba(139,108,255,.14), 0 0 30px rgba(139,108,255,.12); }
.badge-insignia { width: 94px; height: 94px; border-style: dashed; }
.badge-insignia b { top: 31px; width: 24px; height: 24px; filter: saturate(.6); }
.rank-earned { border-color: rgba(88,166,255,.34); }
.rank-current { box-shadow: 0 0 0 2px var(--cyan), 0 18px 50px rgba(0,184,255,.17); transform: translateY(-4px); }

.track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.track-card { padding: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(88,166,255,.025), transparent); }
.track-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 21px; color: var(--cyan); border: 1px solid rgba(88,166,255,.35); border-radius: 12px; background: rgba(88,166,255,.07); }
.track-card h3 { margin-bottom: 8px; font-size: 24px; }
.track-card p { margin: 0; color: var(--muted); font-size: 14px; }
.v4v-credit { padding-top: 25px; padding-bottom: 80px; }
.v4v-credit-card { width: 100%; box-sizing: border-box; margin: 0 auto; padding: clamp(30px, 4.5vw, 58px); border-radius: 24px; text-align: left; }
.v4v-credit-card > .eyebrow { display: block; text-align: center; }
.v4v-credit-card h2 { max-width: 920px; margin: 13px auto 18px; font-size: clamp(30px, 3.4vw, 46px); text-align: center; }
.v4v-credit-card p { color: #b8c5d6; font-size: 14px; line-height: 1.75; }
.v4v-credit-card .v4v-credit-intro { max-width: 850px; margin: 0 auto 30px; text-align: center; }
.v4v-paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(87, 151, 221, .24); border-radius: 18px; overflow: hidden; background: rgba(3, 12, 25, .3); }
.v4v-paths article { min-height: 190px; padding: 26px; border-right: 1px solid rgba(87, 151, 221, .2); }
.v4v-paths article:last-child { border-right: 0; }
.v4v-paths article > span { color: #51aaff; font: 700 10px 'Saira'; letter-spacing: .15em; }
.v4v-paths h3 { margin: 10px 0 8px; font-size: 25px; }
.v4v-paths p { margin: 0; color: #9eacc0; font-size: 13px; line-height: 1.65; }
.v4v-credit-card .v4v-credit-source { max-width: 900px; margin: 28px auto 0; text-align: center; }
.v4v-credit-card a { color: var(--cyan); font-weight: 600; }
.v4v-credit-card .v4v-credit-note { max-width: 900px; margin: 16px auto 0; color: var(--muted); font-size: 11px; text-align: center; }

/* Complete rank ladder */
.contribute-section-primary { padding-top: 34px; padding-bottom: 38px; }
.amount-options-primary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rank-overview-section {
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 58px clamp(22px, 5vw, 76px) 52px;
}
.rank-overview-heading {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 28px;
}
.rank-overview-heading h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 56px); }
.rank-overview-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.rank-table-wrap { overflow-x: auto; border-radius: 24px; }
.rank-table {
    width: 100%;
    min-width: 990px;
    border-collapse: collapse;
    color: #eaf0f8;
    background: rgba(6, 12, 22, .5);
}
.rank-table th,
.rank-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(123, 169, 220, .14);
    text-align: left;
    vertical-align: middle;
}
.rank-table thead th {
    color: #9fb1c7;
    background: rgba(7, 13, 24, .93);
    font: 700 10px 'Saira';
    letter-spacing: .1em;
    text-transform: uppercase;
}
.rank-table td { color: var(--muted); font-size: 12px; line-height: 1.45; }
.rank-table td:first-child { width: 92px; }
.rank-table td:nth-child(2) { width: 190px; }
.rank-table td:nth-child(4) { width: 180px; }
.rank-table td:nth-child(5) { width: 185px; }
.rank-table td strong,
.rank-table td span { display: block; }
.rank-table td strong { color: #f5f7fb; font: 700 15px 'Saira'; }
.rank-table img {
    display: block;
    width: 66px;
    height: 66px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .38));
}
.rank-table-group th { padding: 18px 20px; }
.rank-table-group strong,
.rank-table-group span { display: block; }
.rank-table-group strong { color: #fff; font: 700 18px 'Saira'; }
.rank-table-group span { margin-top: 3px; color: #aab7c8; font: 400 12px 'Inter'; }
.academy-group th,
.recognition-group th { background: linear-gradient(90deg, rgba(52, 83, 116, .48), rgba(16, 27, 43, .82)); }
.academy-row { background: rgba(31, 54, 79, .16); }
.academy-row:nth-of-type(even) { background: rgba(47, 67, 90, .21); }
.command-rank { background: rgba(7, 13, 23, .72); }
.command-rank:nth-of-type(even) { background: rgba(15, 24, 38, .78); }
.featured-row { background: linear-gradient(90deg, rgba(90, 63, 23, .35), rgba(12, 33, 54, .72)); }
.high-rank { background: linear-gradient(90deg, rgba(68, 46, 110, .25), rgba(14, 22, 38, .8)); }
.earned-path { color: #8fbad9; font-weight: 700; }
.table-rank-note { margin-top: 3px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.table-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(69, 147, 255, .68);
    border-radius: 10px;
    color: #eff7ff;
    background: linear-gradient(135deg, rgba(15, 111, 190, .28), rgba(53, 77, 158, .28));
    font: 700 11px 'Saira';
    text-decoration: none;
}
.table-donate:hover { border-color: #67aaff; background: rgba(42, 126, 222, .3); }
.table-donate.primary-button { min-height: 42px; margin: 0; padding: 9px 15px; }
.time-path-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 20px;
}
.time-path-summary div { padding: 24px; border-right: 1px solid rgba(123, 169, 220, .15); }
.time-path-summary div:last-child { border-right: 0; }
.time-path-summary strong,
.time-path-summary span { display: block; }
.time-path-summary strong { margin-bottom: 7px; color: #f4f7fc; font: 700 15px 'Saira'; }
.time-path-summary span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.time-path-title span { display: block; }
.time-missions-note { display: flex; flex-direction: column; align-items: stretch; gap: 18px; margin-top: 18px; padding: 24px; text-align: left; }
.time-missions-note > span { align-self: flex-end; color: #67aaff; font: 700 11px 'Saira'; letter-spacing: .14em; text-align: right; }
.time-missions-note h3 { margin: 0 0 8px; color: #f4f7fc; font-size: 21px; }
.time-missions-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.badge-preview-trigger { cursor: zoom-in; transition: transform .2s ease, filter .2s ease; }
.badge-preview-trigger:hover,
.badge-preview-trigger:focus-visible { transform: scale(1.08); filter: drop-shadow(0 10px 18px rgba(61, 148, 255, .36)); outline: none; }
body.badge-preview-open { overflow: hidden; }
.badge-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(2, 7, 14, .88);
    backdrop-filter: blur(14px);
}
.badge-lightbox[hidden] { display: none; }
.badge-lightbox-card {
    width: min(620px, 92vw);
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(69, 147, 255, .55);
    border-radius: 26px;
    background: radial-gradient(circle at 50% 35%, rgba(34, 78, 125, .42), rgba(5, 11, 21, .97) 68%);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .7), 0 0 46px rgba(40, 130, 255, .14);
    text-align: center;
}
.badge-lightbox-card img {
    display: block;
    width: min(430px, 76vw);
    height: min(430px, 76vw);
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .55));
}
.badge-lightbox-card h2 { margin: 16px 0 0; font-size: clamp(25px, 4vw, 38px); }
.badge-lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(96, 167, 255, .5);
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 18, 32, .9);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.badge-lightbox-close:hover,
.badge-lightbox-close:focus-visible { border-color: #67aaff; background: rgba(28, 71, 122, .9); outline: none; }

.closing-section { padding: 100px 22px 120px; text-align: center; border-top: 1px solid rgba(255,255,255,.07); background: radial-gradient(circle at 50% 0, rgba(0,149,255,.11), transparent 50%); }
.closing-section h2 { max-width: 950px; margin: 18px auto; font-size: clamp(34px, 4.4vw, 58px); }
.closing-section p { max-width: 760px; margin: 0 auto 31px; color: var(--muted); }
footer { min-height: 110px; padding: 25px clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.07); color: var(--muted); font-size: 12px; }
.brand-small { font-size: 15px; }
.brand-small .brand-mark { width: 28px; height: 28px; transform: scale(.8) rotate(-10deg); }
.brand-small .brand-logo { width: 30px; height: 30px; }

@media (max-width: 1180px) {
    .rank-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .recognition-section .rank-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero { grid-template-columns: 1fr .65fr; gap: 44px; }
    .contribute-panel { grid-template-columns: minmax(0, 1fr) minmax(280px, 320px); }
}

@media (max-width: 860px) {
    nav a:not(.nav-current):not(.nav-cta) { display: none; }
    .hero { min-height: auto; padding-top: 76px; grid-template-columns: 1fr; }
    .hero-com-card { width: min(500px, 100%); margin: 0 auto; }
    .contribute-panel { grid-template-columns: 1fr; }
    .contribute-actions { grid-column: auto; }
    .support-band { grid-template-columns: repeat(3, 1fr); }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .spread-copy { grid-template-columns: 1fr; gap: 18px; }
    .spread-actions { grid-template-columns: repeat(2, 1fr); }
    .spread-actions div:nth-child(2) { border-right: 0; }
    .spread-actions div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .rank-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .recognition-section .rank-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .talent-layout { grid-template-columns: 1fr; }
    .talent-marketplace-intro { grid-template-columns: 1fr; }
    .talent-marketplace-intro .eyebrow, .talent-marketplace-intro h3, .talent-marketplace-intro p { grid-column: 1; grid-row: auto; }
    .talent-marketplace-intro p { margin-top: 16px; }
    .talent-marketplace-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .talent-marketplace-steps > div:nth-child(2) { border-right: 0; }
    .talent-marketplace-steps > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .talent-awards { grid-template-columns: repeat(2, 1fr); }
    .talent-awards div:nth-child(2) { border-right: 0; }
    .talent-awards div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .track-grid { grid-template-columns: 1fr; }
    .rank-overview-heading { grid-template-columns: 1fr; gap: 16px; }
    .time-path-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .time-path-summary div:nth-child(2) { border-right: 0; }
    .time-path-summary div:nth-child(-n+2) { border-bottom: 1px solid rgba(123, 169, 220, .15); }
    .time-missions-note { gap: 14px; }
}

@media (max-width: 560px) {
    .site-header { min-height: 64px; padding-inline: 16px; }
    .brand { font-size: 15px; }
    .brand-mark { width: 30px; height: 30px; }
    .nav-current { display: none; }
    nav .nav-cta { padding: 8px 12px; font-size: 12px; }
    .hero { padding: 58px 20px 65px; }
    .hero h1 { font-size: clamp(42px, 13vw, 62px); }
    .hero h1 .hero-kicker { white-space: normal; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .support-band { grid-template-columns: 1fr; }
    .support-band div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
    .contribute-section, .spread-section, .rank-section, .rank-overview-section, .talent-section, .v4v-credit { padding-left: 16px; padding-right: 16px; }
    .contribute-actions { grid-template-columns: 1fr; }
    .contribute-actions small { grid-column: auto; }
    .rank-grid { grid-template-columns: 1fr; }
    .recognition-section .rank-grid { grid-template-columns: 1fr; }
    .talent-list, .talent-awards { grid-template-columns: 1fr; }
    .talent-marketplace { padding: 22px; }
    .talent-marketplace-steps { grid-template-columns: 1fr; }
    .talent-marketplace-steps > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .talent-marketplace-steps > div:last-child { border-bottom: 0; }
    .talent-marketplace-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
    .v4v-paths { grid-template-columns: 1fr; }
    .v4v-paths article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(87, 151, 221, .2); }
    .v4v-paths article:last-child { border-bottom: 0; }
    .spread-actions { grid-template-columns: 1fr; }
    .spread-actions div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .spread-actions div:last-child { border-bottom: 0; }
    .talent-awards div { border-right: 0; border-bottom: 1px solid var(--line); }
    .talent-awards div:last-child { border-bottom: 0; }
    .rank-card { min-height: 300px; }
    .academy-card .rank-image { width: 142px; height: 142px; margin-top: 18px; }
    output { text-align: left; }
    .master-com-block { align-items: flex-start; flex-direction: column; }
    .time-path-summary { grid-template-columns: 1fr; }
    .time-path-summary div { border-right: 0; border-bottom: 1px solid rgba(123, 169, 220, .15); }
    .time-path-summary div:last-child { border-bottom: 0; }
    footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
