/* ShowUp Homepage Styles */

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

:root {
    /* Updated colors to match logo gradient: purple → magenta → coral → orange/yellow */
    --primary: #E84C9A;        /* Bright pink/magenta from logo */
    --secondary: #A855D9;      /* Purple from logo */
    --accent: #FF9046;         /* Orange from logo */
    --yellow: #FFC83D;         /* Yellow/gold from logo */
    --dark: #0A0A0F;
    --darker: #050507;
    --light: #FAFAFA;
    /* Gradient matching logo: purple → magenta → orange → yellow */
    --gradient-1: linear-gradient(135deg, #ee8b60 0%, #ff9f50 50%, #ffd460 100%);
    --gradient-2: linear-gradient(45deg, #FFC83D 0%, #FF8C52 50%, #E84C9A 100%);
    --gradient-3: linear-gradient(90deg, #A855D9 0%, #E84C9A 50%, #FF9046 100%);
    --glow: 0 0 40px rgba(232, 76, 154, 0.3);
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--dark);
    background-color: #0A0A0F !important; /* Force dark background on mobile */
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Force dark background on all devices including iOS */
html {
    background: #0A0A0F !important;
    background-color: #0A0A0F !important;
}

/* Ensure all sections maintain dark background */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 76, 154, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--glow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 140, 82, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 200, 61, 0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(232, 76, 154, 0.2);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.mobile-nav-links li {
    margin-bottom: 0;
}

.mobile-nav-links a {
    display: block;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(232, 76, 154, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-nav-links a:hover::before {
    width: 1.5rem;
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Hide desktop CTA on mobile */
.desktop-cta {
    display: inline-block;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 76, 154, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 144, 70, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(232, 76, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 76, 154, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 76, 154, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(250, 250, 250, 0.6);
    margin-top: 0.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.6s backwards;
}

.secondary-button {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(232, 76, 154, 0.1);
    transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    position: relative;
    background: var(--darker);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(232, 76, 154, 0.3);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--darker);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/19.5;
}

.mockup-ui {
    padding: 1.5rem 1rem;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}

.mockup-ui::-webkit-scrollbar {
    display: none;
}

/* Floating Elements */
.float-badge {
    position: absolute;
    background: rgba(255, 144, 70, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 144, 70, 0.3);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.badge-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 144, 70, 0.1);
    border: 1px solid rgba(255, 144, 70, 0.3);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.7);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(232, 76, 154, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 76, 154, 0.2);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Interactive Demo Section */
.demo-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-showcase {
    position: relative;
}

.ui-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 76, 154, 0.2);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.ui-preview:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--glow);
}

/* Profile Card Preview */
.profile-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    position: relative;
}

.profile-level {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--gradient-2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 3px solid #16213e;
}

.profile-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.profile-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.profile-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.profile-stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.profile-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.xp-bar {
    margin-top: 1.5rem;
}

.xp-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.xp-progress {
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    width: 85%;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

/* Tab Switcher */
.demo-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 76, 154, 0.2);
    color: rgba(250, 250, 250, 0.7);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    box-shadow: var(--glow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* How It Works */
.how-it-works {
    padding: 8rem 2rem;
    position: relative;
}

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

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.step:nth-child(even) .step-content {
    order: 2;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.8;
}

.step-visual {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 76, 154, 0.2);
    border-radius: 25px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 76, 154, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(232, 76, 154, 0.1) 0%, rgba(168, 85, 217, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C946B0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 2.5rem;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(232, 76, 154, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.email-input::placeholder {
    color: rgba(250, 250, 250, 0.4);
}

/* Two-Step Beta Signup Form */
.beta-signup-container {
    max-width: 600px;
    margin: 0 auto;
}

.signup-step {
    animation: fadeSlideIn 0.5s ease;
}

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

/* Step 1: Email Form */
.email-signup {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.email-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(232, 76, 154, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.email-input:valid {
    border-color: #10B981;
}

.email-input.error {
    border-color: #ef4444;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Step 2: Details Form */
.step-2-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
}

.checkmark-icon {
    color: #10B981;
    flex-shrink: 0;
}

.step-2-title {
    color: rgba(250, 250, 250, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.details-signup {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-input {
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(232, 76, 154, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.form-input:valid {
    border-color: #10B981;
}

.form-input::placeholder {
    color: rgba(250, 250, 250, 0.4);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-text {
    color: rgba(250, 250, 250, 0.7);
    font-size: 0.95rem;
}

/* Button States */
.cta-button {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text,
.btn-loader {
    transition: opacity 0.3s ease;
}

.cta-button.loading .btn-text {
    opacity: 0;
}

.cta-button.loading .btn-loader {
    display: block !important;
    position: absolute;
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    animation: fadeSlideIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message p {
    color: rgba(250, 250, 250, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    animation: fadeSlideIn 0.5s ease;
}

.error-message p {
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.error-message a {
    color: var(--primary);
    text-decoration: underline;
}

/* Signup Footer */
.signup-footer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.5);
}

/* Mobile Adjustments for Form */
@media (max-width: 768px) {
    .email-signup {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .step-2-title {
        font-size: 0.95rem;
    }

    .success-message h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: var(--darker);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(232, 76, 154, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(250, 250, 250, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 76, 154, 0.1);
    color: rgba(250, 250, 250, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Force dark background on mobile */
    html, body {
        background: #0A0A0F !important;
        background-color: #0A0A0F !important;
    }

    /* Ensure all major sections have dark background */
    .hero, .features, .demo-section, .how-it-works, .cta-section, footer {
        background-color: #0A0A0F;
    }

    .hero-container,
    .demo-container,
    .step {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }

    /* Hide desktop CTA button */
    .desktop-cta {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

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

    .phone-mockup {
        margin-top: 3rem;
    }

    .float-badge {
        display: none;
    }

    .step:nth-child(even) .step-content {
        order: 1;
    }

    /* Better mobile spacing */
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .features, .demo-section, .how-it-works, .cta-section {
        padding: 4rem 1.5rem;
    }

    /* Improve text readability on mobile */
    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Adjust nav container padding on mobile */
    .nav-container {
        padding: 1.2rem 1.5rem;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 375px) {
    html, body {
        background: #0A0A0F !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}