:root {
    /* Colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --accent: #00F0FF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-ai: #F0F7FF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00F0FF 100%);
    --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-blue: 0 10px 30px -10px rgba(0, 102, 255, 0.3);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--bg-white);
    color: var(--text-main);
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed navbar */
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background "Alive" Blobs */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float-slow 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float-slow 25s ease-in-out infinite reverse;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 102, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

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

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    border: 1px solid #E0E7FF;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    animation: fade-in-down 0.8s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    animation: pulse-ring 2s infinite;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
}

/* Email Capture Form (Premium Capsule) */
.email-capture-form {
    margin-bottom: 48px;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.join-form-capsule {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    /* Capsule shape */
    padding: 6px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.join-form-capsule:focus-within {
    background: white;
    box-shadow:
        0 25px 50px -12px rgba(0, 102, 255, 0.15),
        0 0 0 2px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.email-input-capsule {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    font-size: 1.05rem;
    color: var(--text-main);
    outline: none;
    font-family: var(--font-body);
}

.email-input-capsule::placeholder {
    color: #94A3B8;
}

.btn-capsule {
    background: #0066FF;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    white-space: nowrap;
}

.btn-capsule:hover {
    background: #0055D4;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.3);
}

.btn-capsule:active {
    transform: translateY(0);
}

.form-note-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748B;
    margin-left: 12px;
}

.gift-icon {
    font-size: 1.1rem;
    filter: grayscale(0.2);
}

/* Social Proof Premium */
.trust-badges-premium {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars-stack {
    display: flex;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    /* Overlap */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.avatar-circle:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 0.95rem;
    color: #334155;
}

.social-text strong {
    color: #0F172A;
    font-weight: 700;
}

.avatars {
    display: flex;
    transition: transform 0.3s ease;
}

.avatars:hover {
    transform: scale(1.05);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}

.avatar:first-child {
    margin-left: 0;
}

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

.visual-bg-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    border-radius: 50%;
    z-index: -1;
    animation: breathe 8s ease-in-out infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-glass), var(--shadow-xl);
    width: 360px;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: float-card 6s ease-in-out infinite;
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: #CBD5E1;
    border-radius: 50%;
    position: relative;
}

.user-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid white;
    border-radius: 50%;
}

.user-text .name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-text .status {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.earnings {
    font-weight: 700;
    color: #10B981;
    background: #ECFDF5;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}

.mission-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: #EFF6FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.glass-card:hover .mission-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mission-icon.dev::after {
    content: '💼';
    font-size: 1.8rem;
}

.m-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.m-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    z-index: 2;
}

.floating-badge:hover {
    transform: scale(1.05);
}

.badge-1 {
    top: 15%;
    right: 5%;
    animation: float-badge 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    animation: float-badge 7s ease-in-out infinite 1s;
}



/* Dual Target Section (Tabs) */
.targets-section {
    padding: 140px 0;
    background: var(--bg-light);
    position: relative;
}

.section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

.tabs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Segmented Control (Apple Style) */
.tabs-wrapper-premium {
    max-width: 1000px;
    margin: 0 auto;
}

.segmented-control {
    background: #F1F5F9;
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    position: relative;
    margin-bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.segment-btn {
    padding: 10px 32px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.segment-btn.active {
    color: #0F172A;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Premium Card Layout */
.target-content-area {
    position: relative;
    min-height: 500px;
    /* Prevent layout shift */
}

.target-card-premium {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    background: white;
    border-radius: 32px;
    border: 1px solid #F1F5F9;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    animation: fade-in-up 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.target-card-premium.active {
    display: grid;
}

.card-content-left {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content-left h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #0F172A;
    line-height: 1.2;
}

/* Premium Benefit List */
.benefit-list-premium {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.benefit-list-premium li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.check-icon-box {
    width: 24px;
    height: 24px;
    background: #EFF6FF;
    color: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text strong {
    display: block;
    color: #0F172A;
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-text p {
    color: #64748B;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

/* Visual Right Side */
.card-visual-right {
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: 1px solid #F1F5F9;
}

.student-bg {
    background: radial-gradient(circle at center, #EFF6FF 0%, #F8FAFC 70%);
}

.company-bg {
    background: radial-gradient(circle at center, #F0F9FF 0%, #F8FAFC 70%);
}

.visual-icon-large {
    color: #0066FF;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 20px rgba(0, 102, 255, 0.15));
    transform: scale(1.2);
    transition: transform 0.4s ease;
}

.target-card-premium:hover .visual-icon-large {
    transform: scale(1.3) rotate(-5deg);
}

.visual-stat-badge {
    background: white;
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

/* Worbly AI Section (Fluid Intelligence) */
.ai-section-fluid {
    padding: 180px 0;
    background: #FFFFFF;
    /* Pure white background */
    position: relative;
    overflow: hidden;
}

.ai-container-fluid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Styling */
.badge-ai-fluid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: rgba(0, 102, 255, 0.04);
    color: #0066FF;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.05);
}

.section-title-fluid {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0F172A;
    letter-spacing: -0.03em;
}

.section-subtitle-fluid {
    font-size: 1.15rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 60px;
}

/* Ultra Premium Cards */
.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.ai-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.card-glow-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-card-premium:hover .card-glow-premium {
    opacity: 1;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0066FF;
    flex-shrink: 0;
}

.card-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: #0066FF;
}

.ai-card-premium h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0F172A;
}

.ai-card-premium p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Fluid Intelligence Animation */
.ai-visual-fluid {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fluid-orb-container {
    position: relative;
    width: 500px;
    height: 500px;
    filter: blur(80px);
    /* The magic blur for liquid effect */
    /* mix-blend-mode: multiply; Optional, depends on background */
}

.fluid-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: fluid-morph 10s infinite ease-in-out;
}

.blob-1 {
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: #0066FF;
    /* Worbly Blue */
    animation-delay: 0s;
}

.blob-2 {
    top: 40%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: #8B5CF6;
    /* Violet */
    animation-delay: -3s;
}

.blob-3 {
    bottom: 20%;
    left: 30%;
    width: 280px;
    height: 280px;
    background: #06B6D4;
    /* Cyan */
    animation-delay: -6s;
}

.fluid-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: core-breathe 6s infinite ease-in-out;
}

@keyframes fluid-morph {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
        border-radius: 70% 30% 40% 60% / 30% 60% 70% 40%;
    }

    100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes core-breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}


/* App Section Premium */
/* App Section - Masterpiece Redesign */
.app-section {
    width: 100%;
    padding: 180px 0;
    background: #FFFFFF;
    /* Clean White Background */
    position: relative;
    overflow: hidden;
    color: #0F172A;
    margin: 0;
}

/* Aurora Background Effect - Disabled for white background */
.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    /* Removed aurora effect for clean white background */
    z-index: 0;
    pointer-events: none;
}

@keyframes aurora-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.app-section .section-title {
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0F172A;
    font-weight: 700;
}

.app-section .section-subtitle {
    color: #64748B;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.6;
}

/* App Features List */
.app-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 520px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0F172A;
    font-weight: 500;
    font-size: 0.95rem;
}

.app-feature-item svg {
    color: #0066FF;
    flex-shrink: 0;
}

.app-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 40px;
}

.app-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.store-btn {
    padding: 14px 28px;
    background: #0F172A;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #0F172A;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    text-decoration: none;
}

.store-btn:hover {
    transform: translateY(-3px);
    background: #1E293B;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.store-btn.google {
    background: white;
    color: #0F172A;
    border: 2px solid #E2E8F0;
}

.store-btn.google:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.store-btn svg {
    width: 22px;
    height: 22px;
}

.availability-text {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(56, 189, 248, 0.05);
    /* Subtle Cyan Tint */
    border: 1px solid rgba(56, 189, 248, 0.15);
    /* Tech Blue Border */
    border-radius: 100px;
    color: #38BDF8;
    /* Cyan Text */
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.05);
    backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #38BDF8;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    /* Centered by default */
    align-items: center;
    /* Vertically centered */
    perspective: 1500px;
    height: 800px;
    padding-left: 40px;
    /* Slight offset to right visually */
}

/* 3D Phone Mockup */
.phone-mockup-premium {
    width: 340px;
    height: 680px;
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    animation: float-phone-3d 8s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes float-phone-3d {

    0%,
    100% {
        transform: translateY(0) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-30px) rotateY(-5deg) rotateX(2deg);
    }
}

.app-visual:hover .phone-mockup-premium {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    animation-play-state: paused;
}

.phone-border {
    width: 100%;
    height: 100%;
    background: #020617;
    /* Almost black */
    border-radius: 56px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #334155,
        /* Outer bezel */
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        /* Deep shadow */
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    /* Inner reflection */
    position: relative;
    overflow: hidden;
}

/* Glossy reflection on phone border */
.phone-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 56px;
    pointer-events: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0F172A;
    /* Dark Mode UI */
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 36px;
    background: black;
    border-radius: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-mockup-premium:hover .dynamic-island {
    width: 180px;
}

.island-content {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-mockup-premium:hover .island-content {
    opacity: 1;
    transition-delay: 0.1s;
}

.island-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.island-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Floating Elements */
.float-element {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float-particle 6s ease-in-out infinite;
    z-index: 5;
}

.coin-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
    font-size: 4rem;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(10deg);
    }
}

/* App UI - Dark Mode for Masterpiece */
.app-ui-content {
    padding: 60px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.app-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.u-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
}

.notif-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.notif-btn::after {
    content: '🔔';
    font-size: 1.2rem;
}

.notif-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.red-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #0F172A;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}


/* Balance Card */
.balance-card-premium {
    background: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
    padding: 32px;
    border-radius: 32px;
    color: white;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 60%);
    pointer-events: none;
}



.balance-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.balance-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 40px;
    position: relative;
    z-index: 2;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.chart-bar.active {
    background: white;
}

/* Infinite Scroll List */
.missions-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.missions-scroll-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #F8FAFC, transparent);
    z-index: 5;
}

.missions-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.missions-track {
    animation: scroll-vertical 10s linear infinite;
}

.mission-item-premium {
    background: white;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    color: #0F172A;
    /* Ensure text is visible on white background */
}

.m-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.m-icon-box.dev {
    background: #EFF6FF;
}

.m-icon-box.design {
    background: #FCE7F3;
}

.m-icon-box.marketing {
    background: #FEF3C7;
}

.m-info {
    flex: 1;
}

.m-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.m-status {
    font-size: 0.75rem;
    color: #10B981;
}

.m-status.pending {
    color: #F59E0B;
}

.m-status.completed {
    color: #10B981;
}

.m-price {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Floating Notification */
/* Floating Notification - Masterpiece Polish */
.floating-notification {
    position: absolute;
    top: 25%;
    /* Moved down to avoid header overlap */
    right: -80px;
    /* Moved further out */
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateZ(80px);
    /* Stronger 3D pop */
    animation: float-notif 6s ease-in-out infinite;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 20;
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes float-notif {

    0%,
    100% {
        transform: translateZ(80px) translateY(0);
    }

    50% {
        transform: translateZ(80px) translateY(-15px);
    }
}

.notif-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: shake-icon 3s infinite;
}

@keyframes shake-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0F172A;
    line-height: 1.2;
}

.notif-subtitle {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.notif-icon {
    font-size: 1.5rem;
}

.notif-title {
    font-weight: 700;
    font-size: 0.85rem;
}

.notif-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Background Elements */
.circle-bg-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-bg 8s ease-in-out infinite;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    animation: float-random 10s ease-in-out infinite;
}

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

.coin-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

/* Keyframes */
@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Adjust based on content height */
}

@keyframes float-phone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-notif {

    0%,
    100% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-10px);
    }
}

@keyframes pulse-bg {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float-random {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translate(-10px, 10px);
    }

    75% {
        transform: translate(-20px, -10px);
    }
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #F1F5F9;
    padding: 100px 0 40px;
}

.footer-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 64px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Footer Hero CTA */
.footer-cta-hero {
    position: relative;
    background: radial-gradient(circle at center, #F0F9FF 0%, #FFFFFF 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 102, 255, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-background-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

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

.footer-cta-hero h3 {
    font-size: 3rem;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.footer-cta-hero p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 40px;
}

.large-capsule {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.large-capsule:focus-within {
    box-shadow:
        0 30px 60px -12px rgba(0, 102, 255, 0.2),
        0 0 0 2px rgba(0, 102, 255, 0.1);
}

.cta-decor-orb {
    position: absolute;
    top: 20px;
    right: 100px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0066FF, #00F0FF);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: float-card 6s ease-in-out infinite;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #F1F5F9;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 32px;
}

.social-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

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

/* Animations Keyframes */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Countdown Hero Premium */
.countdown-hero {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 102, 255, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.02);
    margin-bottom: 32px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.countdown-hero:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 102, 255, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.03);
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-right: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.pulse-dot-premium {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

.countdown-time {
    font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-node {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
    }
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
    /* Hardware acceleration hint */
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.parallax-float {
    will-change: transform;
    transition: transform 0.1s linear;
    /* Smooth out the scroll updates */
}

/* Final Polish & Excellence */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 5px;
    border: 2px solid #F1F5F9;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Selection Color */
::selection {
    background: rgba(0, 102, 255, 0.15);
    color: var(--primary-dark);
}

/* Typography Polish */
h1,
h2,
h3,
h4,
.section-title,
.hero-title {
    text-wrap: balance;
}

p,
.section-subtitle {
    text-wrap: pretty;
}

/* Footer Glow Animation */
.footer-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 64px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    animation: spin 15s linear infinite;
    z-index: -1;
}

.footer-cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

/* Mobile Adaptation Polish */
@media (max-width: 960px) {

    .hero-container,
    .target-grid,
    .ai-container,
    .app-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-buttons,
    .app-buttons {
        justify-content: center;
    }

    .hero-subtitle,
    .email-capture-form {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-visual,
    .target-visual,
    .ai-visual,
    .app-visual {
        order: -1;
        height: 400px;
    }

    /* Phone 3D Mobile Tweak */
    .phone-mockup-premium {
        transform: scale(0.85);
    }

    .app-visual:hover .phone-mockup-premium {
        transform: scale(0.85) rotateY(-5deg) rotateX(5deg);
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }
}

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================= */

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    h1 {
        font-size: 3.5rem;
    }

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

    .hero-content {
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .target-card-premium {
        grid-template-columns: 1fr;
    }

    .card-content-left {
        padding: 48px;
    }

    .card-visual-right {
        height: 300px;
        border-left: none;
        border-top: 1px solid #F1F5F9;
    }
}

@media (max-width: 768px) {

    /* Global Adjustments */
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Navbar */
    .nav-links {
        display: none;
        /* Simplified mobile nav */
    }

    .nav-container {
        padding: 16px 20px;
    }

    /* Hero */
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 16px;
    }

    /* Features (Bento) */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
    }

    /* Targets Section */
    .tabs-wrapper-premium {
        margin-top: 40px;
    }

    .segmented-control {
        width: 100%;
        display: flex;
        padding: 4px;
    }

    .segment-btn {
        flex: 1;
        padding: 12px;
        font-size: 0.9rem;
    }

    .card-content-left {
        padding: 32px 24px;
    }

    .card-content-left h3 {
        font-size: 1.5rem;
    }

    /* Fluid AI Section */
    .fluid-orb-container {
        height: auto;
        padding: 60px 0;
    }

    .fluid-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fluid-text-side {
        text-align: center;
        padding-right: 0;
    }

    .fluid-features-grid {
        grid-template-columns: 1fr;
    }

    /* Footer CTA */
    .footer-cta-hero {
        padding: 60px 24px;
        border-radius: 32px;
    }

    .footer-cta-hero h3 {
        font-size: 2rem;
    }

    .join-form-capsule {
        flex-direction: column;
        padding: 8px;
        border-radius: 24px;
        background: transparent;
        box-shadow: none;
    }

    .large-capsule {
        background: transparent;
        box-shadow: none;
    }

    .email-input-capsule {
        width: 100%;
        margin-bottom: 12px;
        background: white;
        border-radius: 100px;
        padding: 16px 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .btn-capsule {
        width: 100%;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* =========================================
   PREMIUM HEADER REDESIGN (Glassmorphism)
   ========================================= */

.navbar-glass-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.nav-container-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

/* Strictly hide mobile menu on desktop */
@media (min-width: 969px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Logo Pill */
.logo-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.logo-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Navigation Links */
.nav-links-premium {
    display: flex;
    gap: 40px;
}

.nav-link-premium {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

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

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 2px;
}

.nav-link-premium:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Premium CTA Button */
.btn-access-premium {
    background: linear-gradient(135deg, #0066FF 0%, #00C6FF 100%);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-access-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
}

/* Mobile Responsiveness for Header */
@media (max-width: 768px) {
    .nav-links-premium {
        display: none !important;
    }

    .nav-container-premium {
        padding: 12px 20px;
    }

    .logo-text-premium {
        display: none;
        /* Icon only on mobile for cleaner look */
    }

    .logo-pill {
        padding: 8px;
    }
}

/* =========================================
   SOCIAL PROOF REFINEMENT (Expert Mode)
   ========================================= */

.trust-badges-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatar-premium {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.avatar-premium:first-child {
    margin-left: 0;
    z-index: 3;
}

.avatar-premium:nth-child(2) {
    z-index: 2;
}

/* Gradients */
.gradient-1 {
    background: linear-gradient(135deg, #0066FF, #00C6FF);
}

.gradient-2 {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.gradient-3 {
    background: linear-gradient(135deg, #10B981, #3B82F6);
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-row {
    display: flex;
    gap: 2px;
}

.trust-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.highlight-number {
    color: #0F172A;
    font-weight: 700;
}

/* =========================================
   PREMIUM FORM & SOCIAL PROOF POLISH
   ========================================= */

.join-form-capsule {
    background: white;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.email-input-capsule {
    border: none;
    background: transparent;
    padding: 12px 24px;
    font-size: 1rem;
    color: #64748B;
    flex: 1;
    outline: none;
    box-shadow: none !important;
    /* Override previous styles */
    margin-bottom: 0 !important;
    /* Override previous styles */
    border-radius: 0 !important;
}

.email-input-capsule::placeholder {
    color: #94A3B8;
}

.btn-capsule {
    background: #0066FF;
    color: white;
    border-radius: 100px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    width: auto !important;
    /* Override previous width: 100% */
}

.btn-capsule:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* Social Proof Polish */
.trust-badges-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.avatars-stack {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.social-text strong {
    color: #0F172A;
    font-weight: 700;
}

/* About Us Section - Masterpiece Redesign */
.about-section {
    padding: 160px 0;
    background: #FFFFFF;
    position: relative;
    overflow: visible;
}

/* Dynamic Background - "Tech Flow" */
.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.03) 0%, transparent 40%);
    z-index: 0;
    animation: pulse-bg 10s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    /* Enable 3D space */
}

.founder-wrapper {
    height: 100%;
}

/* The "Masterpiece" Card */
.founder-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    /* Inner light bezel */
}

/* Animated Gradient Border using pseudo-element */
.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, #E2E8F0, #F1F5F9, #E2E8F0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.6s ease;
}

.founder-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow:
        0 30px 60px -12px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

/* On hover, the border becomes vibrant */
.founder-card:hover::before {
    background: linear-gradient(135deg, #0066FF, #00F0FF, #0066FF);
    animation: border-flow 3s linear infinite;
    background-size: 200% 200%;
}

@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.founder-image-container {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
    background: #F8FAFC;
    /* Diagonal cut at the bottom */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder-card:hover .founder-image-container {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    /* Flattens slightly on hover */
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(100%);
    transform: scale(1.05);
    /* Slight zoom initially */
}

.founder-card:hover .founder-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.founder-info {
    padding: 20px 32px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 2;
}

.founder-name {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(180deg, #0F172A 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.founder-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.05), rgba(0, 240, 255, 0.05));
    border-radius: 100px;
    color: #0066FF;
    /* Vibrant Blue requested */
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-role {
    background: linear-gradient(90deg, #0066FF, #00F0FF);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.founder-bio {
    font-size: 1rem;
    color: #475569;
    /* Darker gray, readable */
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-weight: 500;
    position: relative;
}

/* "Tech" decorative dots */
.founder-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.5;
    z-index: 1;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #0077B5;
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.founder-linkedin:hover {
    background: #0077B5;
    color: white;
    border-color: #0077B5;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 24px -4px rgba(0, 119, 181, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 640px) {
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        /* Prevent huge cards on mobile */
        gap: 40px;
    }

    .founder-image-container {
        height: 340px;
        /* Slightly taller on mobile */
    }
}

/* =========================================
   ULTRA PREMIUM MOBILE REVAMP
   ========================================= */

@media (max-width: 968px) {

    /* Global Typography Adjustments */
    :root {
        --font-size-h1-mobile: 2.75rem;
        --font-size-h2-mobile: 2rem;
    }

    .container {
        padding: 0 24px;
    }

    /* Hero Section Polish */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: var(--font-size-h1-mobile);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
        max-width: 100%;
    }

    /* Center Email Form */
    .email-capture-form {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 32px;
    }

    .join-form-capsule {
        padding: 6px;
    }

    /* Center Trust Badges */
    .trust-badges-premium {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }

    /* Hero Visual - Hide 3D clutter on mobile for clean look */
    .hero-visual {
        height: auto;
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .glass-card {
        width: 100%;
        max-width: 380px;
        transform: none !important;
        /* Disable 3D tilt on mobile for readability */
        animation: float-card 6s ease-in-out infinite;
        /* Keep float */
    }

    .floating-badge {
        display: none;
        /* Hide floating badges to reduce clutter */
    }

    /* Targets Section (Tabs) */
    .targets-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: var(--font-size-h2-mobile);
    }

    .tabs-wrapper-premium {
        margin-top: 40px;
    }

    .segmented-control {
        display: flex;
        width: 100%;
        padding: 4px;
        overflow-x: auto;
        /* Allow scroll if needed on tiny screens */
        -webkit-overflow-scrolling: touch;
        justify-content: space-between;
    }

    .segment-btn {
        flex: 1;
        padding: 12px 8px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .target-card-premium {
        grid-template-columns: 1fr;
        border-radius: 24px;
        margin-top: 32px;
    }

    .card-content-left {
        padding: 40px 24px;
        text-align: center;
    }

    .card-content-left h3 {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .benefit-list-premium {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .card-visual-right {
        height: 280px;
        border-left: none;
        border-top: 1px solid #F1F5F9;
    }

    /* AI Section - Mobile Fix */
    .ai-section-fluid {
        padding: 60px 0;
        overflow: hidden;
        width: 100%;
    }

    .ai-container-fluid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ai-content-fluid {
        text-align: center;
        padding: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .badge-ai-fluid {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .section-title-fluid {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .section-subtitle-fluid {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 100%;
        margin: 0 auto 32px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Horizontal Scrollable Carousel */
    .ai-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 20px 20px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: none;
    }

    .ai-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .ai-card-premium {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 24px;
        background: white;
        border: 1px solid #E2E8F0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        text-align: left;
        min-width: 0;
    }

    .ai-card-premium h4 {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .ai-card-premium p {
        font-size: 0.875rem;
        word-wrap: break-word;
    }

    .ai-visual-fluid {
        display: none;
    }


    .card-icon-box {
        margin-bottom: 16px;
        font-size: 2rem;
    }

    .ai-card-premium h4 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .ai-card-premium p {
        font-size: 0.95rem;
        color: #475569;
    }

    /* App Section - CRITICAL FIXES */
    .app-section {
        padding: 80px 0;
        overflow: hidden;
        /* Prevent horizontal scroll from phone */
    }

    .app-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .app-buttons-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .app-visual {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        /* Stack phone and notification */
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: visible;
    }

    .phone-mockup-premium {
        width: 100%;
        max-width: 300px;
        /* Slightly smaller to ensure fit */
        height: auto;
        aspect-ratio: 340/680;
        transform: none !important;
        animation: none !important;
        /* Disable 3D float */
        margin: 0 auto;
    }

    /* Fix Floating Notification on Mobile */
    .floating-notification {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none !important;
        animation: none !important;
        margin-top: 24px;
        max-width: 100%;
        width: 100%;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .float-element {
        display: none;
        /* Hide floating coins completely on mobile */
    }

    /* Footer */
    .footer-cta-hero {
        padding: 48px 24px;
        text-align: center;
        border-radius: 32px;
    }

    .footer-cta-hero h3 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 968px) {

    /* Navbar Hide Desktop */
    .nav-links-premium,
    .nav-actions-premium.desktop-only {
        display: none !important;
    }

    .burger-menu-btn {
        display: flex;
    }

    .nav-container-premium {
        padding: 12px 20px;
    }
}



@media (max-width: 480px) {
    :root {
        --font-size-h1-mobile: 2.25rem;
        --font-size-h2-mobile: 1.75rem;
    }

    .hero {
        padding-top: 110px;
    }

    .glass-card {
        padding: 24px;
    }

    .mission-row {
        gap: 12px;
    }

    .mission-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .mission-icon.dev::after {
        font-size: 1.4rem;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .earnings {
        padding: 4px 10px;
        font-size: 0.85rem;
    }

    /* Form Mobile Polish */
    .join-form-capsule {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .email-input-capsule {
        width: 100%;
        background: white;
        border: 1px solid #E2E8F0;
        border-radius: 100px;
        margin-bottom: 12px !important;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
    }

    .btn-capsule {
        width: 100% !important;
        justify-content: center;
        padding: 16px;
    }

    /* Founder Cards Mobile */
    .founders-grid {
        gap: 32px;
    }

    .founder-image-container {
        height: 300px;
    }
}

/* =========================================
   MOBILE BURGER MENU - PURE & CLEAN
   ========================================= */

/* Burger Button */
.burger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    padding: 12px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.burger-menu-btn:active {
    transform: scale(0.95);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: #0F172A;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    transform-origin: center;
}

.burger-line+.burger-line {
    margin-top: 5px;
}

/* Burger Animation when Active */
.burger-menu-btn.active {
    opacity: 0;
    /* Hide main button when menu is open */
    pointer-events: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    /* Pure white background */
    z-index: 2000;
    /* Higher z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button (Cross) */
.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #F8FAFC;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0F172A;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.mobile-menu-overlay.active .close-menu-btn {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.close-menu-btn:active {
    transform: scale(0.9);
    background: #E2E8F0;
}

/* Mobile Menu Content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

/* Mobile Nav Links */
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(20px);
}

/* Staggered Animation for Links */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-cta {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:hover {
    color: #0066FF;
}

/* Mobile CTA Button */
.mobile-cta {
    margin-top: 20px;
    padding: 18px 48px !important;
    font-size: 1.1rem !important;
    background: #0066FF !important;
    color: white !important;
    border-radius: 100px !important;
    box-shadow: none !important;
    /* Removed shadow for cleaner look */
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    text-align: center;
}

.mobile-cta:active {
    transform: scale(0.98) !important;
}

@media (max-width: 968px) {
    .burger-menu-btn {
        display: flex;
    }
}

/* =========================================
   GLOBAL QA & MOBILE FIXES (MASTERPIECE)
   ========================================= */

@media (max-width: 968px) {

    /* 1. Global Container & Typography */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    .container,
    .nav-container,
    .nav-container-premium,
    .hero-container,
    .app-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    h1,
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    h2,
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p,
    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* 2. Navbar */
    .nav-links-premium,
    .nav-actions-premium.desktop-only {
        display: none !important;
    }

    .logo-text-premium {
        font-size: 1.2rem !important;
    }

    .nav-container-premium {
        padding: 16px 20px !important;
    }

    /* 3. Hero Section */
    .hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        overflow: hidden !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
    }

    .hero-visual {
        order: 2;
        transform: scale(0.9);
        margin-top: -20px;
        width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
    }

    .glass-card.main-card {
        width: 100% !important;
        max-width: 340px !important;
    }

    .email-capture-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .join-form-capsule {
        flex-direction: column !important;
        padding: 8px !important;
        border-radius: 24px !important;
        height: auto !important;
    }

    .email-input-capsule {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 8px !important;
        padding: 12px !important;
    }

    .btn-capsule {
        width: 100% !important;
        padding: 12px !important;
    }

    .trust-badges-premium {
        flex-direction: column;
        gap: 12px;
    }

    /* 4. Targets Section (Tabs) */
    .targets-section {
        padding: 60px 0 !important;
    }

    .target-card-premium.active {
        display: flex !important;
        flex-direction: column !important;
    }

    .card-content-left {
        padding: 32px 24px !important;
        order: 1;
    }

    .card-visual-right {
        height: 250px !important;
        order: 2;
        border-left: none !important;
        border-top: 1px solid #F1F5F9 !important;
    }

    .segmented-control {
        width: 100% !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 4px !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 40px !important;
        display: flex !important;
        -webkit-overflow-scrolling: touch;
    }

    .segment-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 10px 20px !important;
    }

    /* 5. AI Section (Previous Fix Included) */
    .ai-section-fluid {
        padding: 60px 0 !important;
        width: 100% !important;
        overflow: hidden !important;
        display: block !important;
    }

    .ai-container-fluid {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .ai-content-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        display: block !important;
    }

    .section-title-fluid {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .section-subtitle-fluid {
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        word-wrap: break-word !important;
    }

    .ai-cards-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        padding: 10px 20px 30px !important;
        margin: 30px -20px 0 !important;
        width: calc(100% + 40px) !important;
        max-width: none !important;
        scroll-snap-type: x mandatory !important;
    }

    .ai-card-premium {
        flex: 0 0 85% !important;
        width: 85% !important;
        max-width: 85% !important;
        margin: 0 !important;
        scroll-snap-align: center !important;
        text-align: left !important;
    }

    /* 6. App Section */
    .app-section {
        padding: 60px 0 !important;
    }

    .app-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .app-content {
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .app-features-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto 32px !important;
    }

    .phone-mockup-premium {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        height: 600px !important;
        /* Fixed height for mobile */
    }

    .float-element {
        display: none !important;
        /* Hide floating coins on mobile to prevent overflow */
    }

    /* 7. Founders Section */
    .founders-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .founder-image-container {
        height: 350px !important;
    }

    /* 8. Footer */
    .footer-cta-hero {
        padding: 40px 24px !important;
        text-align: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 32px !important;
        text-align: center !important;
    }

    .social-links {
        justify-content: center !important;
    }
}