/* ===== PUMPER WEBSITE STYLES ===== */
/* Color Scheme: White + Mint/Aqua Green Gradient */

:root {
    /* Primary Colors */
    --primary: #1ed760;
    --primary-light: #4ade80;
    --primary-dark: #16a34a;
    --accent: #00d9a5;
    --accent-light: #34d399;
    
    /* Gradient Colors */
    --gradient-start: #ffffff;
    --gradient-mid: #e0fff4;
    --gradient-end: #00d9a5;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fffe;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.6);
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Utility */
    --border: rgba(0, 217, 165, 0.2);
    --shadow: 0 4px 60px rgba(0, 217, 165, 0.15);
    --shadow-lg: 0 20px 80px rgba(0, 217, 165, 0.2);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

/* ===== UTILITIES ===== */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(30, 215, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 215, 96, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-glass);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: #ffffff;
}

.logo-text-main {
    color: inherit;
}

.logo-icon-capsule {
    width: 24px;
    height: 14px;
    margin: 0 4px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-weight: 400;
    font-size: 0.875rem;
    color: #d1d5db;
    transition: var(--transition);
    text-decoration: none;
}

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

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

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-nav.btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #d1d5db;
}

.btn-nav.btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-nav.btn-solid {
    background: #d1d5db;
    color: #000000;
    border: none;
}

.btn-nav.btn-solid:hover {
    background: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.4) 0%, rgba(0, 217, 165, 0.2) 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.3) 0%, rgba(52, 211, 153, 0.2) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(30, 215, 96, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 215, 96, 0.1);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

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

/* Hero Phone */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: floatPhone 6s ease-in-out infinite;
    /* Убираем видимые границы */
    border: none;
    outline: none;
    background: transparent;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 217, 165, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.phone-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    /* Убираем все границы и контуры */
    border: none;
    outline: none;
    background: transparent;
}

.phone-image {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 20px 60px rgba(0, 217, 165, 0.2);
    transition: var(--transition-slow);
    border: none !important;
    outline: none !important;
    display: block;
    /* Убираем все границы и контуры */
    -webkit-mask-image: none;
    mask-image: none;
    /* Убираем видимые границы от SVG */
    object-fit: contain;
    background: transparent;
}

/* Убираем границы у SVG */
.phone-image svg,
.phone-image svg * {
    border: none;
    outline: none;
    stroke: none;
}

.phone-container:hover .phone-image {
    transform: scale(1.02);
}

.phone-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 40px;
    pointer-events: none;
    /* Убираем видимые границы */
    border: none;
    outline: none;
}

/* Floating Cards - скрыты для чистого вида */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none; /* Убираем виджеты сзади */
    opacity: 0;
    visibility: hidden;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    animation: floatCard 4s ease-in-out infinite;
}

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

.float-card.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: -1s;
}

.float-card.card-3 {
    bottom: 10%;
    right: -10px;
    animation-delay: -2s;
}

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

.card-icon {
    font-size: 1.25rem;
}

.card-text {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 0.6s ease-out 1s backwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(30, 215, 96, 0.3);
}

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

.feature-card.feature-large {
    grid-column: span 2;
}

.feature-card.feature-highlight {
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 217, 165, 0.05) 100%);
    border-color: rgba(30, 215, 96, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-icon .emoji-icon {
    font-size: 2rem;
}

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

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

.feature-visual {
    margin-top: 24px;
}

.code-block {
    background: #0f172a;
    border-radius: 12px;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
}

.code-line {
    display: block;
    line-height: 1.8;
    color: #e2e8f0;
}

.code-keyword { color: #c084fc; }
.code-function { color: #4ade80; }
.code-string { color: #fbbf24; }
.code-number { color: #60a5fa; }

.degen-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(30, 215, 96, 0.1);
    border-radius: 12px;
}

.degen-badge span {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-dark);
}

.toggle-switch {
    width: 48px;
    height: 28px;
    background: var(--text-muted);
    border-radius: 14px;
    position: relative;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-knob {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
}

.toggle-switch.active .toggle-knob {
    left: 23px;
}

/* ===== ALL IN ONE SECTION ===== */
.all-in-one {
    padding: var(--section-padding);
}

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

.aio-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.aio-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.aio-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.aio-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.aio-icon svg {
    width: 32px;
    height: 32px;
}

.aio-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

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

.phone-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-screen {
    position: absolute;
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 32px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.phone-screen.screen-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-screen.screen-2 {
    top: 30px;
    left: calc(50% - 40px);
    transform: translateX(-50%) rotate(-5deg);
    z-index: 2;
    opacity: 0.8;
}

.phone-screen.screen-3 {
    top: 60px;
    left: calc(50% + 40px);
    transform: translateX(-50%) rotate(5deg);
    z-index: 1;
    opacity: 0.6;
}

.mock-wallet, .mock-trade, .mock-rewards {
    color: white;
    text-align: center;
    padding-top: 60px;
}

.mock-balance {
    font-size: 2rem;
    font-weight: 700;
}

.mock-change {
    font-size: 1.25rem;
    margin-top: 8px;
}

.mock-change.positive {
    color: var(--primary);
}

.mock-token {
    font-size: 1.5rem;
    font-weight: 600;
}

.mock-chart {
    width: 100%;
    height: 150px;
    margin-top: 20px;
    background: linear-gradient(to right, transparent 0%, var(--primary) 50%, transparent 100%);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q 25 20, 50 30 T 100 25 T 150 35 T 200 20' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E");
    mask-size: cover;
}

.mock-airdrop {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* ===== SPECS SECTION ===== */
.specs {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.spec-card.highlight {
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 217, 165, 0.05) 100%);
    border-color: rgba(30, 215, 96, 0.3);
}

.spec-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.spec-icon .emoji-icon {
    font-size: 1.5rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.spec-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== OS PREVIEW SECTION ===== */
.os-preview {
    padding: var(--section-padding);
}

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

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

.os-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.os-feature:hover,
.os-feature.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.05) 0%, transparent 100%);
}

.os-feature.active {
    box-shadow: var(--shadow);
}

.os-feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.os-feature.active .os-feature-number {
    opacity: 1;
}

.os-feature-content h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.os-feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.os-phone-preview {
    display: flex;
    justify-content: center;
}

.os-phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.os-phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0f0f1a;
    border-radius: 12px;
    z-index: 10;
}

.os-screen {
    width: 100%;
    height: 100%;
    background: #0f0f1a;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.os-screen-content {
    position: absolute;
    inset: 0;
    padding: 50px 20px 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.os-screen-content.screen-active {
    opacity: 1;
    transform: translateX(0);
}

.mock-ui {
    color: white;
    height: 100%;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.mock-tokens {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-token-row {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.mock-token-row .green { color: var(--primary); }
.mock-token-row .red { color: #ef4444; }

.trade-ui {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.trade-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trade-ticker {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.ticker-name {
    color: white;
}

.trade-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.trade-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.trade-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.trade-change.positive {
    color: var(--primary);
}

.trade-change.negative {
    color: #ef4444;
}

.trade-stats {
    display: flex;
    gap: 24px;
    padding: 12px 0;
}

.trade-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.mock-chart-area {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mock-buttons {
    display: flex;
    gap: 12px;
}

.mock-buy, .mock-sell {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.mock-buy {
    background: var(--primary);
    color: white;
}

.mock-sell {
    background: #ef4444;
    color: white;
}

.create-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
}

.mock-create-icon {
    font-size: 4rem;
}

.mock-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.mock-create-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.wallet-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 50px 16px 20px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.mock-wallet-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.mock-wallet-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mock-balance-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mock-wallet-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 220px;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}

.wallet-action-btn {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wallet-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ===== ROADMAP SECTION ===== */
.roadmap {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
}

.roadmap-item {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.roadmap-marker {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.roadmap-item.active .roadmap-marker {
    border-color: var(--primary);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.empty-dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
}

.roadmap-content {
    flex: 1;
    padding: 8px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.roadmap-item.active .roadmap-content {
    border-color: var(--primary);
}

.roadmap-phase {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 4px 0 8px;
}

.roadmap-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.roadmap-status {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.roadmap-status.completed {
    background: rgba(30, 215, 96, 0.1);
    color: var(--primary-dark);
}

.roadmap-status.active {
    background: var(--primary);
    color: white;
}

/* ===== WAITLIST SECTION ===== */
.waitlist {
    padding: var(--section-padding);
}

.waitlist-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 80px;
    overflow: hidden;
}

.waitlist-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb-4 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.3) 0%, rgba(0, 217, 165, 0.1) 100%);
    top: -100px;
    right: -100px;
}

.orb-5 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%);
    bottom: -50px;
    left: -50px;
}

.waitlist-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 215, 96, 0.1);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.waitlist-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

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

.waitlist-form {
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
}

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

.waitlist-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.ws-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ws-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.ws-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.ws-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-phone {
        order: 2;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.feature-large {
        grid-column: span 2;
    }
    
    .aio-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .os-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .os-phone-preview {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-nav {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 0.75rem;
    }
    
    .logo-icon-capsule {
        width: 20px;
        height: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.feature-large {
        grid-column: span 1;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-card {
        padding: 40px 24px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .phone-container {
        max-width: 280px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .waitlist-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .ws-divider {
        width: 40px;
        height: 1px;
    }
}

