/* ===== PREDICATOR LANDING PAGE ===== */
/* Design: Dark premium, AI-native, Motion-driven */

:root {
    --color-bg: #0a0a0f;
    --color-bg-elevated: #12121a;
    --color-bg-card: #16161f;
    --color-bg-card-hover: #1c1c28;
    --color-surface: #1a1a25;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-text: #f0f0f5;
    --color-text-secondary: #8a8a9a;
    --color-text-muted: #5a5a6a;
    --color-accent-green: #00ff87;
    --color-accent-blue: #00d4ff;
    --color-accent-purple: #7c3aed;
    --color-accent-orange: #f59e0b;
    --color-accent-pink: #ec4899;
    --color-accent-cyan: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #00ff87, #00d4ff);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #c084fc);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-glow: 0 0 30px rgba(0, 255, 135, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

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

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

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: #0a0a0f !important;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
}

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

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0a0a0f;
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 135, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn-outline:hover {
    border-color: var(--color-accent-green);
    color: var(--color-accent-green);
}

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

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

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

.hero-centered {
    justify-content: center;
    min-height: auto;
    padding: 140px 0 60px;
}

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

.hero-gradient {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 255, 135, 0.08) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    background: rgba(0, 212, 255, 0.06);
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: rgba(124, 58, 237, 0.06);
    animation-delay: -3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 40%;
    background: rgba(0, 255, 135, 0.04);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent-green);
    margin-bottom: 24px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-content-centered .hero-actions {
    justify-content: center;
}

.hero-content-centered .hero-stats {
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
}

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Hero Phone */
.hero-phone {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-phone-centered {
    margin-top: 48px;
    position: relative;
}

.hero-phone-centered .hero-screenshot {
    width: 260px;
    height: auto;
    border-radius: 28px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-card), 0 0 80px rgba(0, 255, 135, 0.08), 0 40px 80px rgba(0, 0, 0, 0.4);
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--color-bg-card);
    border-radius: 36px;
    border: 2px solid var(--color-border);
    padding: 12px;
    box-shadow: var(--shadow-card), 0 0 60px rgba(0, 255, 135, 0.05);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--color-bg);
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 24px;
    padding: 44px 16px 16px;
    overflow: hidden;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.phone-app-title {
    font-weight: 600;
    color: var(--color-text);
}

.phone-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid var(--color-border);
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.phone-card:nth-child(2) { animation-delay: 0.2s; }
.phone-card:nth-child(3) { animation-delay: 0.4s; }
.phone-card:nth-child(4) { animation-delay: 0.6s; }

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

.phone-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.phone-card-badge {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.phone-card-badge.high {
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-accent-green);
}

.phone-card-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-accent-orange);
}

.phone-card-odds {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text);
}

.phone-card-match {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.phone-card-prediction {
    font-size: 0.6875rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.phone-card-result {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.phone-card-result.won {
    color: var(--color-accent-green);
}

.phone-card-result.pending {
    color: var(--color-accent-orange);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.social-proof-text {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.proof-item svg {
    stroke: var(--color-accent-green);
    opacity: 0.8;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-green);
    margin-bottom: 16px;
    padding: 4px 12px;
    background: rgba(0, 255, 135, 0.08);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

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

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-green { background: rgba(0, 255, 135, 0.1); color: var(--color-accent-green); }
.feature-icon-blue { background: rgba(0, 212, 255, 0.1); color: var(--color-accent-blue); }
.feature-icon-purple { background: rgba(124, 58, 237, 0.1); color: var(--color-accent-purple); }
.feature-icon-orange { background: rgba(245, 158, 11, 0.1); color: var(--color-accent-orange); }
.feature-icon-pink { background: rgba(236, 72, 153, 0.1); color: var(--color-accent-pink); }
.feature-icon-cyan { background: rgba(6, 182, 212, 0.1); color: var(--color-accent-cyan); }

.feature-icon svg {
    stroke: currentColor;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

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

.feature-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signal-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg);
    border-radius: var(--radius-full);
    padding: 6px 16px 6px 6px;
    border: 1px solid var(--color-border);
}

.signal-fill {
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    transition: width 1.5s ease;
}

.signal-fill.medium {
    background: var(--gradient-purple);
}

.signal-fill.low {
    background: var(--gradient-warm);
}

.signal-bar span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--color-bg-elevated);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

/* Step visuals */
.data-stream {
    position: relative;
    width: 100%;
    height: 60px;
}

.stream-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-green), transparent);
    opacity: 0.3;
    animation: streamMove 2s ease-in-out infinite;
}

.stream-line:nth-child(1) { top: 10px; animation-delay: 0s; }
.stream-line:nth-child(2) { top: 30px; animation-delay: 0.5s; }
.stream-line:nth-child(3) { top: 50px; animation-delay: 1s; }

.stream-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-green);
    animation: streamDot 2s ease-in-out infinite;
}

.stream-dot:nth-child(4) { top: 8px; left: 30%; animation-delay: 0.3s; }
.stream-dot:nth-child(5) { top: 28px; left: 60%; animation-delay: 0.8s; }
.stream-dot:nth-child(6) { top: 48px; left: 45%; animation-delay: 1.3s; }

@keyframes streamMove {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

@keyframes streamDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.neural-net {
    position: relative;
    width: 100px;
    height: 80px;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent-blue);
    animation: nodeGlow 2s ease-in-out infinite;
}

.node-1 { top: 0; left: 20%; animation-delay: 0s; }
.node-2 { top: 0; left: 70%; animation-delay: 0.3s; }
.node-3 { top: 50%; left: 45%; animation-delay: 0.6s; }
.node-4 { bottom: 0; left: 20%; animation-delay: 0.9s; }
.node-5 { bottom: 0; left: 70%; animation-delay: 1.2s; }

@keyframes nodeGlow {
    0%, 100% { box-shadow: 0 0 4px var(--color-accent-blue); }
    50% { box-shadow: 0 0 16px var(--color-accent-blue); }
}

.signal-output {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.signal-pulse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent-green);
    animation: signalPulse 1.5s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0, 255, 135, 0); }
}

.signal-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-accent-green);
}

.delivery-icon {
    animation: deliveryBounce 2s ease-in-out infinite;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 120px 0;
}

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

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.stat-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
}

.stat-ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
}

.stat-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.stat-big-number {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.big-num {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== APP DEMO ===== */
.app-demo {
    padding: 120px 0;
    background: var(--color-bg-elevated);
    overflow: hidden;
}

.demo-screenshots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    perspective: 1200px;
}

.demo-screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.4s ease;
}

.demo-screenshot-item .demo-screenshot-img {
    width: 220px;
    height: auto;
    border-radius: 24px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-card), 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.demo-screenshot-item.demo-screenshot-featured .demo-screenshot-img {
    width: 260px;
    border-color: rgba(0, 255, 135, 0.2);
    box-shadow: var(--shadow-card), 0 0 60px rgba(0, 255, 135, 0.08), 0 30px 80px rgba(0, 0, 0, 0.4);
}

.demo-screenshot-item:hover .demo-screenshot-img {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 0 40px rgba(0, 255, 135, 0.1), 0 40px 80px rgba(0, 0, 0, 0.4);
}

.demo-screenshot-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .demo-screenshots {
        gap: 16px;
    }
    .demo-screenshot-item .demo-screenshot-img {
        width: 140px;
    }
    .demo-screenshot-item.demo-screenshot-featured .demo-screenshot-img {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .demo-screenshots {
        gap: 10px;
    }
    .demo-screenshot-item .demo-screenshot-img {
        width: 100px;
        border-radius: 16px;
    }
    .demo-screenshot-item.demo-screenshot-featured .demo-screenshot-img {
        width: 120px;
    }
}

.demo-screens {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.demo-phone {
    width: 240px;
    height: 460px;
    background: var(--color-bg-card);
    border-radius: 28px;
    border: 2px solid var(--color-border);
    padding: 16px;
    transition: all var(--transition-slow);
}

.demo-phone-main {
    width: 280px;
    height: 520px;
    border-color: rgba(0, 255, 135, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 135, 0.08);
}

.demo-phone-content {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 16px;
    padding: 20px 14px;
    overflow: hidden;
}

.demo-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

/* Demo Picks */
.demo-picks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-pick {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 0.6875rem;
}

.pick-tier {
    font-weight: 700;
    font-size: 0.625rem;
}

.demo-pick.safe .pick-tier { color: var(--color-accent-green); }
.demo-pick.standard .pick-tier { color: var(--color-accent-blue); }
.demo-pick.risky .pick-tier { color: var(--color-accent-orange); }
.demo-pick.super-risky .pick-tier { color: var(--color-accent-pink); }

.pick-odds {
    font-weight: 700;
    color: var(--color-text);
}

.pick-count {
    color: var(--color-text-muted);
}

/* Demo Stats */
.demo-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 10px;
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
}

.demo-mini-stat {
    text-align: center;
}

.dms-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent-green);
}

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

/* Demo Signals */
.demo-signal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-signal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.ds-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ds-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.ds-badge.high {
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-accent-green);
}

.ds-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-accent-orange);
}

.ds-match {
    font-size: 0.6875rem;
    font-weight: 500;
}

.ds-pred {
    font-size: 0.625rem;
    color: var(--color-text-secondary);
}

/* Demo Rolling */
.demo-rolling {
    padding-top: 12px;
}

.rolling-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

.rolling-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    border: 2px solid var(--color-border);
    color: var(--color-text-muted);
}

.rolling-step.done {
    background: var(--color-accent-green);
    border-color: var(--color-accent-green);
    color: #0a0a0f;
}

.rolling-step.active {
    border-color: var(--color-accent-green);
    color: var(--color-accent-green);
    box-shadow: 0 0 12px rgba(0, 255, 135, 0.3);
}

.rolling-line {
    width: 24px;
    height: 2px;
    background: var(--color-border);
}

.rolling-line.done {
    background: var(--color-accent-green);
}

.rolling-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

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

.rolling-value {
    font-size: 0.875rem;
    font-weight: 700;
}

.rolling-value.target {
    color: var(--color-accent-green);
}

/* Demo screen transforms */
.demo-screen-left .demo-phone,
.demo-screen-right .demo-phone {
    opacity: 0.7;
    transform: scale(0.9);
}

.demo-screen-left .demo-phone:hover,
.demo-screen-right .demo-phone:hover {
    opacity: 1;
    transform: scale(0.95);
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.pricing-card-pro {
    border-color: rgba(0, 255, 135, 0.3);
    background: linear-gradient(180deg, rgba(0, 255, 135, 0.03) 0%, var(--color-bg-card) 50%);
}

.pricing-card-pro:hover {
    border-color: rgba(0, 255, 135, 0.5);
    box-shadow: var(--shadow-glow);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #0a0a0f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===== DOWNLOAD ===== */
.download {
    padding: 120px 0;
}

.download-content {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.download-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 135, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.download-content .section-title {
    position: relative;
}

.download-content .section-subtitle {
    position: relative;
    margin-bottom: 36px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.store-btn:hover {
    border-color: var(--color-accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.1);
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn-small {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-btn-large {
    font-size: 1.0625rem;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-accent-green);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-phone {
        display: none;
    }

    .hero-phone-centered .hero-screenshot {
        width: 220px;
    }

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

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

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        grid-template-columns: 60px 1fr;
    }

    .step-visual {
        display: none;
    }

    .demo-screen-left,
    .demo-screen-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .feature-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-phone-centered .hero-screenshot {
        width: 200px;
    }

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

    .step-number {
        font-size: 2rem;
    }

    .demo-screens {
        padding: 0 20px;
    }

    .download-content {
        padding: 48px 24px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

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

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .social-proof-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

    .hero-phone-centered .hero-screenshot {
        width: 180px;
    }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
