/* ==================== VARIABLES ==================== */
:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --success: #10B981;
    --danger: #EF4444;

    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --bg-card-hover: #334155;

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

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

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

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

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.2;
    }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
}

.logo-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: rotate(15deg) scale(1.1);
}

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

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

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

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

.mobile-menu {
    display: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
}

/* ==================== HERO  ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatSlow {

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

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

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge.pulse {
    animation: pulse 2s infinite;
}

.badge-counter {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.badge-counter.completed {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success);
    color: var(--success);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--primary-light);
}

.hero-cta {
    margin-bottom: 32px;
}

.email-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.input-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

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

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--accent);
    font-size: 0.95rem;
}

/* ==================== LIVE COUNTER ==================== */
.live-counter {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.counter-item {
    text-align: center;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.counter-item.highlight .counter-value {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-loader {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.counter-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.counter-status {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.counter-status i {
    margin-right: 6px;
}

/* ==================== HERO VISUAL ==================== */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(180deg, #2D3748 0%, #1A202C 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow: var(--shadow-glow), 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 30px;
    background: #1A202C;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 40px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.preview-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.preview-status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.preview-status {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideIn 0.5s ease-out backwards;
}

.preview-card:nth-child(1) {
    animation-delay: 0.1s;
}

.preview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.preview-card:nth-child(3) {
    animation-delay: 0.3s;
}

.preview-card.accent {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-color: var(--primary);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.card-emoji {
    font-size: 1.75rem;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.card-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preview-nav {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.nav-item.active {
    color: var(--primary-light);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(var(--x), var(--y));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    animation: floatCard 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-card i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translate(var(--x), var(--y));
    }

    50% {
        transform: translate(var(--x), calc(var(--y) - 15px));
    }
}

/* ==================== CENTRALIZED HERO LAYOUT ==================== */
.device-showcase.centralized-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 600px;
    width: 100%;
}

/* Base Device Styles */
.device {
    position: absolute;
    transition: all 0.5s ease-out;
}

/* Coming Soon Overlay */
.coming-soon .screen-off {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.8;
}

.logo-glow {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    animation: glowPulse 3s infinite;
}

.coming-soon-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes glowPulse {

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

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

/* iPhone - Main Focus (Center) */
.iphone-hero.main-focus {
    z-index: 10;
    transform: scale(1);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* iPad Mini (Left, Back) */
.device.ipad-mini {
    left: -120px;
    top: 50px;
    z-index: 1;
    transform: scale(0.8) rotate(-5deg) translateX(0);
    opacity: 0.7;
    filter: blur(1px);
}

.device.ipad-mini .ipad-frame {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    background: #1a1a2a;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Mac Mini (Right, Back) */
.device.mac-mini {
    right: -140px;
    top: 20px;
    z-index: 2;
    transform: scale(0.75) rotate(5deg);
    opacity: 0.7;
    filter: blur(1px);
}

.mac-frame {
    width: 400px;
    height: 250px;
    background: #1a1a2a;
    border-radius: 12px 12px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    position: relative;
    padding: 10px;
}

.mac-base {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: #2a2a3a;
    border-radius: 0 0 12px 12px;
}

/* Watch Mini (Bottom Right, Float) */
.device.watch-mini {
    right: 40px;
    bottom: 40px;
    z-index: 12;
    transform: rotate(-15deg);
    animation: floatWatch 6s ease-in-out infinite;
}

.watch-frame {
    width: 100px;
    height: 120px;
    background: #1a1a2a;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.screen-off.small i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes floatWatch {

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

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

/* Hover Effects on Peripheral Devices */
.device.coming-soon:hover {
    transform: scale(0.85) rotate(0);
    opacity: 1;
    filter: blur(0);
    z-index: 15;
    cursor: default;
}

.iphone-hero {
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {

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

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

.iphone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(180deg, #3a3a4a 0%, #1a1a2a 100%);
    border-radius: 52px;
    padding: 12px;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(139, 92, 246, 0.2),
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 100px 150px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 42px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 50px 16px 20px;
}

/* App Header - Clean */
.app-header-clean {
    margin-bottom: 24px;
}

.app-greeting {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.app-question {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* App Content - Clean */
.app-content-clean {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mode-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 4px;
}

.mode-toggle .mode {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.2s;
}

.mode-toggle .mode.active {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}

/* Alter Grid - Clean */
.alter-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.alter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.2s;
}

.alter-item.selected {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.alter-emoji {
    font-size: 2rem;
}

.alter-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* Front Status - Clean */
.front-status-clean {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
    color: #34D399;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* App Nav - Clean */
.app-nav-clean {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-icon {
    font-size: 1.3rem;
    opacity: 0.5;
    transition: all 0.2s;
}

.nav-icon.active {
    opacity: 1;
    color: #8B5CF6;
}

/* ==================== IPAD HERO ==================== */
.ipad-hero {
    position: relative;
    animation: floatPad 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes floatPad {

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

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

.ipad-frame {
    width: 380px;
    height: 280px;
    background: linear-gradient(180deg, #3a3a4a 0%, #1a1a2a 100%);
    border-radius: 24px;
    padding: 14px;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(139, 92, 246, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 80px 120px rgba(0, 0, 0, 0.3);
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 16px;
}

/* iPad Header */
.ipad-header-real {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.ipad-header-text .greeting {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.ipad-header-text .question {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.ipad-mode-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 3px;
}

.ipad-mode-toggle .mode-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
}

/* iPad Search */
.ipad-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 0.75rem;
}

/* iPad Alter Grid */
.ipad-alter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    flex: 1;
}

.ipad-alter-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ipad-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
}

.ipad-avatar.dashed {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.ipad-avatar.ring-pink {
    border: 3px solid #EC4899;
}

.ipad-avatar.ring-blue {
    border: 3px solid #3B82F6;
}

.ipad-avatar.ring-red {
    border: 3px solid #EF4444;
}

.ipad-avatar.ring-cyan {
    border: 3px solid #22D3EE;
}

.ipad-avatar.ring-pink.photo {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
}

.ipad-avatar.ring-blue.photo {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.ipad-avatar.ring-red.photo {
    background: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
}

.ipad-avatar.ring-cyan.photo {
    background: linear-gradient(135deg, #67E8F9 0%, #22D3EE 100%);
}

.ipad-alter-cell .name {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Device Tag */
.device-tag {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.device-tag i {
    color: var(--primary-light);
}

/* ==================== REAL APP UI STYLES ==================== */
.app-header-real {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.header-text .greeting {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.header-text .question {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.trash-icon {
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Mode Toggle Real */
.mode-toggle-real {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 12px;
}

.mode-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.2s;
}

.mode-btn.active {
    background: rgba(59, 130, 246, 0.4);
    color: #fff;
}

/* Search Bar Real */
.search-bar-real {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 16px;
}

.search-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Alter Grid Real - 4x2 */
.alter-grid-real {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
}

.alter-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.avatar.dashed {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
}

.avatar.ring-pink {
    border: 3px solid #EC4899;
    background: rgba(236, 72, 153, 0.15);
}

.avatar.ring-blue {
    border: 3px solid #3B82F6;
    background: rgba(59, 130, 246, 0.15);
}

.avatar.ring-red {
    border: 3px solid #EF4444;
    background: rgba(239, 68, 68, 0.15);
}

.avatar.ring-cyan {
    border: 3px solid #22D3EE;
    background: rgba(34, 211, 238, 0.15);
}

.avatar.ring-white {
    border: 3px solid #E2E8F0;
    background: rgba(226, 232, 240, 0.1);
}

.avatar.ring-yellow {
    border: 3px solid #F59E0B;
    background: rgba(245, 158, 11, 0.15);
}

.alter-cell .name {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.alter-cell .name.pink {
    color: #EC4899;
}

/* Photo avatars - solid colored circles simulating profile pictures */
.avatar.photo {
    background-size: cover;
    background-position: center;
}

.avatar.ring-pink.photo {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
}

.avatar.ring-blue.photo {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.avatar.ring-red.photo {
    background: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
}

.avatar.ring-cyan.photo {
    background: linear-gradient(135deg, #67E8F9 0%, #22D3EE 100%);
}

.avatar.ring-white.photo {
    background: linear-gradient(135deg, #F1F5F9 0%, #CBD5E1 100%);
}

.avatar.ring-yellow.photo {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}

/* Bottom Nav Real - Properly aligned */
.bottom-nav-real {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 12px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.nav-item-real {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-item-real i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.nav-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
}

.nav-item-real.main {
    margin-top: -20px;
}

.nav-item-real.main .check-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Base device styles */
.device {
    position: absolute;
    transition: all 0.4s ease;
}

.device-frame {
    background: linear-gradient(180deg, #2D3748 0%, #1A202C 100%);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 2px 8px rgba(139, 92, 246, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 100px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.device-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

.device-screen {
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

/* Device Labels */
.device-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    animation: fadeInLabel 1s ease-out forwards;
}

@keyframes fadeInLabel {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.device-label i {
    color: var(--primary-light);
}

/* iPhone - Main device (center) - Hero */
.device.iphone {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    animation: floatIphone 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.2));
}

.device.iphone .device-frame {
    width: 260px;
    height: 520px;
    border-radius: 48px;
    padding: 12px;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(180deg, #3d3d4d 0%, #1a1a2e 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 10px rgba(139, 92, 246, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 80px 120px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.device.iphone .device-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.device.iphone .device-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    padding: 45px 16px 16px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #111827 0%, #0F172A 100%);
}

/* iPhone App UI */
.phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.app-logo-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.user-info-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name-mini {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.user-status-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
}

.status-dot-mini {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
}

/* iPhone Content - Bubble Layout */
/* iPhone Content - Realistic Grid Layout */
.real-grid-layout {
    display: flex;
    flex-direction: column;
    padding: 20px 0 0;
    gap: 15px;
    height: 100%;
}

/* Header Area */
.real-header-area {
    padding-bottom: 5px;
}

.greeting-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.trash-btn {
    background: rgba(30, 41, 59, 0.6);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.trash-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* Mode Selector */
.mode-selector {
    display: flex;
    background: rgba(30, 41, 59, 0.5);
    padding: 3px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.mode-pill {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.mode-pill.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Search Bar */
.search-bar-mock {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.search-bar-mock i {
    opacity: 0.7;
}

/* Grid Container */
.alter-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
    padding: 0 5px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.circle-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    transition: transform 0.2s;
}

.circle-avatar:hover {
    transform: scale(1.05);
}

/* Special Items */
.dashed {
    background: rgba(30, 41, 59, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

/* Rings */
.img-ring {
    padding: 2px;
    background-clip: content-box;
    border: 2px solid transparent;
}

.img-ring.pink {
    border-color: #EC4899;
    background-color: rgba(236, 72, 153, 0.2);
}

.img-ring.blue {
    border-color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.2);
}

.img-ring.red {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.2);
}

.img-ring.cyan {
    border-color: #06B6D4;
    background-color: rgba(6, 182, 212, 0.2);
}

.img-ring.white {
    border-color: #E2E8F0;
    background-color: rgba(226, 232, 240, 0.2);
}

.img-ring.yellow {
    border-color: #F59E0B;
    background-color: rgba(245, 158, 11, 0.2);
}

.active-selection {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.emoji-avatar {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.grid-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}

.grid-name.accent-pink {
    color: #EC4899;
}

/* Bottom Nav */
.real-bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px 4px;
    /* Reduced bottom padding */
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.6rem;
    cursor: pointer;
    width: 44px;
    /* Fixed width for alignment */
}

.nav-item i {
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.2s;
}

.nav-item:hover i {
    opacity: 1;
    color: #fff;
}

.main-action .check-circle {
    width: 44px;
    height: 44px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    font-size: 1.2rem;
    margin-bottom: 4px;
    transform: translateY(-8px);
}

.alter-bubble.medium {
    width: 80px;
    height: 80px;
    right: 20px;
    top: 40px;
    z-index: 5;
}

.alter-bubble.small {
    width: 50px;
    height: 50px;
    opacity: 0.6;
}

.alter-bubble.small.pos-1 {
    left: 30px;
    bottom: 50px;
}

.alter-bubble.small.pos-2 {
    right: 40px;
    bottom: 30px;
}

.alter-bubble.small.pos-3 {
    left: 40px;
    top: 30px;
}

.bubble-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.main .bubble-emoji {
    font-size: 3.5rem;
}

.medium .bubble-emoji {
    font-size: 2rem;
}

.small .bubble-emoji {
    font-size: 1.5rem;
}

.bubble-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 4px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Status Pill */
.active-front-status {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.status-pill {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #34D399;
}

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.waveform span {
    width: 3px;
    background: #34D399;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(2) {
    animation-delay: 0.1s;
    height: 60%;
}

.waveform span:nth-child(3) {
    animation-delay: 0.2s;
    height: 30%;
}

@keyframes wave {

    0%,
    100% {
        height: 40%;
    }

    50% {
        height: 100%;
    }
}

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

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

.phone-nav-mini {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.phone-nav-mini i {
    color: var(--text-muted);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s;
}

.phone-nav-mini i:hover,
.phone-nav-mini i.active {
    color: var(--primary-light);
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

/* iPad - Enhanced */
.device.ipad {
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotateY(15deg) scale(1);
    z-index: 6;
    opacity: 1;
}

.device.ipad .device-frame {
    width: 260px;
    height: 340px;
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 60px 100px rgba(0, 0, 0, 0.3);
}

.device.ipad .device-screen {
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* iPad Dashboard - Enhanced */
.ipad-dashboard {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
}

.ipad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ipad-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ipad-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ipad-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ipad-card.front-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
}

.front-emoji {
    font-size: 1.8rem;
}

.front-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.front-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.front-duration {
    font-size: 0.7rem;
    color: #34D399;
    font-weight: 500;
}

.ipad-stats {
    display: flex;
    gap: 10px;
}

.ipad-stat {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* MacBook - Enhanced */
.device.macbook {
    right: -60px;
    top: 45%;
    transform: translateY(-50%) rotateY(-12deg) scale(0.95);
    z-index: 5;
    opacity: 1;
}

.device.macbook .device-frame {
    width: 300px;
    height: 190px;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.macbook-base {
    width: 320px;
    height: 16px;
    margin-left: -10px;
    background: linear-gradient(180deg, #3d3d4d 0%, #2a2a3a 100%);
    border-radius: 0 0 12px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mac UI - Realistic */
.mac-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.mac-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-dots {
    display: flex;
    gap: 6px;
}

.mac-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mac-dots .dot.red {
    background: #FF5F56;
}

.mac-dots .dot.yellow {
    background: #FFBD2E;
}

.mac-dots .dot.green {
    background: #27CA40;
}

.mac-title {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mac-content {
    flex: 1;
    display: flex;
}

.mac-sidebar {
    width: 40px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mac-nav-item {
    font-size: 0.9rem;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.mac-nav-item.active {
    background: rgba(139, 92, 246, 0.3);
}

.mac-main {
    flex: 1;
    padding: 10px;
}

.mac-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.mac-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mac-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.7rem;
    color: #fff;
}

/* Apple Watch - Bottom right */
.device.watch {
    right: 40px;
    bottom: 20px;
    z-index: 6;
    animation: floatDevice 3.5s ease-in-out infinite 1.5s;
}

.device.watch .device-frame {
    width: 60px;
    height: 72px;
    border-radius: 14px;
    padding: 4px;
}


/* Watch */
.device.watch {
    right: 30px;
    bottom: 0px;
    z-index: 15;
    transform: rotate(-10deg);
}

.device.watch .device-frame {
    width: 80px;
    height: 96px;
    border-radius: 20px;
    padding: 6px;
    border-color: #4B5563;
    background: #000;
}

.device.watch .device-screen {
    border-radius: 14px;
    background: #000;
}

.watch-ui {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Animations */
@keyframes floatDevice {

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

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

.device.ipad {
    animation: floatIpad 5s ease-in-out infinite;
}

@keyframes floatIpad {

    0%,
    100% {
        transform: translateY(-50%) rotateY(15deg);
    }

    50% {
        transform: translateY(calc(-50% - 8px)) rotateY(15deg);
    }
}

.device.macbook {
    animation: floatMac 6s ease-in-out infinite;
}

@keyframes floatMac {

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

    50% {
        transform: translateY(calc(-50% - 6px)) rotateY(-10deg);
    }
}

.device.watch {
    animation: floatWatch 3.5s ease-in-out infinite;
}

@keyframes floatWatch {

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

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

.device.iphone {
    animation: floatIphone 4s ease-in-out infinite;
}

@keyframes floatIphone {

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

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

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

/* Responsive */
@media (max-width: 1024px) {
    .devices-container {
        width: 400px;
        height: 400px;
    }

    .device.ipad,
    .device.macbook {
        display: none;
    }

    .device.watch {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .devices-container {
        width: 280px;
        height: 450px;
    }

    .device.iphone .device-frame {
        width: 200px;
        height: 400px;
    }

    .device.watch {
        display: none;
    }
}

/* ==================== FEATURES ==================== */
.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}

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

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ==================== FEATURE TABS ==================== */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* ==================== FEATURE COUNT BADGE ==================== */
.feature-count {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-light);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==================== FEATURE ICON SHIMMER ==================== */
.feature-icon.shimmer {
    position: relative;
    overflow: hidden;
}

.feature-icon.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shimmerMove 2s infinite;
}

@keyframes shimmerMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* ==================== FEATURE STATS BAR ==================== */
.feature-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-number span {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== STAGGERED CARD ANIMATIONS ==================== */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Staggered Animation Delays */
.feature-card:nth-child(1) {
    animation-delay: 0s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(7) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(8) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(9) {
    animation-delay: 0.8s;
}

.feature-card:nth-child(10) {
    animation-delay: 0.9s;
}

.feature-card:nth-child(11) {
    animation-delay: 1.0s;
}

.feature-card:nth-child(12) {
    animation-delay: 1.1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Bounce on Hover */
.feature-card:hover .feature-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

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

    50% {
        transform: scale(1.2);
    }
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-color: var(--primary);
    grid-column: span 2;
}

@media (max-width: 768px) {
    .feature-card.featured {
        grid-column: span 1;
    }
}

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text .section-badge {
    margin-bottom: 16px;
}

.why-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 40px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
}

.why-point h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-point p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateX(10px);
}

.comparison-card.good:hover {
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1.05rem;
}

.comp-header.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.comp-header.good {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.comp-list {
    list-style: none;
    padding: 18px 24px;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-card.good .comp-list li i {
    color: var(--success);
}

.comparison-card:not(.good) .comp-list li i {
    color: var(--danger);
}

/* ==================== SIGNUP SECTION ==================== */
.signup-section {
    padding: 100px 24px;
}

.signup-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.signup-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
    pointer-events: none;
}

.signup-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 1rem;
    margin-bottom: 28px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.signup-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.signup-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.surprise-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.surprise-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.surprise-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.surprise-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.surprise-info {
    text-align: left;
}

.surprise-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

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

.main-email-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 20px 20px 20px 50px;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn-glow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.btn-glow:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Success Message */
.success-message,
.already-message {
    margin-top: 32px;
    padding: 40px;
    border-radius: var(--radius-lg);
    animation: fadeIn 0.6s ease-out;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.already-message {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3B82F6;
}

.success-message.hidden,
.already-message.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.success-icon,
.already-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--success);
}

.already-message h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #3B82F6;
}

.success-position {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.success-rewards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.success-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(15, 23, 42, 0.8);
    padding: 60px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand .logo-text {
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Support / Crowdfunding Section */
.support-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.support-text {
    flex: 1;
    max-width: 500px;
}

.badge-support {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.support-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Leetchi Card */
.leetchi-card {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.leetchi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leetchi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EC4899, #8B5CF6);
}

.leetchi-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.leetchi-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #EC4899;
}

.leetchi-info {
    flex: 1;
}

.leetchi-platform {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leetchi-project-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.leetchi-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.leetchi-card:hover .leetchi-arrow {
    background: #fff;
    color: #000;
    transform: rotate(45deg);
}

/* Progress Area */
.leetchi-progress-area {
    margin-bottom: 30px;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #EC4899, #8B5CF6);
    border-radius: 100px;
    position: relative;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-current {
    color: #EC4899;
    font-weight: 700;
}

/* Funding Status Details */
.funding-status {
    display: flex;
    gap: 15px;
    margin-top: 16px;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.status-check {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.status-check i {
    font-size: 1rem;
}

.status-check.success {
    color: #34D399;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-check.pending {
    color: var(--text-muted);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.leetchi-cta-button {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
}

.leetchi-card:hover .leetchi-cta-button {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Responsive Support */
@media (max-width: 900px) {
    .support-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .support-text h2 {
        font-size: 2rem;
    }

    .leetchi-card {
        width: 100%;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .badge-container {
        justify-content: center;
    }

    .email-form {
        justify-content: center;
    }

    .form-note {
        justify-content: center;
    }

    .live-counter {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-visual {
        display: none;
    }

    .email-form {
        flex-direction: column;
    }

    .input-wrapper {
        min-width: 100%;
    }

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

    .counter-value {
        font-size: 2rem;
    }

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

    .surprise-preview {
        flex-direction: column;
        align-items: center;
    }

    .surprise-item {
        width: 100%;
        max-width: 300px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .signup-container {
        padding: 40px 24px;
    }

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

@media (max-width: 480px) {
    .badge-container {
        flex-direction: column;
        align-items: center;
    }

    .counter-content {
        flex-direction: column;
        gap: 20px;
    }

    .counter-divider {
        width: 60%;
        height: 1px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 24px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.btn-accept,
.btn-refuse {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.btn-refuse {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-refuse {
        width: 100%;
    }
}