@charset "UTF-8";

:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #06b6d4;
    --accent-hover: #0891b2;
    --bg-dark: #070b14;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --success: #10b981;
    --elevation-1: 0 4px 15px rgba(0, 0, 0, 0.2);
    --elevation-2: 0 8px 32px rgba(0, 0, 0, 0.3);
    --elevation-3: 0 12px 40px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    overflow-wrap: anywhere;
}

a { text-decoration: none; }
ul { list-style: none; }

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elevation-2);
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(7, 11, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary); /* Fallback */
}
.nav-links {
    display: flex;
    gap: 24px;
}
.nav-links a {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-light);
}
.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s ease, background .28s ease;
    cursor: pointer;
}
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    color: #fff;
}
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

/* Trust Pills Section C1 */
.trust-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 28px 0;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #e2e8f0;
    backdrop-filter: blur(8px);
}

.trust-microcopy {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sections */
section {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
}
.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 18px;
}

/* Hero */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    flex: 1;
    max-width: 600px;
}
.hero-text h1 {
    font-size: 48px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.brand-text {
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary); /* Fallback */
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.4));
}
.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Brand Animation & Light Projection */
.brand-animation-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: pulseOrb 6s infinite alternate ease-in-out;
}
.orb-1 {
    width: 200px; height: 200px;
    background: rgba(59, 130, 246, 0.4);
    top: 10%; left: 10%;
}
.orb-2 {
    width: 250px; height: 250px;
    background: rgba(6, 182, 212, 0.3);
    bottom: 5%; right: 5%;
    animation-delay: -3s;
}
.glass-panel {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2), inset 0 0 20px rgba(255,255,255,0.05);
}
.node-system {
    position: relative;
    width: 100%;
    height: 100%;
}
.center-node {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
    z-index: 3;
    animation: floatCenter 4s ease-in-out infinite;
}
.satellite-node {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    z-index: 2;
}
.sn-1 { top: 20%; left: 20%; animation: float 3s ease-in-out infinite alternate; }
.sn-2 { top: 75%; right: 15%; animation: float 5s ease-in-out infinite alternate-reverse; }
.sn-3 { bottom: 20%; left: 30%; animation: float 4.5s ease-in-out infinite alternate; }
.connection-lines {
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    opacity: 0.6;
}
.line {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    animation: dash 30s linear infinite;
}

@keyframes pulseOrb {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.8; }
}
@keyframes floatCenter {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@keyframes dash {
    to { stroke-dashoffset: 1000; }
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}
.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Streaming & AI */
.media-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid;
    transition: transform 0.3s ease;
}
.media-card:hover {
    transform: translateY(-5px);
}
.media-card-content {
    position: relative;
    z-index: 2;
}
.media-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
}

/* Pricing & Promo Banner C3 */
.promo-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}
.promo-banner .code-tag {
    background: rgba(6, 182, 212, 0.2);
    border: 1px dashed var(--accent);
    padding: 2px 10px;
    border-radius: 6px;
    color: #67e8f9;
    font-family: monospace;
    font-size: 17px;
    letter-spacing: 1px;
}

.pricing-card {
    padding: 36px 30px;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pricing-card.popular {
    border: 1px solid var(--primary);
    transform: scale(1.03);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}
.price {
    font-size: 44px;
    font-weight: bold;
    margin: 16px 0;
}
.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: normal;
}
.pricing-features {
    margin: 24px 0;
    flex-grow: 1;
}
.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}
.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}
.pricing-trust-line {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    padding: 24px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}
.faq-item:hover {
    background: rgba(255,255,255,0.04);
}
.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Reviews */
.review-card {
    padding: 30px;
    border-radius: var(--radius-sm);
}
.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.reviewer {
    display: flex;
    align-items: center;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

/* Mobile Sticky Bar C4 */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(7, 11, 20, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.sticky-bar-container {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.sticky-bar-container .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
    white-space: nowrap;
}

/* Exit Intent Modal C5 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.modal-card {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 480px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--elevation-3), 0 0 30px rgba(6, 182, 212, 0.3);
    animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}
.modal-close:hover {
    color: #fff;
}
.modal-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}
.modal-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}
.promo-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo-code-val {
    font-family: monospace;
    font-size: 22px;
    font-weight: bold;
    color: #67e8f9;
    letter-spacing: 2px;
}
.btn-copy {
    background: var(--accent);
    color: #070b14;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy.copied {
    background: var(--success);
    color: #fff;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0 20px;
    margin-top: 60px;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--primary);
}
.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Table overflow container for a11y & mobile */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 72px; /* Prevent Sticky Bar from obscuring footer */
    }
    .sticky-mobile-bar {
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(7, 11, 20, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        gap: 16px;
    }
    .nav-links.active {
        display: flex;
    }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; padding-bottom: 60px; }
    .hero-text h1 { font-size: 34px; }
    .hero-text p { font-size: 16px; padding: 0; }
    .section-title { font-size: 28px; }
    .pricing-card.popular { margin: 10px 0; }
    .btn { padding: 14px 28px; font-size: 16px; width: 100%; display: block; box-sizing: border-box; }
    .nav-container .btn { width: auto; padding: 8px 16px; font-size: 13px; display: inline-block; }
    .nav-actions { gap: 8px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .trust-pills { justify-content: center; }
    .trust-microcopy { justify-content: center; }
    .footer-links { flex-direction: column; gap: 15px; }
    .brand-animation-container { transform: scale(0.85); margin-top: -20px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
