/*
 * Public CSS Bundle: free-class.bundle.css
 * Auto-generated by scripts/bundle_public_css.py
 * DO NOT EDIT - Edit source files instead
 *
 * Sources: _public-base.css, free-class-desktop.css, free-class-mobile-portrait.css, free-class-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;
}


/* === free-class-desktop.css === */

/* Free Class - Desktop Styles */
/* Media: min-width: 769px (handled by bundler) */

:root {
    --primary-blue: #0264c0;
    --primary-blue-dark: #024a8f;
    --primary-yellow: #fdcc05;
    --gradient-main: linear-gradient(135deg, #0264c0 0%, #5b21b6 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(2, 100, 192, 0.08) 0%, rgba(91, 33, 182, 0.08) 100%);

    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-inverse: #f8fafc;

    --green: #22c55e;
    --green-light: #dcfce7;
    --amber: #f59e0b;
    --amber-light: #fef3c7;
    --red: #ef4444;
    --red-light: #fef2f2;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px rgba(2, 100, 192, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-signin {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-signin:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.header-cta {
    padding: 10px 20px;
    background: var(--gradient-main);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* ==================== HERO ==================== */
.hero {
    background: var(--bg-dark);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 100, 192, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(253, 204, 5, 0.15), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--text-inverse);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary-blue);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(2, 100, 192, 0.4);
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== WHAT'S FREE SECTION ==================== */
.whats-free-section {
    padding: 80px 24px;
    background: var(--bg-card);
}

.whats-free-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.free-card {
    background: var(--bg-page);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.free-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.free-card-header {
    padding: 20px 24px;
    background: var(--gradient-main);
}

.free-card-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.free-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.free-card-body {
    padding: 24px;
}

.free-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.free-card-list {
    list-style: none;
}

.free-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.free-card-list .check {
    color: var(--green);
    font-weight: 700;
}

.next-class-box {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.next-class-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.next-class-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.next-class-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.next-class-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.next-class-countdown .countdown-item {
    color: var(--primary-blue);
    font-weight: 600;
}

.next-class-countdown .countdown-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ==================== METHOD SECTION ==================== */
.method-section {
    padding: 80px 24px;
    background: var(--gradient-subtle);
}

.method-path {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.method-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.method-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.step-tag {
    padding: 4px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ==================== SHOWCASE SECTION ==================== */
.showcase-section {
    padding: 80px 24px;
    background: var(--bg-page);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.showcase-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.showcase-caption {
    padding: 16px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}

.showcase-caption-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.showcase-caption-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: 80px 24px;
    background: var(--bg-card);
}

.problem-list {
    max-width: 700px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-page);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
}

.problem-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--red-light);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.problem-text-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.problem-text-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.problem-solution {
    text-align: center;
    margin-top: 32px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.problem-solution .try-free-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.problem-solution .try-free-link:hover {
    text-decoration: underline;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 24px;
    background: var(--gradient-main);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: white;
    color: var(--primary-blue);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 32px 24px;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-text strong {
    color: var(--text-primary);
}

.footer-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

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

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.visible .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-hint {
    display: none;
}


/* === free-class-mobile-portrait.css === */

/* Free Class - Mobile Portrait Styles */
/* Media: max-width: 768px and orientation: portrait (handled by bundler) */

/* ==================== HEADER ==================== */
.header {
    padding: 12px 16px;
}

.brand-logo {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-size: 1rem;
}

.brand-tagline {
    font-size: 0.65rem;
}

.header-actions {
    gap: 8px;
}

.header-signin {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.header-cta {
    display: none;
}

/* ==================== HERO ==================== */
.hero {
    padding: 48px 20px;
}

.hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
}

.hero-cta {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

/* ==================== SECTIONS ==================== */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 1.5rem;
}

.section-header p {
    font-size: 1rem;
}

/* ==================== WHAT'S FREE SECTION ==================== */
.whats-free-section {
    padding: 48px 16px;
}

.whats-free-grid {
    grid-template-columns: 1fr;
}

.free-card-header {
    padding: 16px 20px;
}

.free-card-title {
    font-size: 1.1rem;
}

.free-card-body {
    padding: 20px;
}

.free-card-desc {
    font-size: 0.9rem;
}

.free-card-list li {
    font-size: 0.875rem;
}

/* ==================== METHOD SECTION ==================== */
.method-section {
    padding: 48px 16px;
}

.method-path {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.method-step {
    max-width: 100%;
    width: 100%;
    padding: 20px 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.method-step:not(:last-child)::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1rem;
}

.step-desc {
    font-size: 0.875rem;
}

.step-tag {
    font-size: 0.75rem;
}

/* ==================== SHOWCASE SECTION ==================== */
.showcase-section {
    padding: 48px 16px;
}

.showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.showcase-item {
    border-radius: 12px;
}

.showcase-caption {
    padding: 10px 12px;
}

.showcase-caption-title {
    font-size: 0.85rem;
}

.showcase-caption-desc {
    font-size: 0.75rem;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: 48px 16px;
}

.problem-item {
    padding: 16px;
    gap: 12px;
}

.problem-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

.problem-text-item strong {
    font-size: 0.95rem;
}

.problem-text-item span {
    font-size: 0.85rem;
}

.problem-solution {
    font-size: 1rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 48px 20px;
}

.cta-title {
    font-size: 1.5rem;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.cta-note {
    font-size: 0.8rem;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 24px 16px;
}

.footer-text {
    font-size: 0.85rem;
}

/* ==================== MODAL ==================== */
.modal-body {
    padding: 20px;
}

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

.step-intro-title {
    font-size: 1.2rem;
}

.step-intro-text {
    font-size: 0.9rem;
}

.form-input.code-input {
    font-size: 1.35rem;
    letter-spacing: 6px;
}

/* ==================== LIGHTBOX ==================== */
.lightbox-hint {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
}


/* === free-class-mobile-landscape.css === */

/* Free Class - Mobile Landscape Styles */
/* Media: max-width: 926px and orientation: landscape (handled by bundler) */

/* ==================== HEADER ==================== */
.header {
    padding: 10px 20px;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.6rem;
}

.header-actions {
    gap: 10px;
}

.header-signin {
    padding: 8px 14px;
    font-size: 0.8rem;
}

.header-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* ==================== HERO ==================== */
.hero {
    padding: 40px 24px;
}

.hero-title {
    font-size: 1.75rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.hero-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
}

/* ==================== SECTIONS ==================== */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 1.4rem;
}

.section-header p {
    font-size: 0.95rem;
}

/* ==================== WHAT'S FREE SECTION ==================== */
.whats-free-section {
    padding: 40px 24px;
}

.whats-free-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
}

.free-card-header {
    padding: 14px 18px;
}

.free-card-title {
    font-size: 1rem;
}

.free-card-body {
    padding: 16px 18px;
}

.free-card-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.free-card-list li {
    font-size: 0.8rem;
    padding: 6px 0;
}

.next-class-box {
    margin-top: 14px;
    padding: 12px;
}

.next-class-label {
    font-size: 0.7rem;
}

.next-class-date {
    font-size: 0.9rem;
}

.next-class-time {
    font-size: 0.8rem;
}

.next-class-countdown {
    font-size: 0.8rem;
    margin-top: 10px;
    padding-top: 10px;
}

/* ==================== METHOD SECTION ==================== */
.method-section {
    padding: 40px 24px;
}

.method-path {
    gap: 8px;
}

.method-step {
    min-width: 180px;
    max-width: 200px;
    padding: 16px 12px;
}

.method-step:not(:last-child)::after {
    display: none;
}

.step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.step-title {
    font-size: 0.95rem;
}

.step-desc {
    font-size: 0.8rem;
}

.step-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
}

/* ==================== SHOWCASE SECTION ==================== */
.showcase-section {
    padding: 40px 24px;
}

.showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.showcase-item {
    border-radius: 12px;
}

.showcase-caption {
    padding: 12px 14px;
}

.showcase-caption-title {
    font-size: 0.9rem;
}

.showcase-caption-desc {
    font-size: 0.75rem;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: 40px 24px;
}

.problem-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.problem-item {
    padding: 14px;
    gap: 10px;
    margin-bottom: 0;
}

.problem-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
}

.problem-text-item strong {
    font-size: 0.85rem;
}

.problem-text-item span {
    font-size: 0.8rem;
}

.problem-solution {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 40px 24px;
}

.cta-title {
    font-size: 1.4rem;
}

.cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 14px 36px;
    font-size: 0.95rem;
}

.cta-note {
    font-size: 0.75rem;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 20px 24px;
}

.footer-text {
    font-size: 0.8rem;
}

/* ==================== MODAL ==================== */
.modal {
    max-width: 500px;
    max-height: 85vh;
}

.modal-body {
    padding: 20px 24px;
}

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

.step-intro {
    margin-bottom: 20px;
}

.step-intro-icon {
    width: 48px;
    height: 48px;
}

.step-intro-title {
    font-size: 1.15rem;
}

.step-intro-text {
    font-size: 0.85rem;
}

.form-input, .form-select {
    padding: 12px 14px;
    font-size: 0.95rem;
}

.form-input.code-input {
    font-size: 1.25rem;
    letter-spacing: 6px;
}

.form-submit {
    padding: 14px;
    font-size: 0.95rem;
}

/* ==================== LIGHTBOX ==================== */
.lightbox-hint {
    display: block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-align: center;
}
