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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --dark: #030712;
    --dark-light: #0f172a;
    --dark-card: #111827;
    --text: #e5e7eb;
    --text-dark: #9ca3af;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Name Ticker */
.name-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background: rgba(10, 10, 20, 0.97);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 1002;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 90s linear infinite;
    will-change: transform;
}

.ticker-item {
    font-size: 11px;
    font-weight: 600;
    color: rgba(156, 163, 175, 0.7);
    padding: 0 10px;
    letter-spacing: 0.2px;
}

.ticker-sep {
    font-size: 10px;
    color: rgba(99, 102, 241, 0.4);
    padding: 0 2px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
header {
    position: fixed;
    top: 28px;
    width: 100%;
    background: var(--dark);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 24px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary);
    text-shadow: 0 0 24px rgba(99, 102, 241, 0.7);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    letter-spacing: 0.1px;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 10px 22px;
    background: var(--gradient);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800 !important;
    font-size: 14px !important;
    transition: all 0.25s;
    border: 1px solid rgba(99, 102, 241, 0.4) !important;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.55) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 101px;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--white);
}

.nav-cta-mobile {
    background: var(--gradient) !important;
    color: var(--white) !important;
    text-align: center;
    font-weight: 700 !important;
}

.nav-cta-mobile:hover {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
    padding: 190px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Blobs */
.hero-blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: border-radius, transform;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.hero-blob--1 {
    width: 720px;
    height: 620px;
    top: -60px;
    left: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.38) 0%, rgba(139, 92, 246, 0.22) 100%);
    filter: blur(90px);
    transform: translateX(-50%);
    animation: blob-morph 13s ease-in-out infinite,
               blob-float-1 19s ease-in-out infinite;
}

.hero-blob--2 {
    width: 500px;
    height: 440px;
    top: 140px;
    left: 58%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.28) 0%, rgba(99, 102, 241, 0.14) 100%);
    filter: blur(70px);
    animation: blob-morph 17s ease-in-out infinite reverse,
               blob-float-2 24s ease-in-out infinite;
    animation-delay: 0s, 4s;
}

@keyframes blob-morph {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    20%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    40%  { border-radius: 50% 30% 55% 45% / 40% 65% 35% 55%; }
    60%  { border-radius: 45% 65% 30% 60% / 55% 40% 65% 35%; }
    80%  { border-radius: 65% 35% 50% 50% / 30% 55% 45% 70%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes blob-float-1 {
    0%   { transform: translateX(-50%) translateY(0px)   scale(1);    }
    30%  { transform: translateX(-48%) translateY(-22px) scale(1.04); }
    60%  { transform: translateX(-52%) translateY(12px)  scale(0.97); }
    100% { transform: translateX(-50%) translateY(0px)   scale(1);    }
}

@keyframes blob-float-2 {
    0%   { transform: translateY(0px)   scale(1)    rotate(0deg);  }
    35%  { transform: translateY(-28px) scale(1.06) rotate(7deg);  }
    65%  { transform: translateY(16px)  scale(0.95) rotate(-6deg); }
    100% { transform: translateY(0px)   scale(1)    rotate(0deg);  }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 64px;
}

h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.hero-notice {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-dark);
}

/* Dashboard Mockup */
.dashboard-mockup {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(99, 102, 241, 0.15);
}

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

.dashboard-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s;
}

.tab.active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.metric-card.portfolio {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.metric-card.profit {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 40px var(--success-glow);
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.metric-change {
    font-size: 14px;
    font-weight: 600;
}

.metric-change.positive {
    color: var(--success);
}

.metric-subtext {
    font-size: 13px;
    color: var(--text-dark);
    margin-top: 8px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-dot.success {
    background: var(--success);
    box-shadow: 0 0 12px var(--success-glow);
}

.status-dot.success::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--success);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

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

.status-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

/* Analytics Targets */
.analytics-targets {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.analytics-header {
    margin-bottom: 24px;
}

.analytics-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.targets-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.target-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.target-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.target-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.success-text {
    color: var(--success);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 100px;
    transition: width 0.5s ease;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
}

.target-status {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.projection-note {
    font-size: 12px;
    color: var(--text-dark);
    font-style: italic;
}

/* AI Insight */
.ai-insight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ai-icon {
    font-size: 24px;
}

.ai-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.ai-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.ai-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ai-tag {
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.problem-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.problem-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number.danger {
    color: #ef4444;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.problem-callout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.1);
}

.callout-icon {
    font-size: 40px;
    line-height: 1;
}

.callout-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.callout-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--dark-light);
}

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

.solution-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.solution-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.solution-card {
    padding: 40px 32px;
    background: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
}

.solution-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
}

.solution-card.highlight .solution-icon {
    background: var(--gradient);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.solution-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-card strong {
    color: var(--white);
    font-weight: 700;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    font-weight: 500;
}

.solution-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
}

.solution-cta h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.features h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: var(--white);
    margin-bottom: 64px;
}

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

.feature-card {
    padding: 40px 32px;
    background: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 16px;
}

/* Early Access Section */
.early-access {
    padding: 120px 0;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 56px 48px;
    background: var(--dark-card);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(99, 102, 241, 0.2);
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 32px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 16px;
}

.currency {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.price-description {
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 16px;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.benefits li {
    padding: 12px 0;
    color: var(--text);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.payment-button {
    width: 100%;
    padding: 20px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

/* Subscription Meter */
.spots-meter {
    max-width: 500px;
    margin: 0 auto 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid rgba(99, 102, 241, 0.45);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.spots-meter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.spots-meter-counts {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.spots-meter-taken {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.spots-meter-divider {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.spots-meter-total {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.spots-meter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 4px;
}

.spots-meter-remaining-badge {
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    color: #ef4444;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.2);
}

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

.spots-meter-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 100px;
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.7);
    transition: width 0.6s ease;
}

.spots-meter-note {
    font-size: 13px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 500;
}

/* Footer */
footer {
    padding: 80px 0 32px;
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.footer-disclaimer h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--text);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-credit {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.footer-credit::before {
    content: '';
}

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .problem-section {
        padding: 60px 0;
    }

    .problem-header h2 {
        font-size: 36px;
    }

    .problem-subtitle {
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 48px;
    }

    .problem-callout {
        flex-direction: column;
        padding: 24px;
    }

    .callout-content h3 {
        font-size: 20px;
    }

    .callout-content p {
        font-size: 15px;
    }

    .solution-section {
        padding: 60px 0;
    }

    .solution-header h2 {
        font-size: 36px;
    }

    .solution-subtitle {
        font-size: 16px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .solution-card {
        padding: 32px 24px;
    }

    .solution-card h3 {
        font-size: 20px;
    }

    .solution-cta {
        padding: 32px 24px;
    }

    .solution-cta h3 {
        font-size: 20px;
    }

    .features h2 {
        font-size: 36px;
    }

    footer {
        padding: 60px 0 24px;
    }

    .footer-disclaimer {
        padding: 24px;
    }

    .footer-disclaimer p {
        font-size: 12px;
    }

    .pricing-card {
        padding: 40px 32px;
    }

    .pricing-card h2 {
        font-size: 28px;
    }

    .amount {
        font-size: 56px;
    }

    nav {
        padding: 16px 24px;
    }

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

    .features {
        padding: 80px 0;
    }

    .early-access {
        padding: 80px 0;
    }

    .dashboard-mockup {
        padding: 24px;
    }

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

    .metric-value {
        font-size: 24px;
    }

    .ai-tags {
        gap: 6px;
    }

    .ai-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

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

    .dashboard-mockup {
        padding: 20px;
    }

    .dashboard-tabs {
        flex-direction: column;
    }

    .targets-grid {
        gap: 16px;
    }

    .target-amount {
        font-size: 16px;
    }

    .ai-content {
        font-size: 13px;
    }
}
