/*=============================================
=            VOXYNT ELITE DESIGN SYSTEM       =
=============================================*/
:root {
    --bg-dark: #050505;
    --bg-panel: rgba(15, 15, 20, 0.4);
    --primary: #8b5cf6;
    --accent: #14b8a6;
    --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #14b8a6 100%);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(139, 92, 246, 0.3);
    --glass-blur: blur(24px);
    --shadow-elite: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(139, 92, 246, 0.3);
}

.voxynt-brand-text {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: baseline;
}

.voxynt-ai-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #B5AFA7;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-left: 7px;
    vertical-align: baseline;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-font {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* Abstract Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}
.orb-1 {
    top: -100px; left: -150px;
    width: 600px; height: 600px;
    background: var(--primary);
    animation: float1 20s infinite ease-in-out alternate;
}
.orb-2 {
    top: 500px; right: -200px;
    width: 700px; height: 700px;
    background: var(--accent);
    animation: float2 25s infinite ease-in-out alternate;
}
.orb-3 {
    top: 2000px; left: 10%;
    width: 500px; height: 500px;
    background: var(--primary);
    opacity: 0.15;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.1); }
}
@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-150px, -50px) scale(1.2); }
}

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 20%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-elite);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

/* Buttons */
.btn-cta, .btn-solid-glow {
    background: var(--primary-gradient);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-cta:hover, .btn-solid-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.btn-login, .btn-outline {
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-muted);
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 32px; height: 32px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    color: #fff;
}

.logo span {
    display: inline-flex;
    align-items: baseline;
    color: var(--text-main);
}

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

.nav-links a:not(.btn-login, .btn-cta) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 5% 100px 5%;
    position: relative;
}

.hero-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 1000px;
    margin-bottom: 30px;
}

.hero .desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 20px;
}

.hero .sub-desc {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 50px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Sections */
.section {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    width: 60%;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 30px;
}

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

.feature-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card .icon-wrap {
    width: 60px; height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.highlight-card .icon-wrap {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent);
    border-color: rgba(20, 184, 166, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Tech Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

/* Pricing Carousel (Refitted for Dark mode) */
.pricing-container {
    padding: 120px 5%;
}

.pricing-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 10px;
    scrollbar-width: none;
    flex: 1;
}

.pricing-grid::-webkit-scrollbar { display: none; }

.price-card {
    min-width: 260px;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    position: relative;
    scroll-snap-align: center;
}

@media (max-width: 1400px) {
    .price-card { flex: 0 0 calc(33.333% - 16px); }
}

@media (max-width: 1024px) {
    .price-card { flex: 0 0 calc(50% - 12px); min-width: 320px; }
}

@media (max-width: 768px) {
    .price-card { flex: 0 0 100%; min-width: 280px; }
}


.price-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    background: rgba(139, 92, 246, 0.08);
}

.popular-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 5px 0 20px;
}

.plan-price span:last-child {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

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

.plan-features li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-plan.solid {
    background: var(--primary-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.btn-plan.solid:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.carousel-control {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s;
}
.carousel-control:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.carousel-control.prev { left: -25px; }
.carousel-control.next { right: -25px; }

/* Footer */
.footer {
    padding: 100px 5% 50px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 5, 0.8);
}
.footer-logo {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    margin-bottom: 20px;
}
.footer-logo img { width: 40px; height: 40px; filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6)); }
.footer-logo span {
    color: var(--text-main);
}
.tagline { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 10px; }
.profit-line { font-size: 1.5rem; font-family: 'Outfit'; font-weight: 600; margin-bottom: 40px; }
.copyright { color: var(--text-muted); font-size: 0.9rem; opacity: 0.6; }

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

/* Responsiveness */
@media (max-width: 1024px) {
    .features-grid.cards-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .landing-nav { flex-direction: column; padding: 15px; gap: 15px; }
    .nav-links { display: none; } /* Could add a mobile menu toggle, but keeping it simple */
    .nav-links.active { display: flex; flex-direction: column; }
    .features-grid.cards-3, .features-grid.cards-2, .tech-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 200px; }
    .hero h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2.2rem; }
    .divider { width: 80%; }
}
/* Contact Form Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 40px;
    background: rgba(15, 15, 20, 0.6);
}

.contact-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card input, 
.contact-card textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-card input:focus, 
.contact-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.contact-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

#contact-status {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-card .form-row {
        grid-template-columns: 1fr;
    }
    .contact-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
