﻿:root {
    --color-bg: #03050C;
    --color-bg-alt: #0B0F1E;
    --color-text: #F0F4F8;
    --color-text-muted: #94A3B8;
    --color-primary: #3B82F6;
    --color-accent: #8B5CF6;
    --color-glow: rgba(59, 130, 246, 0.5);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.bg-glow {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1), transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

p {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.muted {
    font-size: 1.1rem;
}

/* Layout */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.section {
    padding: 8rem 0;
}

.section__head {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__head h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(3, 5, 12, 0.7);
}

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

.brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand__icon {
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav__link:hover {
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn--sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn--primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

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

.btn--ghost:hover {
    background: var(--glass-highlight);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn--white:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn--full {
    width: 100%;
}

.btn--glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn--glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60A5FA;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #60A5FA;
    box-shadow: 0 0 10px #60A5FA;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    background: linear-gradient(to right, white, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-orb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.2));
}

.glass-panel {
    position: absolute;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.panel-1 {
    top: 20%;
    left: 0;
    width: 180px;
}

.panel-2 {
    bottom: 20%;
    right: 0;
    width: 160px;
}

.glass-panel .icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.glass-panel strong {
    display: block;
    font-size: 1rem;
}

.glass-panel small {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-highlight);
}

.card-lg {
    grid-column: span 2;
}

.card-wide {
    grid-column: span 3;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.bento-bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.bento-bg-glow.blue {
    background: var(--color-primary);
    top: -50px;
    right: -50px;
}

.bento-bg-glow.purple {
    background: var(--color-accent);
    bottom: -50px;
    left: -50px;
}

.flex-row {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-content img {
    max-width: 200px;
}

/* Pricing */
.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list span {
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-action {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.price-tag {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--color-text-muted);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

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

.guarantee {
    margin-top: 1rem;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* CTA */
.cta-box {
    background: var(--color-primary);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer__links {
    display: flex;
    gap: 2rem;
}

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

.copyright {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__actions,
    .hero__stats {
        justify-content: center;
    }

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

    .card-lg,
    .card-wide {
        grid-column: span 1;
    }

    .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none;
        /* Simple hide for now, or add hamburger */
    }

    .hero {
        padding-top: 8rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .glass-panel {
        display: none;
        /* Hide floating panels on mobile to reduce clutter */
    }
}