:root {
    --primary: #ffa116;
    --primary-alt: #ffb84d;
    --bg: #fdfdfb;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.05);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Aesthetic Monetization Styling */
.logic-buffer-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,161,22,0.3);
}

.skyscraper-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
    width: 140px;
    height: 500px;
    background: rgba(15, 15, 15, 0.9) !important;
    border: 1px solid rgba(255,161,22,0.2) !important;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}
@media (min-width: 1400px) {
    .skyscraper-ad { display: block; }
}
.left-sky { left: 20px; }
.right-sky { right: 20px; }

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    padding-top: 40px; /* Aligned for thin top ad */
}

/* Pointer-Pass for Ads */
.skyscraper-ad, .logic-buffer-top {
    pointer-events: none;
}
.skyscraper-ad iframe, .logic-buffer-top iframe {
    pointer-events: auto;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--text);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease-out;
}

/* Background Decorations */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

/* Header */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

nav {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--text);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.tagline {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.split-text {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 32px;
    overflow: hidden;
}

.split-text span {
    display: inline-block;
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(44, 187, 93, 0.05);
    border: 1px solid rgba(44, 187, 93, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 80px;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #2cbb5d;
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2cbb5d;
    border-radius: 50%;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.counter-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.counter-text strong {
    color: #2cbb5d;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.counter-text::after {
    content: ''; /* Placeholder for any future suffix */
}

.btn-primary {
    background: var(--text);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-reveal {
    opacity: 0;
    transform: scale(0.95);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border);
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(0,0,0,0.02);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.mockup-header {
    background: #fcfcfc;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.mockup-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
}

.mockup-address {
    background: #f0f0f0;
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #999;
    flex: 1;
    text-align: left;
}

.mockup-image-container {
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Deep Dive Grid */
.feature-deep-dive {
    max-width: 1200px;
    margin: 100px auto;
    padding: 120px 40px;
    text-align: center;
}

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

.feature-card {
    background: white;
    border-radius: 32px;
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 380px;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.02);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr; }
    .card-image { height: 300px; }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Decorators */
.decorator {
    position: absolute;
    z-index: -1;
}

.dot-1 { top: -20px; left: -20px; width: 60px; height: 60px; background: rgba(44, 187, 93, 0.4); border-radius: 12px; filter: blur(20px); }
.dot-2 { bottom: 40px; right: -30px; width: 80px; height: 80px; background: var(--primary); border-radius: 50%; padding: 20px; filter: blur(40px); opacity: 0.3; }

/* Setup Section */
.setup-section {
    padding: 120px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 48px;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.step-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.step-num {
    font-size: 40px;
    font-weight: 800;
    color: #eee;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

.step-preview {
    width: 300px;
    height: 180px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Mocks */
.toggle-mock {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.toggle {
    width: 40px;
    height: 20px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
}

.toggle.active { background: var(--primary); }
.toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.toggle.active::after { transform: translateX(20px); }

.btn-mock {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.settings-mock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.setting-row span { font-size: 10px; color: #999; font-weight: 600; }
.inp { background: #fff; border: 1px solid #ddd; padding: 8px; border-radius: 4px; font-size: 12px; color: #333; }

/* Download Footer */
.download-footer {
    padding: 120px 40px;
}

.download-card {
    background: #0f0f0f;
    color: white;
    border-radius: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.download-card h2 {
    font-size: 48px;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.download-card p {
    color: #999;
    margin-bottom: 40px;
}

.btn-primary.large {
    padding: 22px 56px;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 24px;
    background: var(--primary);
}

.download-card span {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    h1 { font-size: 48px; }
    .step { flex-direction: column; text-align: center; }
    .step-preview { width: 100%; }
}
/* Success Mosaic Grid - High Impression Density */
.mosaic-section {
    padding: 120px 40px;
    background: #0a0a0a;
    color: white;
}

.mosaic-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    border: 1px solid rgba(255,161,22,0.1);
    border-radius: 20px;
    padding: 10px;
    background: #000;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(50, 1fr);
    grid-template-rows: repeat(50, 1fr);
    gap: 1px;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.success-grid .unit {
    background: #111;
    border-radius: 1px;
    width: 100%;
    height: 100%;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
}

.success-grid .unit:hover {
    background: var(--primary) !important;
    z-index: 10;
}

.success-grid .unit iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.1;
    pointer-events: none;
}

.success-grid .unit.hit {
    background: var(--primary);
    opacity: 0.8;
}

@media (max-width: 600px) {
    .success-grid {
        grid-template-columns: repeat(25, 1fr);
        grid-template-rows: repeat(25, 1fr);
    }
}

/* Background Click Hijack Styling (Invisible Layer) */
.click-hijack-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: transparent;
    cursor: default;
}
