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

:root {
    --primary-color: #007AFF;
    --primary-dark: #0051D5;
    --primary-light: #5AC8FA;
    --secondary-color: #5856D6;
    --text-primary: #ffffff;
    --text-secondary: #a1a1a6;
    --text-light: #8e8e93;
    --bg-primary: #000000;
    --bg-secondary: #1c1c1e;
    --bg-tertiary: #2c2c2e;
    --bg-dark: #000000;
    --border-color: #38383a;
    --accent-blue: #007AFF;
    --gradient-1: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --gradient-2: linear-gradient(135deg, #5AC8FA 0%, #007AFF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
}

* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

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

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

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

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

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

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0051D5 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0051D5 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Fallback if video doesn't load */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    max-width: 90%;
}

.gradient-text {
    display: block;
    color: var(--primary-color);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.app-store-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.hero-stats {
    display: flex;
    gap: 64px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

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

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-left: 30px;
}

.app-showcase {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.app-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: visible;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 32px;
}

.app-placeholder-logo {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.app-placeholder-tagline {
    margin: 0;
    color: #c7cad4;
    font-size: 14px;
    line-height: 1.6;
}

/* Floating Notifications */
.notification-card {
    position: absolute;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;
    z-index: 10;
    animation: floatNotification 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.notification-left {
    left: -140px;
    top: 30%;
    animation-delay: 0s;
    max-width: 200px;
}

.notification-right-mid {
    right: -110px;
    top: 18%;
    animation-delay: 1s;
    max-width: 200px;
}

.notification-right-bottom {
    right: -100px;
    bottom: 12%;
    animation-delay: 1.5s;
    max-width: 200px;
}

.notification-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

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


/* Responsive adjustments for notifications */
@media (max-width: 1200px) {
    .notification-left {
        left: -130px;
    }
    
    .notification-right-mid,
    .notification-right-bottom {
        right: -120px;
    }
}

@media (max-width: 968px) {
    .notification-card {
        max-width: 200px;
        padding: 14px 18px;
    }
    
    .notification-left {
        left: -70px;
    }
    
    .notification-right-top,
    .notification-right-bottom {
        right: -80px;
    }
    
    .notification-text {
        font-size: 13px;
    }
    
    .notification-icon {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    /* Hide all notifications on mobile */
    .notification-card {
        display: none !important;
    }
    
    .hero-visual {
        overflow: visible;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .notification-left {
        left: -60px;
    }
    
    .notification-right-mid,
    .notification-right-bottom {
        right: -60px;
    }
    
    .notification-card {
        max-width: 150px;
        padding: 10px 14px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 36px 32px;
    border-radius: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
}

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

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
    border: none;
    outline: none;
    box-shadow: none;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    border: none;
    border-bottom: none;
    border-top: none;
    outline: none;
    box-shadow: none;
}

.steps::after,
.steps::before,
.how-it-works::after,
.how-it-works::before {
    display: none;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: var(--bg-primary);
}

.waitlist-form-container {
    max-width: 550px;
    margin: 0 auto;
}

.waitlist-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 36px;
}

@media (max-width: 640px) {
    .waitlist-form {
        border-radius: 12px;
    }
}

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

.form-group input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

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

.form-field {
    margin-bottom: 16px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-secondary);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.waitlist-success {
    background: var(--bg-secondary);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.waitlist-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.waitlist-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #2c2c2e;
    color: var(--text-primary);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    padding: 80px 0;
    background: #0b0b0f;
    color: #f5f5f5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-company {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.footer-tagline {
    margin: 0;
    color: #c4c4c9;
    font-size: 15px;
    line-height: 1.5;
}

.footer-copyright-disclaimer {
    color: #8c8c92;
    font-size: 12px;
    margin-top: 32px;
    text-align: left;
    font-style: italic;
    line-height: 1.6;
    max-width: 100%;
}

.footer-copyright-disclaimer em {
    display: block;
    line-height: 1.6;
}

@media (min-width: 641px) {
    .footer-copyright-disclaimer {
        max-width: 900px;
    }
    
    .footer-copyright-disclaimer em {
        display: inline;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #d4d4d8;
    font-size: 15px;
}

.footer-links a {
    color: #d4d4d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4d4d8;
    padding-left: 0;
    margin-left: 0;
}

.footer-app-store {
    display: inline-block;
    margin-bottom: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-app-store:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-app-store-badge {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-coming-soon {
    color: #a1a1a6;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.icon-list span {
    font-size: 18px;
}

.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
}

.footer-social-link img[src*="tikok-icon"],
.footer-social-link img[src*="tiktok-icon"],
.footer-social-link img[src*="ticktok-eicon"] {
    width: 22px;
    height: 22px;
    margin-right: 4px;
    margin-left: -2px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-title {
        font-size: 48px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        font-size: 18px;
    }

    .hero-visual {
        height: 400px;
        padding-left: 0;
        justify-content: center;
    }

    .app-showcase {
        max-width: 320px;
    }

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

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .section-title {
        font-size: 42px;
    }

    .section-description {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .nav-actions.mobile-open {
        display: none !important;
    }
    
    .nav-request-btn {
        display: none !important;
    }
    
    .nav-hide-mobile {
        display: none !important;
    }

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

    .nav-content {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    body {
        font-size: 16px !important;
    }
    
    html {
        font-size: 16px !important;
    }

    .hero {
        padding: 80px 0 0;
        min-height: auto;
        position: relative;
        overflow: visible;
    }
    
    .hero-video-container {
        height: 100%;
        min-height: 300px;
        max-height: 300px;
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.65);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-text {
        padding: 40px 0 40px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 28px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
        margin-bottom: 32px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline,
    .hero-actions .app-store-btn {
        width: 85%;
        max-width: 280px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .stat {
        text-align: center;
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 11px;
    }

    .app-showcase {
        max-width: 240px;
        width: 100%;
        position: relative;
        box-sizing: border-box;
    }

    .app-placeholder {
        height: 240px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .app-placeholder-logo {
        font-size: 32px;
    }

    .app-placeholder-tagline {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-header {
        margin-bottom: 32px;
        padding: 0 4px;
    }
    
    .features .section-header {
        margin-top: 0;
        margin-bottom: 20px;
        padding-top: 0;
        padding-bottom: 5px;
        display: block !important;
        text-align: center;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        position: relative;
        z-index: 2;
    }
    
    .features .section-title {
        font-size: 18px;
        margin-bottom: 8px;
        margin-top: 0;
        padding-top: 0;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        line-height: 1.2;
        height: auto;
    }
    
    .features .section-description {
        font-size: 11px;
        display: block !important;
        visibility: visible !important;
        overflow: visible !important;
        line-height: 1.4;
    }

    .features {
        padding: 50px 0 50px;
        min-height: auto;
        overflow: visible !important;
        position: relative;
        z-index: 1;
    }
    
    .features .container {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        overflow: visible !important;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .waitlist {
        display: none !important;
    }

    .cta {
        display: none !important;
    }
    
    .cta-title {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .cta-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .cta .app-store-btn {
        width: 85%;
        max-width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-card {
        padding: 12px 8px;
        box-sizing: border-box;
        overflow: visible;
        min-height: 100px;
    }

    .feature-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .feature-title {
        font-size: 11px;
        margin-bottom: 4px;
        font-weight: 600;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 9px;
        line-height: 1.4;
        overflow: visible;
        word-wrap: break-word;
    }

    .steps {
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px 10px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        justify-content: center;
    }
    
    .steps::-webkit-scrollbar {
        display: none;
        height: 0;
    }
    
    .steps::-webkit-scrollbar-thumb {
        display: none;
        background: transparent;
    }
    
    .steps {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .step {
        flex: 0 0 auto;
        min-width: 90px;
        max-width: 90px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .step-connector {
        display: block;
        width: 16px;
        height: 2px;
        background: var(--primary-color);
        flex-shrink: 0;
        margin: 0 2px;
        align-self: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 8px;
    }

    .step-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .step-description {
        display: none;
    }
    
    /* Remove blue line underneath steps on mobile */
    .how-it-works::after,
    .how-it-works::before,
    .steps::after,
    .steps::before,
    .step::after,
    .step::before,
    .container::after,
    .container::before {
        display: none !important;
        content: none !important;
        background: none !important;
        border: none !important;
    }
    
    .how-it-works {
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }
    
    .how-it-works .container {
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        outline: none !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }
    
    .how-it-works .container::after,
    .how-it-works .container::before {
        display: none !important;
        content: none !important;
        background: none !important;
        border: none !important;
    }
    
    .steps {
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        background: none !important;
        overflow: hidden !important;
    }
    
    .step {
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
    }
    
    /* Hide scrollbar completely on mobile */
    .steps {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .steps::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .step-connector {
        display: block;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-app-store {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 8px;
    }
    
    .footer-app-store-badge {
        height: 35px;
        width: auto;
        object-fit: contain;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-title {
        text-align: left;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .footer-coming-soon {
        font-size: 9px;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
        gap: 0;
    }
    
    .footer-company {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-tagline {
        font-size: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .footer-links {
        font-size: 10px;
    }
    
    .footer-links li {
        margin-bottom: 6px;
        font-size: 10px;
    }
    
    .footer-copyright-disclaimer {
        font-size: 9px;
        margin-top: 20px;
        text-align: left;
        font-style: italic;
        line-height: 1.4;
        color: #8c8c92;
    }
    
    .footer-copyright-disclaimer em {
        display: block;
    }
    
    .icon-list li {
        font-size: 10px;
        padding-left: 0;
        margin-left: 0;
    }
    
    .icon-list span {
        font-size: 12px;
    }
    
    .footer-icon {
        width: 12px;
        height: 12px;
        margin-right: 6px;
        object-fit: contain;
    }
    
    .footer-social-link img[src*="tikok-icon"],
    .footer-social-link img[src*="tiktok-icon"],
    .footer-social-link img[src*="ticktok-eicon"] {
        width: 15px;
        height: 15px;
        margin-right: 4px;
        margin-left: 0;
    }

    .waitlist-form {
        padding: 12px 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
    }
    
    .waitlist-form-container {
        width: 50%;
        max-width: 50%;
        box-sizing: border-box;
        padding: 0;
        margin: 0 auto;
    }
    
    .waitlist {
        padding: 15px 0;
    }

    .form-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-field {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-field input,
    .form-field textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .btn-full {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 4px 8px;
        font-size: 8px;
        height: 18px;
        min-height: 18px;
        line-height: 1.2;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    
    .waitlist-form .btn-primary {
        padding: 4px 8px;
        font-size: 8px;
        height: 18px;
        min-height: 18px;
        line-height: 1.2;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    
    .waitlist-form .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    }

    .form-group input {
        font-size: 14px;
    }
    
    .waitlist .section-title {
        font-size: 28px;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .waitlist .section-description {
        font-size: 7px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .waitlist .section-header {
        margin-bottom: 12px;
    }

    .form-group button {
        width: 100%;
    }
    
    .form-field {
        margin-bottom: 6px;
        width: 100%;
        max-width: 100%;
    }
    
    .form-field input,
    .form-field textarea {
        font-size: 6px;
        padding: 3px 6px;
        border-radius: 5px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: 16px;
        line-height: 1.2;
        background: var(--bg-primary);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        transition: all 0.2s ease;
    }
    
    .form-field input:focus,
    .form-field textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.15);
    }
    
    .form-field input::placeholder,
    .form-field textarea::placeholder {
        font-size: 5px !important;
        color: var(--text-secondary);
        opacity: 0.7;
    }
    
    .form-field input {
        min-height: 16px;
        max-height: 16px;
    }
    
    .form-field textarea {
        min-height: 20px;
        max-height: 20px;
    }
    
    
    .waitlist-form-container {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 13px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    /* Mobile-specific video adjustments */
    .hero-video-container {
        min-height: 100vh;
    }

    /* Better touch targets */
    .btn-primary,
    .btn-outline,
    .btn-secondary {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Prevent text size adjustment on iOS */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Additional dark theme adjustments */
.hero-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    color: var(--primary-color);
    font-size: 32px;
}

.section-title {
    color: var(--text-primary);
}

.feature-title,
.step-title,
.pricing-tier {
    color: var(--text-primary);
}

.cta-title {
    color: var(--text-primary);
}

