/* ===== CSS Variables ===== */
:root {
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-card: rgba(18, 18, 26, 0.8);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);
    --color-text: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-primary: #6366f1;
    --color-primary-hover: #818cf8;
    --color-secondary: #8b5cf6;
    --color-accent: #a855f7;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-text: linear-gradient(90deg, #6366f1, #a855f7);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 50%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

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

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

.btn-white {
    background: white;
    color: var(--color-bg);
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

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

.nav-link {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

/* Dropdown Styles */
.nav-item {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 8px 16px;
    color: var(--color-text-secondary);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.hero-orb-1 {
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.25);
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: 10%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.2);
    animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.03);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(30px, 40px) scale(0.92);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: #a5b4fc;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-white {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-gradient {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-note {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ===== Hero Split & Slider ===== */
.hero-split .hero-content {
    max-width: 1000px;
}

.hero-category-selector {
    margin: 40px auto 30px;
    text-align: center;
}

.category-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.category-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.category-pill.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero-comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--color-border);
    background: #000;
    user-select: none;
    touch-action: pan-y;
}

@media (max-width: 768px) {
    .hero-comparison-slider {
        aspect-ratio: 4 / 5;
    }
}

.slider-image-before,
.slider-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-image-after {
    clip-path: inset(0 0 0 50%);
    /* Start at 50% */
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-handle-button svg {
    margin: 0 -4px;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Showcase ===== */
.showcase {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.showcase-item {
    margin-bottom: 80px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-label {
    text-align: center;
    margin-bottom: 32px;
}

.mode-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mode-campaign {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.mode-viral {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.mode-rival {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mode-ads {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mode-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.before-after-rival {
    gap: 16px;
}

.before-after-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 300px;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.before-after-rival .before-after-card {
    max-width: 240px;
}

.before-after-card.after {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.before-after-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.arrow-icon,
.plus-icon {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .before-after {
        flex-direction: column;
    }

    .before-after-rival {
        flex-direction: column;
    }

    .arrow-icon {
        transform: rotate(90deg);
    }

    .before-after-card {
        max-width: 100%;
    }

    .before-after-rival .before-after-card {
        max-width: 100%;
    }
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #a5b4fc;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
}

.credits {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.3), transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ===== Contact ===== */
.contact {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
}

/* ===== Terms ===== */
.terms {
    padding: 60px 0;
}

.terms-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    padding: 20px;
    margin: 0 auto;
    max-width: 500px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.terms-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.terms-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.terms-chevron {
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.terms-chevron.rotated {
    transform: rotate(180deg);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.terms-content.expanded {
    max-height: 2000px;
    padding-top: 40px;
}

.terms-section {
    margin-bottom: 32px;
}

.terms-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.terms-section p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.terms-section ul {
    list-style: disc;
    padding-left: 24px;
}

.terms-section li {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.terms-note {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand .logo-text {
    font-size: 16px;
}

.footer-copy {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-nav a {
    font-size: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav .btn {
    margin-top: 24px;
}

/* ===== Animations ===== */
@keyframes float {

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

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

.hero-orb-1 {
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    animation: float 10s ease-in-out infinite reverse;
}

/* ===== Blog Styles ===== */
.blog-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.blog-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.blog-meta-divider {
    width: 4px;
    height: 4px;
    background: var(--color-text-muted);
    border-radius: 50%;
}

/* Blog Article Content */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 16px;
    letter-spacing: -0.5px;
    color: var(--color-text);
}

.blog-article h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 12px;
    color: var(--color-text);
}

.blog-article p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.blog-article li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.blog-article ul li {
    list-style: disc;
}

.blog-article ol li {
    list-style: decimal;
}

.blog-article strong {
    color: var(--color-text);
    font-weight: 600;
}

.blog-article a {
    color: #a5b4fc;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.blog-article a:hover {
    color: #c7d2fe;
}

.blog-article blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 16px 24px;
    margin: 32px 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-article blockquote p {
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Blog Callout Box */
.blog-callout {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 32px 0;
}

.blog-callout h4 {
    font-size: 16px;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 8px;
}

.blog-callout p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Blog Comparison Table */
.blog-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.blog-table th {
    background: rgba(99, 102, 241, 0.1);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.blog-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Blog CTA Box */
.blog-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    margin: 48px 0;
}

.blog-cta h3 {
    margin-top: 0;
    color: white;
}

.blog-cta p {
    max-width: 500px;
    margin: 0 auto 24px;
}

/* Blog Index / Listing */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.blog-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.blog-read-more {
    color: #a5b4fc;
    font-weight: 600;
    font-size: 14px;
}

/* Related Posts */
.blog-related {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.blog-related h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-article h2 {
        font-size: 24px;
    }

    .blog-article h3 {
        font-size: 20px;
    }

    .blog-article p {
        font-size: 16px;
    }

    .blog-cta {
        padding: 32px 20px;
    }
}

/* ==========================================
   REDESIGNED HERO V2 — TWO COLUMN
   ========================================== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .hero-v2-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Show visual section but slimmed down */
    .hero-v2-visual {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }

    /* Hide the Before card and the arrow — only keep the After result */
    .hero-ba-before,
    .hero-ba-arrow {
        display: none;
    }

    /* Remove tilt on mobile, keep it clean and centered */
    .hero-ba-after {
        transform: none;
        max-width: 280px;
        width: 100%;
        box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
    }

    /* Shrink the cycle wrapper height proportionally */
    .hero-cycle-wrapper {
        height: 180px;
    }

    /* Hide scroll hint on mobile — the image itself draws the eye down */
    .scroll-hint {
        display: none;
    }
}


.hero-v2-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-v2-copy .hero-title {
    text-align: left;
    font-size: clamp(36px, 5vw, 56px);
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-v2-copy .hero-title {
        text-align: center;
    }

    .hero-v2-copy .hero-subtitle {
        text-align: center;
    }

    .hero-v2-copy .hero-badge {
        margin: 0 auto;
    }
}

.hero-v2-copy .hero-subtitle {
    text-align: left;
    margin: 0;
    max-width: 500px;
}

.hero-v2-copy .hero-ctas {
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .hero-v2-copy .hero-ctas {
        justify-content: center;
    }

    .hero-v2-copy .hero-subtitle {
        text-align: center;
        margin: 0 auto;
    }
}

.hero-proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proof-pill {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Before/After Side Cards */
.hero-v2-visual {
    position: relative;
}

.hero-ba-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-ba-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero-ba-before {
    transform: rotate(-1.5deg);
    filter: saturate(0.6) brightness(0.8);
    z-index: 1;
}

.hero-ba-after {
    transform: rotate(1.5deg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.hero-ba-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Cycle wrapper gets an explicit height so the card doesn't collapse */
.hero-cycle-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    /* matches .hero-ba-card img height */
    overflow: hidden;
}

/* Override absolute images inside the cycle wrapper */
.hero-cycle-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: cycleFade 16s infinite;
}

.ba-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

.ba-chip-before {
    background: rgba(0, 0, 0, 0.7);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-chip-after {
    background: var(--gradient-primary);
    color: white;
}

.hero-ba-arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 0;
}

.ba-arrow-line {
    color: var(--color-primary);
}

/* ==========================================
   GALLERY MARQUEE
   ========================================== */
.gallery-marquee-section {
    padding: 80px 0 60px;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.marquee-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.marquee-title {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.marquee-title em {
    font-style: italic;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-track-wrapper {
    overflow: hidden;
    margin-bottom: 16px;
    /* Edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 12px;
    padding: 0 6px;
    flex-shrink: 0;
}

.marquee-left {
    animation: marquee-scroll-left 35s linear infinite;
}

.marquee-right {
    animation: marquee-scroll-right 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-img {
    width: auto;
    height: 240px;
    max-width: none;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.marquee-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(99, 102, 241, 0.4);
    z-index: 5;
    position: relative;
}

/* ==========================================
   CAMPAIGN MODE DEEP-DIVE
   ========================================== */
.campaign-showcase {
    padding: 100px 0;
    background: var(--color-bg);
}

.campaign-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.campaign-showcase-header .mode-badge {
    margin-bottom: 20px;
}

.campaign-deep-dive {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.campaign-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.campaign-source-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 220px;
}

.campaign-source-card img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    max-width: 220px;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
    filter: saturate(0.7) brightness(0.85);
}

.source-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.campaign-source-caption {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
}

.campaign-source-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.big-arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.campaign-output-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    width: 100%;
}

.campaign-output-img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.campaign-output-img.camp-tall {
    height: 320px;
}

.campaign-output-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
}

/* ==========================================
   RIVAL MODE SHOWCASE
   ========================================== */
.rival-showcase {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.rival-showcase .section-header {
    margin-bottom: 60px;
}

.rival-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rival-example {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.rival-inputs {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.rival-input-card {
    position: relative;
}

.rival-input-card img {
    width: 180px;
    height: 220px;
    max-width: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: block;
}

.rival-chip {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rival-chip.rival-chip-result {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.rival-plus {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.rival-result-arrow {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 700;
}

.rival-result-card {
    position: relative;
}

.rival-result-card img {
    width: 240px;
    height: 300px;
    max-width: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.2);
    display: block;
}

/* ==========================================
   PEOPLE & OBJECTS SHOWCASE
   ========================================== */
.people-showcase {
    padding: 100px 0;
    background: var(--color-bg);
}

.people-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.people-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.people-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.people-origin-thumb {
    width: 64px;
    height: 64px;
    max-width: 64px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-border);
    filter: saturate(0.6) brightness(0.8);
    display: block;
}

.people-group-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.people-outputs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.people-outputs img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.people-outputs img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
}

/* Fix global img that had max-width: 50% — bad for new sections! */
.gallery-marquee-section img,
.campaign-showcase img,
.rival-showcase img,
.people-showcase img,
.hero-v2 img,
.yt-showcase img {
    max-width: 100%;
}

/* ==========================================
   YOUTUBE THUMBNAIL MODE
   ========================================== */
.yt-showcase {
    padding: 100px 0;
    background: var(--color-bg);
}

.yt-showcase .section-header {
    margin-bottom: 60px;
}

.yt-example {
    margin-bottom: 80px;
}

.yt-example:last-child {
    margin-bottom: 0;
}

.yt-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.yt-input-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.yt-input-source {
    position: relative;
}

.yt-input-source img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: block;
}

.yt-chip {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yt-keyword-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.yt-keyword-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.yt-keyword-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
}

.yt-arrow {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yt-result-card img {
    width: 380px;
    height: 214px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.2);
    display: block;
    transition: transform 0.3s ease;
}

.yt-result-card img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .yt-flow {
        flex-direction: column;
    }

    .yt-arrow svg {
        transform: rotate(90deg);
    }

    .yt-results {
        width: 100%;
        align-items: center;
    }

    .yt-result-card img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* ===== PREMIUM EFFECTS ===== */

/* 1. Film Grain Overlay — subtle noise texture across entire page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/noise.svg');
    background-repeat: repeat;
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
}

/* 2. Mouse-Reactive Hero Glow — controlled via JS custom properties */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(99, 102, 241, 0.12),
            transparent 40%);
    pointer-events: none;
    z-index: 0;
    transition: background 0.15s ease;
}

/* 3. Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children — each child animates 0.1s after the previous */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* 4. Auto-Cycling Hero animation timings */
.hero-cycle-wrapper img:nth-child(1) {
    animation-delay: 0s;
}


.hero-cycle-wrapper img:nth-child(2) {
    animation-delay: 4s;
}

.hero-cycle-wrapper img:nth-child(3) {
    animation-delay: 8s;
}

.hero-cycle-wrapper img:nth-child(4) {
    animation-delay: 12s;
}

@keyframes cycleFade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 5. Scroll Hint Chevron — bouncing arrow below hero */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.scroll-hint:hover {
    opacity: 1;
}

.scroll-hint span {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@keyframes scrollBounce {

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

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

@media (max-width: 768px) {
    .scroll-hint {
        bottom: 16px;
    }

    body::after {
        /* Slightly reduce grain on mobile for perf */
        opacity: 0.02;
    }
}