/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9823;
    --primary-dark: #E8890F;
    --secondary-color: #6366F1;
    --bg-primary: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #252525;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #FF9823 0%, #E8890F 100%);
    --gradient-secondary: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.nav-logo .logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-primary) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: #FFFFFF;
    color: #000000 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    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(circle at 20% 80%, rgba(255, 152, 35, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGradientShift 25s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0% {
        background: radial-gradient(circle at 25% 75%, rgba(255, 152, 35, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    }
    10% {
        background: radial-gradient(circle at 30% 70%, rgba(255, 152, 35, 0.13) 0%, transparent 60%),
                    radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.11) 0%, transparent 60%);
    }
    20% {
        background: radial-gradient(circle at 35% 65%, rgba(255, 152, 35, 0.14) 0%, transparent 60%),
                    radial-gradient(circle at 65% 35%, rgba(99, 102, 241, 0.10) 0%, transparent 60%);
    }
    30% {
        background: radial-gradient(circle at 40% 60%, rgba(255, 152, 35, 0.13) 0%, transparent 60%),
                    radial-gradient(circle at 60% 40%, rgba(99, 102, 241, 0.11) 0%, transparent 60%);
    }
    40% {
        background: radial-gradient(circle at 45% 55%, rgba(255, 152, 35, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 55% 45%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    }
    50% {
        background: radial-gradient(circle at 50% 50%, rgba(255, 152, 35, 0.11) 0%, transparent 60%),
                    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.13) 0%, transparent 60%);
    }
    60% {
        background: radial-gradient(circle at 55% 45%, rgba(255, 152, 35, 0.10) 0%, transparent 60%),
                    radial-gradient(circle at 45% 55%, rgba(99, 102, 241, 0.14) 0%, transparent 60%);
    }
    70% {
        background: radial-gradient(circle at 60% 40%, rgba(255, 152, 35, 0.11) 0%, transparent 60%),
                    radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.13) 0%, transparent 60%);
    }
    80% {
        background: radial-gradient(circle at 65% 35%, rgba(255, 152, 35, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 35% 65%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    }
    90% {
        background: radial-gradient(circle at 70% 30%, rgba(255, 152, 35, 0.13) 0%, transparent 60%),
                    radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.11) 0%, transparent 60%);
    }
    100% {
        background: radial-gradient(circle at 25% 75%, rgba(255, 152, 35, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 60px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: #FFFFFF;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(255, 152, 35, 0.1);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1200px;
}

.hero-video {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    max-width: min(1000px, calc(100vw - 120px));
    margin: 20px auto 0;
    transform: rotateX(4deg) rotateY(-8deg) rotateZ(2deg) scale(1.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-video:hover {
    transform: rotateX(2deg) rotateY(-4deg) rotateZ(1deg) scale(1.25);
    max-width: min(1000px, calc(100vw - 140px));
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    border: none;
}

.floating-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
}

.solution-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(255, 152, 35, 0.3));
    transition: all 0.3s ease;
}

.floating-logo:hover .solution-logo {
    filter: drop-shadow(0 15px 40px rgba(255, 152, 35, 0.5));
    transform: scale(1.05);
}

.logo-tooltip {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.logo-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--bg-secondary);
}

.floating-logo:hover .logo-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #000000;
}

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

.problem-item {
    text-align: center;
    padding: 40px 20px;
    background: #171717;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 152, 35, 0.3);
    background: rgba(255, 152, 35, 0.02);
}

.problem-item:hover::before {
    transform: scaleX(1);
}

.problem-item:hover .problem-icon {
    transform: scale(1.05);
}

.problem-item:hover h3 {
    color: var(--primary-color);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.problem-icon i {
    font-size: 32px;
    color: var(--text-primary);
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Solution Section */
.solution {
    padding: 100px 0;
    background: #000000;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.solution-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.solution-visual {
    position: relative;
    height: 300px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #000000;
}

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

.benefit-card {
    background: #171717;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--text-primary);
}

.benefit-tagline {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0 50px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--text-primary);
}

.waitlist-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 60px;
}

.form-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 35, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group button {
    position: relative;
    white-space: nowrap;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-flex;
}

.form-note {
    color: var(--text-muted);
    font-size: 14px;
}

.waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #000000;
}

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

.team-member {
    background: #171717;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    transition: var(--transition);
}

.team-member:hover .member-photo {
    border-color: var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-tagline {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Social Media Section */
.social {
    padding: 100px 0 250px 0;
    background: #000000;
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.social-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    min-width: 140px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-link i {
    font-size: 32px;
}

.social-link.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.social-link.twitter:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.social-link.instagram:hover {
    position: relative;
    background: var(--bg-secondary);
    border-color: rgba(188, 24, 136, 0.2);
}

.social-link.instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    opacity: 0;
    border-radius: var(--border-radius-lg);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.social-link.instagram:hover {
    color: white;
    border-color: #bc1888;
}

/* Creative Footer */
.creative-footer {
    background: #000000;
    padding: 80px 0 40px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.creative-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.footer-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.footer-actions {
    margin-bottom: 40px;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 152, 35, 0.1);
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 14px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 100%);
    pointer-events: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    font-size: 32px;
    color: var(--text-primary);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Responsive Design */

/* Large tablets and small desktops */
/* Small Desktop - Ensure video never gets cut off */
@media (max-width: 1200px) {
    .hero-video {
        /* Extra margin to account for scale(1.2) and hover scale(1.25) */
        max-width: calc(100vw - 30vw); /* 15vw margin on each side */
        margin: 20px auto 0;
    }
    
    .hero-video:hover {
        max-width: calc(100vw - 35vw); /* Larger margin on hover for scale(1.25) */
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 70px 0 30px;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .hero-visual {
        height: 300px;
    }

    .hero-video {
        max-width: min(500px, calc(100vw - 80px));
        margin: 30px auto 0;
        transform: rotateX(-3deg) rotateY(5deg) rotateZ(1deg) scale(1.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-video:hover {
        max-width: min(500px, calc(100vw - 100px));
    }

    /* Sections */
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Mobile-only swipeable card stack */
    .problem-grid.mobile-stack {
        position: relative;
        display: block;
        height: 300px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .problem-grid.mobile-stack::after {
        content: "👈 Swipe to explore";
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 500;
        animation: swipeHint 2s ease-in-out infinite;
        pointer-events: none;
    }
    
    /* Keep normal grid layout for non-mobile */
    .problem-grid:not(.mobile-stack) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-grid:not(.mobile-stack) .problem-item {
        user-select: none;
    }
    
    @keyframes swipeHint {
        0%, 100% {
            opacity: 0.6;
            transform: translateX(-50%) translateX(0px);
        }
        50% {
            opacity: 1;
            transform: translateX(-50%) translateX(-10px);
        }
    }

    /* Forms */
    .form-group {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-group input {
        width: 100%;
        margin-bottom: 0;
    }
    
    .form-group button {
        width: 100%;
        justify-content: center;
    }

    /* Stats and Social */
    .waitlist-stats {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Footer */
    .footer-logo-section {
        flex-direction: column;
        gap: 12px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .solution-logo {
        width: 80px;
        height: 80px;
    }
    
    /* Sections padding */
    .problem, .solution, .benefits, .team, .social {
        padding: 80px 0;
    }
    
    .waitlist {
        padding: 80px 0;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 70px 0 20px;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        gap: 20px;
    }
    
    /* Solution section adjustments */
    .solution-features {
        display: none;
    }
    
    .solution-visual {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .hero-video {
        max-width: min(80%, calc(100vw - 60px));
        margin: 20px auto 0;
        transform: rotateX(-2deg) rotateY(3deg) rotateZ(0.5deg) scale(0.9);
    }
    
    .hero-video:hover {
        max-width: min(80%, calc(100vw - 80px));
    }

    /* Typography */
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .waitlist-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .social-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    /* Grids */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Cards */
    .benefit-card {
        padding: 20px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .benefit-tagline {
        font-size: 1rem;
        margin: 0;
        flex: 1;
    }
    
    .social-link {
        padding: 12px 8px;
        min-width: auto;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    
    .social-link i {
        font-size: 24px;
    }
    
    .social-link span {
        font-size: 12px;
        font-weight: 500;
    }
    
    /* Mobile-only swipeable card stack styles */
    .problem-grid.mobile-stack .problem-item {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 30px 20px;
        cursor: grab;
        transition: transform 0.3s ease, opacity 0.3s ease;
        touch-action: pan-y;
        user-select: none;
    }
    
    .problem-grid.mobile-stack .problem-item:nth-child(1) {
        z-index: 3;
        transform: translateY(0px) rotate(-1deg);
        animation: cardFloat 3s ease-in-out infinite;
    }
    
    .problem-grid.mobile-stack .problem-item:nth-child(2) {
        z-index: 2;
        transform: translateY(12px) translateX(8px) rotate(-3deg) scale(0.95);
        opacity: 0.8;
    }
    
    .problem-grid.mobile-stack .problem-item:nth-child(3) {
        z-index: 1;
        transform: translateY(24px) translateX(-6px) rotate(2deg) scale(0.9);
        opacity: 0.6;
    }
    
    @keyframes cardFloat {
        0%, 100% {
            transform: translateY(0px) rotate(-1deg);
        }
        50% {
            transform: translateY(-8px) rotate(1deg);
        }
    }
    
    .problem-grid.mobile-stack .problem-item.swiping {
        transition: none;
    }
    
    .problem-grid.mobile-stack .problem-item.swiped-out {
        transform: translateX(100vw) rotate(20deg);
        opacity: 0;
        pointer-events: none;
    }
    
    /* Desktop grid layout for problem items */
    .problem-grid:not(.mobile-stack) .problem-item {
        position: static;
        padding: 30px 16px;
        cursor: default;
        transform: none !important;
        opacity: 1 !important;
        z-index: auto !important;
        animation: none !important;
        touch-action: auto;
        user-select: none;
    }
    
    .team-member {
        padding: 24px 16px;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    .waitlist-stats {
        gap: 16px;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .form-group button {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Navigation adjustments */
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }

    /* Sections padding */
    .problem, .solution, .benefits, .team, .social {
        padding: 60px 0;
    }
    
    .waitlist {
        padding: 60px 0;
    }
    
    .creative-footer {
        padding: 60px 0 30px;
    }
    
    /* Modal adjustments */
    .modal-content {
        margin: 16px;
        padding: 30px 20px;
    }
    
    /* Tooltips */
    .logo-tooltip {
        font-size: 12px;
        padding: 8px 12px;
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .waitlist-content h2,
    .social-content h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
}

/* Intersection Observer Animations */
.benefit-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.social-link.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.benefit-card:nth-child(1).animate { transition-delay: 0.1s; }
.benefit-card:nth-child(2).animate { transition-delay: 0.2s; }
.benefit-card:nth-child(3).animate { transition-delay: 0.3s; }
.benefit-card:nth-child(4).animate { transition-delay: 0.4s; }
.benefit-card:nth-child(5).animate { transition-delay: 0.5s; }
.benefit-card:nth-child(6).animate { transition-delay: 0.6s; }

.social-link:nth-child(1).animate { transition-delay: 0.04s; }
.social-link:nth-child(2).animate { transition-delay: 0.08s; }
.social-link:nth-child(3).animate { transition-delay: 0.12s; }
.social-link:nth-child(4).animate { transition-delay: 0.16s; }

/* Smooth scrolling animations for other elements */
@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease-out forwards;
        animation-delay: 0.3s;
    }

    .hero-video {
        opacity: 0;
        transform: translateY(-20px) rotateX(4deg) rotateY(-8deg) rotateZ(2deg) scale(1.2);
        animation: fadeInDown 0.8s ease-out forwards;
        animation-delay: 0.3s;
    }

    .problem-item,
    .team-member {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .problem-item:nth-child(1) { animation-delay: 0.1s; }
    .problem-item:nth-child(2) { animation-delay: 0.2s; }
    .problem-item:nth-child(3) { animation-delay: 0.3s; }

    .team-member:nth-child(1) { animation-delay: 0.1s; }
    .team-member:nth-child(2) { animation-delay: 0.2s; }
    .team-member:nth-child(3) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) rotateX(4deg) rotateY(-8deg) rotateZ(2deg) scale(1.2);
    }
    to {
        opacity: 1;
        transform: translateY(0px) rotateX(4deg) rotateY(-8deg) rotateZ(2deg) scale(1.2);
    }
} 