:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --primary: #00f3ff;
    --primary-glow: rgba(0, 243, 255, 0.4);
    --secondary: #bd00ff;
    --secondary-glow: rgba(189, 0, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
    --nav-height: 80px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

#laserCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.glow-spot {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.top-center {
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    background: rgba(5, 5, 7, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.logo .iconify {
    color: var(--primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.btn-primary {
    background: var(--text-main);
    color: #000;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255,255,255,0.03);
}

/* Beam Border Effect for Main Button */
.beam-border {
    position: relative;
    background: var(--text-main);
    color: #000;
    border: none;
    overflow: visible;
}

.beam-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    background-size: 200% 100%;
    z-index: -1;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.3s;
    animation: borderBeam 2s linear infinite;
}

.beam-border:hover::before {
    opacity: 1;
}

@keyframes borderBeam {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 99px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1) inset;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #94a3b8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 520px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.avatars {
    display: flex;
}

.avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -14px;
    transition: transform 0.3s;
}

.avatars img:hover {
    transform: translateY(-4px);
    z-index: 1;
}

.avatars img:first-child {
    margin-left: 0;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
}

/* Hero Visual & Animations */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: -120px;
    width: 350px;
    height: 100px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.target-circle {
    width: 240px;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.circle-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.circle-content .iconify {
    font-size: 3.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.stat .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Sonar Animation */
.sonar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0;
    animation: sonarWave 3s infinite cubic-bezier(0.1, 0.6, 0.2, 1);
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1s; }
.ring-3 { animation-delay: 2s; }

@keyframes sonarWave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
        border-width: 1px;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
        border-width: 0px;
    }
}

/* Intro Animations - UPDATED: Removed opacity: 0 from class, added to keyframes */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fade-in-blur {
    animation: fadeInBlur 1.2s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBlur {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

/* Marquee */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    background: rgba(255,255,255,0.005);
}

.marquee-content {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-item {
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
    transition: all 0.4s;
    display: flex;
    align-items: center;
}

.marquee-item:hover {
    color: var(--text-main);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Beam Animation */
.beam-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
}

.beam-particle {
    offset-path: path("M0,50 C100,50 200,50 350,50");
    animation: beamMove 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    fill: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

@keyframes beamMove {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Section Styles */
.section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 32px;
    width: 64px;
    height: 64px;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 32px;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.15);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--primary-glow);
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: normal;
}

.pricing-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.features-list li .iconify {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-main);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--bg-card-hover);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 100px 0 40px;
    background: #020203;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 300px;
    line-height: 1.6;
}

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

.link-group h4 {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

    .hero-content {
        margin: 0 auto;
    }

    .cta-group {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .connection-line {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-group h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.link-group a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
