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

:root {
    --primary-color: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1E40AF;
    --accent-color: #10B981;
    --accent-light: #34D399;
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --background: #FFFFFF;
    --background-light: #F9FAFB;
    --background-lighter: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Dark mode variables */
[data-theme="dark"] {
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --background: #0F172A;
    --background-light: #1E293B;
    --background-lighter: #334155;
    --border-color: #475569;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

[data-theme="dark"] .nav-container {
    background: rgba(15, 23, 42, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    background: var(--background-light);
    transform: scale(1.1);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.theme-toggle .moon-icon {
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

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

.hero-logo {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

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

@keyframes logoGlow {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 2;
}

.badge-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.browser-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-logos .browser-logo,
.badge-container .browser-logos img {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 50%;
}

.browser-logo:hover {
    transform: scale(1.1);
}

.badge-text {
    flex: 1;
}

.email-provider-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.provider-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
}

.provider-logo:hover {
    transform: scale(1.1);
}

.provider-logo.outlook {
    filter: grayscale(100%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    opacity: 0.6;
    cursor: pointer;
}

.provider-logo.outlook::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.provider-logo.outlook:hover::after {
    opacity: 1;
    visibility: visible;
}

.browser-logos {
    display: flex;
    align-items: center;
    gap: 4px;
}

.browser-logo {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    padding: 2px;
    transition: transform 0.2s ease;
}

.browser-logo:hover {
    transform: scale(1.1);
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating Productivity Icons */
.floating-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.7;
    z-index: 1;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.icon-1 {
    top: 10%;
    left: 15%;
    animation: float1 8s ease-in-out infinite;
}

.icon-2 {
    top: 20%;
    right: 20%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: -1s;
}

.icon-3 {
    top: 60%;
    left: 10%;
    animation: float3 9s ease-in-out infinite;
    animation-delay: -2s;
}

.icon-4 {
    bottom: 20%;
    right: 15%;
    animation: float4 6s ease-in-out infinite;
    animation-delay: -0.5s;
}

.icon-5 {
    top: 40%;
    left: 5%;
    animation: float5 7.5s ease-in-out infinite;
    animation-delay: -3s;
}

.icon-6 {
    bottom: 40%;
    right: 5%;
    animation: float6 8.5s ease-in-out infinite;
    animation-delay: -1.5s;
}

.icon-7 {
    top: 80%;
    left: 30%;
    animation: float7 6.5s ease-in-out infinite;
    animation-delay: -2.5s;
}

.icon-8 {
    top: 5%;
    left: 40%;
    animation: float8 7.8s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    25% { transform: translate(10px, -15px) rotate(5deg); opacity: 0.8; }
    50% { transform: translate(-5px, -25px) rotate(-3deg); opacity: 0.7; }
    75% { transform: translate(-10px, -10px) rotate(2deg); opacity: 0.9; }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(-15px, 20px) rotate(-4deg); opacity: 0.8; }
    66% { transform: translate(10px, 15px) rotate(6deg); opacity: 0.6; }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    30% { transform: translate(20px, -10px) rotate(3deg); opacity: 0.9; }
    60% { transform: translate(-10px, 20px) rotate(-5deg); opacity: 0.7; }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(-20px, -15px) rotate(-6deg); opacity: 0.6; }
    75% { transform: translate(15px, 10px) rotate(4deg); opacity: 0.9; }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    40% { transform: translate(25px, 20px) rotate(7deg); opacity: 0.8; }
    80% { transform: translate(-15px, -5px) rotate(-2deg); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-25px, -20px) rotate(-8deg); opacity: 0.9; }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    35% { transform: translate(15px, -25px) rotate(5deg); opacity: 0.7; }
    70% { transform: translate(-20px, 10px) rotate(-3deg); opacity: 0.9; }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    45% { transform: translate(-10px, 25px) rotate(-4deg); opacity: 0.8; }
    90% { transform: translate(20px, -15px) rotate(6deg); opacity: 0.6; }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 0.5s;
}

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

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

.coming-soon {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.hero-social-proof {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-user-count {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--background);
    scroll-margin-top: 80px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.about-card {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-light) 100%);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scale(1);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.company-section {
    margin-bottom: 60px;
}

.company-section h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.company-description {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: var(--background-lighter);
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.about-cta {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-lighter);
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-primary);
}

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

.feature-card {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, var(--background) 0%, rgba(239, 246, 255, 0.5) 100%);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 60px;
}

.coming-soon-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card.coming-soon {
    position: relative;
    opacity: 0.8;
    background: var(--background-lighter);
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

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

/* Waitlist Section */
.waitlist {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-lighter) 0%, var(--background-light) 100%);
    scroll-margin-top: 80px;
}

.waitlist-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-waitlist {
    font-size: 18px;
    padding: 18px 40px;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 32px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 16px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.user-count {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
}

/* Modal Styles for KIT */
.formkit-form[data-uid="fd78819333"] .formkit-modal-close,
.formkit-modal .formkit-close {
    position: absolute !important;
    top: 3px !important;
    right: 3px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 14px !important;
    line-height: 24px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0 60px;
    background: var(--background);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-accent);
}

.go-to-top:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 48px 0 32px;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background: #1F2937;
    color: white;
}

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

.footer-brand {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 112px;
    width: auto;
}

.footer-text-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
}

.footer-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-brand p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 8px 20px;
    }
    
    .logo-image {
        height: 48px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-logo {
        height: 96px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        height: 350px;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .logo-glow {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 6px 16px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .hero-logo {
        width: 160px;
        height: 160px;
    }
    
    .logo-glow {
        width: 200px;
        height: 200px;
    }
    
    .floating-icon {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .waitlist-form {
        padding: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus {
    outline-offset: 4px;
}