/**
 * CN Hero Comparison — Product Reveal Section
 * v4.0.0 — Compact question, spine timeline, zordon-style goals, 3-col comparison
 */

/* ================================================================
   ROOT / SECTION WRAPPER
   ================================================================ */

.cn-hero-reveal {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* When the cinema demo is actively running, raise the stacking context
   so fixed-position popups and overlays appear above all other page sections.
   Must be >= 199991 to sit above the button-intro overlay (199990)
   so highlighted buttons inside this section remain clickable. */
.cn-hero-reveal.cn-demo-active {
    z-index: 199991;
}

/* Apply overflow:hidden to individual beats that need it — NOT the parent wrapper,
   so the cinema preview (inside hero-beat-problem/demo) can overflow freely */
.hero-beat-question,
.hero-beat-filmstrip,
.hero-beat-translate,
.hero-beat-goals,
.hero-beat-hero,
.hero-beat-landscape,
.hero-beat-s1,
.hero-beat-s2,
.hero-beat-s3,
.hero-beat-s5,
.hero-beat-s6,
.hero-beat-s7,
.hero-beat-s8,
.hero-beat-analytics,
.hero-beat-zordon,
.hero-beat-distro,
.hero-beat-pricing,
.hero-beat-cta {
    overflow: hidden;
}

/* The problem/demo beat hosts the cinema preview and MUST allow overflow */
.hero-beat-problem,
.hero-beat-demo {
    overflow: visible !important;
}

/* ================================================================
   BEAT — SHARED LAYOUT
   ================================================================ */

.hero-beat {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 48px;
}

.hero-beat-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-beat-inner--wide {
    max-width: 1400px;
}

/* Shared labels and headlines */
.hero-label-dim {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.hero-label-accent {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00ffff;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-align: center;
}

.hero-beat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a855f7;
    margin-bottom: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-beat.in-view .hero-beat-label {
    opacity: 1;
}

.hero-beat-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 24px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.hero-beat.in-view .hero-beat-headline {
    opacity: 1;
    transform: translateY(0);
}

.headline-gradient {
    background: linear-gradient(135deg, #00ffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   BEAT 1 — THE QUESTION (COMPACT)
   ================================================================ */

.hero-beat-question {
    min-height: 20vh;
    text-align: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(10, 15, 25, 1) 0%, #000 100%);
    padding-top: 60px;
    padding-bottom: 30px;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-beat-question.in-view .hero-headline {
    opacity: 1;
    transform: translateY(0);
}

.hero-headline-dim {
    display: block;
    color: rgba(255, 255, 255, 0.3);
}

/* ================================================================
   BEAT 2 — WIDE FILM STRIP
   ================================================================ */

.hero-beat-filmstrip {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 100%);
}

.hero-beat-filmstrip .hero-beat-headline {
    margin-bottom: 40px;
}

/* Film Strip Showcase */
.filmstrip-showcase {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-filmstrip.in-view .filmstrip-showcase {
    opacity: 1;
    transform: translateY(0);
}

/* Main moment viewer */
.filmstrip-main {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.filmstrip-main video,
.filmstrip-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.filmstrip-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 2;
    text-align: left;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.filmstrip-main-category {
    position: absolute;
    left: 30px;
    top: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00ffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.filmstrip-main-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

.filmstrip-main-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.filmstrip-main-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffff;
    line-height: 1;
}

.filmstrip-main-stat .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* Film strip track */
.filmstrip-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
    justify-content: center;
}

.filmstrip-track::-webkit-scrollbar {
    display: none;
}

.filmstrip-card {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filmstrip-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.filmstrip-card.active {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.filmstrip-card img,
.filmstrip-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filmstrip-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 6px 5px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.filmstrip-card-cat {
    font-size: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00ffff;
}

.filmstrip-card-title {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filmstrip-caption {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 12px 0 0;
}

/* Campaign switching transition */
.filmstrip-showcase.filmstrip-transitioning .filmstrip-track,
.filmstrip-showcase.filmstrip-transitioning .filmstrip-caption,
.filmstrip-showcase.filmstrip-transitioning .filmstrip-campaign-bar {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.filmstrip-showcase .filmstrip-track,
.filmstrip-showcase .filmstrip-caption,
.filmstrip-showcase .filmstrip-campaign-bar {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

/* Campaign bar — caption + dots row */
.filmstrip-campaign-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.filmstrip-campaign-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filmstrip-campaign-dot {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0;
}

.filmstrip-campaign-dot .filmstrip-dot-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    transition: color 0.25s ease;
}

.filmstrip-campaign-dot:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.filmstrip-campaign-dot:hover .filmstrip-dot-label {
    color: rgba(255, 255, 255, 0.6);
}

.filmstrip-campaign-dot.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
}

.filmstrip-campaign-dot.active .filmstrip-dot-label {
    color: #00ffff;
}

/* Placeholder for cards without media */
.filmstrip-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.filmstrip-card-placeholder span {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

/* ================================================================
   HERO THIN RAIL — Matches Demo section spine exactly
   Uses cn-thin-rail structure from cinema-preview
   ================================================================ */

/* Hero-specific wrapper — fade in on scroll */
.cn-hero-thin-rail {
    margin-top: 36px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-beat-filmstrip.in-view .cn-hero-thin-rail {
    opacity: 1;
    transform: translateY(0);
}

/* Thin Rail — horizontal dot-and-line timeline */
.cn-hero-thin-rail.cn-thin-rail {
    position: relative;
    padding: 8px 0 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.cn-hero-thin-rail.cn-thin-rail-naked {
    padding: 5px 0 12px;
    margin-top: 36px;
    margin-bottom: 5px;
}

.cn-hero-thin-rail::-webkit-scrollbar {
    height: 4px;
}

.cn-hero-thin-rail::-webkit-scrollbar-track {
    background: transparent;
}

.cn-hero-thin-rail::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* The continuous horizontal line */
.cn-hero-thin-rail .cn-thin-rail-line {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Nodes container */
.cn-hero-thin-rail .cn-thin-rail-nodes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    min-width: 800px;
    padding: 0 5px;
    gap: 10px;
}

/* Individual node */
.cn-hero-thin-rail .cn-thin-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 5px;
}

/* CURRENT NODE — Yellow border box (active/first dot) */
.cn-hero-thin-rail .cn-thin-node.current {
    padding: 8px;
    border: 2px solid #fbbf24 !important;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.1) !important;
}

/* Base dot */
.cn-hero-thin-rail .cn-thin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Empty nodes — subtle outline */
.cn-hero-thin-rail .cn-thin-node.empty .cn-thin-dot {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

/* Anchor nodes — coral/red with striped pattern */
.cn-hero-thin-rail .cn-thin-node.anchor .cn-thin-dot {
    width: 18px;
    height: 18px;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 120, 120, 0.7) 0px,
        rgba(255, 120, 120, 0.7) 2px,
        rgba(255, 150, 130, 0.35) 2px,
        rgba(255, 150, 130, 0.35) 4px
    );
    border: 2px solid rgba(255, 120, 120, 0.5);
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

/* CURRENT NODE DOT — Yellow, pulsing */
.cn-hero-thin-rail .cn-thin-node.current .cn-thin-dot {
    width: 16px;
    height: 16px;
    background: #fbbf24 !important;
    border: none;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    animation: heroCurrentDotPulse 1.5s ease-in-out infinite;
}

@keyframes heroCurrentDotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(251, 191, 36, 1), 0 0 40px rgba(251, 191, 36, 0.5);
    }
}

/* Hover states */
.cn-hero-thin-rail .cn-thin-node:hover .cn-thin-dot {
    transform: scale(1.3);
}

/* Date labels below dots */
.cn-hero-thin-rail .cn-thin-date {
    margin-top: 8px;
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    text-align: center;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.cn-hero-thin-rail .cn-thin-node.anchor .cn-thin-date {
    color: rgba(255, 120, 120, 0.8);
}

.cn-hero-thin-rail .cn-thin-node.current .cn-thin-date {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .cn-hero-thin-rail .cn-thin-rail-nodes {
        min-width: 600px;
        gap: 6px;
    }
    .cn-hero-thin-rail .cn-thin-date {
        font-size: 0.5rem;
    }
    .cn-hero-thin-rail .cn-thin-node.anchor .cn-thin-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .cn-hero-thin-rail .cn-thin-rail-nodes {
        min-width: 500px;
        gap: 4px;
    }
    .cn-hero-thin-rail .cn-thin-date {
        font-size: 0.45rem;
    }
}

/* Tooltip on hover */
.cn-hero-thin-rail .cn-thin-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.cn-hero-thin-rail .cn-thin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.cn-hero-thin-rail .cn-thin-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ================================================================
   BEAT 2.5 — ANALYTICS AREN'T THE PROBLEM
   ================================================================ */

.hero-beat-problem {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #060810 0%, #0a0f19 30%, #060810 100%);
    text-align: center;
}

.problem-header {
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-beat-problem.in-view .problem-header {
    opacity: 1;
    transform: translateY(0);
}

.problem-subhead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.problem-subhead em {
    color: #a855f7;
    font-style: italic;
}

/* Platform Logos Grid */
.problem-logos-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-problem.in-view .problem-logos-section {
    opacity: 1;
    transform: translateY(0);
}

.problem-logos-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.problem-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.problem-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.problem-logo-item:hover {
    opacity: 0.9;
}

.problem-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.problem-logo-item:hover .problem-logo-icon {
    color: rgba(255, 255, 255, 0.7);
}

.problem-logo-icon svg {
    width: 32px;
    height: 32px;
}

.problem-logo-name {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Problem Explanation Cards */
.problem-explanation {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-beat-problem.in-view .problem-explanation {
    opacity: 1;
    transform: translateY(0);
}

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

.problem-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.problem-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.problem-card--what-you-need {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(168, 85, 247, 0.03));
    border-color: rgba(0, 255, 255, 0.12);
}

.problem-card--what-you-need:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.08);
}

/* Middle card — What you're being sold */
.problem-card--what-youre-sold {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.03), rgba(255, 100, 100, 0.03));
    border-color: rgba(255, 193, 7, 0.12);
}

.problem-card--what-youre-sold:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 8px 40px rgba(255, 193, 7, 0.06);
}

/* Dim body text inside cards */
.problem-card-dim {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    margin: 12px 0 0 0;
}

/* Bullet list inside "what you need" card */
.problem-card-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px 0;
}

.problem-card-list li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.problem-card-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.problem-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.problem-card-icon--glow {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.problem-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.problem-card-body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0 0 16px 0;
}

.problem-card-verdict {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.problem-card-verdict--glow {
    background: rgba(0, 255, 255, 0.05);
    border-left-color: #00ffff;
}

.problem-verdict-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.problem-verdict-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.problem-card-verdict--glow .problem-verdict-text {
    color: #00ffff;
    font-style: normal;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Distribution Gap — Closing Statement */
.problem-distribution-gap {
    margin-bottom: 50px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero-beat-problem.in-view .problem-distribution-gap {
    opacity: 1;
    transform: translateY(0);
}

.problem-gap-headline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.problem-gap-headline--second {
    margin-bottom: 30px;
}

.problem-gap-headline em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.problem-gap-statement {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.problem-gap-until {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #00ffff;
    margin: 0;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.4), 0 0 50px rgba(0, 255, 255, 0.15);
    letter-spacing: 0.02em;
}

/* Reality Stats */
.problem-reality-section {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-beat-problem.in-view .problem-reality-section {
    opacity: 1;
    transform: translateY(0);
}

.problem-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.problem-reality-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.reality-number {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #00ffff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.reality-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.3;
}

.problem-reality-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.problem-reality-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: rgba(0, 255, 255, 0.2);
    font-style: normal;
}

/* ================================================================
   RESPONSIVE — Problem Section
   ================================================================ */

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-logos-grid {
        gap: 20px;
    }
    
    .problem-logo-item {
        flex: 0 0 calc(33.33% - 14px);
    }
    
    .problem-reality-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .problem-gap-flow {
        gap: 8px;
    }
    
    .problem-gap-step {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .problem-gap-arrow {
        font-size: 0.9rem;
    }
    
    .problem-distribution-gap {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .problem-logos-grid {
        gap: 14px;
    }
    
    .problem-logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .problem-gap-flow {
        flex-direction: column;
    }
    
    .problem-gap-arrow {
        transform: rotate(90deg);
    }
    
    .spine-section-header {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
}

/* ================================================================
   BEAT 3 — TRANSLATION ENGINE + 3-COLUMN COMPARISON
   ================================================================ */

.hero-beat-translate {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    background: linear-gradient(180deg, #060810 0%, #000 50%, #050810 100%);
}

/* Centered Translation Engine */
.translate-engine-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-translate.in-view .translate-engine-center {
    opacity: 1;
    transform: translateY(0);
}

.translate-engine-center .translate-subtext {
    text-align: center;
    margin: 0 auto 28px;
}

.translate-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 520px;
}

/* Real event card with video */
.translation-from--video {
    padding: 0;
    background: none;
    border: none;
    border-radius: 14px;
    overflow: hidden;
}

.translation-event-card {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.translation-event-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
}

.translation-event-media {
    position: relative;
    width: 240px;
    min-height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.translation-event-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.translation-event-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.translation-event-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00ffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.translation-event-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 20px 24px;
    text-align: left;
    flex: 1;
}

.translation-event-category {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
}

.translation-event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.translation-event-cost {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.translation-event-stats {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.te-stat {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.te-stat strong {
    color: #00ffff;
    font-weight: 700;
}

/* Translation demo layout */
.hero-translation-demo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.translation-from {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 0 0;
    text-align: center;
}

.translation-arrow-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
}

.translation-arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.5), rgba(0, 255, 255, 0.5));
    position: relative;
}

.translation-arrow-line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 6px solid rgba(0, 255, 255, 0.5);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.translation-arrow-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.translation-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.translation-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.translation-option:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
}

.translation-option.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-color: rgba(0, 255, 255, 0.35);
}

.translation-option-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.translation-option.active .translation-option-title {
    color: #00ffff;
}

.translation-option-cost {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(168, 85, 247, 0.7);
}

.translation-option.active .translation-option-cost {
    color: #a855f7;
}

/* ================================================================
   3-COLUMN COMPARISON — WHAT YOU GET TODAY
   ================================================================ */

.comparison-columns-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero-beat-translate.in-view .comparison-columns-section {
    opacity: 1;
    transform: translateY(0);
}

/* Section headline — matches other hero beat headlines */
.comparison-section-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #e8e8e8;
    text-align: center;
    margin: 0 0 50px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-col {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comparison-col:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Column 3 — CN highlight */
.comparison-col--cn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.04), rgba(168, 85, 247, 0.04));
    border-color: rgba(0, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.05);
}

.comparison-col--cn:hover {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 12px 50px rgba(0, 255, 255, 0.1);
}

.comparison-col-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-col-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 8px;
}

.comparison-col-label--glow {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.comparison-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.comparison-col-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-col-price span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.comparison-col-price--highlight {
    font-size: 1rem;
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Sub-note under title (e.g. company names) */
.comparison-col-subnote {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    margin-bottom: 10px;
    font-style: italic;
}

/* Campaign.Network price */
.comparison-col-price--cn {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00ffff;
    margin-top: 6px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.comparison-col-price--cn span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(0, 255, 255, 0.5);
}

/* Expanded feature list (second tier) */
.comparison-col-features--expanded {
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-col-features--expanded li {
    color: rgba(255, 255, 255, 0.35);
}

.comparison-col-features--expanded li::before {
    color: rgba(255, 255, 255, 0.15);
}

.comparison-col-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.comparison-col-features li {
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.comparison-col-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
}

.comparison-col-features--glow li {
    color: rgba(255, 255, 255, 0.65);
}

.comparison-col-features--glow li::before {
    color: #00ffff;
}

.comparison-col-flow {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.35);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
    line-height: 1.6;
}

.comparison-col-flow--hero {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    font-size: 0.9rem;
    border-color: rgba(0, 255, 255, 0.1);
}

.comparison-col-verdict {
    flex: 1;
}

.comparison-col-verdict p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.comparison-col-verdict strong {
    color: rgba(255, 255, 255, 0.55);
}

.comparison-col-verdict--hero p {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-col-verdict--hero strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.comparison-footer {
    text-align: center;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-footer p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 8px;
}

.comparison-footer strong {
    color: #00ffff;
    font-size: 1.1rem;
    display: block;
    margin-top: 8px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    line-height: 1.5;
}


/* ================================================================
   BEAT 2.4 — WHAT DISTRIBUTION ACTUALLY IS
   Three-step chevron: Artist → Distributor → DSPs
   ================================================================ */

.distro-process-section {
    text-align: center;
    padding: 80px 24px 60px;
    background: #000000;
    position: relative;
    overflow: hidden;
    /* Break out of parent max-width container */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.distro-process-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 48px;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-align: center;
}

.headline-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Chevron container */
.distro-process-chevrons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 48px;
    position: relative;
}

/* Individual chevron */
.distro-chevron {
    flex: 1;
    position: relative;
}

.distro-chevron-shape {
    position: relative;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 50%, calc(100% - 40px) 100%, 0% 100%, 40px 50%);
    transition: transform 0.3s ease;
}

/* First chevron: no left indent */
.distro-chevron:first-child .distro-chevron-shape {
    clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 50%, calc(100% - 40px) 100%, 0% 100%);
    border-radius: 8px 0 0 8px;
}

/* Last chevron */
.distro-chevron:last-child .distro-chevron-shape {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 40px 50%);
    border-radius: 0 8px 8px 0;
}

.distro-chevron-label {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    text-transform: none;
    position: relative;
    z-index: 1;
}

/* Chevron colours */
.distro-chevron--cyan .distro-chevron-shape {
    background: #66f0ff;
}

.distro-chevron--yellow .distro-chevron-shape {
    background: #ffdd44;
}

.distro-chevron--green .distro-chevron-shape {
    background: #39ff14;
}

/* Distributor logos row under chevron */
.distro-chevron-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.distro-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px;
    filter: grayscale(0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.distro-logo:hover {
    filter: grayscale(0);
    transform: scale(1.12);
}

/* Fallback if logos fail to load */
.distro-chevron-logos.logos-fallback {
    display: none;
}

.distro-chevron-subnames {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    text-align: center;
}

/* Descriptions under chevrons */
.distro-process-descriptions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.distro-process-desc p {
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Punchline */
.distro-process-punchline {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.distro-process-punchline p {
    font-size: clamp(0.92rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: center;
}

.distro-process-kicker {
    font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
    color: #f5f5f7 !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 24px !important;
}

/* ================================================================
   CINEMA PREVIEW EMBEDDED INSIDE HERO — Fix z-index, overflow & pointer-events
   When [cinema_preview] is rendered inside .hero-beat-demo (Section 4),
   the parent stacking context can block clicks on popups and buttons.
   ================================================================ */

/* Ensure the cinema preview + campaign selector sit above hero overlays */
.hero-beat-demo .cn-campaign-selector,
.hero-beat-demo .cn-cinema-preview-section,
.hero-beat-problem .cn-campaign-selector,
.hero-beat-problem .cn-cinema-preview-section {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    text-align: left; /* Reset from hero-beat text-align: center */
}

/* Ensure all interactive elements inside cinema preview are clickable */
.hero-beat-demo .cn-campaign-card,
.hero-beat-demo .bp-btn,
.hero-beat-demo .film-card,
.hero-beat-demo .film-nav-btn,
.hero-beat-demo .scene-nav,
.hero-beat-demo .social-trail-cta-btn,
.hero-beat-demo .play-story-btn,
.hero-beat-demo .cn-social-trail-close,
.hero-beat-demo .film-card-social-trail-btn,
.hero-beat-demo .action-ctas button,
.hero-beat-demo .action-ctas a,
.hero-beat-problem .cn-campaign-card,
.hero-beat-problem .bp-btn,
.hero-beat-problem .film-card,
.hero-beat-problem .film-nav-btn,
.hero-beat-problem .scene-nav,
.hero-beat-problem .social-trail-cta-btn,
.hero-beat-problem .play-story-btn,
.hero-beat-problem .cn-social-trail-close,
.hero-beat-problem .film-card-social-trail-btn,
.hero-beat-problem .action-ctas button,
.hero-beat-problem .action-ctas a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Scene navigation arrows must be above everything */
.hero-beat-demo .scene-nav,
.hero-beat-problem .scene-nav {
    z-index: 100 !important;
}

/* The social trail overlay needs to escape the hero section bounds */
.hero-beat-demo .cn-social-trail-overlay,
.hero-beat-problem .cn-social-trail-overlay {
    z-index: 200;
}

/* Let the cinema section span full width, breaking out of the max-width inner */
.hero-beat-demo .cn-campaign-selector,
.hero-beat-problem .cn-campaign-selector {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Selector header should be centered */
}

/* Break the cinema preview out of the constrained hero-beat-inner wrapper */
.hero-beat-demo .cn-cinema-preview-section,
.hero-beat-problem .cn-cinema-preview-section {
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    overflow: visible; /* Allow scene-nav arrows to overflow */
}

/* Ensure scene-card-wrapper has room for nav arrows */
.hero-beat-demo .scene-card-wrapper,
.hero-beat-problem .scene-card-wrapper {
    overflow: visible;
    padding: 0 80px; /* Room for absolutely positioned nav arrows */
}

.hero-beat-demo .scene-nav-prev,
.hero-beat-problem .scene-nav-prev {
    left: 0;
}

.hero-beat-demo .scene-nav-next,
.hero-beat-problem .scene-nav-next {
    right: 0;
}

@media (max-width: 768px) {
    .hero-beat-demo .cn-cinema-preview-section,
    .hero-beat-problem .cn-cinema-preview-section {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .hero-beat-demo .scene-card-wrapper,
    .hero-beat-problem .scene-card-wrapper {
        padding: 0 60px;
    }
}

/* ================================================================
   NEW TEMPLATE v3.0 — 8-SECTION ARCHITECTURAL LAYOUT
   Hero → Problem → Shift → What We Do → Demo → Build → Jobs → Pricing → Proof → CTA
   ================================================================ */

/* ----------------------------------------------------------------
   HERO OPENING — hero-beat-hero
   ---------------------------------------------------------------- */
.hero-beat-hero {
    min-height: 70vh;
    text-align: center;
    background: radial-gradient(ellipse at 50% 40%, rgba(10, 15, 30, 1) 0%, #000 80%);
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-beat-hero .hero-beat-inner {
    max-width: 860px;
}

.hero-beat-hero .hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin: 0 0 28px 0;
    color: #f5f5f7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-beat-hero.in-view .hero-headline {
    opacity: 1;
    transform: translateY(0);
}

.hero-subline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0 0 36px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.hero-beat-hero.in-view .hero-subline {
    opacity: 1;
    transform: translateY(0);
}

/* Step badges — three inline chips */
.hero-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 44px 0;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero-beat-hero.in-view .hero-steps {
    opacity: 1;
    transform: translateY(0);
}

.hero-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hero-step:hover {
    background: rgba(0, 255, 255, 0.06);
    border-color: rgba(0, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

.hero-step-icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* CTA buttons row */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.hero-beat-hero.in-view .hero-cta-row,
.hero-beat-s6.in-view .hero-cta-row,
.hero-beat-zordon.in-view .hero-cta-row,
.hero-beat-cta.in-view .hero-cta-row {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #00ffff, #a855f7);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.25);
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
    color: #000;
}

.hero-btn--lg {
    padding: 18px 48px;
    font-size: 1.05rem;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.3);
}

.hero-btn--lg:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.45), 0 0 60px rgba(168, 85, 247, 0.15);
}

.hero-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   PROSE SECTIONS — Shared text styles for S1-S8
   ---------------------------------------------------------------- */
.hero-prose {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat.in-view .hero-prose {
    opacity: 1;
    transform: translateY(0);
}

.hero-prose p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.hero-prose p:last-child {
    margin-bottom: 0;
}

.hero-prose-big {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem) !important;
    font-weight: 600;
    color: #f5f5f7 !important;
    margin-bottom: 8px !important;
}

.hero-prose-dim {
    color: rgba(255, 255, 255, 0.25) !important;
    font-style: italic;
}

.hero-prose-accent {
    color: #00ffff !important;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* ----------------------------------------------------------------
   SECTION 1 — THE PROBLEM (hero-beat-s1)
   ---------------------------------------------------------------- */
.hero-beat-s1 {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.hero-beat-s1 .hero-beat-inner {
    max-width: 960px;
}

.hero-beat-s1 .hero-beat-inner--wide {
    max-width: 1100px;
}

.hero-beat-s1.in-view .landscape-versus {
    opacity: 1;
    transform: translateY(0);
}

/* "Mid" width — used by multiple sections for breathing room */
.hero-beat-inner--mid {
    max-width: 960px;
}

/* ── Money grid — three "what you pay for" cards ── */
.problem-money-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 48px auto 56px;
    max-width: 840px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-beat-s1.in-view .problem-money-grid {
    opacity: 1;
    transform: translateY(0);
}

.problem-money-card {
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.problem-money-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.problem-money-card--warn {
    border-color: rgba(255, 107, 107, 0.15);
    background: rgba(255, 107, 107, 0.02);
}

.problem-money-card--warn:hover {
    border-color: rgba(255, 107, 107, 0.25);
}

.problem-money-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.problem-money-card--warn .problem-money-price {
    color: #ff6b6b;
}

.problem-money-price small {
    font-size: 0.55em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.problem-money-card--warn .problem-money-price small {
    color: rgba(255, 107, 107, 0.5);
}

.problem-money-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.01em;
}

.problem-money-gets {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.problem-money-gap {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.18);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: auto;
}

.problem-money-card--warn .problem-money-gap {
    color: rgba(255, 107, 107, 0.35);
    border-top-color: rgba(255, 107, 107, 0.08);
}

/* ── Verdict ── */
.problem-verdict {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-beat-s1.in-view .problem-verdict {
    opacity: 1;
    transform: translateY(0);
}

.problem-verdict-line {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.problem-verdict-dim {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.problem-verdict-accent {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------------------------------
   SECTION 2 — ANALYTICS AREN'T THE PROBLEM (hero-beat-s2)
   ---------------------------------------------------------------- */
.hero-beat-s2 {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #0a0f19 50%, #000 100%);
}

.hero-beat-s2 .hero-beat-inner {
    max-width: 1060px;
}

/* Subhead */
.analytics-subhead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 48px;
}
.analytics-subhead em {
    color: #a855f7;
    font-style: italic;
}

/* ── Platform logo cloud — the data flood ── */
.analytics-logos {
    max-width: 800px;
    margin: 0 auto 56px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
.hero-beat-s2.in-view .analytics-logos {
    opacity: 1;
    transform: translateY(0);
}

.analytics-logos-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0 24px;
}

.analytics-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.analytics-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    background: rgba(10, 15, 25, 0.9);
    transition: background 0.3s ease;
}
.analytics-logo-item:hover {
    background: rgba(20, 25, 40, 0.95);
}

.analytics-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}
.analytics-logo-item:hover .analytics-logo-icon {
    color: rgba(255, 255, 255, 0.55);
}

.analytics-logo-name {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}
.analytics-logo-item:hover .analytics-logo-name {
    color: rgba(255, 255, 255, 0.6);
}

.analytics-logos-kicker {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
}
.analytics-logos-kicker span {
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
}

/* ── The Gap visual ── */
.analytics-gap {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 680px;
    margin: 0 auto 56px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-beat-s2.in-view .analytics-gap {
    opacity: 1;
    transform: translateY(0);
}

.analytics-gap-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.analytics-gap-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    flex-shrink: 0;
}

.analytics-gap-left,
.analytics-gap-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.analytics-gap-label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
}
.analytics-gap-value {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}
.analytics-gap-value--dim {
    color: rgba(255, 255, 255, 0.3);
}
.analytics-gap-value--glow {
    color: #00ffff;
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
}
.analytics-gap-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.analytics-gap-arrow svg {
    display: block;
}

/* ── What you actually need ── */
.analytics-need {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}
.hero-beat-s2.in-view .analytics-need {
    opacity: 1;
    transform: translateY(0);
}

.analytics-need-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 28px;
    line-height: 1.5;
}
.analytics-need-lead em {
    color: #a855f7;
    font-style: italic;
}

/* Sequence chain */
.analytics-sequence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 28px;
}
.analytics-seq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 16px 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    min-width: 80px;
    transition: all 0.35s ease;
}
.analytics-seq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.analytics-seq-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}
.analytics-seq-arrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.12);
    font-weight: 300;
    flex-shrink: 0;
}

.analytics-need-accent {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin: 0;
}

/* ----------------------------------------------------------------
   SECTION 3 — WHAT WE DO (hero-beat-s3)
   ---------------------------------------------------------------- */
.hero-beat-s3 {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.hero-beat-s3 .hero-beat-inner {
    max-width: 860px;
}

/* ----------------------------------------------------------------
   SECTION 4 — DEMO (hero-beat-demo)
   Uses hero-beat-problem class for cinema preview compat
   ---------------------------------------------------------------- */
.hero-beat-demo {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #000 0%, #0a0f19 30%, #0a0f19 70%, #000 100%);
    text-align: center;
}

.demo-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.demo-header .hero-beat-headline {
    margin-bottom: 16px;
}

.demo-header .hero-prose {
    margin-bottom: 0;
}

.demo-footer {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.demo-footer-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
    font-style: italic;
}

/* ----------------------------------------------------------------
   SECTION 5 — BUILD (hero-beat-s5)
   ---------------------------------------------------------------- */
.hero-beat-s5 {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.hero-beat-s5 .hero-beat-inner {
    max-width: 860px;
}

/* Build order — two inline badges */
.hero-build-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-build-order-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-build-order-item--accent {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.06);
    border-color: rgba(0, 255, 255, 0.2);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
}

/* ----------------------------------------------------------------
   SECTION 6 — THREE JOBS (hero-beat-s6)
   ---------------------------------------------------------------- */
.hero-beat-s6 {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(10, 15, 30, 0.6) 0%, #000 80%);
}

.hero-beat-s6 .hero-beat-inner {
    max-width: 960px;
}

/* Larger emphasis headline for the "Canva" reveal */
.reveal-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
    letter-spacing: -0.04em;
}

.s6-subline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 48px 0;
    line-height: 1.5;
}

/* Job card grid */
.s6-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto 48px;
    max-width: 880px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-s6.in-view .s6-jobs-grid {
    opacity: 1;
    transform: translateY(0);
}

.s6-job-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-align: left;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.s6-job-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.s6-job-card--accent {
    border-color: rgba(0, 255, 255, 0.15);
    background: rgba(0, 255, 255, 0.02);
}

.s6-job-card--accent:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.06);
}

.s6-job-number {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
}

.s6-job-card--accent .s6-job-number {
    color: rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.15);
}

.s6-job-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.s6-job-card--accent .s6-job-title {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.s6-job-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
}

.s6-kicker {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero-beat-s6.in-view .s6-kicker {
    opacity: 1;
    transform: translateY(0);
}

.s6-kicker span {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ----------------------------------------------------------------
   SECTION 7 — COMPETITIVE LANDSCAPE (hero-beat-s7)
   ---------------------------------------------------------------- */
.hero-beat-s7 {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.hero-beat-s7 .hero-beat-inner--wide {
    max-width: 1100px;
}

/* ── Part A: Two Rivals Side-by-Side ── */
.landscape-versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-beat-s7.in-view .landscape-versus {
    opacity: 1;
    transform: translateY(0);
}

.landscape-rival {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.landscape-rival:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.landscape-rival-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.landscape-rival-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.landscape-rival-name--dk { color: #00c9ff; }
.landscape-rival-name--venice { color: #e8c547; }

.landscape-rival-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.landscape-rival-price span {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.landscape-rival-price--expensive {
    color: #ff6b6b;
}

.landscape-rival-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Badges */
.landscape-rival-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.landscape-rival-badge--neutral {
    color: #00c9ff;
    background: rgba(0, 201, 255, 0.08);
    border: 1px solid rgba(0, 201, 255, 0.2);
}

.landscape-rival-badge--warn {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.landscape-rival-then {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    margin: 0 0 10px 0;
}

.landscape-rival-gap {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.55;
    margin: 0;
    margin-top: auto;
}

.landscape-rival-gap em {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

/* Venice offering tags */
.landscape-rival-offerings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.landscape-offering-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ── Three-column comparison (DK vs Venice vs CN) ── */
.landscape-versus--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landscape-rival--warn {
    border-color: rgba(255, 107, 107, 0.12);
}

.landscape-rival--warn:hover {
    border-color: rgba(255, 107, 107, 0.2);
}

.landscape-rival--cn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.04), rgba(168, 85, 247, 0.04));
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.06);
}

.landscape-rival--cn:hover {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 12px 50px rgba(0, 255, 255, 0.1);
}

.landscape-rival-name--cn {
    background: linear-gradient(135deg, #00ffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landscape-rival-price--cn {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.landscape-rival-badge--cn {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.landscape-rival-offerings--cn {
    margin-top: auto;
}

.landscape-offering-tag--cn {
    color: rgba(0, 255, 255, 0.7);
    background: rgba(0, 255, 255, 0.06);
    border-color: rgba(0, 255, 255, 0.15);
}

.landscape-rival-verdict-cn {
    font-size: 0.82rem;
    font-weight: 600;
    color: #00ffff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
    margin: 0;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* ── Two-column rival comparison (DK + Venice side by side) ── */
.compare-rivals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.compare-rivals .landscape-rival {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.compare-rivals .landscape-rival:nth-child(2) {
    transform: translateX(20px);
}

.hero-beat-s1.in-view .compare-rivals .landscape-rival {
    opacity: 1;
    transform: translateX(0);
}

.hero-beat-s1.in-view .compare-rivals .landscape-rival:nth-child(1) { transition-delay: 0.15s; }
.hero-beat-s1.in-view .compare-rivals .landscape-rival:nth-child(2) { transition-delay: 0.3s; }

/* ── Campaign.Network Hero Card ── */
.cn-hero-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.04), rgba(168, 85, 247, 0.04));
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 44px 40px;
    text-align: left;
    box-shadow: 0 12px 60px rgba(0, 255, 255, 0.08), 0 0 100px rgba(0, 255, 255, 0.03);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-beat-s1.in-view .cn-hero-card {
    opacity: 1;
    transform: translateY(0);
}

.cn-hero-card:hover {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 16px 70px rgba(0, 255, 255, 0.12), 0 0 120px rgba(0, 255, 255, 0.05);
}

.hero-beat-s1.in-view .cn-hero-card {
    animation: cnCardGlow 4s ease-in-out 1.2s infinite;
}

@keyframes cnCardGlow {
    0%, 100% { box-shadow: 0 12px 60px rgba(0, 255, 255, 0.08), 0 0 100px rgba(0, 255, 255, 0.03); }
    50% { box-shadow: 0 12px 60px rgba(0, 255, 255, 0.15), 0 0 120px rgba(168, 85, 247, 0.06); }
}

.cn-hero-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cn-hero-card-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #00ffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cn-hero-card-price {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cn-hero-card-price span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(0, 255, 255, 0.5);
}

.cn-hero-card-tagline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 36px 0;
    line-height: 1.5;
}

.cn-hero-card-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.cn-hero-card-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cn-hero-card-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cn-hero-card-feature:hover .cn-hero-card-feature-icon {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.15);
}

.cn-hero-card-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.cn-hero-card-feature p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.cn-hero-card-cta {
    text-align: center;
    padding-top: 8px;
}

/* VS pill between cards */
.landscape-vs-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin: 0 -12px;
    z-index: 2;
}

/* ── Part B: What They Sell You (Visual Cards) ── */
.landscape-offerings-section {
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.hero-beat-s7.in-view .landscape-offerings-section {
    opacity: 1;
    transform: translateY(0);
}

.landscape-offerings-headline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px 0;
    letter-spacing: -0.02em;
}

.landscape-offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-s7.in-view .landscape-offerings-grid {
    opacity: 1;
    transform: translateY(0);
}

/* Individual offering card */
.landscape-offer-card {
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(16px);
}

.hero-beat-s7.in-view .landscape-offer-card:nth-child(1) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.hero-beat-s7.in-view .landscape-offer-card:nth-child(2) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.hero-beat-s7.in-view .landscape-offer-card:nth-child(3) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

.landscape-offer-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
}

.landscape-offer-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landscape-offer-card:hover .landscape-offer-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.1);
}

.landscape-offer-icon svg {
    width: 36px;
    height: 36px;
}

.landscape-offer-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 8px 0;
}

.landscape-offer-body {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.55;
    margin: 0;
}

/* Kicker line under offerings */
.landscape-offerings-kicker {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero-beat-s7.in-view .landscape-offerings-kicker {
    opacity: 1;
    transform: translateY(0);
}

.landscape-offerings-kicker span {
    display: block;
    color: #ff6b6b;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-top: 4px;
}

/* ── 2x2 grid modifier for teardown section ── */
.landscape-offerings-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* ── 3-column grid modifier for generic teardown ── */
.landscape-offerings-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.landscape-offerings-grid--three .landscape-offer-card {
    padding: 32px 26px;
}

.landscape-offerings-grid--three .landscape-offer-title {
    font-size: 1.1rem;
}

.landscape-offerings-grid--three .landscape-offer-body {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Venice reveal transition block ── */
.venice-reveal {
    margin-top: 48px;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.hero-beat-s7.in-view .venice-reveal {
    opacity: 1;
    transform: translateY(0);
}

.venice-reveal-line {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.venice-reveal-accent {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.35);
    margin: 0;
    line-height: 1.4;
}

/* ── Divider: "We kept going" ── */
.landscape-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 56px 0 48px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.hero-beat-s7.in-view .landscape-divider {
    opacity: 1;
    transform: translateY(0);
}

.landscape-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
}

.landscape-divider-text {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0, 255, 255, 0.5);
    white-space: nowrap;
}

/* ── Campaign.Network Card (Full Width) ── */
.landscape-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.landscape-card--cn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(168, 85, 247, 0.03));
    border-color: rgba(0, 255, 255, 0.15);
    box-shadow: 0 8px 50px rgba(0, 255, 255, 0.06);
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-beat-s7.in-view .landscape-card--cn {
    opacity: 1;
    transform: translateY(0);
}

.landscape-card--cn:hover {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 12px 60px rgba(0, 255, 255, 0.1);
}

.landscape-cn-inner {
    padding: 40px 36px;
}

.landscape-cn-lead {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.landscape-brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.landscape-brand--cn {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00ffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landscape-price {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}

.landscape-price span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.landscape-price--cn {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.landscape-cn-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.landscape-cn-col-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.landscape-cn-col-label--accent {
    color: #00ffff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

/* Checklist items */
.landscape-offers {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.landscape-check {
    position: relative;
    padding-left: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 4px;
}

.landscape-check::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.72rem;
}

.landscape-check--glow {
    color: rgba(255, 255, 255, 0.65);
}

.landscape-check--glow::before {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.landscape-cn-col .landscape-offers {
    margin-bottom: 0;
}

.landscape-cn-verdict {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    line-height: 1.6;
}

.landscape-cn-verdict span {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* ----------------------------------------------------------------
   SECTION 8 — SOCIAL PROOF / RECAP (hero-beat-s8)
   ---------------------------------------------------------------- */
.hero-beat-s8 {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #0a0f19 50%, #000 100%);
}

/* ── Recap: "Everyone else vs Campaign.Network" ── */
.proof-recap {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.hero-beat-s8.in-view .proof-recap {
    opacity: 1;
    transform: translateY(0);
}

.proof-recap-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-recap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 36px;
    border-radius: 18px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.proof-recap-item--dim {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-recap-item--glow {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.06);
}

.proof-recap-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.proof-recap-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.proof-recap-item--glow .proof-recap-text {
    color: #00ffff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.proof-recap-detail {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.proof-recap-item--glow .proof-recap-detail {
    color: rgba(0, 255, 255, 0.5);
}

.proof-recap-vs {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.08em;
}

/* ── Stat row (three numbers) ── */
.proof-stat-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.hero-beat-s8.in-view .proof-stat-row {
    opacity: 1;
    transform: translateY(0);
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.proof-number {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #00ffff;
    line-height: 1;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.proof-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.3;
}

/* ----------------------------------------------------------------
   SECTION 2 — THE LANDSCAPE (distributor logo grid)
   ---------------------------------------------------------------- */
.hero-beat-landscape {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #08090e 50%, #000 100%);
}

.landscape-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 720px;
    margin: 32px auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-beat-landscape.in-view .landscape-logo-grid {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger logos in on scroll */
.landscape-logo-item {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-beat-landscape.in-view .landscape-logo-item:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(4) { transition-delay: 0.20s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(8) { transition-delay: 0.40s; opacity: 1; transform: scale(1); }
.hero-beat-landscape.in-view .landscape-logo-item:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: scale(1); }

.landscape-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    background: rgba(10, 15, 25, 0.9);
    transition: background 0.3s ease;
}

.landscape-logo-item:hover {
    background: rgba(20, 25, 40, 0.95);
    box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.03);
}

.landscape-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.landscape-logo-item:hover .landscape-logo-icon {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
    filter: brightness(1.3);
}

.landscape-logo-icon svg {
    width: 32px;
    height: 32px;
}

.landscape-logo-name {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}

.landscape-logo-item:hover .landscape-logo-name {
    color: rgba(255, 255, 255, 0.55);
}

.landscape-tier-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-beat-landscape.in-view .landscape-tier-note {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   SECTION 5 — ANALYTICS COMPACT + COLOR
   ---------------------------------------------------------------- */
.analytics-compact {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-beat-analytics {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Analytics intro paragraph */
.analytics-intro {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-analytics.in-view .analytics-intro {
    opacity: 1;
    transform: translateY(0);
}

.analytics-logos--compact {
    margin-bottom: 28px;
}

.analytics-logos--compact .analytics-logos-grid {
    margin-bottom: 0;
}

.analytics-gap--tight {
    margin: 24px auto 28px;
}

/* ── STAGGER ANIMATION ── */
.analytics-stagger .analytics-logo-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.hero-beat-analytics.in-view .analytics-stagger .analytics-logo-item:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------
   SECTION 7 — ZORDON PRODUCT SHOWCASE (image beats)
   ---------------------------------------------------------------- */
.zordon-showcase-beat {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.zordon-showcase-beat:nth-child(even) {
    background: linear-gradient(180deg, #000 0%, #0a0f19 50%, #000 100%);
}

.zordon-showcase-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-zordon.in-view .zordon-showcase-sub {
    opacity: 1;
    transform: translateY(0);
}

.zordon-showcase-img-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.hero-beat-zordon.in-view .zordon-showcase-img-wrap {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.zordon-showcase-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ----------------------------------------------------------------
   SECTION 3 — WHAT DISTRIBUTION IS (hero-beat-distro)
   ---------------------------------------------------------------- */
.hero-beat-distro {
    min-height: auto;
    padding: 0;
    background: #000;
}

.hero-beat-distro .hero-beat-inner--wide {
    max-width: 100%;
    padding: 0;
}

.hero-beat-distro .distro-process-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.hero-beat-distro.in-view .distro-process-section {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   SECTION 8 — PRICING REVEAL (hero-beat-pricing)
   ---------------------------------------------------------------- */
.hero-beat-pricing {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(10, 15, 30, 0.6) 0%, #000 80%);
}

.hero-beat-pricing .hero-beat-inner--wide {
    max-width: 1100px;
}

.hero-beat-pricing .landscape-versus {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-beat-pricing.in-view .landscape-versus {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   EXPLORE MORE TEMPLATES — hero-beat-templates
   ---------------------------------------------------------------- */
.hero-beat-templates {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #060810 50%, #000 100%);
}

.hero-templates-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 36px;
    line-height: 1.5;
}

.hero-templates-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 24px 12px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1240px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-beat-templates.in-view .hero-templates-grid {
    opacity: 1;
    transform: translateY(0);
}

.hero-templates-grid::-webkit-scrollbar { display: none; }

.hero-template-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.hero-template-card:hover {
    transform: translateY(-4px);
}

.hero-template-card--locked {
    opacity: 0.5;
}

.hero-template-card--locked:hover {
    opacity: 0.7;
}

.hero-template-poster {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.3s ease;
    position: relative;
    background: #0a0f19;
}

.hero-template-card:hover .hero-template-poster {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-template-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-template-card:hover .hero-template-poster img {
    transform: scale(1.06);
}

.hero-template-poster video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-template-card:hover .hero-template-poster video {
    transform: scale(1.06);
}

.hero-template-initial {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.03em;
}

.hero-template-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 4px;
}

.hero-template-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-template-artist {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
}

.hero-template-type {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-templates-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .hero-template-card {
        flex: 0 0 155px;
    }
}

/* ----------------------------------------------------------------
   FINAL CTA — hero-beat-cta
   ---------------------------------------------------------------- */
.hero-beat-cta {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(10, 15, 30, 0.5) 0%, #000 80%);
}

.hero-beat-cta .hero-beat-inner {
    max-width: 860px;
}

.hero-beat-cta .hero-prose-big {
    margin-bottom: 36px !important;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-beat-cta.in-view .hero-prose-big {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   RESPONSIVE — New Sections
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-beat {
        padding: 40px 20px;
    }

    .hero-beat-hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .hero-beat-question {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .hero-beat-filmstrip {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-steps {
        gap: 8px;
    }

    .hero-step {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-beat-s1,
    .hero-beat-s2,
    .hero-beat-s3,
    .hero-beat-s5 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-beat-s6 {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    /* Problem money grid — stack on mobile */
    .problem-money-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .problem-money-card {
        padding: 22px 18px;
    }

    /* Section 6 job cards — stack */
    .s6-jobs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .s6-job-card {
        padding: 24px 20px;
    }

    /* Analytics section — logo grid responsive */
    .analytics-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analytics-logo-item {
        padding: 22px 14px;
    }

    .analytics-sequence {
        gap: 8px;
    }

    .analytics-seq-item {
        min-width: 68px;
        padding: 10px 12px 8px;
    }

    .analytics-seq-item span {
        font-size: 0.65rem;
    }

    .analytics-seq-arrow {
        font-size: 0.9rem;
    }

    .analytics-gap-content {
        gap: 16px;
        padding: 16px 20px;
    }

    /* Landscape — stack versus cards */
    .landscape-versus,
    .landscape-versus--three {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landscape-vs-pill {
        margin: 0 auto;
        width: 36px;
        height: 36px;
        font-size: 0.6rem;
    }

    .landscape-rival {
        padding: 24px 22px;
    }

    .landscape-offerings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .landscape-offerings-grid--three {
        grid-template-columns: 1fr;
    }

    .landscape-offer-card {
        padding: 22px 18px;
    }

    /* Compare rivals — stack on mobile */
    .compare-rivals {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CN hero card — tighter on mobile */
    .cn-hero-card {
        padding: 28px 24px;
    }

    .cn-hero-card-name {
        font-size: 1.4rem;
    }

    .cn-hero-card-feature {
        flex-direction: column;
        gap: 12px;
    }

    .landscape-cn-inner {
        padding: 28px 24px;
    }

    .landscape-cn-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landscape-divider {
        margin: 36px 0 32px;
    }

    .proof-stat-row {
        gap: 24px;
    }

    .proof-stat {
        min-width: 120px;
    }

    .proof-recap-item {
        min-width: 160px;
        padding: 22px 24px;
    }

    .proof-recap-row {
        gap: 16px;
    }

    .hero-build-order {
        flex-direction: column;
        gap: 10px;
    }

    .hero-beat-cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .demo-header {
        margin-bottom: 30px;
    }

    /* Landscape logo grid — 2 col on tablet */
    .landscape-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .landscape-logo-item {
        padding: 22px 14px;
    }

    /* Zordon showcase images */
    .zordon-showcase-beat {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .zordon-showcase-img-wrap {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-beat {
        padding: 48px 18px;
    }

    .hero-beat-hero {
        min-height: 70vh;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-beat-hero .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero-subline {
        font-size: 0.92rem;
    }

    .hero-steps {
        flex-direction: column;
        gap: 6px;
    }

    .hero-step {
        width: 100%;
        max-width: 240px;
        text-align: center;
    }

    .proof-stat-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .proof-recap-row {
        flex-direction: column;
        gap: 12px;
    }

    .proof-recap-vs {
        margin: 0;
    }

    .proof-recap-item {
        min-width: 0;
        width: 100%;
        max-width: 260px;
    }

    .s6-jobs-grid {
        gap: 14px;
    }

    .s6-job-card {
        padding: 22px 18px;
    }

    /* Analytics section — compact on mobile */
    .analytics-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analytics-logo-item {
        padding: 18px 10px;
        gap: 6px;
    }

    .analytics-logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .analytics-logo-name {
        font-size: 0.58rem;
    }

    .analytics-sequence {
        gap: 6px;
    }

    .analytics-seq-arrow {
        display: none;
    }

    .analytics-seq-item {
        min-width: 56px;
        padding: 8px 10px 7px;
    }

    .analytics-seq-item svg {
        width: 22px;
        height: 22px;
    }

    .analytics-seq-item span {
        font-size: 0.6rem;
    }

    .analytics-gap {
        flex-direction: column;
        gap: 0;
    }

    .analytics-gap-line {
        width: 1px;
        height: 20px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
    }

    .analytics-gap-content {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

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

    /* Landscape logo grid — single column on small mobile */
    .landscape-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
    }

    .landscape-logo-item {
        padding: 16px 10px;
        gap: 6px;
    }

    .landscape-logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .landscape-logo-name {
        font-size: 0.58rem;
    }

    /* CN hero card — small mobile */
    .cn-hero-card {
        padding: 24px 20px;
    }

    .cn-hero-card-header {
        flex-direction: column;
        gap: 6px;
    }

    .cn-hero-card-features {
        gap: 22px;
    }

    .cn-hero-card-feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Tablet tweaks */
@media (min-width: 769px) and (max-width: 1024px) {
    .landscape-rival {
        padding: 26px 22px;
    }

    .landscape-rival-name {
        font-size: 1.1rem;
    }

    .landscape-offerings-grid {
        gap: 12px;
    }

    .landscape-offer-card {
        padding: 22px 18px;
    }

    .landscape-cn-inner {
        padding: 32px 26px;
    }
}

/* Narrow mobile — single column */
@media (max-width: 540px) {
    .landscape-offerings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .landscape-cn-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landscape-cn-lead {
        flex-direction: column;
        gap: 8px;
    }

    .landscape-rival-header {
        flex-direction: column;
        gap: 6px;
    }

    .landscape-offerings-headline {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════════
   PRODUCT SHOWCASE — Study / Build / Distribute
   ═══════════════════════════════════════════ */

.hero-beat-showcase {
    padding: 80px 0 60px;
}

.cn-showcase-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.cn-showcase-side {
    flex: 1 1 0%;
    min-width: 0;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.cn-showcase-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    background: rgba(0,255,255,0.1);
    color: #00ffff;
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 20px;
    margin-bottom: 16px;
}

.cn-showcase-badge--build {
    background: rgba(168,85,247,0.1);
    color: #a855f7;
    border-color: rgba(168,85,247,0.2);
}

.cn-showcase-side-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.cn-showcase-side-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Filmstrip */
.cn-showcase-filmstrip {
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

.cn-showcase-filmstrip::before,
.cn-showcase-filmstrip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.cn-showcase-filmstrip::before {
    left: 0;
    background: linear-gradient(to right, rgba(5,8,18,1), transparent);
}

.cn-showcase-filmstrip::after {
    right: 0;
    background: linear-gradient(to left, rgba(5,8,18,1), transparent);
}

.cn-showcase-filmstrip-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: filmstripScroll 40s linear infinite;
}

.cn-showcase-filmstrip:hover .cn-showcase-filmstrip-track {
    animation-play-state: paused;
}

@keyframes filmstripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cn-showcase-moment {
    flex: 0 0 130px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cn-showcase-moment:hover {
    transform: scale(1.05);
    border-color: rgba(0,255,255,0.2);
}

.cn-showcase-moment img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.cn-showcase-moment-info {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cn-showcase-moment-cat {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00ffff;
    text-transform: uppercase;
}

.cn-showcase-moment-title {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cn-showcase-moment-date {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
}

/* Divider */
.cn-showcase-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
}

.cn-showcase-divider-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,255,255,0.2), transparent);
}

.cn-showcase-divider-icon {
    padding: 12px 0;
    opacity: 0.6;
}

/* Build features */
.cn-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cn-showcase-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cn-showcase-feature svg {
    flex-shrink: 0;
}

/* Distribution callout */
.cn-showcase-distro {
    max-width: 680px;
    margin: 48px auto 0;
    text-align: center;
}

.cn-showcase-distro-text {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0 0 20px;
}

.cn-showcase-distro-text strong {
    color: #00ffff;
    font-weight: 600;
}

.cn-showcase-dsp-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0.8;
}

.cn-showcase-dsp-row svg {
    border-radius: 6px;
}

.cn-showcase-dsp-more {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-beat-showcase { padding: 30px 0 20px; }
    .cn-showcase-split { flex-direction: column; gap: 24px; }
    .cn-showcase-divider {
        flex-direction: row;
        width: 100%;
        height: 40px;
    }
    .cn-showcase-divider-line {
        flex: 1;
        height: 1px;
        width: auto;
        background: linear-gradient(to right, transparent, rgba(0,255,255,0.2), transparent);
    }
    .cn-showcase-divider-icon { padding: 0 12px; transform: rotate(90deg); }
    .cn-showcase-side { padding: 24px 20px; }
    .cn-showcase-side-title { font-size: 18px; }
    .cn-showcase-moment { flex: 0 0 110px; }
}

/* ═══════════════════════════════════════════
   MOBILE PRODUCT SHOWCASE
   Hidden on desktop, replaces interactive demo on mobile
   ═══════════════════════════════════════════ */

.hero-beat-mobile-showcase { display: none; }

@media (max-width: 768px) {
    .hero-beat-mobile-showcase {
        display: block;
        padding: 30px 0 20px;
    }
    .hero-beat-mobile-showcase .hero-beat-inner {
        padding: 0 20px;
    }
    .hero-beat-demo { display: none; }
}

.cn-mobile-feature {
    margin-bottom: 36px;
    text-align: center;
}

.cn-mobile-feature-badge {
    display: inline-block;
    font-size: 9px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(0,255,255,0.1);
    color: #00ffff;
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 16px;
    margin-bottom: 18px;
}

.cn-mobile-feature-badge--purple { background: rgba(168,85,247,0.1); color: #a855f7; border-color: rgba(168,85,247,0.2); }
.cn-mobile-feature-badge--green { background: rgba(57,255,20,0.08); color: #39ff14; border-color: rgba(57,255,20,0.15); }
.cn-mobile-feature-badge--purple { background: rgba(168,85,247,0.08); color: #a855f7; border-color: rgba(168,85,247,0.15); }
.cn-mobile-feature-badge--cyan { background: rgba(0,255,255,0.1); color: #00ffff; border-color: rgba(0,255,255,0.2); }

.cn-mobile-feature-visual {
    margin: 0 auto 22px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(5,8,18,0.6);
    max-width: 400px;
}

.cn-mobile-feature-title {
    font-size: 19px; font-weight: 700; color: #fff;
    margin: 0 0 8px; line-height: 1.3;
    text-align: center;
}

.cn-mobile-feature-desc {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin: 0 auto;
    text-align: center;
    max-width: 340px;
}

/* Mobile Filmstrip */
.cn-mobile-filmstrip-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cn-mobile-filmstrip-scroll::-webkit-scrollbar { display: none; }

.cn-mobile-moment {
    flex: 0 0 110px;
    text-align: center;
}

.cn-mobile-moment img {
    width: 100%; aspect-ratio: 16/10;
    object-fit: cover; border-radius: 8px;
    display: block; margin-bottom: 6px;
}

.cn-mobile-moment-cat {
    display: block;
    font-size: 8px; font-weight: 700;
    letter-spacing: 1px; color: #00ffff;
    text-transform: uppercase;
}

.cn-mobile-moment-title {
    display: block;
    font-size: 11px; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Mobile Sidebar Mock */
.cn-mobile-sidebar-mock {
    padding: 18px;
    text-align: left;
}

.cn-mobile-sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cn-mobile-sidebar-title {
    font-size: 13px; font-weight: 700; color: #fff;
}

.cn-mobile-sidebar-tabs {
    display: flex; gap: 8px; font-size: 10px; font-weight: 700;
}

.cn-mobile-sidebar-tabs span {
    padding: 3px 8px; border-radius: 4px;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.cn-mobile-sidebar-tabs span.active {
    color: #00ffff;
    border-color: rgba(0,255,255,0.3);
    background: rgba(0,255,255,0.08);
}

.cn-mobile-sidebar-item {
    padding: 10px 12px; margin-bottom: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}

.cn-mobile-sidebar-item--user {
    border-color: rgba(0,255,255,0.15);
    background: rgba(0,255,255,0.03);
}

.cn-mobile-sidebar-label {
    display: block; font-size: 8px; font-weight: 700;
    letter-spacing: 1px; color: rgba(168,85,247,0.7);
    text-transform: uppercase; margin-bottom: 4px;
}

.cn-mobile-sidebar-item--user .cn-mobile-sidebar-label {
    color: rgba(0,255,200,0.7);
}

.cn-mobile-sidebar-text {
    display: block; font-size: 12px; color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.cn-mobile-sidebar-date {
    font-size: 10px; color: rgba(255,255,255,0.35);
}

.cn-mobile-sidebar-actions {
    display: flex; gap: 6px; margin-top: 6px;
}

.cn-mobile-badge-approved {
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
    color: #39ff14;
    border: 1px solid rgba(57,255,20,0.2);
    background: rgba(57,255,20,0.06);
}

.cn-mobile-badge-ideas {
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
    color: #00ffff;
    border: 1px solid rgba(0,255,255,0.2);
    background: rgba(0,255,255,0.06);
}

.cn-mobile-badge-te {
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
    color: #a855f7;
    border: 1px solid rgba(168,85,247,0.2);
    background: rgba(168,85,247,0.06);
}

/* Mobile Ideas Mock */
.cn-mobile-ideas-mock {
    padding: 18px;
    text-align: left;
}

.cn-mobile-ideas-header {
    font-size: 12px; font-weight: 700; color: #fff;
    margin-bottom: 10px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cn-mobile-ideas-item {
    padding: 10px 12px; margin-bottom: 6px;
    font-size: 12px; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}

/* Mobile Translation Engine Mock */
.cn-mobile-te-mock {
    padding: 20px 18px;
    text-align: center;
}

.cn-mobile-te-header {
    padding: 14px 16px;
    background: rgba(168,85,247,0.06);
    border: 1px solid rgba(168,85,247,0.15);
    border-radius: 10px;
    margin-bottom: 12px;
    text-align: left;
}

.cn-mobile-te-label {
    display: block;
    font-size: 8px; font-weight: 700;
    letter-spacing: 1px; color: rgba(168,85,247,0.7);
    text-transform: uppercase; margin-bottom: 4px;
}

.cn-mobile-te-moment {
    display: block;
    font-size: 14px; font-weight: 600; color: #fff;
}

.cn-mobile-te-arrow {
    padding: 8px 0;
    opacity: 0.6;
}

.cn-mobile-te-results-label {
    font-size: 9px; font-weight: 700;
    letter-spacing: 1.5px; color: rgba(0,255,200,0.6);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cn-mobile-te-card {
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: left;
}

.cn-mobile-te-card-title {
    display: block;
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.cn-mobile-te-card-meta {
    display: block;
    font-size: 10px; color: rgba(0,255,200,0.5);
}

/* Mobile Distribute Mock */
.cn-mobile-distro-mock {
    padding: 24px 16px;
    text-align: center;
}

.cn-mobile-distro-title {
    font-size: 14px; font-weight: 700; color: #fff;
    margin-bottom: 16px;
}

.cn-mobile-distro-icons {
    display: flex; justify-content: center;
    align-items: center; gap: 12px;
    margin-bottom: 20px;
}

.cn-mobile-distro-icons svg { border-radius: 6px; }

.cn-mobile-distro-more {
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.4);
}

.cn-mobile-distro-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(57,255,20,0.1);
    border: 1px solid rgba(57,255,20,0.3);
    border-radius: 10px;
    color: #39ff14;
    font-size: 12px; font-weight: 700;
}

/* Mobile CTA */
.cn-mobile-cta {
    text-align: center;
    padding: 32px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cn-mobile-cta-text {
    font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.6);
    margin: 0 0 20px;
}

.cn-mobile-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #00ffff, #00cc99);
    color: #000; font-size: 14px; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,255,255,0.3);
}

/* ═══════════════════════════════════════════
   GENERAL MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-headline { font-size: 1.8rem !important; }
    .hero-beat-headline { font-size: 1.6rem !important; }
    .hero-subline { font-size: 0.9rem !important; }
    .hero-steps { flex-direction: column; gap: 8px; }
    .hero-beat-inner--wide { padding: 0 16px; }
    .hero-beat-inner--mid { padding: 0 16px; }

    /* Hide demo CTA and demo section on mobile */
    a.hero-btn[href="#heroBeatDemo"] { display: none !important; }
    .hero-beat-demo { display: none !important; }

    .hero-templates-grid {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .hero-templates-grid::-webkit-scrollbar { display: none; }

    .hero-template-card { flex: 0 0 155px; }

    .analytics-logos-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .landscape-logo-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
}
