/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

p, span, label, input, textarea {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

/* Brand Colors */
:root {
    --primary-color: #ffb300;
    --primary-hover: #e6a000;
    --text-primary: #0a0a0a;
    --text-secondary: #4a4a4a;
    --text-light: #8a8a8a;
    --background-light: #f8f9fa;
    --background-ultra-light: #fcfcfd;
    --border-light: #e8eaed;
    --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #ffb300 0%, #ffc947 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.8px;
}

.nav-logo a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, var(--background-ultra-light) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 179, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 520px;
}

.hero-cta {
    margin-top: 40px;
}

/* App Store Badges */
.app-store-badges {
    margin-top: 64px;
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.03) 0%, rgba(255, 179, 0, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 179, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.app-store-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 179, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon-text {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.store-badge {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.store-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.store-badge img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* Combined store badge styling */
.combined-store-badge {
    height: 90px;
    width: auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.95;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 4px 8px rgba(255, 179, 0, 0.15));
}

.combined-store-badge:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 6px 12px rgba(255, 179, 0, 0.25));
}

/* Hero Visual */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 500px;
    position: relative;
    padding-top: 0px;
}

.floating-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    width: 350px;
    transform: rotate(-5deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#story-carousel {
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.card-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-primary);
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.card-content {
    padding: 24px;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.card-location i {
    font-size: 12px;
    color: var(--primary-color);
}

/* Waitlist Form Component */
.waitlist-form {
    max-width: 480px;
}

.waitlist-input-group {
    display: flex;
    gap: 0;
    background: #ffffff;
    border-radius: 32px;
    padding: 6px;
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-soft);
}

.waitlist-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.08), var(--shadow-medium);
    transform: translateY(-2px);
}

.waitlist-email {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-size: 17px;
    color: var(--text-primary);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.waitlist-email::placeholder {
    color: var(--text-light);
}

.waitlist-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.25);
}

.waitlist-submit:hover {
    background: linear-gradient(135deg, #e6a000 0%, #f0b429 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.35);
}

.waitlist-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.waitlist-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.waitlist-message.success {
    background: #e8f5e8;
    color: #2d5a2d;
    border: 1px solid #c3e6c3;
}

.waitlist-message.error {
    background: #ffeaea;
    color: #d63031;
    border: 1px solid #ffb3b3;
}

/* Section Styles */
.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 80px;
    margin-top: 80px;
}

.step {
    text-align: center;
    padding: 40px 20px;
}

.step-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    font-size: 32px;
}

.step-icon i {
    font-size: 32px;
}

.step:hover .step-icon {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.how-it-works .section-title {
    color: white;
}

.step h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.step p {
    font-size: 18px;
    color: #a1a1a6;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Copenhagen Section */
.copenhagen-section {
    padding: 120px 0;
    background: #ffffff;
}

.copenhagen-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.copenhagen-text {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 64px;
    font-weight: 400;
}

.copenhagen-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
    text-align: left;
}

.highlight i {
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 18px;
}

.highlight span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Map Animation Section */
.map-section {
    padding: 120px 0;
    background-image: url('Icons/Other/CPH maps.jpg');
    background-size: cover;
    background-position: 100% center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.map-text {
    color: white;
}

.map-text h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.map-text p {
    font-size: 22px;
    color: white;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.map-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.map-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.map-base {
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.story-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #FFB300;
    border-radius: 50%;
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 179, 0, 1), 0 0 60px rgba(255, 179, 0, 0.5);
    z-index: 100;
    border: 3px solid white;
    animation: pinPulse 2s ease-in-out infinite;
}

.story-pin::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 50%;
    animation: pinRipple 2s ease-out infinite;
}

.story-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


@keyframes pinPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pinRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Technology Section */
.tech-section {
    padding: 120px 0;
    background: #ffffff;
    color: var(--text-primary);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.tech-text h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    color: white;
}

.tech-text p {
    font-size: 22px;
    color: #a1a1a6;
    line-height: 1.5;
    font-weight: 400;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-demo {
    width: 100%;
    max-width: 400px;
}

.demo-screen {
    background: #1d1d1f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #2d2d30;
}

.demo-header {
    padding: 20px;
    border-bottom: 1px solid #2d2d30;
    display: flex;
    align-items: center;
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a4a4a;
}

.demo-dots span:first-child {
    background: #ff5f57;
}

.demo-dots span:nth-child(2) {
    background: #ffbd2e;
}

.demo-dots span:last-child {
    background: #28ca42;
}

.demo-content {
    padding: 24px;
}

.ai-suggestion {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 179, 0, 0.1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
}

.suggestion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.suggestion-text p {
    font-size: 14px;
    color: #e5e5e7;
    line-height: 1.4;
    margin: 0;
}

.story-preview {
    background: #2d2d30;
    padding: 16px;
    border-radius: 12px;
}

.story-preview p {
    font-size: 14px;
    color: #a1a1a6;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.highlight {
    background: rgba(255, 179, 0, 0.2);
    color: var(--primary-color);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--background-ultra-light) 100%);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(255, 179, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 48px;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.cta-content .waitlist-form {
    margin: 0 auto;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.different-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.different-section .section-title {
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.different-card {
    background: #242424;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.different-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.different-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.different-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.different-card p {
    font-size: 16px;
    color: #a1a1a6;
    line-height: 1.6;
}

.vision-section {
    padding: 100px 0;
    background: #ffffff;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-section {
    padding: 100px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.founder-section .section-title {
    color: white;
}

.founder-text {
    font-size: 18px;
    color: #a1a1a6;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.footer-brand p {
    color: #999999;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .tech-content {
        gap: 40px;
    }
    
    .steps-grid,
    .different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .copenhagen-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .waitlist-input-group {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .waitlist-submit {
        width: 100%;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .floating-card {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .how-it-works,
    .copenhagen-section,
    .ai-section,
    .final-cta,
    .about-hero,
    .different-section,
    .vision-section,
    .founder-section,
    .about-cta {
        padding: 60px 0;
    }
}

/* Scroll Animations - Apple Style */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* Hero animations (immediate on load) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-cta {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-cta {
    animation-delay: 0.4s;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    display: none; /* Hidden for now */
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.theme-toggle-icon {
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-toggle-icon::before {
    content: '☀';
}

body.dark-mode .theme-toggle {
    border-color: #e0e0e0;
}

body.dark-mode .theme-toggle:hover {
    border-color: var(--primary-color);
}

body.dark-mode .theme-toggle-icon::before {
    content: '☾';
}

/* Dark Mode Styles */
body.dark-mode {
    background: #0f0f0f;
    color: #e5e5e5;
}

body.dark-mode .navbar {
    background: rgba(15, 15, 15, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .nav-logo h2 {
    color: var(--primary-color);
}

body.dark-mode .nav-links a {
    color: #e5e5e5;
}

body.dark-mode .nav-links a:hover {
    color: var(--primary-color);
}

body.dark-mode .nav-cta {
    background: var(--primary-color);
    color: #0f0f0f;
}

body.dark-mode .nav-cta:hover {
    background: var(--primary-hover);
}

body.dark-mode .hero {
    background: #0f0f0f;
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-subtitle {
    color: #b8b8b8;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #ffffff;
}

body.dark-mode p {
    color: #b8b8b8;
}

body.dark-mode .copenhagen-section,
body.dark-mode .final-cta,
body.dark-mode .about-hero {
    background: #0f0f0f;
}

body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .how-it-works {
    background: #1a1a1a;
}

body.dark-mode .step h3 {
    color: #ffffff;
}

body.dark-mode .step p {
    color: #a0a0a0;
}

body.dark-mode .floating-card {
    background: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .card-content h3 {
    color: #ffffff;
}

body.dark-mode .card-content p {
    color: #b8b8b8;
}

body.dark-mode .card-meta {
    color: #888;
}

body.dark-mode .waitlist-form input {
    background: #1a1a1a;
    border: 2px solid #333;
    color: #e5e5e5;
}

body.dark-mode .waitlist-form input:focus {
    border-color: var(--primary-color);
    background: #222;
}

body.dark-mode .waitlist-form input::placeholder {
    color: #666;
}

body.dark-mode .waitlist-submit {
    background: var(--primary-color);
    color: #0f0f0f;
}

body.dark-mode .waitlist-submit:hover {
    background: var(--primary-hover);
}

body.dark-mode .footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .footer-links a {
    color: #b8b8b8;
}

body.dark-mode .footer-links a:hover {
    color: var(--primary-color);
}

body.dark-mode .different-section {
    background: #1a1a1a;
}

body.dark-mode .different-card {
    background: #242424;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .different-card h3 {
    color: #ffffff;
}

body.dark-mode .different-card p {
    color: #b8b8b8;
}

body.dark-mode .tech-text h2 {
    color: #ffffff;
}

body.dark-mode .tech-text p {
    color: #a0a0a0;
}
