:root {
    --bg-color: #ffffff;
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    /* Darker border for light mode */
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;

}

/* Custom Cursor */


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    /* White glass */
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.dot {
    color: var(--accent);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Base Buttons */
.cta-button {
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    border: none;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-cta {
    background: var(--text-primary);
    /* Black button */
    color: white;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
    /* Adjusted gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.primary {
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

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

.secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Visual / 3D Area */
.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

#canvas-container {
    width: 100%;
    height: 100%;
}

/* Social Cloud / Post Cards */
.social-cloud {
    position: absolute;
    top: 50%;
    left: 0%;
    /* Centered horizontally in the visual area */
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.post-card {
    position: absolute;
    background: white;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    width: 240px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.85rem;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.av-1 {
    background: #fee2e2;
}

.av-2 {
    background: #e0e7ff;
}

.av-3 {
    background: #dcfce7;
}

.av-4 {
    background: #fef9c3;
}

.user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1.2;
}

.name {
    font-weight: 600;
    color: var(--text-primary);
}

.handle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.platform-icon {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Card Body */
.card-body p {
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.media-placeholder {
    width: 100%;
    height: 80px;
    background: #f1f5f9;
    border-radius: 8px;
}

.large {
    height: 140px;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Positioning & Animation */
.p1 {
    /* Tweet Main */
    top: 25%;
    right: 15%;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
}

.p2 {
    /* LinkedIn */
    bottom: 25%;
    right: 35%;
    z-index: 2;
    animation: float 9s ease-in-out infinite reverse;
}

.p3 {
    /* IG */
    top: 15%;
    right: 45%;
    transform: scale(0.9);
    z-index: 1;
    opacity: 0.8;
    animation: float 10s ease-in-out infinite 1s;
}

.p4 {
    /* Tweet Small */
    bottom: 40%;
    right: 5%;
    transform: scale(0.85);
    z-index: 1;
    opacity: 0.9;
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
        box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    }
}

.loader-line {
    width: 80px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: load 2s infinite ease-in-out;
}

@keyframes load {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Features Section */
.features {
    padding: 6rem 8%;
    background: #f8fafc;
    /* Slightly off-white for section distinction */
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 4rem;
        height: auto;
        min-height: auto;
    }

    .hero-content {
        margin: 0 auto;
        margin-bottom: 3rem;
    }

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

    .hero-actions {
        justify-content: center;
    }

    /* Mobile Visual Area */
    .hero-visual {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }

    #canvas-container {
        display: none;
        /* Hide 3D particles on mobile */
    }

    .social-cloud {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .post-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90%;
        max-width: 320px;
        animation: fadeUp 0.8s ease-out forwards !important;
        opacity: 0;
        /* JS stagger usually handles this but CSS override for safety */
        pointer-events: auto;
        /* Allow interaction if needed */
    }

    /* Stagger mobile entrance */
    .p1 {
        animation-delay: 0.1s !important;
    }

    .p2 {
        animation-delay: 0.2s !important;
    }

    .p3 {
        animation-delay: 0.3s !important;
    }

    .p4 {
        animation-delay: 0.4s !important;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links {
        display: none;
    }
}

/* --- New Clean Layout Styles --- */

.section-padding {
    padding: 8rem 8%;
}

.alt-bg {
    background: #f8fafc;
}

.text-center {
    text-align: center;
}

/* 1. The Hook */
.hook-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

/* 2. Alternating Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
}

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

/* Feature Typography */
.feature-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-col h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-col p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
}

/* Feature Visuals (Abstract) */
.visual-box {
    width: 100%;
    height: 400px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* v-create: Typing Mockup */
.ui-mockup {
    width: 80%;
    padding: 2rem;
    background: #fff;
}

.typing-cursor {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.typing-cursor::before {
    content: "✨";
}

.generated-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding-right: 4px;
    border-right: 2px solid var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--accent)
    }
}

/* v-schedule: Platform Nodes */
.platform-nodes {
    display: flex;
    gap: 1.5rem;
}

.node {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    position: relative;
}

.node::after {
    content: "";
    /* Connection line hint */
    position: absolute;
    right: -1.5rem;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: #e2e8f0;
}

.node:last-child::after {
    display: none;
}

.n-x {
    color: black;
}

.n-in {
    color: #0077b5;
}

.n-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    -webkit-background-clip: unset;
}

/* v-grow: Bar Chart */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    height: 200px;
}

.bar {
    width: 40px;
    background: var(--accent);
    border-radius: 8px 8px 0 0;
    opacity: 0.2;
    transition: height 1s;
}

.b1 {
    height: 40%;
}

.b2 {
    height: 60%;
}

.b3 {
    height: 30%;
}

.b4 {
    height: 85%;
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* 3. Social Proof (Grid) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-style: italic;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-user strong {
    display: block;
    color: var(--text-primary);
}

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

/* 4. Pricing (Clean) */
.pricing-features {
    list-style: none;
    /* Already defined but being explicit */
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-row {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .visual-box {
        height: 300px;
    }
}

/* --- Crystal Clear Pricing --- */

/* Toggle (Keep same styles) */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.toggle-switch {
    width: 50px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch:hover {
    background: #cbd5e1;
}

.toggle-ball {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discount-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* New Clean Grid */
/* New Clean Grid */
.pricing-grid.clean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    /* Core alignment rule */
}

.pricing-card.clean-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    /* Force fill grid cell */
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: flex-start;
    /* Start from top */
    position: relative;
    transform: none !important;
    /* Prevent persistent transform offsets */
}

.pricing-card.clean-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Pro Ring Card (Equal Height Highlight) */
.pricing-card.clean-card.pro-ring.popular {
    z-index: 2;
    background: white;
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
    position: relative;
    /* Removed transform: scale(1.1) to keep equal height */
}

/* Side Cards (Equal Height Receded) */
.pricing-card.clean-card:not(.popular) {
    background: #f9fafb;
    /* Subtle gray contrast */
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
    /* Removed transform: scale(0.95) to keep equal height */
}

.pricing-card.clean-card:not(.popular):hover {
    background: white;
    /* Lift effect on hover */
    /* transform: translateY(-5px); Optional gentle lift, keeping for interaction */
}

/* Most Popular Badge */
.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    /* Indigo */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    z-index: 20;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

/* Gradient Mask Border Effect (Improved for Spotlight) */
.gradient-border-mask {
    /* ... existing ... */
    height: 100%;
    /* Full border */
    width: 100%;
    /* Replaced by direct border on card causing layout shift? No, using border property on parent */
    display: none;
    /* Disable old mask, using border property */
}

/* ... (Header/Price styles unchanged) ... */

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    /* Removed flex-grow to rely purely on button margin-top logic */
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    margin-top: auto;
    /* The Magic Fix: Pins button to bottom */
}

.pricing-features li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    color: #166534;
    font-size: 0.7rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
    opacity: 0.7;
}

.pricing-features li.disabled::before {
    content: "✕";
    background: #f1f5f9;
    color: var(--text-secondary);
}


/* --- MEGA DARK FOOTER --- */
.mega-footer {
    background: #050505;
    color: white;
    padding: 10rem 8% 4rem;
    /* FIX: More top padding, no margin */
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* FIX: Remove white gap */
}

/* Unified CTA */
.mega-cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 2;
}

.giant-cta-text {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.cta-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-weight: 300;
}

.white-btn {
    background: white;
    color: black;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.white-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Links Section */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.footer-links-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.logo.white {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.link-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.link-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.link-col a:hover {
    color: white;
}

.footer-bottom-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

/* Watermark */
.watermark {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    /* FIX: Increased opacity */
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-toggle-container {
        margin-top: 1rem;
        margin-bottom: 3rem;
    }

    .giant-cta-text {
        font-size: 3rem;
    }

    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }

    .watermark {
        font-size: 40vw;
        bottom: 0;
    }

    .mega-footer {
        padding: 6rem 1.5rem 2rem;
    }
}

/* --- Social App Grid Visuals --- */
.social-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    box-shadow:
        0 20px 40px -5px rgba(0, 0, 0, 0.1),
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        inset 0 -2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Decoration dots */
.social-app-grid::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #f1f5f9;
    border-radius: 100px;
}

.app-icon {
    width: 100%;
    aspect-ratio: 1;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.app-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15);
    background: white;
    z-index: 10;
}

/* Brand Styles */
.a-x {
    color: white;
    background: black !important;
}

.a-in {
    color: white;
    background: #0077b5 !important;
}

.a-ig {
    color: white;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.a-tk {
    color: white;
    background: black !important;
}

.a-tk::after {
    content: '♪';
    font-family: sans-serif;
}

.a-yt {
    color: white;
    background: #FF0000 !important;
    font-size: 1.4rem;
}

.a-fb {
    color: white;
    background: #1877F2 !important;
}

.a-th {
    color: white;
    background: black !important;
    font-weight: 400;
}

.a-pi {
    color: white;
    background: #E60023 !important;
}

/* "More" Icon */
.a-pl {
    color: #64748b;
    background: #f1f5f9 !important;
    font-weight: 300;
}

.a-pl:hover {
    background: #e2e8f0 !important;
    color: #334155;
}

/* --- Content Reactor Animation --- */
.visual-box.v-create {
    background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reactor-scene {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 1. Raw Input Draft */
.input-draft {
    position: absolute;
    right: 55%;
    /* Start slightly left of center */
    top: 50%;
    transform: translate(0, -50%);
    /* Animate X to center */
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    opacity: 0;
}

.draft-icon {
    color: #64748b;
}

.draft-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.draft-lines span {
    height: 3px;
    background: #cbd5e1;
    border-radius: 2px;
}

.draft-lines span:nth-child(1) {
    width: 100%;
}

.draft-lines span:nth-child(2) {
    width: 80%;
}

.draft-lines span:nth-child(3) {
    width: 60%;
}

/* 2. Reactor Core */
.reactor-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-center {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.8);
    position: relative;
    z-index: 2;
}

.core-flash {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #fff 0%, #818cf8 50%, transparent 80%);
    opacity: 0;
    transform: scale(2);
    z-index: 3;
}

.core-ring {
    position: absolute;
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.1);
}

.r1 {
    width: 100%;
    height: 100%;
    animation: spin 4s linear infinite;
    border-top-color: #818cf8;
}

.r2 {
    width: 70%;
    height: 70%;
    animation: spin 3s linear infinite reverse;
    border-bottom-color: #c084fc;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* 3. Output Posts */
.output-post {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
    /* Start tiny in core */
    z-index: 4;
}

.op-header {
    display: flex;
    gap: 6px;
    align-items: center;
}

.op-avatar {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 50%;
}

.op-meta {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.op-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.op-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.op-heart {
    width: 10px;
    height: 10px;
    background: #f43f5e;
    opacity: 0.8;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") no-repeat center;
    background-color: #f43f5e;
}

/* Post Types & Badges */
.op-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    border: 2px solid #1e1b4b;
}

.tw-badge {
    background: #000;
}

.li-badge {
    background: #0a66c2;
    font-family: sans-serif;
}

.ig-badge {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.op-twitter {
    border-left: 2px solid #000;
}

.op-linkedin {
    border-left: 2px solid #0a66c2;
}

.op-instagram {
    border-left: 2px solid #e1306c;
}

.op-instagram .op-image {
    width: 100%;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 4px;
}

/* New Platforms Styles */
.fb-badge {
    background: #1877f2;
    font-family: sans-serif;
}

.tt-badge {
    background: #00f2ea;
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.yt-badge {
    background: #ff0000;
}

.pin-badge {
    background: #e60023;
    font-family: serif;
}

.op-facebook {
    border-left: 2px solid #1877f2;
}

.op-tiktok {
    border-left: 2px solid #000;
    background: rgba(0, 0, 0, 0.4);
}

/* Dark card for TikTok */
.op-tiktok .op-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 80, 0.1));
    border-radius: 4px;
}

.op-youtube {
    border-left: 2px solid #ff0000;
}

.op-youtube .op-image {
    width: 100%;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 4px;
}

.op-pinterest {
    border-left: 2px solid #e60023;
}

.op-pinterest .op-image {
    width: 100%;
    height: 45px;
    background: rgba(230, 0, 35, 0.1);
    border-radius: 4px;
}

@keyframes floatCrystal {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(-8px);
    }
}

/* Output Cards */
.refract-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 60px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.rc-icon {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.rc-twitter {
    background: #000;
}

.rc-linkedin {
    background: #0a66c2;
}

.rc-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.rc-line {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    width: 80%;
}

.rc-line.short {
    width: 50%;
}

/* --- Analytics Card Visuals --- */
.analytics-card {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    box-shadow:
        0 20px 40px -5px rgba(0, 0, 0, 0.1),
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        inset 0 -2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ac-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ac-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ac-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-weight: 700;
}

/* --- Analytics Animation (Dark Mode Match) --- */
.visual-box.v-grow {
    background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    /* FIX: Prevent 3D clipping */
}

.ac-label {
    color: white;
    letter-spacing: -1px;
}

/* --- Holographic Wave (Abstract Agency UI) --- */
.holographic-wave {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Floating Hero Card */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: transform 0.3s ease-out;
}

.hsc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.hsc-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(129, 140, 248, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
}

.hsc-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hsc-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.hsc-sub {
    font-size: 0.8rem;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Living Data Wave */
.wave-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding: 0 1rem 1rem;
    z-index: 1;
    pointer-events: none;
}

.wb {
    flex: 1;
    max-width: 12px;
    background: linear-gradient(to top, rgba(129, 140, 248, 0.6), rgba(129, 140, 248, 0));
    border-radius: 4px;
    opacity: 0.6;
    height: 10%;
    /* Animated via JS */
}

/* Dynamic Tooltips (Dark Glass) */
.chart-tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    /* Dark Slate */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 99px;
    /* Pill shape */
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    color: #f8fafc;
    /* White text */
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    z-index: 10;
}

.list-tip {
    left: 33%;
    top: 25%;
}

.rev-tip {
    left: 66%;
    top: 5%;
}
}

/* Peak 1 Position */
.rev-tip {
    left: 66%;
    top: 10%;
}

/* Peak 2 Position */

.tip-icon {
    font-size: 0.9rem;
}

/* Floating Pills */
.floating-pills {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fp {
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    animation: floatPill 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pill-2 {
    animation-delay: 1.5s;
    transform: translateX(10px);
}

@keyframes floatPill {

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

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

```