/* BioRevive Medical Aesthetics - Premium Coming Soon Page */
/* Mobile-First Design with Bento Grid Layout */

/* CSS Custom Properties */
:root {
    /* Brand Colors - Premium Medical Aesthetics */
    --primary-dark: #0a0f1c;
    --primary-medium: #1a2332;
    --primary-light: #2d3748;
    --primary-lighter: #4a5568;
    
    /* Accent Colors - Luxury Gold System */
    --accent-gold: #c9a96e;
    --accent-gold-light: #d4b87c;
    --accent-gold-dark: #b8956a;
    --accent-copper: #ae8b63;
    
    /* Neutral System */
    --neutral-white: #ffffff;
    --neutral-cream: #fefefe;
    --neutral-light: #f8f9fa;
    --neutral-medium: #e9ecef;
    --neutral-gray: #6c757d;
    --neutral-dark: #495057;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-primary: 'Inter', system-ui, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-white);
    background: var(--primary-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-email {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    transition: all var(--transition-smooth);
}

.nav-email:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 var(--space-4xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(45, 55, 72, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: var(--space-xl);
    backdrop-filter: var(--glass-blur);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 500;
    color: var(--neutral-white);
    margin-bottom: var(--space-sm);
}

.title-highlight {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    margin-bottom: var(--space-sm);
}

.title-sub {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Promo CTA */
.promo-cta {
    margin-bottom: var(--space-2xl);
}

.promo-offer {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: var(--glass-blur);
    max-width: 500px;
    margin: 0 auto;
}

.offer-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.offer-percent {
    font-size: 1.5rem;
    line-height: 1;
}

.offer-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.offer-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

.offer-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Bento Grid Section */
.bento-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--container-lg);
    margin: 0 auto;
}

.bento-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: var(--glass-blur);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.bento-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-white);
}

.bento-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Countdown Bento */
.countdown-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(201, 169, 110, 0.08));
}

.countdown-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.time-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-sm);
    min-width: 60px;
    transition: all var(--transition-smooth);
}

.time-unit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.time-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.time-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.time-separator {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.7;
    font-weight: 300;
}

/* Subscription Bento */
.subscription-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(16, 185, 129, 0.08));
}

.subscription-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.subscription-form {
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.email-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--neutral-white);
    font-size: 1rem;
    transition: all var(--transition-smooth);
    backdrop-filter: var(--glass-blur);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.4;
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
    padding: var(--space-xl);
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: bounce 1s ease-out;
}

.success-state h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.success-state p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Services Bento */
.services-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(59, 130, 246, 0.08));
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.service-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-sm);
}

.service-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-white);
    margin-bottom: var(--space-xs);
}

.service-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Stats Bento */
.stats-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(245, 158, 11, 0.08));
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.2);
    border-radius: var(--radius-lg);
    color: #e1306c;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: var(--radius-lg);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-link svg,
.social-link span {
    position: relative;
    z-index: 1;
}

/* About Bento */
.about-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(139, 92, 246, 0.08));
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Contact Bento */
.contact-bento {
    background: linear-gradient(135deg, var(--glass-bg), rgba(16, 185, 129, 0.08));
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-smooth);
    margin-bottom: var(--space-md);
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.contact-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 15, 28, 0.8);
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-style: italic;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 300px;
}

.loading-logo img {
    max-width: 120px;
    height: auto;
    animation: pulse 2s infinite;
    margin-bottom: var(--space-lg);
}

.loading-text {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-copper));
    border-radius: var(--radius-sm);
    animation: loading 2s ease-in-out infinite;
}

/* Notifications */
.notifications-container {
    position: fixed;
    top: 90px;
    right: var(--space-md);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.notification {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 300px;
    backdrop-filter: var(--glass-blur);
    border: 1px solid;
    opacity: 0;
    transform: translateX(100px);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.notification.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--error);
}

.notification.info {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -15px, 0);
    }
    70% {
        transform: translate3d(0, -7px, 0);
    }
    90% {
        transform: translate3d(0, -3px, 0);
    }
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design - Mobile First */

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .nav-email span {
        display: none;
    }
    
    .hero {
        padding: 100px 0 var(--space-2xl);
    }
    
    .promo-offer {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .offer-badge {
        width: 60px;
        height: 60px;
    }
    
    .offer-percent {
        font-size: 1.2rem;
    }
    
    .bento-item {
        padding: var(--space-lg);
    }
    
    .countdown-display {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .time-group {
        justify-content: space-around;
    }
    
    .time-unit {
        min-width: 50px;
        padding: var(--space-sm);
    }
    
    .time-number {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .notification {
        min-width: calc(100vw - 2rem);
        margin: 0 var(--space-sm);
    }
    
    .notifications-container {
        right: 0;
        left: 0;
    }
}

/* Tablet (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-bento,
    .subscription-bento {
        grid-column: 1 / -1;
    }
    
    .form-group {
        flex-direction: row;
        align-items: stretch;
    }
    
    .email-input {
        flex: 1;
    }
    
    .submit-btn {
        width: auto;
        min-width: 160px;
    }
}

/* Desktop (769px and up) */
@media (min-width: 769px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: var(--space-xl);
    }
    
    .countdown-bento {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .subscription-bento {
        grid-column: 3;
        grid-row: 1 / 3;
    }
    
    .services-bento {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    
    .stats-bento {
        grid-column: 1;
        grid-row: 3;
    }
    
    .about-bento {
        grid-column: 2;
        grid-row: 3;
    }
    
    .contact-bento {
        grid-column: 3;
        grid-row: 3;
    }
    
    .countdown-display {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
    
    .time-group {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .time-unit {
        min-width: 80px;
        padding: var(--space-lg) var(--space-md);
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 2rem;
        align-self: center;
    }
    
    .form-group {
        flex-direction: row;
        align-items: stretch;
    }
    
    .email-input {
        flex: 1;
    }
    
    .submit-btn {
        width: auto;
        min-width: 180px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }
    
    .service-item:hover {
        transform: translateY(-8px);
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .bento-grid {
        max-width: var(--container-xl);
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .bento-item {
        padding: var(--space-2xl);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --accent-gold: #ffeb3b;
        --primary-dark: #000000;
        --neutral-white: #ffffff;
        --glass-border: rgba(255, 255, 255, 0.5);
    }
    
    .bento-item {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-particles {
        display: none;
    }
    
    .badge-dot {
        animation: none;
    }
    
    .loading-progress {
        animation: none;
        width: 100%;
    }
}

/* Focus Styles for Accessibility */
.email-input:focus,
.submit-btn:focus,
.nav-email:focus,
.social-link:focus,
.contact-email:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav,
    .loading-screen,
    .notifications-container,
    .floating-particles {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .bento-item {
        border: 1px solid #ccc;
        background: white;
        break-inside: avoid;
    }
}