:root {
    --bg-black: #000000;
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-card: #121216;
    /* Card Background */
    --bg-card-hover: #141414;

    --primary-red: #DC2626;
    /* Vibrant Red */
    --primary-red-dim: rgba(220, 38, 38, 0.15);
    /* Red Glow */
    --accent-gradient: linear-gradient(90deg, #ff1a1a 0%, #ff4d4d 100%);
    --accent-glow: rgba(255, 26, 26, 0.4);

    --text-main: #FAFAFA;
    /* White */
    --text-muted: #A1A1AA;
    /* Zinc 400 */
    --text-dark: #666;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --nav-height: 80px;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

    --card-border: 1px solid #1F1F23;
    /* Subtle Border */
    --glass-bg: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    line-height: var(--line-height);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Interactive Mouse Glow Background */
    background-attachment: fixed;
    background-image:
        radial-gradient(circle 600px at var(--mouse-x, -999px) var(--mouse-y, -999px),
            rgba(220, 38, 38, 0.15) 0%,
            rgba(251, 146, 60, 0.05) 40%,
            transparent 80%), linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

/* Lucide Icon Styling */
[data-lucide] {
    stroke-width: 1.5px;
    width: 20px;
    height: 20px;
}

.icon-box [data-lucide] {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.check-icon,
.tick-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-red);
}

.icon-red {
    color: var(--primary-red);
}

/* --- Utilities --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-red {
    color: var(--primary-red);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.opacity-70 {
    opacity: 0.7;
}

.text-gradient-red {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border: none;
}

.btn-gradient-red {
    background: var(--accent-gradient);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

.btn-gradient-red:hover {
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: white;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* --- 1. Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a,
.nav-item-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links a:hover,
.nav-item-btn:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

/* =========================================
   2. Hero Section (Centered & Orbital)
   ========================================= */
.hero-section {
    position: relative;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    text-align: center;
}

/* Orbital Background */
.orbital-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.orbit-1 {
    width: 600px;
    height: 600px;
    animation: spin 30s linear infinite;
    will-change: transform;
}

.orbit-2 {
    width: 900px;
    height: 900px;
    animation: spin 45s linear infinite reverse;
    will-change: transform;
}

.orbit-3 {
    width: 1300px;
    height: 1300px;
    border-color: rgba(255, 255, 255, 0.02);
}

.planet {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.planet-1 {
    top: 20%;
    left: 20%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #ff5e5e, #ff1a1a);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.6);
    animation: float 6s ease-in-out infinite;
}

.planet-2 {
    bottom: 30%;
    right: 25%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #444, #111);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Content */
.hero-badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-title-big {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-center {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.center-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.25);
}

.command-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.cmd-prompt {
    color: var(--primary-red);
    -webkit-user-select: none;
    user-select: none;
}

.copy-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.copy-icon:hover {
    opacity: 1;
    color: #fff;
}

/* =========================================
   2b. Logo Ticker
   ========================================= */
.logo-ticker-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, var(--bg-black), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.ticker-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #52525B;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 3rem;
    color: #52525B;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.ticker-item i {
    width: 20px;
    height: 20px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Code Window */
.code-window {
    background: #0f0f0f;
    border-radius: 16px;
    border: var(--card-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
}

.code-window:hover {
    transform: rotateY(0) rotateX(0);
}

.window-header {
    padding: 1rem;
    background: #1a1a1a;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-title {
    color: #666;
    font-size: 0.8rem;
    margin-left: auto;
    font-family: var(--font-mono);
}

pre {
    padding: 1.5rem;
    color: #ccc;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

/* =========================================
   3. Features Section (Bento Grid)
   ========================================= */
.bento-section {
    padding: 6rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.icon-box-glass {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.icon-blue {
    color: #3b82f6;
}

.icon-orange {
    color: #f97316;
}

.icon-purple {
    color: #a855f7;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-visual {
    margin-top: auto;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Layer Stack Visual */
.layer-stack {
    position: relative;
    top: 40px;
    left: 40px;
    width: 80%;
}

.layer {
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: -40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.bento-card:hover .layer:nth-child(2) {
    transform: translateY(-10px) scale(0.95);
}

.bento-card:hover .layer:nth-child(3) {
    transform: translateY(-20px) scale(0.9);
}

/* Checklist Visual */
.check-list-sm {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.check-list-sm li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.check-list-sm li i {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.mono-text {
    font-family: var(--font-mono);
    color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

/* =========================================
   4. How It Works (Vertical Timeline)
   ========================================= */
.timeline-section {
    position: relative;
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    /* Adjust based on marker size */
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--bg-black);
    /* Mask the line */
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.code-snippet-sm {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #a1a1aa;
    display: inline-block;
}

.code-snippet-sm .cmd {
    color: var(--primary-red);
    margin-right: 8px;
    -webkit-user-select: none;
    user-select: none;
}

/* --- 4. Stats Grid --- */
.features-highlight {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
    background: var(--bg-card);
    border: var(--card-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 26, 26, 0.1);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    font-weight: 500;
}

.checkmark-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.check-item {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- 5. Pricing Cards --- */
/* --- Pricing Section --- */
@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes border-rotate {
    0% {
        --border-angle: 0deg;
    }

    100% {
        --border-angle: 360deg;
    }
}

.pricing-section {
    padding: 8rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    align-items: stretch;
}

.pricing-card {
    /* Main container needs z-index context */
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Transparent background to let ::after show through */
    background: transparent;
    border: none;
    /* Let the neon border handle it */
}

/* Neon Fire Border (Running Loop) */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    /* Border thickness */
    z-index: -1;
    border-radius: 26px;
    /* Slightly larger than card */
    background: conic-gradient(from var(--border-angle),
            transparent 20%,
            /* Trail fade */
            #7f1d1d 80%,
            /* Dark Red */
            #ef4444 90%,
            /* Bright Red */
            #f59e0b 95%,
            /* Orange Core */
            #ef4444 100%
            /* Bright Red */
        );
    filter: blur(8px);
    /* Neon Glow */
    animation: border-rotate 4s linear infinite;
    opacity: 0.8;
}

/* Card Background (The "Hole" in the donut) */
.pricing-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    /* Inner margin to reveal border */
    z-index: -1;
    border-radius: 23px;
    /* Slightly smaller to fit inside */
    background: var(--bg-card);
}



/* Dramatic "Fire Flare" Border Effect REMOVED */
/* Removed ::before and ::after pseudo-elements to eliminate radio effect */

/* Hover States */
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Best Value Badge Pulse */
.badge-best-value {
    background: linear-gradient(135deg, var(--primary-red), #ff4d4d);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    animation: badge-pulse 2s infinite;
    z-index: 10;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-card .card-header {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    padding: 2.5rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    margin: 0 2.5rem 2.5rem;
    text-align: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-header {
    padding: 3rem 2.5rem 1rem;
}

.pricing-card.featured {
    border-color: var(--primary-red-dim);
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}


.pricing-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.tech-stack-icons {
    padding: 0 2.5rem;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-icon {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #ddd;
    font-weight: 600;
}

.feature-list {
    padding: 0 2.5rem;
    list-style: none;
    margin-bottom: auto;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ddd;
    font-size: 1rem;
}

.pricing-bottom {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-tag {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- 6. Masonry Testimonials --- */
.masonry-grid {
    display: flex;
    gap: 2rem;
}

.masonry-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.testimonial-card {
    padding: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #888;
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.verified {
    color: var(--primary-red);
    margin-left: 4px;
}

.user-handle {
    font-size: 0.85rem;
    color: #666;
}

.platform-icon {
    margin-left: auto;
    color: #444;
}

/* --- 8. Footer --- */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* --- Mobile Responsiveness --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkmark-bar {
        gap: 1rem;
        justify-content: flex-start;
    }

    .w-full-mobile {
        width: 100%;
    }

    /* Premium Mobile Fixes */
    .hero-title-big {
        font-size: 3rem;
    }

    .hero-subtitle-center {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-tall,
    .bento-medium {
        grid-column: span 1;
        grid-row: auto;
        min-height: 250px;
    }

    .bento-visual {
        display: none;
        /* Hide visual on mobile to save space if needed, or keep it */
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .big-cta-text {
        font-size: 2.5rem;
    }

    .orbit-1 {
        width: 300px;
        height: 300px;
    }

    .orbit-2 {
        width: 500px;
        height: 500px;
    }

    .orbit-3 {
        width: 700px;
        height: 700px;
    }
}

/* Spark Particle System */
.spark {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, #fff 0%, #ff1a1a 40%, #fb923c 60%, transparent 100%);
    box-shadow: 0 0 10px #ff1a1a, 0 0 5px #fb923c;
    animation: spark-fly 0.8s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes spark-fly {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        /* These will be overridden by JS inline styles for random direction */
        transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--tr));
        opacity: 0;
    }
}

/* =========================================
   9. Payment Modal
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: modal-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-pop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.qr-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: inline-block;
}

.qr-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.input-phone-group {
    margin: 1rem 0;
}

#user-phone {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

#user-phone:focus {
    border-color: var(--primary-red);
}

.payment-instruction p {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.note-sm {
    font-size: 0.8rem !important;
    color: #666 !important;
    margin-top: 1rem;
}

.text-mono {
    font-family: var(--font-mono);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

/* =========================================
   10. FAQ & Showcase
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showcase Section */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.showcase-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.showcase-visual {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    color: white;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Gradients for visuals */
.crm-gradient {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.hr-gradient {
    background: linear-gradient(135deg, #1e293b, #64748b);
}

.inv-gradient {
    background: linear-gradient(135deg, #7c2d12, #f59e0b);
}

.showcase-content {
    padding: 2rem;
}

.showcase-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.benefit-list i {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
}

/* Premium Effects */
.fire-border {
    position: relative;
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #ff1a1a, #fb923c, #ef4444, #ff1a1a);
    border-radius: 25px;
    animation: rotate-border 3s linear infinite;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --border-angle: 360deg;
    }
}

@media (max-width: 992px) {

    .faq-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #1e1e1e, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-content {
    padding: 2rem;
}

.showcase-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {

    .faq-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Final CTA --- */
.cta-final {
    padding-bottom: 8rem;
    /* Extra padding at bottom */
}

.big-cta-text {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .big-cta-text {
        font-size: 2.5rem;
    }
}

/* --- Payment Modal & Form Styles --- */
.hidden {
    display: none !important;
}

.payment-report-container {
    margin-top: 1.5rem;
}

.input-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    /* Glassy dark */
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.btn-mars {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    border: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.3);
}

.btn-mars:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(220, 38, 38, 0.4);
}

.btn-mars:active {
    transform: translateY(0);
}

#payment-step-2 .qr-container {
    padding: 1rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

#payment-step-2 .qr-img {
    width: 100%;
    display: block;
}