/* ============================================================
   ASVAB.CSS — ASVAB Study Sessions Page
   Space Force × Meisha Vernell
   Imports alongside main.css — never overrides global nav styles
   ============================================================ */


/* ============================================================
   PAGE LEVEL
   main.css sets body to overflow-x: hidden, min-height: 100vh
   This page is vertically scrollable (unlike index.html which
   is overflow: hidden). No override needed — main.css is correct.
   ============================================================ */

/* Starfield fixed behind everything */
.starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* All page sections sit above the canvas */
.asvab-hero,
.mission-brief,
.briefing-structure,
.curriculum-section,
.register-section,
.asvab-footer,
.auth-overlay,
.dashboard-overlay {
    position: relative;
    z-index: 1;
}

/* Vignette sits above canvas but below content */
.vignette { z-index: 2; }
.noise    { z-index: 3; }
.nav      { z-index: 1000; }


/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   Elements with [data-animate] start invisible, fade in on scroll
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger hero children */
.hero-inner [data-animate]:nth-child(1) { transition-delay: 0.1s; }
.hero-inner [data-animate]:nth-child(2) { transition-delay: 0.25s; }
.hero-inner [data-animate]:nth-child(3) { transition-delay: 0.4s; }
.hero-inner [data-animate]:nth-child(4) { transition-delay: 0.55s; }
.hero-inner [data-animate]:nth-child(5) { transition-delay: 0.7s; }
.hero-inner [data-animate]:nth-child(6) { transition-delay: 0.85s; }
.hero-inner [data-animate]:nth-child(7) { transition-delay: 1.0s; }


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.3rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    opacity: 0.85;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.08rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-sub {
    font-size: 0.85rem;
    color: var(--light-gray);
    font-weight: 300;
    line-height: 1.85;
    max-width: 680px;
    margin-bottom: 3rem;
    letter-spacing: 0.02rem;
}

/* Gold accent rule under section titles */
.brief-rule {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 2.5rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.asvab-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 130px 40px 90px;
    text-align: center;
}

.hero-inner {
    max-width: 860px;
    width: 100%;
}

/* Space Force–style classification stamp */
.classification-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.28rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0.75;
}

/* Main title */
.asvab-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 300;
    letter-spacing: -0.01rem;
    line-height: 0.92;
    margin-bottom: 2rem;
    color: var(--white);
    text-transform: uppercase;
}

.asvab-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.85rem, 2.5vw, 1.3rem);
    letter-spacing: 0.55rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.asvab-desc {
    font-size: clamp(0.75rem, 1.4vw, 0.88rem);
    color: var(--light-gray);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.04rem;
    max-width: 580px;
    margin: 0 auto 2.8rem;
}

/* ── STATS BAR ── */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.18);
    padding: 22px 20px;
    margin-bottom: 2.8rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 28px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.48rem;
    letter-spacing: 0.18rem;
    color: var(--light-gray);
    text-transform: uppercase;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08rem;
    color: var(--gold);
    line-height: 1;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(201, 169, 98, 0.2);
    flex-shrink: 0;
}

/* ── COUNTDOWN ── */
.countdown-container {
    margin-bottom: 2.8rem;
}

.countdown-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.28rem;
    color: var(--light-gray);
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
}

.countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.05rem;
}

.countdown-unit-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.42rem;
    letter-spacing: 0.18rem;
    color: var(--light-gray);
    margin-top: 5px;
    text-transform: uppercase;
}

.countdown-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(201, 169, 98, 0.4);
    padding-bottom: 12px;
    line-height: 1;
}

/* ── HERO CTAs ── */
.hero-ctas {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logged-in-label {
    display: block;
    font-size: 0.58rem;
    color: var(--light-gray);
    letter-spacing: 0.08rem;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

/* Bouncing scroll hint at bottom of hero */
.scroll-hint {
    margin-top: 60px;
    animation: bounce 2.2s ease-in-out infinite;
}
.scroll-hint-text {
    font-size: 0.58rem;
    letter-spacing: 0.22rem;
    color: var(--light-gray);
    text-transform: uppercase;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}


/* ============================================================
   SHARED BUTTON SYSTEM
   ============================================================ */
.cta-primary {
    display: inline-block;
    padding: 18px 52px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.32rem;
    cursor: pointer;
    transition: color 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}
.cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}
.cta-primary:hover { color: var(--black); }
.cta-primary:hover::before { left: 0; }

.cta-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.15rem;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}
.cta-secondary:hover { color: var(--gold); }

.cta-ghost {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
    padding: 14px 32px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}
.cta-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cta-large {
    padding: 22px 72px;
    font-size: 1.05rem;
}

.cta-full {
    width: 100%;
    padding: 18px;
    letter-spacing: 0.2rem;
}


/* ============================================================
   MISSION BRIEF SECTION
   ============================================================ */
.mission-brief {
    padding: 110px 0;
    background: rgba(0, 0, 0, 0.65);
    border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.brief-text p {
    font-size: 0.85rem;
    color: var(--light-gray);
    font-weight: 300;
    line-height: 1.95;
    margin-bottom: 1.3rem;
    letter-spacing: 0.02rem;
}
.brief-text strong {
    color: var(--gold);
    font-weight: 500;
}

.brief-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.brief-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.35s, background 0.35s, transform 0.35s;
}
.brief-card:hover {
    border-color: rgba(201, 169, 98, 0.25);
    background: rgba(201, 169, 98, 0.03);
    transform: translateY(-2px);
}

.brief-card-icon { font-size: 1.6rem; margin-bottom: 10px; }

.brief-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12rem;
    color: var(--white);
    margin-bottom: 8px;
}
.brief-card p {
    font-size: 0.75rem;
    color: var(--light-gray);
    line-height: 1.65;
    font-weight: 300;
}


/* ============================================================
   BRIEFING STRUCTURE SECTION
   ============================================================ */
.briefing-structure {
    padding: 110px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.structure-timeline {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
    align-items: start;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.1rem;
    color: var(--gold);
    padding-top: 8px;
    text-align: right;
    opacity: 0.75;
    white-space: nowrap;
}

.timeline-content {
    position: relative;
    padding-left: 52px;
}

/* Big ghost number behind the content */
.timeline-marker {
    position: absolute;
    left: 0; top: -4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: rgba(201, 169, 98, 0.1);
    line-height: 1;
    letter-spacing: 0.05rem;
    pointer-events: none;
    user-select: none;
}

.timeline-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
    color: var(--white);
    margin-bottom: 8px;
}
.timeline-content p {
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.75;
    font-weight: 300;
}


/* ============================================================
   CURRICULUM SECTION
   ============================================================ */
.curriculum-section {
    padding: 110px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.curriculum-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.012);
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, background 0.35s;
}
/* Animated gold left-edge reveal on hover */
.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}
.curriculum-card:hover { border-color: rgba(201, 169, 98, 0.18); background: rgba(201, 169, 98, 0.025); }
.curriculum-card:hover::before { height: 100%; }

/* Full-width highlight card (Week 9) */
.curriculum-card--highlight {
    grid-column: 1 / -1;
    border-color: rgba(201, 169, 98, 0.18);
    background: rgba(201, 169, 98, 0.03);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.curriculum-card--highlight::before { background: var(--gold); height: 100%; }
.curriculum-card--highlight h3 { font-size: 1.2rem; }

.curr-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.22rem;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

.curriculum-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.curriculum-card p {
    font-size: 0.75rem;
    color: var(--light-gray);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 14px;
}

.curr-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.48rem;
    letter-spacing: 0.18rem;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 98, 0.28);
    padding: 3px 9px;
    text-transform: uppercase;
}


/* ============================================================
   REGISTER SECTION
   ============================================================ */
.register-section {
    padding: 130px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.08);
    text-align: center;
}

.register-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center the rule for this section */
.register-section .brief-rule {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    width: 80px;
}

.register-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.register-note {
    font-size: 0.7rem;
    color: var(--light-gray);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    letter-spacing: 0.03rem;
}
.register-note-icon { margin-right: 6px; }


/* ============================================================
   FOOTER
   ============================================================ */
.asvab-footer {
    border-top: 1px solid rgba(201, 169, 98, 0.08);
    padding: 55px 40px;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.35rem;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-tagline {
    font-size: 0.68rem;
    color: var(--light-gray);
    margin-bottom: 8px;
    font-weight: 300;
}
.footer-tagline a { color: var(--gold); text-decoration: none; }
.footer-tagline a:hover { text-decoration: underline; }

.asvab-footer .footer-copy {
    font-size: 0.52rem;
    color: var(--mid-gray);
    letter-spacing: 0.12rem;
    margin: 0;
    padding: 0;
    border: none;
}


/* ============================================================
   FORM STYLES
   (main.css doesn't have these — they live in index.css which
    we're not loading here. Defining them locally below.)
   ============================================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { position: relative; }

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.14rem;
    color: var(--light-gray);
    margin-bottom: 7px;
    text-transform: uppercase;
}

.optional {
    font-size: 0.5rem;
    color: var(--mid-gray);
    letter-spacing: 0.05rem;
    text-transform: lowercase;
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: 13px 15px;
    background: transparent;
    border: 1px solid var(--mid-gray);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.03rem;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
}
.form-input::placeholder { color: #444; font-weight: 300; }
.form-input:focus         { border-color: var(--gold); }

.form-select {
    width: 100%;
    padding: 13px 15px;
    background: #0a0a0a;
    border: 1px solid var(--mid-gray);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.03rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.form-select:focus { border-color: var(--gold); }


/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: var(--dark);
    border: 1px solid var(--dark-gray);
    max-width: 480px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 48px 38px;
    transform: translateY(18px);
    transition: transform 0.4s ease;
}
.auth-overlay.active .auth-modal { transform: translateY(0); }

/* Close button (shared by auth modal & dashboard) */
.auth-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--mid-gray);
    color: var(--light-gray);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, color 0.3s;
}
.auth-close:hover { border-color: var(--gold); color: var(--gold); }

/* Tab switcher */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--dark-gray);
    margin-bottom: 28px;
}
.auth-tab {
    flex: 1;
    padding: 13px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    text-transform: uppercase;
}
.auth-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.auth-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    margin-bottom: 5px;
    text-align: center;
}
.auth-subtitle {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 22px;
    font-weight: 300;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Error / success message box */
.auth-error {
    font-size: 0.7rem;
    padding: 10px 14px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    background: rgba(255, 107, 107, 0.05);
    line-height: 1.55;
    color: #ff6b6b;
}

.auth-legal {
    font-size: 0.58rem;
    color: var(--light-gray);
    text-align: center;
    line-height: 1.65;
    font-weight: 300;
    margin-top: 6px;
}

.forgot-link {
    background: transparent;
    border: none;
    color: var(--light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.05rem;
    padding: 8px;
    transition: color 0.3s;
}
.forgot-link:hover { color: var(--gold); }


/* ============================================================
   DASHBOARD MODAL
   ============================================================ */
.dashboard-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 9000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 30px;
    overflow-y: auto;
}

.dashboard-modal {
    background: var(--dark);
    border: 1px solid rgba(201, 169, 98, 0.14);
    max-width: 680px;
    width: 100%;
    padding: 52px 44px;
    position: relative;
    margin-bottom: 40px;
}

/* Header */
.dashboard-header {
    text-align: center;
    margin-bottom: 38px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dashboard-rank {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.28rem;
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.85;
}
.dashboard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    margin-bottom: 8px;
}
.dashboard-welcome {
    font-size: 0.8rem;
    color: var(--light-gray);
    font-weight: 300;
}

/* Sections inside dashboard */
.dash-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-section:last-of-type { border-bottom: none; margin-bottom: 0; }

.dash-section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.22rem;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Session card */
.dash-session-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.018);
    gap: 20px;
}
.dash-session-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08rem;
    color: var(--white);
    margin-bottom: 4px;
}
.dash-session-time {
    font-size: 0.7rem;
    color: var(--light-gray);
    margin-bottom: 6px;
    font-weight: 300;
}
.dash-session-topic {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.04rem;
}
.dash-session-countdown {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.08rem;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Access link cards (Pay + Meet) */
.dash-access-grid { display: flex; flex-direction: column; gap: 10px; }

.dash-access-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.018);
    text-decoration: none;
    color: var(--white);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.dash-access-card:hover {
    border-color: rgba(201, 169, 98, 0.28);
    background: rgba(201, 169, 98, 0.04);
    transform: translateX(3px);
}
.dash-meet { border-color: rgba(201, 169, 98, 0.15); }

.dash-access-icon { font-size: 1.5rem; flex-shrink: 0; }
.dash-access-text  { flex: 1; }
.dash-access-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 3px;
}
.dash-access-sub {
    font-size: 0.68rem;
    color: var(--light-gray);
    font-weight: 300;
}
.dash-access-arrow { color: var(--gold); font-size: 1.1rem; margin-left: auto; }

/* Curriculum tracker */
.curriculum-tracker { display: flex; flex-direction: column; gap: 7px; }

.tracker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s;
}
.tracker-item.complete {
    opacity: 0.45;
    background: rgba(201, 169, 98, 0.02);
}
.tracker-item.current {
    border-color: rgba(201, 169, 98, 0.22);
    background: rgba(201, 169, 98, 0.04);
}
.tracker-item.current .tracker-num { color: var(--gold); }
.tracker-item.complete .tracker-num { color: var(--gold); }

.tracker-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: var(--light-gray);
    min-width: 22px;
    text-align: center;
    letter-spacing: 0.04rem;
    flex-shrink: 0;
}

.tracker-info { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.tracker-topic {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 300;
}
.tracker-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.46rem;
    letter-spacing: 0.12rem;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 2px 7px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Dashboard footer row */
.dash-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
}
.dash-user-email {
    font-size: 0.62rem;
    color: var(--light-gray);
    font-weight: 300;
}
.dash-signout {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.12rem;
    padding: 8px 18px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    text-transform: uppercase;
}
.dash-signout:hover { border-color: var(--gold); color: var(--gold); }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Large tablets ── */
@media (max-width: 1024px) {
    .section-inner    { padding: 0 30px; }
    .brief-grid       { gap: 45px; }
    .curriculum-grid  { grid-template-columns: repeat(2, 1fr); }
    .curriculum-card--highlight { grid-column: 1 / -1; display: block; }
}

/* ── Tablets ── */
@media (max-width: 900px) {
    .brief-grid          { grid-template-columns: 1fr; }
    .brief-text          { order: 1; }
    .brief-cards         { order: 2; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .section-inner { padding: 0 20px; }

    .asvab-hero    { padding: 110px 20px 70px; }
    .asvab-title   { font-size: clamp(3rem, 18vw, 5rem); }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 20px;
    }
    .stat-divider  { display: none; }
    .stat-item     { padding: 0; }

    .hero-ctas { flex-direction: column; }

    .mission-brief,
    .briefing-structure,
    .curriculum-section,
    .register-section { padding: 75px 0; }

    .brief-cards { grid-template-columns: 1fr; }

    .timeline-item        { grid-template-columns: 80px 1fr; gap: 16px; }
    .timeline-time        { font-size: 0.52rem; }

    .curriculum-grid      { grid-template-columns: 1fr; }
    .curriculum-card--highlight { display: block; }

    .form-row             { grid-template-columns: 1fr; }

    .auth-modal           { padding: 35px 22px; }
    .dashboard-modal      { padding: 35px 22px; }

    .dash-session-card    { flex-direction: column; align-items: flex-start; gap: 10px; }
    .dash-footer          { flex-direction: column; gap: 14px; text-align: center; }

    .tracker-info         { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ── Small phones ── */
@media (max-width: 480px) {
    .asvab-title       { font-size: clamp(2.8rem, 20vw, 4rem); }
    .countdown-num     { font-size: 1.8rem; }
    .countdown-unit    { padding: 0 10px; }
    .cta-large         { padding: 18px 40px; font-size: 0.88rem; }
    .timeline-item     { grid-template-columns: 1fr; }
    .timeline-time     { text-align: left; padding-top: 0; }
    .timeline-content  { padding-left: 42px; }
    .dashboard-overlay { padding: 50px 12px 20px; }
}

/* ── Landscape phones ── */
@media (max-height: 500px) and (orientation: landscape) {
    .asvab-hero {
        padding-top: 90px;
        min-height: auto;
    }
    .countdown-container { margin-bottom: 1.5rem; }
    .hero-stats          { margin-bottom: 1.5rem; }
}
