/* ==========================================================================
   YOUTUBE SHORTS AGENT MINIMALIST SAAS DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Accents */
    --pink: #FF007A;
    --purple: #7928CA;
    --orange: #FF4D4D;
    --yellow: #F9CB28;
    --cyan: #00F0FF;
    --green: #10B981;
    --red: #EF4444;
    --text-gradient-pink: linear-gradient(135deg, #FF007A 0%, #7928CA 100%);
    --text-gradient-orange: linear-gradient(135deg, #FF4D4D 0%, #F9CB28 100%);
    --navbar-height: 70px;
}

/* --- Charcoal Dark Theme (Default) --- */
body.theme-dark {
    --bg-base: #09090b; /* Zinc 950 */
    --bg-surface: #0e0e11; 
    --bg-deep: #050507;
    --bg-glass: rgba(14, 14, 17, 0.8);
    --border-subtle: #27272a; /* Zinc 800 */
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa; /* Zinc 400 */
    --text-muted: #71717a; /* Zinc 500 */
    --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --navbar-bg: rgba(9, 9, 11, 0.85);
    --btn-outline-hover: #18181b;
}

/* --- Clean Light Theme --- */
body.theme-light {
    --bg-base: #fafafa;
    --bg-surface: #ffffff;
    --bg-deep: #f4f4f5;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-subtle: #e4e4e7;
    --text-primary: #09090b;
    --text-secondary: #52525b;
    --text-muted: #71717a;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --navbar-bg: rgba(250, 250, 250, 0.85);
    --btn-outline-hover: #f4f4f5;
}

/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Single Subtle Ambient Orb behind Hero */
.glow-orb {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.08) 0%, rgba(0, 240, 255, 0.01) 100%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* Layout Utilities */
.container-width {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-heading {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subheading {
    font-size: 1.05rem;
}

/* Text Gradients */
.text-gradient {
    background: var(--text-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-pink {
    background: var(--text-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
    background: var(--text-gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted { color: var(--text-muted) !important; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-green { color: var(--green) !important; }
.text-pink { color: var(--pink) !important; }
.text-orange { color: var(--orange) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-yellow { color: var(--yellow) !important; }
.font-bold { font-weight: 700; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 2rem; }

.glass-effect {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    font-family: var(--font-heading);
}

.logo-icon {
    color: var(--pink);
    font-size: 1.5rem;
}

.animate-spin-slow {
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.15s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
}

.icon-toggle-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s;
}

.icon-toggle-btn:hover {
    background: var(--btn-outline-hover);
}

/* Button UI */
.btn-gradient {
    background: var(--text-gradient-pink);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(255, 0, 122, 0.15);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    text-align: center;
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 0, 122, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    transition: background-color 0.15s, transform 0.15s;
    cursor: pointer;
    text-align: center;
}

.btn-outline:hover {
    background: var(--btn-outline-hover);
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* ==========================================================================
   MOBILE NAV OVERLAY
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: right 0.25s ease-in-out;
}

.mobile-nav-overlay.show {
    right: 0;
}

.mobile-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mobile-item {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.landing-main {
    padding-top: var(--navbar-height);
}

.hero-section {
    padding: 5rem 0 3rem 0;
}

.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: var(--btn-outline-hover);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 2rem;
}

/* Waitlist Form directly in Hero (Clean and minimal layout) */
.waitlist-form-container {
    max-width: 500px;
    text-align: left;
}

.hero-waitlist-form {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 0.3rem;
    border-radius: 8px;
}

.hero-waitlist-form input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.6rem 0.8rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
}

.waitlist-subtext {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Bullet Highlights */
.hero-bullet-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    text-align: left;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bullet-item i {
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Miniature Replica Dashboard Layout */
.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dashboard-preview-window {
    width: 100%;
    max-width: 420px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.mini-db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.75rem;
}

.header-logo-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 800;
}

.channel-status-pill {
    background: var(--btn-outline-hover);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

/* 4 Metric Cards Grid optimized to 2x2 for narrow widths */
.mini-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mini-metric-card {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mini-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mini-card-top i {
    font-size: 0.8rem;
}

.mini-card-middle h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.mini-card-desc {
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* Double-column analytics grid stacked to 1 column for narrow widths */
.mini-analytics-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.mini-graph-card, .mini-map-card {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mini-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mini-graph-header h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mini-legend {
    display: flex;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-pink { background: var(--pink); }
.dot-grey { background: var(--text-muted); }

/* Bar Chart Viewport */
.mini-bar-chart-viewport {
    display: flex;
    gap: 0.5rem;
    height: 105px;
    align-items: stretch;
    margin-top: 0.5rem;
}

.chart-y-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.6rem;
    text-align: right;
    width: 18px;
    height: calc(100% - 15px); /* offset date label row */
}

.chart-bars-area {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.chart-grid-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 15px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.chart-grid-lines .grid-line {
    width: 100%;
    border-top: 1px dashed var(--border-subtle);
}

.bar-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 14%;
    height: 100%;
}

.bar-pair {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: calc(100% - 15px);
    width: 100%;
    justify-content: center;
}

.v-bar {
    width: 5px;
    border-radius: 1.5px 1.5px 0 0;
    transition: height 0.3s ease;
}

.v-bar-pink { background: var(--pink); }
.v-bar-grey { background: #3f3f46; } /* darker zinc */

.bar-date-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Map Card */
.mini-map-container {
    height: 105px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 8px 8px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.world-map-dotted-svg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    position: relative;
}

.map-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--pink);
    animation: blinkGlow 2s infinite alternate;
}

.map-dot.dot-ny { animation-delay: 0.2s; }
.map-dot.dot-london { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); animation-delay: 0.5s; }
.map-dot.dot-tokyo { animation-delay: 0.8s; }

@keyframes blinkGlow {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 480px) {
    .mini-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .mini-analytics-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TRUST BADGES BAR
   ========================================================================== */

.trust-badges-bar {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.005);
}

.badges-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.stat-card h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 5rem 0;
}

.features-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.clean-feature-card {
    padding: 2rem;
    border-radius: 12px;
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.clean-feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.clean-feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE SIMULATOR
   ========================================================================== */

.simulator-section {
    padding: 5rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.limited-tag {
    background: rgba(255, 0, 122, 0.06);
    color: var(--pink);
    border: 1px solid rgba(255, 0, 122, 0.12);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.studio-simulator-card {
    padding: 2.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
}

.simulator-controls-row {
    display: flex;
    gap: 1rem;
}

.sim-url-group {
    flex: 2;
    display: flex;
    align-items: center;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    padding: 0 1rem;
    border-radius: 8px;
}

.sim-url-group input {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
}

.sim-select-group {
    flex: 1;
}

.sim-select {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

/* Simulator Loader */
.pipeline-loader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.pipeline-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0.2;
    transition: opacity 0.25s ease;
}

.pipeline-item.active {
    opacity: 1;
}

.pipe-icon {
    width: 42px;
    height: 42px;
    background: var(--btn-outline-hover);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.1rem;
}

.pipeline-item.active .pipe-icon {
    background: var(--text-gradient-pink);
    color: white;
    border-color: transparent;
}

.pipe-meta h4 {
    font-size: 1.05rem;
}

/* Results Display */
.sim-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

.sim-results-actions {
    display: flex;
    gap: 0.75rem;
}

.sim-clips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.sim-clip-card {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.clip-thumb-box {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    background: #000;
}

.clip-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.clip-meta-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
}

.clip-caption-preview {
    position: absolute;
    bottom: 15px;
    left: 8px;
    right: 8px;
    text-align: center;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 4px;
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.clip-details-box {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.clip-details-box h4 {
    font-size: 0.9rem;
    line-height: 1.3;
}

.clip-details-box p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-upload-clip {
    margin-top: auto;
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-upload-clip:hover {
    background: var(--green);
    color: white;
}

.btn-upload-clip.uploaded {
    background: var(--btn-outline-hover);
    color: var(--text-secondary);
    border-color: var(--border-subtle);
    cursor: default;
}

/* Upload Progress bar styling */
.upload-progress-wrapper {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem;
    border-radius: 8px;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
}

/* ==========================================================================
   SAFETY & LEGALITY SECTION
   ========================================================================== */

.legality-section {
    padding: 6rem 0;
}

.legality-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.content-badge {
    background: rgba(16, 185, 129, 0.06);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.legality-text-content h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.desc-para {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-item {
    display: flex;
    gap: 0.75rem;
}

.item-icon {
    font-size: 1.1rem;
    margin-top: 2px;
}

.list-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.list-item p {
    font-size: 0.85rem;
}

/* Passive Income Projection Card (Minimalist) */
.wealth-card {
    padding: 2rem;
}

.card-icon-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-header-icon {
    font-size: 2.2rem;
}

.card-meta-tag {
    background: var(--btn-outline-hover);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

.revenue-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.revenue-metric h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.trend-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.trend-up {
    background: rgba(16, 185, 129, 0.06);
    color: var(--green);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 6px;
    margin-bottom: 1.25rem;
}

.bar-mock {
    flex: 1;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.01) 100%);
    border-top: 2px solid var(--green);
    border-radius: 2px 2px 0 0;
}

/* ==========================================================================
   HOW IT WORKS TIMELINE
   ========================================================================== */

.how-it-works-section {
    padding: 5rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.timeline-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--pink);
    opacity: 0.04;
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 1;
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.timeline-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
    padding: 6rem 0;
}

.fomo-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.pricing-toggle-group {
    display: inline-flex;
    align-items: center;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem;
    border-radius: 25px;
    margin-top: 1rem;
}

.toggle-btn {
    background: none;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.15s;
    cursor: pointer;
}

.toggle-btn.active {
    background: var(--bg-surface);
    color: var(--text-primary);
}

/* Clean Structured 3-Column Pricing Grid */
.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.price-card {
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border: 2px solid var(--pink);
}

.popular-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--pink);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.card-tier {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.price-comparison-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.price-original {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.discount-pill {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: max-content;
}

.pill-pink {
    background: rgba(255, 0, 122, 0.08);
    color: var(--pink);
    border: 1px solid rgba(255, 0, 122, 0.15);
}

.pill-orange {
    background: rgba(255, 77, 77, 0.08);
    color: var(--orange);
    border: 1px solid rgba(255, 77, 77, 0.15);
}

.original-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.4rem 0 1.5rem 0;
}

.plan-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Refund Callout Card */
.refund-guarantee-card {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1rem;
}

.faq-question i {
    transition: transform 0.25s;
    font-size: 0.9rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    display: none;
    line-height: 1.55;
    font-size: 0.9rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 4rem 0 2.5rem 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-desc {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    max-width: 320px;
}

.footer-newsletter h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.65rem 0.9rem;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    outline: none;
    flex: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .navbar {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid-wrapper {
        gap: 2rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }

    .sim-clips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-three {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .waitlist-form-container {
        max-width: 100%;
    }
    
    .hero-waitlist-form {
        flex-direction: column;
        background: none;
        border: none;
        padding: 0;
        gap: 0.5rem;
    }
    
    .hero-waitlist-form input {
        background: var(--bg-surface);
        border: 1px solid var(--border-subtle);
        border-radius: 6px;
        padding: 0.75rem 1rem;
    }
    
    .waitlist-subtext {
        justify-content: center;
    }
    
    .hero-visual-content {
        margin-top: 1rem;
    }
    
    .badges-wrapper {
        justify-content: center;
        gap: 1rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-clean-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .simulator-controls-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Mobile Swiping Horizontal Scroll for Simulator Clips */
    .sim-clips-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 1.25rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .sim-clips-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        width: max-content;
    }
    
    .sim-clip-card {
        width: 240px;
        white-space: normal;
        flex-shrink: 0;
    }
    
    .legality-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .legality-text-content h2 {
        font-size: 2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .refund-guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}

/* ==========================================================================
   PREORDER & WAITLIST PAYMENT MODAL STYLES
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

.modal-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.25rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    box-sizing: border-box;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--pink);
}

.modal-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-align: left;
}

.modal-body {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.input-field {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-color: var(--cyan);
}

.simulated-card-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
}

.plan-summary-badge {
    background: var(--btn-outline-hover);
    border: 1px solid var(--border-subtle);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.plan-summary-badge span {
    font-size: 0.9rem;
    font-weight: 700;
}

.plan-summary-badge .price-tag {
    color: var(--pink);
    font-size: 1.1rem;
    font-weight: 800;
}

