:root {
    --bg-main: #05080e; /* Deeper black */
    --bg-card: rgba(20, 25, 40, 0.4); /* Glass base */
    --bg-card-hover: rgba(30, 40, 60, 0.6);
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    --accent-cyan: #00e5ff;
    --accent-green: #00b8ff; /* Changed from green to a deep cyan/blue to keep it monochrome cyan */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 229, 255, 0.3);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Add ambient background glows */
    background-image: 
        radial-gradient(circle at 15% 50px, rgba(0, 229, 255, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 184, 255, 0.1), transparent 25%);
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 14, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.neon-text {
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-color);
}

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

/* HERO SECTION */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    opacity: 0.6; /* Slight dimming so it's not too distracting */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 8, 15, 0.2) 0%, rgba(5, 8, 15, 1) 100%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.05);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.highlight {
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
}

.price-hint {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* REAL DASHBOARD SCREENSHOT */
.hero-dashboard-collage {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hc-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.15) 0%, transparent 100%);
    filter: blur(80px);
    z-index: -1;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hc-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.hc-bar.cyan {
    background: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.hc-bar.red {
    background: #ff3366;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
}

/* FEATURES SECTION */
.features {
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(30, 40, 60, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

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

/* PRICING */
.pricing {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.05), inset 0 0 20px rgba(0, 229, 255, 0.02);
}

.pricing-card h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    font-weight: 700;
}

.price {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #fff;
}

.period {
    font-size: 1.2rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 16px;
    margin-left: 8px;
}

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

.pricing-features li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-green);
    margin-right: 16px;
    font-weight: bold;
    background: rgba(0, 184, 255, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* FOOTER */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

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

.footer-text {
    color: var(--text-main);
    font-weight: 500;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links a {
    color: var(--text-muted, #8B949E);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-cyan, #00e5ff);
}

.footer-legal-links span {
    color: #475569;
}

.disclaimer {
    font-size: 0.8rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .feature-grid, .feature-grid-3col {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .mockup-sidebar {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    .m-row {
        flex-direction: column;
    }
    .pricing-card {
        padding: 40px 24px;
    }
}

/* --- ACTIVITY TICKER --- */
.activity-ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 15, 25, 0.4);
    padding: 12px 0;
    margin: 30px auto 50px auto;
    position: relative;
    display: flex;
    max-width: 1200px;
}
.activity-ticker-wrapper::before, .activity-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0; width: 80px; height: 100%;
    z-index: 2;
}
.activity-ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.activity-ticker-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-main), transparent); }

.activity-ticker-track {
    display: flex;
    gap: 30px;
    animation: scrollTicker 35s linear infinite;
    padding-left: 30px;
}
.activity-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
}
.ticker-item .highlight {
    color: var(--text-main);
    font-weight: 600;
    margin-right: 6px;
}
.ticker-item .tag-green { color: var(--accent-green); font-weight: 600; margin-right: 6px; }

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls precisely half its length because content is duplicated */
}

/* --- REVIEWS MARQUEE --- */
.reviews-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(to bottom, var(--bg-main), rgba(10, 15, 25, 0.6));
    overflow: hidden;
}
.reviews-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 5px;
}
.reviews-marquee-wrapper {
    overflow: hidden;
    white-space: normal;
    padding: 20px 0;
    position: relative;
    display: flex;
}
.reviews-marquee-wrapper::before, .reviews-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
}
.reviews-marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.reviews-marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-main), transparent); }

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    animation: scrollReviews 40s linear infinite;
    padding-left: 24px;
    width: max-content;
}
.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.review-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-main);
    opacity: 0.9;
    font-style: italic;
    flex-grow: 1;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}
.verified {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(0, 184, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(0, 184, 255, 0.2);
}
.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 2-COL FEATURE GRID --- */
.feature-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}
.feature-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}
.feature-box-premium {
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.8), rgba(10, 15, 25, 0.9));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0 0 40px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-box-premium:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}
.feature-shot {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: left top;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.feature-box-body {
    padding: 0 40px;
}
.feature-box-premium h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.feature-box-premium p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.feature-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.feature-tags span {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

@media (max-width: 768px) {
    .feature-grid-2col, .feature-grid-3col {
        grid-template-columns: 1fr;
    }
    .review-card {
        width: 280px;
    }
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 80px 0 40px;
    position: relative;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #05080e;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    margin-bottom: 20px;
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-main);
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    transition: border-color 0.2s ease;
}
.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent-cyan);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 14px 0 0;
}
.faq-item p a {
    color: var(--accent-cyan);
}

/* --- PERSONAS SECTION --- */
.personas-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.persona-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 184, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 184, 255, 0.05) 0%, var(--bg-card) 100%);
}
.persona-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.persona-card h3 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.persona-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .personas-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- SEGMENTED BILLING TOGGLE --- */
.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}
.segmented-control {
    position: relative;
    display: inline-flex;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}
.segment {
    background: none;
    border: none;
    color: #8b949e;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 32px;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: color 0.4s ease;
    font-family: inherit;
    outline: none;
    width: 150px;
}
.segment.active {
    color: #ffffff;
}
.segment-glider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: 150px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}
.discount-badge-pill {
    background: rgba(0, 184, 255, 0.15);
    color: var(--primary-cyan);
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 184, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.early-bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 118, 0.08);
    color: var(--accent-green);
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
