/*
 * Public CSS Bundle: afqt-landing.bundle.css
 * Auto-generated by scripts/bundle_public_css.py
 * DO NOT EDIT - Edit source files instead
 *
 * Sources: _public-base.css, afqt-landing-desktop.css, afqt-landing-mobile-portrait.css, afqt-landing-mobile-landscape.css
 */

/* === _public-base.css === */

/*
 * Public Pages Base CSS
 * Shared globals: variables, reset, fonts, keyframes
 * NO media queries here - this is the foundation
 */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --brand-gradient: linear-gradient(135deg, #667eea, #764ba2);
    --brand-purple: #764ba2;
    --brand-purple-light: #8b5cf6;
    --brand-blue: #667eea;

    /* Background */
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* UI Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Accent Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.1);
    --shadow-purple: 0 8px 30px rgba(118, 75, 162, 0.25);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Spacing */
    --header-height: 72px;
    --container-max: 1200px;
    --section-padding: 100px;
}

/* === Reset === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* === Anchor Link Offset (for fixed header) === */
[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

/* === Keyframes === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* === Button Base Styles === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--white);
    background: var(--brand-gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.btn-outline {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* === Utility Classes === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.section-subtitle {
    color: var(--text-secondary);
}

/* === Ticker Base === */
.proof-ticker {
    background: var(--gray-900);
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
}

.ticker-item strong {
    color: var(--white);
    font-weight: 700;
}

/* Category colors */
.ticker-item.ticker-score strong {
    color: #fbbf24;
}

.ticker-item.ticker-pass strong {
    color: var(--success);
}

.ticker-item.ticker-branch strong {
    color: #60a5fa;
}

/* =============================================================================
 * SIGNUP MODAL - Shared across all public pages
 * Used by: home, free-class, asvab-program, etc.
 * ============================================================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #fef2f2;
    color: var(--error);
}

.modal-body {
    padding: 24px;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: modalFadeUp 0.3s ease-out;
}

@keyframes modalFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-intro {
    text-align: center;
    margin-bottom: 24px;
}

.step-intro-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
}

.step-intro-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-intro-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.verify-email {
    font-weight: 600;
    color: var(--text-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-primary);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input.error {
    border-color: var(--error);
}

.form-input.code-input {
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-heading), monospace;
    letter-spacing: 8px;
    font-weight: 600;
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: modalSpin 0.8s linear infinite;
}

@keyframes modalSpin {
    to { transform: rotate(360deg); }
}

.resend-link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-button {
    background: none;
    border: none;
    color: var(--brand-purple);
    font-weight: 600;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.link-button:hover {
    text-decoration: underline;
}

.link-button:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--success);
    animation: modalPopIn 0.4s ease-out;
}

@keyframes modalPopIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.success-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* =============================================================================
 * CLASS COUNTDOWN - Simple horizontal layout
 * ============================================================================= */

.class-countdown {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.countdown-slides {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.countdown-slide {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.countdown-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Left side: Badge + Date/Time */
.countdown-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.countdown-badge {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-badge.badge-free {
    background: var(--success-light);
    color: var(--success);
}

.countdown-badge.badge-program {
    background: rgba(118, 75, 162, 0.12);
    color: var(--brand-purple);
}

.countdown-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.countdown-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Right side: Timer + CTA */
.countdown-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
}

.countdown-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.countdown-lbl {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 4px;
}

.countdown-sep {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 2px;
}

.countdown-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.countdown-btn.btn-free {
    background: var(--brand-gradient);
    color: var(--white);
}

.countdown-btn.btn-free:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.countdown-btn.btn-program {
    background: var(--white);
    color: var(--brand-purple);
    border: 2px solid var(--brand-purple);
}

.countdown-btn.btn-program:hover {
    background: var(--brand-purple);
    color: var(--white);
}

.countdown-btn.btn-disabled {
    background: var(--gray-200);
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
}

/* Navigation dots */
.countdown-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.countdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.countdown-dot.active {
    background: var(--brand-purple);
}

.countdown-dot:hover:not(.active) {
    background: var(--gray-400);
}

/* Empty state */
.countdown-empty {
    text-align: center;
    padding: 20px;
}

.countdown-empty p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.countdown-empty a {
    color: var(--brand-purple);
    font-weight: 600;
}


/* === afqt-landing-desktop.css === */

/**
 * AFQT Landing Page - Desktop
 * SEO landing page for /free-asvab-afqt-practice-test
 */

@media (min-width: 769px) {

/* ===== LAYOUT ===== */
.al-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== HEADER ===== */
.al-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.al-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.al-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.al-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.al-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
}

.al-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.al-nav-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.al-nav-btn-ghost {
    background: transparent;
    color: var(--text-secondary, #64748b);
}

.al-nav-btn-ghost:hover {
    color: var(--text-primary, #1a1a2e);
}

.al-nav-btn-primary {
    background: var(--gradient-brand, linear-gradient(135deg, #0264c0 0%, #5b21b6 100%));
    color: white;
}

.al-nav-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 100, 192, 0.3);
}

/* ===== HERO (split layout) ===== */
.al-hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.al-hero-split {
    display: flex;
    align-items: center;
    gap: 48px;
}

.al-hero-left {
    flex: 1;
}

.al-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.al-hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.al-hero-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0264c0;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.al-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    line-height: 1.15;
    margin: 0 0 16px;
}

.al-hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
    margin: 0 0 28px;
}

.al-hero-note {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin-top: 16px;
}

/* ===== BUTTONS ===== */
.al-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.al-btn-primary {
    background: var(--gradient-brand, linear-gradient(135deg, #0264c0 0%, #5b21b6 100%));
    color: white;
}

.al-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 100, 192, 0.3);
}

.al-btn-lg {
    padding: 16px 44px;
    font-size: 1.05rem;
}

/* ===== SECTIONS ===== */
.al-section {
    padding: 72px 0;
}

.al-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    text-align: center;
    margin: 0 0 12px;
}

.al-section-sub {
    font-size: 1rem;
    color: var(--text-secondary, #64748b);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ===== SUBJECT GRID ===== */
.al-subject-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.al-subject-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--border-light, #e5e7eb);
    text-align: center;
    transition: box-shadow 0.2s;
}

.al-subject-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.al-subject-bonus {
    grid-column: 2 / 4;
}

.al-subject-abbr {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0264c0;
    margin-bottom: 8px;
}

.al-subject-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    margin: 0 0 8px;
}

.al-subject-desc {
    font-size: 0.85rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.5;
    margin: 0 0 12px;
}

.al-subject-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0264c0;
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 10px;
}

.al-subject-bonus .al-subject-abbr {
    color: #7c3aed;
}

.al-subject-bonus .al-subject-tag {
    color: #7c3aed;
    background: #f5f3ff;
}

/* ===== SECTION SCREENSHOTS ===== */
.al-section-screenshot {
    text-align: center;
    margin-top: 36px;
}

.al-section-screenshot .al-screenshot {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light, #e5e7eb);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== SAMPLE PROBLEMS ===== */
.al-sample {
    background: #f8fafc;
}

.al-sample-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.al-sample-tab {
    padding: 10px 24px;
    border: 1px solid var(--border-light, #e5e7eb);
    background: white;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary, #64748b);
    cursor: pointer;
    transition: all 0.15s;
}

.al-sample-tab:hover {
    border-color: #0264c0;
    color: #0264c0;
}

.al-sample-tab.active {
    background: #0264c0;
    border-color: #0264c0;
    color: white;
}

.al-sample-panel {
    display: none;
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: 14px;
    padding: 32px 36px;
    border: 1px solid var(--border-light, #e5e7eb);
}

.al-sample-panel.active {
    display: block;
}

.al-sample-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0264c0;
    margin-bottom: 12px;
}

.al-sample-label a {
    color: #0264c0;
    text-decoration: underline;
    text-decoration-color: rgba(2, 100, 192, 0.3);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
}

.al-sample-label a:hover {
    text-decoration-color: #0264c0;
}

.al-sample-passage {
    background: #f8fafc;
    border-left: 3px solid #0264c0;
    padding: 16px 20px;
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-primary, #1a1a2e);
    border-radius: 0 8px 8px 0;
}

.al-sample-q {
    font-size: 1rem;
    color: var(--text-primary, #1a1a2e);
    line-height: 1.7;
    margin: 0 0 20px;
}

.al-sample-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.al-sample-choice {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
    background: white;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary, #1a1a2e);
    cursor: pointer;
    transition: all 0.15s;
}

.al-sample-choice:hover:not(:disabled) {
    border-color: #0264c0;
    background: #f0f7ff;
}

.al-sample-choice:disabled {
    cursor: default;
}

.al-sample-choice.correct {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
    font-weight: 600;
}

.al-sample-choice.wrong {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.al-sample-explain {
    border-top: 1px solid var(--border-light, #e5e7eb);
    padding-top: 4px;
}

.al-sample-explain summary {
    padding: 12px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0264c0;
    cursor: pointer;
    list-style: none;
}

.al-sample-explain summary::-webkit-details-marker {
    display: none;
}

.al-sample-explain summary::before {
    content: '▸ ';
}

.al-sample-explain[open] summary::before {
    content: '▾ ';
}

.al-sample-explain p {
    font-size: 0.9rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
    margin: 0 0 8px;
}

.al-sample-explain p:last-child {
    margin-bottom: 12px;
}

.al-sample-cta {
    text-align: center;
    margin-top: 32px;
}

/* ===== RESULTS (split layout) ===== */
.al-results-split {
    display: flex;
    gap: 48px;
    align-items: center;
}

.al-results-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.al-results-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.al-results-img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.al-result-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.al-result-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.al-result-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    margin: 0 0 4px;
}

.al-result-item p {
    font-size: 0.85rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.6;
    margin: 0;
}

/* ===== EXTRAS ===== */
.al-extras {
    background: #f8fafc;
}

.al-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.al-extra-card {
    background: white;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid var(--border-light, #e5e7eb);
}

.al-extra-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    margin: 0 0 10px;
}

.al-extra-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ ===== */
.al-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.al-faq-item {
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.al-faq-item summary {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.al-faq-item summary::-webkit-details-marker {
    display: none;
}

.al-faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted, #94a3b8);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.al-faq-item[open] summary::after {
    content: '−';
}

.al-faq-item p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
    margin: 0;
}

/* ===== COACH + PREVIEW ===== */
.al-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.al-preview-text {
    font-size: 0.95rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
}

.al-preview-text p {
    margin: 0 0 14px;
}

.al-coach-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #e2e8f0;
}

.al-preview-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    margin: 0 0 14px;
}

.al-preview-screenshots {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.al-screenshot {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-light, #e5e7eb);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ===== FINAL CTA ===== */
.al-final-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.al-final-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0 0 28px;
}

.al-final-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.al-final-links {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.al-final-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.al-final-links a:hover {
    color: white;
}

/* ===== FOOTER ===== */
.al-footer {
    padding: 24px 0;
    border-top: 1px solid var(--border-light, #e5e7eb);
    display: flex;
    justify-content: center;
}

.al-footer .al-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.al-footer p {
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    margin: 0;
}

.al-footer-nav {
    display: flex;
    gap: 24px;
}

.al-footer-nav a {
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
}

.al-footer-nav a:hover {
    color: var(--text-secondary, #64748b);
}

} /* end @media desktop */


/* === afqt-landing-mobile-portrait.css === */

/**
 * AFQT Landing Page - Mobile Portrait
 */

@media (max-width: 768px) and (orientation: portrait) {

.al-container {
    padding: 0 20px;
}

.al-header-inner {
    padding: 0 16px;
    height: 56px;
}

.al-brand-logo { width: 30px; height: 30px; }
.al-brand-name { font-size: 0.95rem; }

.al-nav { gap: 8px; }
.al-nav-btn { padding: 6px 14px; font-size: 0.8rem; }
.al-nav-btn-ghost { display: none; }

/* Hero */
.al-hero { padding: 36px 0 32px; }
.al-hero-split { flex-direction: column; gap: 28px; }
.al-hero-title { font-size: 1.8rem; }
.al-hero-sub { font-size: 0.95rem; }
.al-hero-img { max-width: 100%; }
.al-btn-lg { padding: 14px 32px; font-size: 0.95rem; }

/* Sections */
.al-section { padding: 48px 0; }
.al-section-title { font-size: 1.5rem; }
.al-section-sub { font-size: 0.9rem; margin-bottom: 28px; }

/* Subject grid — stacked */
.al-subject-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.al-subject-bonus { grid-column: auto; }

.al-subject-card { padding: 20px; text-align: left; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.al-subject-abbr { margin-bottom: 0; font-size: 1.1rem; }
.al-subject-name { margin: 0; font-size: 0.9rem; flex: 1; }
.al-subject-desc { width: 100%; margin: 4px 0 8px; font-size: 0.82rem; }

/* Sample problems */
.al-sample-tabs { gap: 2px; flex-wrap: wrap; justify-content: center; }
.al-sample-tab { padding: 8px 16px; font-size: 0.82rem; }
.al-sample-panel { padding: 24px 20px; }
.al-sample-choice { padding: 10px 14px; font-size: 0.88rem; }

/* Results — stacked on mobile */
.al-results-split { flex-direction: column; gap: 28px; }
.al-results-img { max-width: 100%; }

/* Extras — stacked */
.al-extras-grid { grid-template-columns: 1fr; gap: 16px; }
.al-extra-card { padding: 24px; }

/* FAQ */
.al-faq-item summary { font-size: 0.92rem; padding: 16px 0; }
.al-faq-item p { font-size: 0.85rem; }

/* Coach preview */
.al-preview-grid { grid-template-columns: 1fr; gap: 24px; }
.al-coach-photo { width: 64px; height: 64px; }
.al-preview-title { font-size: 1.3rem; }

/* Final CTA */
.al-final-cta { padding: 56px 0; }
.al-final-title { font-size: 1.5rem; }

/* Footer */
.al-footer .al-container { flex-direction: column; gap: 12px; text-align: center; }
.al-footer-nav { gap: 16px; }

} /* end mobile portrait */


/* === afqt-landing-mobile-landscape.css === */

/**
 * AFQT Landing Page - Mobile Landscape
 */

@media (max-width: 926px) and (orientation: landscape) {

.al-container {
    padding: 0 24px;
}

.al-header-inner { padding: 0 24px; height: 56px; }
.al-brand-logo { width: 30px; height: 30px; }

/* Hero */
.al-hero { padding: 32px 0 28px; }
.al-hero-split { gap: 28px; }
.al-hero-title { font-size: 1.8rem; }
.al-hero-sub { font-size: 0.9rem; }
.al-hero-img { max-width: 400px; }

/* Sections */
.al-section { padding: 48px 0; }
.al-section-title { font-size: 1.6rem; }

/* Subject grid — 2x2 + bonus centered */
.al-subject-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.al-subject-bonus { grid-column: 1 / 3; max-width: 50%; margin: 0 auto; }

/* Results */
.al-results-split { gap: 28px; }
.al-results-img { max-width: 360px; }

/* Extras — 2 col */
.al-extras-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* Final CTA */
.al-final-cta { padding: 48px 0; }
.al-final-title { font-size: 1.6rem; }

} /* end mobile landscape */
