@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #08090C;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.06);
    --text-primary: #FFFFFF;
    --text-secondary: #8E9A8E;
    --text-muted: #64748B;
    --accent-cyan: #00F2FE;
    --accent-blue: #4FACFE;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --gradient-hero: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

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

/* Background Gradients & Glows */
.ambient-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Grid & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
header {
    padding: 24px 0;
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    background-color: rgba(8, 9, 12, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.35);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-mockup {
    position: relative;
}

.mockup-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.mockup-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7);
}

.mockup-wrapper img {
    width: 100%;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 100px auto 48px auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

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

.card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Interactive Verify Section */
.verify-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 48px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.verify-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.verify-dropzone {
    background: rgba(8, 9, 12, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 24px;
    text-align: center;
}

.verify-dropzone:hover, .verify-dropzone.dragover {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.02);
}

.verify-dropzone svg {
    margin-bottom: 16px;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.verify-dropzone:hover svg {
    transform: translateY(-4px);
}

/* Verify Output Card */
.verify-result {
    background: rgba(8, 9, 12, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.badge-restored {
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-muted);
    font-size: 13px;
}

.result-value {
    font-size: 13px;
    font-weight: 500;
}

/* Pricing Card */
.pricing-container {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

/* Hero eyebrow pill */
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
}

/* Pricing grid (3 tiers) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.price-card-featured {
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 242, 254, 0.08);
}

.price-tagline {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.price-period {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 500;
    margin-left: 4px;
}

.price-card .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 24px;
}

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

.price-badge {
    background: var(--gradient-glow);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.price-amount {
    margin-top: 16px;
    margin-bottom: 24px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 24px;
    margin-left: 8px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin: 24px 0 0 0;
    align-items: flex-start;
}

.price-card .btn {
    margin-top: 20px;
}

.price-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-card ul li svg {
    color: var(--accent-cyan);
}

/* Accordion FAQs */
.faqs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding: 16px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 12px;
}

.faq-question svg {
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

/* Legal Page Content */
.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-meta {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-body h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.legal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 15px;
}

.legal-body ul li {
    padding: 4px 0;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 64px 0 32px 0;
    margin-top: 100px;
    background: rgba(8, 9, 12, 0.9);
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
}

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

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .section-header {
        margin-top: 64px;
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .card {
        padding: 24px;
    }
    
    footer {
        padding: 48px 0 24px 0;
        margin-top: 64px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .logo span {
        font-size: 20px;
    }
}
