/* ========================================
   BEYOND — Short-Form Content Studio
   Pixel-Perfect Match to Screenshot
   ======================================== */

/* 1. Reset */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    min-height: 100vh;
    background-color: #171622; /* Deep slate background matching reference image */
    color: #9B98AB;
    font-family: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
ul, ol {
    list-style: none;
}
button, input, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
a {
    color: inherit;
    text-decoration: none;
}

/* 2. Custom Properties */
:root {
    --bg-primary: #171622;
    --bg-secondary: #13121C;
    --bg-card: #201F2D;
    --bg-card-dark: #1A1926;
    --bg-card-hover: #272637;

    --text-white: #F6F5FA;
    --text-muted: #9B98AB;
    --text-tagline: #7B788C;

    --accent-red: #EE5A4A; /* Coral red */
    --accent-red-hover: #DC4B3B;
    --accent-purple: #8B5CF6;
    --accent-purple-light: #A78BFA;
    --accent-green: #10B981;
    --accent-blue: #3B82F6;
    --accent-yellow: #F59E0B;

    --btn-dark: #161421;
    --btn-dark-hover: #1F1C2E;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --container-max: 1140px;
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);
}

/* Top Scroll Progress Line */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Cursor Ambient Glow Spotlight */
#cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 90, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Section Spacing */
.section {
    padding: clamp(5rem, 9vw, 7.5rem) 0;
    position: relative;
}

.section--dark {
    background-color: var(--bg-secondary);
}

.section--bordered {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Text Accents */
.accent--red { color: var(--accent-red); }
.accent--purple { color: var(--accent-purple-light); }
.accent--green { color: var(--accent-green); }
.accent--yellow { color: var(--accent-yellow); }
.accent--blue { color: var(--accent-blue); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--accent-red);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(238, 90, 74, 0.35);
}

.btn--primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 74, 0.5);
}

.btn--secondary {
    background-color: var(--btn-dark);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.btn--secondary:hover {
    background-color: var(--btn-dark-hover);
    transform: translateY(-2px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.nav--scrolled {
    background: rgba(23, 22, 34, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.nav__logo-dot {
    color: var(--accent-red);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: #FFFFFF;
}

.nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #151421;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.nav__mobile-toggle:hover,
.nav__mobile-toggle:active {
    background: #1F1D2F;
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.04);
}

.nav__mobile-toggle-line {
    width: 18px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Mobile Menu Overlay — High-Energy Futuristic Design */
.nav__mobile-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #0D0C18;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(238, 90, 74, 0.22) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                visibility 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav__mobile-menu--active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Close button on Top Right */
.nav__mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav__mobile-close:hover,
.nav__mobile-close:active {
    background: rgba(238, 90, 74, 0.3);
    border-color: var(--accent-red);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(238, 90, 74, 0.5);
}

/* Watermark background */
.nav__mobile-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
    white-space: nowrap;
}

/* List & links */
.nav__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
}

.nav__mobile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: clamp(2rem, 6.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    transition: all 0.25s ease;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav__mobile-num {
    font-size: 0.82rem;
    font-family: monospace;
    color: var(--accent-yellow);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav__mobile-link:hover,
.nav__mobile-link:active {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
    transform: translateY(-2px);
}

.nav__mobile-cta-wrap {
    position: relative;
    z-index: 2;
}

.nav__mobile-cta {
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(238, 90, 74, 0.45);
}

.nav__mobile-footer {
    position: absolute;
    bottom: 28px;
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--text-tagline);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    z-index: 2;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 60px;
}

.hero-star {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
    pointer-events: none;
    user-select: none;
}

.hero-star--top-left { top: 20%; left: 8%; color: rgba(255, 220, 100, 0.35); }
.hero-star--top-right { top: 25%; right: 8%; }
.hero-star--bottom-right { bottom: 15%; right: 12%; color: rgba(238, 90, 74, 0.3); }

.hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.hero__badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-tagline);
    margin-bottom: 28px;
    display: inline-block;
}

.hero__title {
    font-size: clamp(3.2rem, 6.8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.hero__title-red {
    display: block;
    font-size: clamp(2.6rem, 5.8vw, 4.75rem);
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1.08;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 28px auto 40px;
    line-height: 1.65;
}

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

/* ========================================
   SECOND SECTION — SHORT-FORM VIDEOS REAL EMBEDDED GRID
   ======================================== */
.reels-grid-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
}

.reels-grid-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
}

/* ========================================
   REELS SLIDER
   ======================================== */

/* Outer wrapper: holds arrows + viewport in a row */
.reels-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 100%;
}

/* Clipping viewport — only shows N cards at a time */
.reels-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

/* The scrolling row of cards */
.reels-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Each card occupies exactly 1/4 of the viewport width (shows all 4 at once) */
.reels-slider-track .reel-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
}

/* Arrow Buttons */
.reels-slider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.reels-slider-arrow:hover {
    background: rgba(238, 90, 74, 0.18);
    border-color: var(--accent-red);
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(238, 90, 74, 0.35);
}

.reels-slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Dot Indicators */
.reels-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.reels-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s ease;
    padding: 0;
}

.reels-dot--active {
    background: var(--accent-red);
    width: 28px;
    box-shadow: 0 0 10px rgba(238, 90, 74, 0.55);
}

.reels-dot:hover:not(.reels-dot--active) {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.2);
}

.reel-card {
    background: #111019;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Embedded HTML5 Video Container inside Reel Cards */
.reel-card__video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.reel-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlays on Embedded Video Reels */
.reel-card__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.reel-card__before-after {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.reel-card__label-bottom {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-tagline);
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.6);
    padding: 2px 8px;
    border-radius: 4px;
}


/* ========================================
   THIRD SECTION — CONTENT BUT PERFORMANCE DRIVEN 
   ======================================== */
.bento-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

.bento-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 12px;
}

.bento-headline {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
}

/* Bento Box 4 Cards Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 20px;
}

.bento-card {
    background: #1C1B2A;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

/* Top Left Card: Video Editing — 2×2 real video grid */
.bento-card__editing-visual {
    border-radius: var(--radius-md);
    height: 240px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.bento-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    width: 100%;
    height: 100%;
    background: #0a0910;
}

.bento-video-cell {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Right Card: Content Strategy */
.bento-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple-light);
    margin-bottom: 40px;
}

.bento-icon-box--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.bento-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.bento-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Bento Filter Pills */
.bento-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bento-pill {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

/* Bottom Grid 2 Cards */
.bento-grid-bottom {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

/* Bottom Right Card Badges Row */
.bento-badges-row {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.bento-badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-white);
}

.bento-badge-item span {
    color: var(--accent-yellow);
}

/* Infinity Watermark Symbol on Retainer Card */
.infinity-watermark {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

/* ========================================
   OTHER SECTIONS (PROCESS, PRICING, FAQ, CTA)
   ======================================== */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

/* ========================================
   SECTION 4 — STATEMENT / PRECISION
   ======================================== */
.statement-section {
    padding: clamp(6rem, 12vw, 10rem) 0;
    text-align: center;
    background-color: var(--bg-primary);
    position: relative;
}

.statement-inner {
    max-width: 820px;
    margin: 0 auto;
}

.statement-headline {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.035em;
    margin-bottom: 0;
}

.statement-headline--accent {
    display: block;
    color: var(--accent-purple-light);
    margin-top: 4px;
}

.statement-body {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 2.25rem;
    letter-spacing: 0.01em;
}

.statement-closing {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 800;
    color: var(--text-white);
    margin-top: 1.25rem;
    letter-spacing: 0.01em;
}
}


/* ========================================
   SECTION 5 — ONE UPLOAD / INFINITE POTENTIAL
   ======================================== */
.upload-section {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
}

/* Stats Bar */
.upload-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: clamp(4rem, 7vw, 6rem);
}

.upload-stat {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
}

.upload-stat__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.upload-stat__label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.upload-stats-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* Two-Column Content */
.upload-content {
    display: grid;
    padding: 100px 0 0 0;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.upload-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-tagline);
    margin-bottom: 20px;
}

.upload-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.upload-headline--accent {
    color: var(--accent-red);
}

.upload-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
}

.upload-body strong {
    color: var(--text-white);
    font-weight: 700;
}

/* Feature List */
.upload-right {
    display: flex;
    flex-direction: column;
}

.upload-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
}

.upload-feature__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.upload-feature__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.upload-feature__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.upload-feature__divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

/* ── Fake Timeline UI ── */
.timeline-ui {
    width: 100%;
    padding-bottom: 154px;
}

.timeline-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tagline);
    margin-bottom: 16px;
}

.timeline-window {
    background: #13121C;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

/* Chrome bar */
.timeline-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1A1927;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-chrome__dots {
    display: flex;
    gap: 6px;
}

.chrome-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}

.timeline-chrome__title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.02em;
}

.timeline-chrome__rec {
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.rec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: rec-blink 1.2s step-start infinite;
    flex-shrink: 0;
}

@keyframes rec-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Colour ruler */
.timeline-ruler {
    display: flex;
    height: 22px;
    border-bottom: 1px solid var(--border-color);
}

.ruler-seg {
    height: 100%;
    opacity: 0.85;
}

/* Timecodes */
.timeline-timecodes {
    display: flex;
    justify-content: space-between;
    padding: 4px 16px 4px 56px;
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--text-tagline);
    border-bottom: 1px solid var(--border-color);
}

/* Tracks */
.timeline-tracks {
    padding: 6px 0;
}

.track-row {
    display: flex;
    align-items: center;
    height: 26px;
    margin-bottom: 3px;
}

.track-label {
    width: 46px;
    font-size: 0.62rem;
    font-family: monospace;
    color: var(--text-tagline);
    font-weight: 700;
    padding-left: 10px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.track-clips {
    flex: 1;
    display: flex;
    height: 18px;
    align-items: center;
    padding-right: 10px;
}

.clip {
    height: 100%;
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0.9;
}

.clip--music {
    opacity: 0.75;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(0,0,0,0.25) 8px,
        rgba(0,0,0,0.25) 9px
    );
}

/* Status bar */
.timeline-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-top: 1px solid var(--border-color);
    background: #1A1927;
}

.statusbar-left {
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--text-tagline);
    letter-spacing: 0.05em;
}

.statusbar-right {
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.status-green-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    display: inline-block;
}

/* ========================================
   SECTION 5B — EDITING IS EXECUTION
   ======================================== */
.exec-section {
    background-color: var(--bg-primary);
    overflow: hidden;
    padding-bottom: clamp(5rem, 9vw, 7rem);
}

/* Ticker */
.exec-ticker {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    padding: 12px 0;
    margin-bottom: clamp(4rem, 7vw, 6rem);
}

.exec-ticker__track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: ticker-scroll 22s linear infinite;
    width: max-content;
}

.exec-ticker__track span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ticker-dot {
    color: var(--accent-purple-light) !important;
    font-size: 0.5rem !important;
    letter-spacing: 0 !important;
}

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

/* Two-Column Layout */
.exec-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
    margin-bottom: clamp(4rem, 7vw, 6rem);
}

.exec-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.exec-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.75rem);
    font-weight: 800;
    line-height: 1.0;
    color: var(--text-white);
    letter-spacing: -0.04em;
}

.exec-headline--purple {
    color: var(--accent-purple-light);
}

.exec-statement {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 4px;
}

.exec-statement--red {
    color: var(--accent-red);
    margin-bottom: 24px;
}

.exec-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 440px;
}

/* Mobile-only audio wave element */
.mobile-audio-wave {
    display: none;
}

/* Premiere screenshot wrapper */
.exec-edit-wrap {
    text-align: center;
}

.exec-edit-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-tagline);
    margin-bottom: 18px;
}

.exec-premiere {
    background: #111020;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Chrome */
.premiere-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1C1A2E;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.premiere-chrome__title {
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Ruler */
.premiere-ruler {
    display: flex;
    justify-content: space-between;
    padding: 4px 12px;
    font-size: 0.6rem;
    font-family: monospace;
    color: var(--text-tagline);
    background: #14121F;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Color waveform bar at top */
.premiere-waveform-bar {
    display: flex;
    height: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Track rows */
.premiere-tracks {
    padding: 4px 0;
}

.premiere-track {
    display: flex;
    align-items: center;
    height: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.premiere-track__name {
    width: 140px;
    font-size: 0.62rem;
    font-family: monospace;
    color: var(--text-muted);
    padding: 0 10px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.premiere-track__clips {
    flex: 1;
    display: flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    gap: 0;
    overflow: hidden;
}

.pr-clip {
    height: 100%;
    border-radius: 2px;
    flex-shrink: 0;
}

.pr-clip--sm {
    height: 80%;
}

.pr-clip--label {
    font-size: 0.52rem;
    font-family: monospace;
    color: rgba(255,255,255,0.7);
    padding: 0 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

/* Audio waveform strip */
.premiere-audio {
    background: #0D0C18;
    padding: 4px 8px 6px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.premiere-audio__wave {
    height: 14px;
    border-radius: 2px;
}

.pillars-container {


    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

/* ========================================
   SECTION 5C — HOW IT WORKS
   ======================================== */
.hiw-section {
    background-color: var(--bg-primary);
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 7rem);
}

.hiw-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.hiw-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hiw-headline--purple {
    color: var(--accent-purple-light);
}

/* 4-Step Bar */
.hiw-steps {
    display: flex;
    align-items: stretch;
    background: #1C1B2A;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: clamp(4rem, 7vw, 6rem);
}

.hiw-step {
    flex: 1;
    padding: 28px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hiw-step__divider {
    width: 1px;
    background: var(--border-color);
    flex-shrink: 0;
}

.hiw-step__icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 4px;
}

.hiw-step__num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: -0.03em;
    opacity: 0.5;
    line-height: 1;
}

.hiw-step__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
}

.hiw-step__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Deliver Label */
.hiw-deliver-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-tagline);
    text-align: center;
    margin-bottom: 48px;
}

/* Phone Fan */
.hiw-phones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    position: relative;
    height: 420px;
    margin-bottom: 52px;
}

.hiw-phone {
    position: absolute;
    width: 190px;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.hiw-phone__screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

.hiw-phone__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positioning + rotation */
.hiw-phone--center {
    width: 220px;
    height: 390px;
    border-radius: 26px;
    z-index: 3;
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.75);
}

.hiw-phone--left {
    z-index: 2;
    transform: translateX(-140px) translateY(30px) rotate(-8deg);
    border-color: rgba(255,255,255,0.08);
}

.hiw-phone--right {
    z-index: 2;
    transform: translateX(140px) translateY(30px) rotate(8deg);
    border-color: rgba(255,255,255,0.08);
}

.hiw-phone:hover.hiw-phone--left  { transform: translateX(-140px) translateY(16px) rotate(-5deg); }
.hiw-phone:hover.hiw-phone--right { transform: translateX(140px) translateY(16px) rotate(5deg); }
.hiw-phone:hover.hiw-phone--center { transform: translateY(-10px); }

/* BEFORE / AFTER badges on phone screens */
.hiw-phone__badge {
    position: absolute;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(0,0,0,0.65);
    color: #fff;
}

.hiw-phone__badge--before {
    top: 12px;
    left: 10px;
}

.hiw-phone__badge--after {
    top: 12px;
    right: 10px;
    color: #06D6A0;
}

.hiw-phone__badge--green {
    color: #06D6A0;
}

/* CTA */
.hiw-cta {
    text-align: center;
}

.hiw-cta-btn {
    border-radius: var(--radius-full);
    font-size: 1rem;
    padding: 16px 40px;
}

.pillar-item {

    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
}

.pillar-item__number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.pillar-item__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pillar-item__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PRICING */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

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

.pricing-card:hover { transform: translateY(-8px); }

.pricing-card--popular {
    border-color: var(--accent-red);
    background: linear-gradient(180deg, rgba(238, 90, 74, 0.1) 0%, var(--bg-card) 40%);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: var(--radius-full);
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.pricing-card__sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-card__price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 24px;
}

.pricing-card__price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-card__item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-body p {
    padding: 0 26px 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-card--active .faq-body { max-height: 220px; }
.faq-card--active .faq-icon { transform: rotate(180deg); }

/* CTA WRAPPER */
.cta-wrapper {
    background: linear-gradient(135deg, rgba(238, 90, 74, 0.14) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid var(--border-color-hover);
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    text-align: center;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3.5rem 0 2.5rem;
}

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

.footer__brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

.footer__copyright {
    font-size: 0.88rem;
    color: var(--text-tagline);
}

/* ========================================
   SECTION 6 V2 — PRICING
   ======================================== */
.pricing-section {
    background-color: var(--bg-primary);
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 7rem);
    border-top: 1px solid var(--border-color);
}

/* Two-column header */
.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: flex-end;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.pricing-header__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.pricing-header__headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    color: var(--text-white);
    letter-spacing: -0.04em;
}

.pricing-header__headline--red {
    color: var(--accent-red);
}

.pricing-header__right {
    padding-bottom: 8px;
}

.pricing-header__sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-header__link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
}

.pricing-header__link:hover { opacity: 0.75; }

/* Three Cards */
.pricing-v2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pricing-v2-card {
    background: #1a1928;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-v2-card:hover {
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-4px);
}

.pricing-v2-card--popular {
    background: #201f30;
    border-color: rgba(255,255,255,0.12);
}

.pricing-v2-card__tag {
    font-size: 0.68rem;
    color: var(--text-tagline);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-style: italic;
}

.pricing-v2-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.pricing-v2-card__edits {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 22px;
}

.pricing-v2-card__permo {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-v2-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pricing-v2-card__list li {
    font-size: 0.855rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: flex;
    align-items: baseline;
}

.pricing-v2-card__list li::first-letter {
    color: var(--accent-green);
}

/* Buttons */
.pricing-v2-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    letter-spacing: 0.01em;
}

.pricing-v2-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.pricing-v2-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text-muted);
}

.pricing-v2-btn--outline:hover {
    border-color: rgba(255,255,255,0.35);
    color: var(--text-white);
}

.pricing-v2-btn--pink {
    background: linear-gradient(135deg, #FF6B8A, #FF4D6D);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(255,75,109,0.35);
}


/* ========================================
   SECTION 7 — WE BUILD AROUND IDEAS
   ======================================== */
.ideas-section {
    background-color: var(--bg-primary);
    padding: clamp(5rem, 9vw, 8rem) 0;
    border-top: 1px solid var(--border-color);
}

.ideas-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.ideas-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.ideas-headline {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.04;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.ideas-headline--yellow { color: var(--accent-yellow); }

.ideas-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 400px;
}

.ideas-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ideas-card {
    background: #1C1B2A;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.ideas-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

.ideas-card__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}

.ideas-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
}

/* ========================================
   SECTION 8 — BUILD CONTENT THAT COMPOUNDS
   ======================================== */
.compounds-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding-bottom: clamp(5rem, 9vw, 7rem);
}

.compounds-section .exec-ticker {
    margin-bottom: clamp(4rem, 7vw, 6rem);
    border-top: none;
}

.compounds-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.compounds-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.compounds-headline--purple { color: var(--accent-purple-light); }

.compounds-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.compounds-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.compounds-card {
    background: #13121C;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.compounds-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.compounds-card__quote {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.55;
}

.compounds-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compounds-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.compounds-card__name {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-white);
}

.compounds-card__sub {
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--text-tagline);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.compounds-placeholder-note {
    font-size: 0.7rem;
    color: var(--text-tagline);
    letter-spacing: 0.05em;
    font-family: monospace;
    opacity: 0.6;
}












