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


/* === schedule-desktop.css === */

/*
 * Schedule Page - Desktop Styles
 * @media (min-width: 769px)
 *
 * Dashboard-style layout: No scroll, elements anchored to viewport
 * - Title in header center
 * - Countdown (left ~20%) + Calendar (right ~80%) fill viewport
 */

@media (min-width: 769px) {

/* === Variables === */
:root {
    --schedule-primary: #0264c0;
    --schedule-primary-dark: #024a8f;
    --schedule-gradient: linear-gradient(135deg, #0264c0 0%, #5b21b6 100%);

    --schedule-free: #10b981;
    --schedule-free-light: #d1fae5;
    --schedule-program: #3b82f6;
    --schedule-program-light: #dbeafe;

    --schedule-today: #667eea;
    --schedule-next-class: #f59e0b;

    --header-height: 64px;
}

/* === Base - Lock to viewport === */
html, body {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* === Header === */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 24px;
    height: var(--header-height);
    flex-shrink: 0;
    z-index: 100;
}

.header-content {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.header-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.header-signin {
    padding: 8px 16px;
    background: transparent;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 100, 192, 0.25);
}

.header-account {
    padding: 8px 16px;
    background: var(--schedule-gradient);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-account:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 100, 192, 0.25);
}

/* === Hide Hero on Desktop === */
.hero {
    display: none;
}

/* === Main Content Area === */
main {
    flex: 1;
    display: flex;
    padding: 20px 24px;
    gap: 20px;
    min-height: 0;
    overflow: hidden;
}

/* === Countdown Section (Left Side) === */
.countdown-section {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.countdown-section .section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.countdown-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px;
}

.countdown-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Adjust countdown component for vertical stacking */
.countdown-section .class-countdown {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.countdown-section .countdown-slides {
    flex: 1;
}

.countdown-section .countdown-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.countdown-section .countdown-left {
    align-items: center;
}

.countdown-section .countdown-right {
    align-items: center;
}

/* === Calendar Section (Right Side) === */
.calendar-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    min-width: 0;
    overflow: hidden;
}

.calendar-section .section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* === Legend === */
.calendar-legend {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot-free {
    background: var(--schedule-free);
}

.legend-dot-program {
    background: var(--schedule-program);
}

.legend-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* === Calendar Grid === */
.calendar {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    min-height: 0;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #0f172a;
    flex-shrink: 0;
}

.calendar-weekday {
    padding: 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    min-height: 0;
}

.calendar-day {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: default;
    transition: all 0.15s ease;
    min-height: 0;
}

.calendar-day.has-class {
    cursor: pointer;
}

.calendar-day.has-class:hover {
    background: #f1f5f9;
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-day.is-today {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--schedule-today);
}

.calendar-day.is-today .day-number {
    background: var(--schedule-today);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.is-next-class {
    background: rgba(245, 158, 11, 0.08);
}

.calendar-day.is-next-class::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: var(--schedule-next-class);
    border-radius: 50%;
}

.day-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.day-dots {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.day-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.day-dot-free {
    background: var(--schedule-free);
}

.day-dot-program {
    background: var(--schedule-program);
}

.day-month {
    position: absolute;
    top: 2px;
    left: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

/* === Tooltip === */
.class-tooltip {
    position: absolute;
    z-index: 200;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.class-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 220px;
}

.tooltip-class {
    text-align: center;
}

.tooltip-class + .tooltip-class {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.tooltip-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.tooltip-badge-free {
    background: var(--schedule-free-light);
    color: var(--schedule-free);
}

.tooltip-badge-program {
    background: var(--schedule-program-light);
    color: var(--schedule-program);
}

.tooltip-topic {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.tooltip-time {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 10px;
}

.tooltip-note {
    font-size: 0.75rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 6px;
}

.tooltip-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.tooltip-btn-primary {
    background: var(--schedule-gradient);
    color: white;
}

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

.tooltip-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.tooltip-btn-secondary:hover {
    background: #e2e8f0;
}

.tooltip-btn-disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    cursor: not-allowed;
}

/* === Hide CTA and Footer on Desktop === */
.cta-section {
    display: none;
}

.footer {
    display: none;
}

} /* End @media (min-width: 769px) */


/* === schedule-mobile-portrait.css === */

/*
 * Schedule Page - Mobile Portrait Styles
 * @media (max-width: 768px) and (orientation: portrait)
 */

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

/* === Variables === */
:root {
    --schedule-primary: #0264c0;
    --schedule-gradient: linear-gradient(135deg, #0264c0 0%, #5b21b6 100%);
    --schedule-free: #10b981;
    --schedule-free-light: #d1fae5;
    --schedule-program: #3b82f6;
    --schedule-program-light: #dbeafe;
    --schedule-today: #667eea;
    --schedule-next-class: #f59e0b;
}

/* === Base === */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* === Header === */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
}

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

.header-signin {
    padding: 8px 12px;
    background: transparent;
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

.header-cta {
    display: none;
}

.header-title {
    display: none;
}

.header-account {
    padding: 8px 14px;
    background: var(--schedule-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
}

/* === Hero === */
.hero {
    background: #0f172a;
    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #94a3b8;
}

/* === Countdown Section === */
.countdown-section {
    padding: 24px 16px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.section-content {
    max-width: 100%;
}

.countdown-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.countdown-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

/* === Calendar Section === */
.calendar-section {
    padding: 32px 16px;
    background: #ffffff;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot-free {
    background: var(--schedule-free);
}

.legend-dot-program {
    background: var(--schedule-program);
}

.legend-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* === Calendar Grid === */
.calendar {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #0f172a;
}

.calendar-weekday {
    padding: 10px 4px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: default;
}

.calendar-day.has-class {
    cursor: pointer;
}

.calendar-day.has-class:active {
    background: #f1f5f9;
}

.calendar-day.is-today {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--schedule-today);
}

.calendar-day.is-today .day-number {
    background: var(--schedule-today);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.calendar-day.is-next-class {
    background: rgba(245, 158, 11, 0.1);
}

.calendar-day.is-next-class::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: var(--schedule-next-class);
    border-radius: 50%;
}

.day-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.day-dots {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.day-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.day-dot-free {
    background: var(--schedule-free);
}

.day-dot-program {
    background: var(--schedule-program);
}

.day-month {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 0.55rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

/* === Tooltip === */
.class-tooltip {
    position: fixed;
    left: 16px !important;
    right: 16px;
    bottom: 16px;
    top: auto !important;
    transform: none !important;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.class-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.tooltip-class {
    text-align: center;
}

.tooltip-class + .tooltip-class {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.tooltip-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tooltip-badge-free {
    background: var(--schedule-free-light);
    color: var(--schedule-free);
}

.tooltip-badge-program {
    background: var(--schedule-program-light);
    color: var(--schedule-program);
}

.tooltip-topic {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.tooltip-time {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 16px;
}

.tooltip-note {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 8px;
}

.tooltip-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.tooltip-btn-primary {
    background: var(--schedule-gradient);
    color: white;
}

.tooltip-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    margin-top: 8px;
}

.tooltip-btn-disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    cursor: not-allowed;
}

/* === CTA Section === */
.cta-section {
    padding: 48px 20px;
    background: var(--schedule-gradient);
    text-align: center;
}

.cta-content {
    max-width: 100%;
}

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
}

.cta-button-primary {
    background: white;
    color: var(--schedule-primary);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* === Footer === */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 24px 16px;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-text strong {
    color: #1e293b;
}

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

} /* End @media (max-width: 768px) and (orientation: portrait) */


/* === schedule-mobile-landscape.css === */

/*
 * Schedule Page - Mobile Landscape Styles
 * @media (max-width: 926px) and (orientation: landscape)
 */

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

/* === Variables === */
:root {
    --schedule-primary: #0264c0;
    --schedule-gradient: linear-gradient(135deg, #0264c0 0%, #5b21b6 100%);
    --schedule-free: #10b981;
    --schedule-free-light: #d1fae5;
    --schedule-program: #3b82f6;
    --schedule-program-light: #dbeafe;
    --schedule-today: #667eea;
    --schedule-next-class: #f59e0b;
}

/* === Base === */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* === Header === */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: #94a3b8;
}

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

.header-signin {
    padding: 8px 14px;
    background: transparent;
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

.header-cta {
    padding: 8px 16px;
    background: var(--schedule-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.header-title {
    display: none;
}

.header-account {
    padding: 8px 14px;
    background: var(--schedule-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
}

/* === Hero === */
.hero {
    background: #0f172a;
    padding: 32px 24px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* === Countdown Section === */
.countdown-section {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.section-content {
    max-width: 100%;
}

.countdown-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.countdown-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

/* === Calendar Section === */
.calendar-section {
    padding: 32px 24px;
    background: #ffffff;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot-free {
    background: var(--schedule-free);
}

.legend-dot-program {
    background: var(--schedule-program);
}

.legend-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* === Calendar Grid === */
.calendar {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #0f172a;
}

.calendar-weekday {
    padding: 8px 4px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    position: relative;
    aspect-ratio: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: default;
}

.calendar-day.has-class {
    cursor: pointer;
}

.calendar-day.has-class:active {
    background: #f1f5f9;
}

.calendar-day.is-today {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--schedule-today);
}

.calendar-day.is-today .day-number {
    background: var(--schedule-today);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.calendar-day.is-next-class {
    background: rgba(245, 158, 11, 0.1);
}

.calendar-day.is-next-class::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 5px;
    height: 5px;
    background: var(--schedule-next-class);
    border-radius: 50%;
}

.day-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.day-dots {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.day-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.day-dot-free {
    background: var(--schedule-free);
}

.day-dot-program {
    background: var(--schedule-program);
}

.day-month {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 0.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

/* === Tooltip === */
.class-tooltip {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    width: 90%;
    max-width: 400px;
}

.class-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 16px;
    max-height: 80vh;
    overflow-y: auto;
}

.tooltip-class {
    text-align: center;
}

.tooltip-class + .tooltip-class {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.tooltip-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.tooltip-badge-free {
    background: var(--schedule-free-light);
    color: var(--schedule-free);
}

.tooltip-badge-program {
    background: var(--schedule-program-light);
    color: var(--schedule-program);
}

.tooltip-topic {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.tooltip-time {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.tooltip-note {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 6px;
}

.tooltip-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.tooltip-btn-primary {
    background: var(--schedule-gradient);
    color: white;
}

.tooltip-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    margin-top: 6px;
}

.tooltip-btn-disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    cursor: not-allowed;
}

/* === CTA Section === */
.cta-section {
    padding: 40px 24px;
    background: var(--schedule-gradient);
    text-align: center;
}

.cta-content {
    max-width: 100%;
}

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
}

.cta-button-primary {
    background: white;
    color: var(--schedule-primary);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* === Footer === */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 20px 24px;
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-text strong {
    color: #1e293b;
}

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

} /* End @media (max-width: 926px) and (orientation: landscape) */
