@charset "UTF-8";

@font-face {
    font-family: "MonumentExtended Regular";
    src: url(fonts/MonumentExtended-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "MonumentExtended UltraBold";
    src: url(fonts/MonumentExtended-UltraBold.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Swiss";
    src: url(fonts/Swiss-721-BT-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
    unicode-range: U+000-5FF;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

:root {
    --bg: #080936;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent: #4808dd;
    --accent-glow: rgba(72, 8, 221, 0.4);
    --radius: 10px;
    --radius-lg: 16px;
    --text-font: "Swiss";
    --display-font: "MonumentExtended UltraBold";
    --light-display-font: "MonumentExtended Regular";
}

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

body {
    font-family: var(--text-font), sans-serif;
    background: transparent;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    font-size: clamp(100%, 1rem + 2vw, 24px);
}

/* ── BACKGROUND ── */
.bg-wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.2;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-noise {
    position: absolute;
    inset: -200%;
    opacity: 0.4;
    mix-blend-mode: overlay;
    background: repeating-conic-gradient(rgba(255, 255, 255, 0.06) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
    animation: noiseShift 0.3s steps(2) infinite;
}

@keyframes noiseShift {
    to {
        transform: translate(6px, -3px);
    }
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.bg-blob-1 {
    width: 550px;
    height: 550px;
    background: rgba(8, 75, 221, 0.35);
    top: -15%;
    left: -8%;
    animation: blob1 22s ease-in-out infinite alternate;
}

.bg-blob-2 {
    width: 450px;
    height: 450px;
    background: rgba(40, 133, 255, 0.28);
    top: 25%;
    left: 65%;
    animation: blob2 18s ease-in-out infinite alternate;
}

.bg-blob-3 {
    width: 500px;
    height: 500px;
    background: rgba(8, 93, 221, 0.3);
    top: 55%;
    left: 10%;
    animation: blob3 25s ease-in-out infinite alternate;
}

.bg-blob-4 {
    width: 380px;
    height: 380px;
    background: rgba(20, 108, 240, 0.22);
    top: 70%;
    left: 50%;
    animation: blob4 20s ease-in-out infinite alternate;
}

@keyframes blob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, 40px) scale(1.15);
    }
    100% {
        transform: translate(-30px, 80px) scale(1.05);
    }
}

@keyframes blob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 30px) scale(1.1);
    }
    100% {
        transform: translate(-80px, -20px) scale(0.95);
    }
}

@keyframes blob3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -50px) scale(1.1);
    }
    100% {
        transform: translate(70px, -30px) scale(1.05);
    }
}

@keyframes blob4 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, -40px) scale(1.15);
    }
    100% {
        transform: translate(30px, -60px) scale(0.9);
    }
}

.bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, var(--bg) 100%);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ── NAV ── */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    box-shadow: 0 0 80px var(--accent-glow),
        inset 0 2px 1px rgba(255, 255, 255, 0.2);
}

.logo {
    font-family: var(--display-font), sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s,
        box-shadow 0.2s;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow),
        inset 0 2px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: #5a1ef0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── SECTIONS ── */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.2),
        0 0 80px var(--accent-glow);
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--display-font), sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ── HERO ── */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.hero .section-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(72, 8, 221, 0.3) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero .section-subtitle {
    margin: 0 auto 32px;
    max-width: 640px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
}

.stat-value {
    font-family: var(--display-font), sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
}

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

/* ── GLASS CARD ── */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
    padding: 32px;
    transition: box-shadow 0.3s;
}

.glass-card:hover {
    box-shadow: 0 0 60px var(--accent-glow),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 0px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    box-shadow: 0 0 80px var(--accent-glow),
        inset 0 2px 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(72, 8, 221, 0.4);
}

.pricing-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pricing-price {
    font-family: var(--light-display-font), sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.pricing-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

.badge-popular {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 0 40px var(--accent-glow);
}

/* ── FAQ ── */
.faq-list {
    max-width: 740px;
    margin: 48px auto 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    background: none;
    border: none;
    color: var(--text);
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: var(--light-display-font);
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease,
        padding 0.3s;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 14px;
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

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

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

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(40px);
}

.animate.visible {
    animation: fadeUp 0.8s ease forwards;
    padding-bottom: 65px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    section {
        padding: 64px 0;
    }
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
