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

:root {
    --primary-color: #FF006E;
    --secondary-color: #8338EC;
    --dark-bg: #0A0A0B;
    --dark-surface: #1A1A1D;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --accent-yellow: #FFB700;
    --accent-cyan: #00F5FF;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(131, 56, 236, 0.3) 0%, transparent 50%);
    filter: blur(100px);
    z-index: -1;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat {
    background: var(--dark-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Section Styles */
.section-dark {
    background: var(--dark-surface);
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: -30px auto 50px;
    max-width: 600px;
}

/* Threat Grid */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.threat-card {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: transform 0.3s ease;
}

.threat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.threat-card:hover {
    transform: translateY(-5px);
}

.threat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.threat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.threat-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding: 40px;
    width: calc(50% - 40px);
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 40px);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::after {
    right: -50px;
}

.timeline-item:nth-child(even)::after {
    left: -50px;
}

.timeline-item.current::after {
    background: var(--accent-yellow);
    box-shadow: 0 0 20px var(--accent-yellow);
    animation: pulse 2s infinite;
}

.timeline-item.future::after {
    background: var(--accent-cyan);
    border: 3px solid var(--dark-bg);
    animation: futurePulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px var(--accent-yellow); }
    50% { box-shadow: 0 0 40px var(--accent-yellow), 0 0 60px var(--accent-yellow); }
    100% { box-shadow: 0 0 20px var(--accent-yellow); }
}

@keyframes futurePulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
    100% { transform: translateY(-50%) scale(1); }
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-item.future .timeline-date {
    color: var(--accent-cyan);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Payment Pressure Section */
.payment-pressure-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.payment-pressure-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.payment-card {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-card.targeted {
    border-color: rgba(255, 0, 110, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, transparent 100%);
}

.payment-card.under-pressure {
    border-color: rgba(255, 183, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.05) 0%, transparent 100%);
}

.payment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-logo {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: translateY(-5px);
}

.payment-logo img {
    max-width: 100%;
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.status-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: blink 2s infinite;
}

.status-indicator.warning {
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.payment-card p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.warning-icon {
    font-size: 4rem;
    flex-shrink: 0;
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.warning-content h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

.warning-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.3);
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

/* Action Section */
.action-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.action-card {
    background: var(--dark-bg);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-number {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    right: 20px;
}

.action-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.action-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Quote Section */
.quote-section {
    padding: 120px 0;
    background: var(--dark-bg);
    text-align: center;
}

.main-quote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.main-quote::before,
.main-quote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.3;
}

.main-quote::before {
    top: -20px;
    left: 0;
}

.main-quote::after {
    bottom: -40px;
    right: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
}

/* Text logo fallback */
.text-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::after {
        left: 10px !important;
        right: auto !important;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        font-size: 3rem;
    }

    .main-quote {
        font-size: 1.5rem;
    }

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    .btn-icon {
        margin-right: 8px;
        font-size: 1.1em;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
