/* ============= Landing Page Styles ============= */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Override body for landing page */
.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: var(--bg-primary);
}

/* ============= Animated Background ============= */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

[data-theme="light"] .bg-grid {
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

/* Floating shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    top: 30%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* ============= Navigation ============= */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

[data-theme="light"] .landing-nav {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-tertiary);
}

/* ============= Hero Section ============= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #007aff 0%, #5856d6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    gap: 0.5rem;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.6);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-mascot {
    position: relative;
    z-index: 2;
}

.mascot-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mascot-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.4) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.mascot-icon {
    font-size: 8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.preview-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: 0;
    animation-delay: -3s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.card-header {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-body {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ============= Sections Common ============= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ============= Features Section ============= */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============= How It Works Section ============= */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #5856d6 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin-left: 29px;
}

/* ============= Announcements Section ============= */
.announcements {
    background: var(--bg-secondary);
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.announcement-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.announcement-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.announcement-date {
    min-width: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

.announcement-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.announcement-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============= CTA Section ============= */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============= Footer ============= */
.landing-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ============= Responsive - Tablet ============= */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 250px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Reduce floating shapes on tablet */
    .shape {
        filter: blur(80px);
        opacity: 0.3;
    }
}

/* ============= Responsive - Mobile ============= */
@media (max-width: 640px) {
    /* iOS Safe Areas */
    .landing-page {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Reduce/disable heavy animations on mobile for performance */
    .shape {
        display: none; /* Hide floating shapes on mobile */
    }
    
    .bg-grid {
        display: none; /* Hide grid on mobile */
    }
    
    @keyframes float {
        0%, 100% { transform: none; }
    }
    
    @keyframes cardFloat {
        0%, 100% { transform: none; }
    }
    
    /* Navigation - Better mobile experience */
    .landing-nav {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .mobile-nav-toggle {
        padding: 10px;
        margin: -10px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-nav-toggle span {
        width: 22px;
        height: 2.5px;
        border-radius: 2px;
    }
    
    /* Mobile Menu - Better styling */
    .mobile-menu {
        top: 60px;
        padding: 0.75rem;
        background: var(--bg-primary);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .mobile-menu a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: var(--radius-md);
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu a:active {
        background: var(--bg-tertiary);
    }
    
    .mobile-menu .btn {
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
    }
    
    /* Hero Section - Optimized for mobile */
    .hero {
        min-height: auto;
        padding: 5rem 1.25rem 2.5rem;
        gap: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-glow {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    
    /* Stats - Compact mobile layout */
    .hero-stats {
        gap: 1.25rem;
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: var(--radius-lg);
        width: 100%;
        justify-content: space-around;
    }
    
    .stat-value {
        font-size: 1.35rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    /* Hero Visual - Simplified for mobile */
    .hero-visual {
        min-height: 180px;
        width: 100%;
    }
    
    .mascot-container {
        width: 120px;
        height: 120px;
    }
    
    .mascot-icon {
        font-size: 4rem;
    }
    
    .hero-cards {
        display: none; /* Hide floating cards on mobile */
    }
    
    /* Sections - Mobile padding */
    .section-container {
        padding: 3rem 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Features Grid - Single column with smaller cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .feature-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Steps - Mobile centered layout */
    .steps {
        gap: 0;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-connector {
        margin-left: 0;
        height: 30px;
    }
    
    /* Announcements - Mobile card layout */
    .announcements-list {
        gap: 0.75rem;
    }
    
    .announcement-card {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .announcement-card:hover {
        transform: none;
    }
    
    .announcement-date {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .announcement-content h4 {
        font-size: 1rem;
    }
    
    .announcement-content p {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer - Mobile layout */
    .landing-footer {
        padding: 2rem 1.25rem;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* ============= Small Mobile (iPhone SE, etc) ============= */
@media (max-width: 375px) {
    .hero {
        padding: 4.5rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .mascot-container {
        width: 100px;
        height: 100px;
    }
    
    .mascot-icon {
        font-size: 3.5rem;
    }
    
    .section-container {
        padding: 2.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
}

/* ============= Touch Device Improvements ============= */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices */
    .feature-card:hover,
    .announcement-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Ensure good tap targets (minimum 44px) */
    .btn {
        min-height: 44px;
    }
    
    .mobile-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .nav-links a {
        padding: 0.5rem;
    }
    
    /* Smooth scrolling for iOS */
    .landing-page {
        -webkit-overflow-scrolling: touch;
    }
}

/* ============= Landscape Mode on Mobile ============= */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 2rem 2rem;
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        width: auto;
        background: none;
        padding: 0;
    }
    
    .hero-visual {
        min-height: 200px;
    }
}

/* ============= Reduce Motion for Accessibility ============= */
@media (prefers-reduced-motion: reduce) {
    .shape,
    .mascot-icon,
    .mascot-glow,
    .preview-card,
    .logo-icon,
    .feature-icon {
        animation: none !important;
    }
    
    * {
        transition-duration: 0.01ms !important;
    }
}

/* ============= Custom Loading Animation ============= */
.landing-page .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .spinner-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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