/* RBRAND Sales Page Styling */

:root {
    /* RBRAND Custom Palette */
    --color-soft-black: #1a1b1c;
    /* Soft dark charcoal */
    --color-bone: #F4F1EA;
    /* Warm bone white */
    --color-purple: #5E2B97;
    /* Deep vibrant purple */
    --color-border: rgba(244, 241, 234, 0.15);
    /* Thin wireframe lines */

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Motion */
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-soft-black);
    color: var(--color-bone);
    font-family: var(--font-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Scale */
h1,
h2,
h3,
h4 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(3rem, 6vw + 1rem, 6rem);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(244, 241, 234, 0.7);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

.headline-break {
    display: none;
    height: 0.32em;
}

.desktop-break {
    display: block;
}

.mobile-break {
    display: none;
}

.desktop-only-break {
    display: inline;
}

/* Highlighted text */
.highlight {
    color: var(--color-purple);
}

.sub-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-purple);
}

.lead {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(244, 241, 234, 0.8);
}

a {
    color: var(--color-bone);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Brutalist Borders */
.b-bottom {
    border-bottom: 1px solid var(--color-border);
}

.b-top {
    border-top: 1px solid var(--color-border);
}

.b-left {
    border-left: 1px solid var(--color-border);
}

.b-right {
    border-right: 1px solid var(--color-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-bone);
    color: var(--color-soft-black);
}

.btn-primary:hover {
    background-color: var(--color-purple);
    color: var(--color-bone);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

.arrow {
    margin-left: 0.5rem;
    font-weight: 900;
    display: inline-block;
    transition: transform var(--transition-speed) ease;
}

.btn:hover .arrow {
    transform: translate(4px, -4px);
}

/* Ignition Loader */
.ignition-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-soft-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.ignition-loader.loaded {
    transform: translateY(-100%);
}

.ignition-line {
    width: 0;
    height: 2px;
    background-color: var(--color-purple);
    box-shadow: 0 0 20px var(--color-purple), 0 0 40px var(--color-purple);
    animation: ignite 1s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

@keyframes ignite {
    0% {
        width: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        width: 100vw;
        opacity: 1;
    }

    100% {
        width: 100vw;
        opacity: 0;
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: transparent;
    z-index: 1000;
    transition: none;
}

.header.scrolled {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.logo-img {
    height: 1.6rem;
    width: auto;
    display: block;
}

/* Hamburger Button */
.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
    width: 32px;
    z-index: 1001;
    padding: 0;
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-bone);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn:hover .hamburger-line {
    background-color: var(--color-purple);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Fullscreen Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(14, 15, 16, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
}

.overlay-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.overlay-link {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-bone);
    letter-spacing: 0.05em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.overlay-link:hover {
    color: var(--color-purple);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo-img {
        height: 1.85rem;
        transform: translateY(1px);
    }
}

/* Footer Motion Background Preserved */
.footer-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    z-index: 1;
    background-image: url('../assets/hero-racing.png');
    background-size: cover;
    background-position: center;
    animation: slowPan 30s infinite alternate ease-in-out;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

/* Cinematic Static Hero */
.hero-cinematic {
    height: 100vh;
    min-height: 800px;
    padding-top: 100px;
    /* Account for nav */
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    /* Hide any overflow from absolute bg */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-cinematic::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: clamp(120px, 16vh, 220px);
    background: linear-gradient(to bottom, rgba(26, 27, 28, 0) 0%, rgba(26, 27, 28, 0.7) 40%, var(--color-soft-black) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Background Supercar Image */
.hero-bg-cinematic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 1200px;
    height: 100vh;
    background-image: url('../assets/hero-racing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Contracted mask to enforce a thick 1+ inch black vignette border around the scene */
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 75%);
    pointer-events: none;
}

/* Massive Centered Title */
.hero-content-massive {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}

.hero-content-massive .hero-title {
    font-size: clamp(3.5rem, 8vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
    /* Use br tags for manual wrapping */
}

.hero-title-mobile {
    display: none;
}

.hero-title-desktop {
    display: inline;
}

@media (max-width: 767px) {
    .hero-content-massive {
        top: 35%;
        /* Push up slightly on mobile */
    }

    .hero-bg-cinematic {
        width: 150%;
        min-width: auto;
    }

    .hero-cinematic::after {
        display: none;
    }
}

/* Split Bottom Row anchored strictly to the bottom */
.hero-bottom-row {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    gap: clamp(2.5rem, 8vw, 8rem);
    padding-left: clamp(2.5rem, 7vw, 7rem);
    padding-right: clamp(2.5rem, 7vw, 7rem);
    /* Push to bottom above the wave mask overlay */
    padding-bottom: clamp(8.5rem, 14vw, 230px);
}

.hero-subtext-wrapper {
    flex: 0 1 auto;
}

.hero-subtext {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--color-bone);
    margin: 0;
    line-height: 1.2;
    padding-bottom: 0.25rem;
}

.hero-subtext .subtext-light {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 400;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.5rem;
}

.hero-cta-wrapper {
    flex: 0 1 auto;
}

.hero-bottom-row .btn-primary {
    font-size: 1.2rem;
    padding: 0.9rem 1.7rem;
    background: var(--color-bone) !important;
    color: var(--color-soft-black) !important;
    border-radius: 0 !important;
    border: 1px solid var(--color-bone) !important;
    box-shadow: none !important;
}

.hero-bottom-row .btn-primary:hover {
    background-color: var(--color-purple) !important;
    border-color: var(--color-purple) !important;
    color: var(--color-bone) !important;
}

@media (max-width: 767px) {
    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: clamp(5rem, 18vw, 8rem);
    }
}



/* Hero Staggered Cascade */
.cascade-1 {
    transition-delay: 0s;
}

.cascade-2 {
    transition-delay: 0.2s;
}

.cascade-3 {
    transition-delay: 0.4s;
}

.cascade-4 {
    transition-delay: 0.6s;
}

.footer-bg {
    animation: none;
    bottom: 0;
    width: 100%;
    right: auto;
    left: 0;
    mask-image: none;
    /* Full background for footer */
    -webkit-mask-image: none;
    opacity: 0.3;
    /* Mix into the dark background */
}

@keyframes slowPan {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}

/* CSS Mask Wave Wrapper (Shared properties) */
.wave-mask-wrapper {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
    background-color: var(--color-purple);
    /* Large checker pattern */
    background-image:
        linear-gradient(45deg, rgba(26, 27, 28, 0.2) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.2) 75%, rgba(26, 27, 28, 0.2)),
        linear-gradient(45deg, rgba(26, 27, 28, 0.2) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.2) 75%, rgba(26, 27, 28, 0.2));
    background-size: 60px 60px;
    /* Much larger */
    background-position: 0 0, 30px 30px;
    /* Pure horizontal animation */
    animation: slideCheckerHoriz 3s linear infinite;
    /* Hardware Acceleration for smooth scrolling */
    transform: translateZ(0);
    will-change: transform;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.hero-wave {
    height: 15vw;
    min-height: 125px;
    max-height: 220px;
    bottom: -16px;
    /* Keep the motif flush with the bottom of the hero */
    /* Uniform-thickness wave ribbon (parallel top/bottom curves) */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox=\"0 0 1440 320\" preserveAspectRatio=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0,150 C360,220 1080,80 1440,150 L1440,270 C1080,200 360,340 0,270 Z\"></path></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox=\"0 0 1440 320\" preserveAspectRatio=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0,150 C360,220 1080,80 1440,150 L1440,270 C1080,200 360,340 0,270 Z\"></path></svg>');
}

.disrupt {
    position: relative;
    background-color: var(--color-soft-black);
}

.footer-wave {
    height: 15vw;
    /* Reverted to original thickness */
    min-height: 150px;
    max-height: 250px;
    position: relative;
    margin-top: -10vw;
    /* Overlap image slightly */
    bottom: auto;
    z-index: 3;
    /* Block S-Curve (flat bottom edge) from Iteration 6 */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,160 C320,300 1120,20 1440,160 L1440,320 L0,320 Z"></path></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,160 C320,300 1120,20 1440,160 L1440,320 L0,320 Z"></path></svg>');
}

@keyframes slideCheckerHoriz {
    0% {
        background-position: 0 0, 30px 30px;
    }

    100% {
        background-position: 60px 0, 90px 30px;
    }
}

/* Animated Checker Strip */
.animated-checker-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--color-purple);
    background-image:
        linear-gradient(45deg, rgba(26, 27, 28, 0.3) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.3) 75%, rgba(26, 27, 28, 0.3)),
        linear-gradient(45deg, rgba(26, 27, 28, 0.3) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.3) 75%, rgba(26, 27, 28, 0.3));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    animation: slideChecker 1s linear infinite;
    z-index: 3;
    /* above content */
    border-top: 1px solid var(--color-border);
}

@keyframes slideChecker {
    from {
        background-position: 0 0, 10px 10px;
    }

    to {
        background-position: 20px 0, 30px 10px;
    }
}

/* Section Specific Overrides */

.disrupt .split-layout {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.shift-full-copy {
    max-width: 1320px;
    padding-top: clamp(3.75rem, 8vw, 6rem);
    padding-bottom: clamp(3.75rem, 7vw, 6rem);
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
    margin: 0 auto;
}

.shift-full-copy .headline {
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.shift-full-copy .lead {
    margin-bottom: clamp(1.25rem, 2.4vw, 1.9rem);
}

.shift-full-copy p {
    margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}

.shift-purple {
    color: var(--color-purple);
}

.shift-purple-desktop {
    display: inline;
}

.shift-purple-mobile {
    display: none;
}

.shift-full-copy .headline {
    white-space: nowrap;
}

.shift-full-copy .headline .shift-purple {
    display: block;
    white-space: nowrap;
}

/* Shift -> Approach transition cleanup */
.disrupt.b-bottom {
    border-bottom: none;
}

/* Approach section: centered intro above cards */
#approach .split-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    padding-top: clamp(2.25rem, 5vw, 4rem);
}

#approach .left-col.sticky-col {
    position: static;
    top: auto;
    height: auto;
    margin: 0 auto;
    text-align: center;
    max-width: 980px;
}

#approach .sub-heading {
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    letter-spacing: 0.12em;
    margin-bottom: clamp(0.85rem, 2vw, 1.4rem);
}

#approach .side-text {
    font-size: clamp(1.35rem, 1.9vw, 2.1rem);
    line-height: 1.28;
    font-weight: 500;
    color: rgba(244, 241, 234, 0.9);
    max-width: 32ch;
    margin: 0 auto;
}

#approach .right-col {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#approach.b-bottom {
    border-bottom: none;
}

/* Split Layouts (For Approach & Disrupt Sections) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 3fr 7fr;
        /* 30/70 split */
    }

    .sticky-col {
        position: sticky;
        top: 120px;
        height: max-content;
    }
}

/* Position Relative Utility */
.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-2 {
    z-index: 2;
}

.w-100 {
    width: 100%;
}

/* Interactive Approach Blocks */
.approach-blocks-container {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
}

.approach-block {
    display: grid;
    grid-template-columns: 1fr;
    cursor: pointer;
    transition: background-color 0.4s ease;
    border: 1px solid var(--color-border);
    background-color: transparent;
    overflow: hidden;
    /* contain the image */
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
    .approach-block {
        grid-template-columns: 1fr 1fr;
    }
}

.block-content {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-content h3 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-bone);
    transition: transform 0.4s ease, color 0.4s ease;
}

.block-content p {
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    color: rgba(244, 241, 234, 0.5);
    transition: color 0.4s ease;
    margin-bottom: var(--spacing-md);
}

.learn-more {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-bone);
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
}

.block-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .block-image-container {
        border-top: none;
    }
}

.block-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 1s ease-out, opacity 0.5s ease;
    /* Smooth transition for src swap */
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Block Hover States */
.approach-block:hover {
    background-color: var(--color-purple);
}

.approach-block:hover .block-content h3 {
    transform: translateX(10px);
    color: var(--color-bone);
}

.approach-block:hover .block-content p {
    color: rgba(244, 241, 234, 0.92);
}

.approach-block:hover .block-img {
    transform: scale(1.05);
}

/* Marquee Ticker & Stylization */
.marquee-wrapper {
    overflow: hidden;
    padding: var(--spacing-lg) 0;
    width: 100%;
}

.tilt-marquee {
    transform: rotate(-2deg) scale(1.05);
    background-color: var(--color-purple) !important;
}

.marquee {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-purple);
    color: var(--color-bone);
    padding: var(--spacing-sm) 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

    /* Scrolls half width assuming content is doubled */
}

/* Rebellion Racing Checker Motif */
/* We simulate this with a repeating linear gradient overlay */
.checker-bg {
    position: relative;
}

.checker-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(26, 27, 28, 0.1) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.1) 75%, rgba(26, 27, 28, 0.1)),
        linear-gradient(45deg, rgba(26, 27, 28, 0.1) 25%, transparent 25%, transparent 75%, rgba(26, 27, 28, 0.1) 75%, rgba(26, 27, 28, 0.1));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
    opacity: 0.5;
}

/* Testimonials Carousel */
.testimonials {
    background-color: var(--color-soft-black);
    color: var(--color-bone);
    overflow: hidden;
}

/* Override padding utility for the gallery feel */
.pb-4 {
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.proof-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.proof-headline {
    margin-bottom: 0;
    max-width: 11ch;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.testimonial-carousel {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 calc(50% - var(--spacing-md));
    min-width: 300px;
    padding: 2rem 2rem 3.5rem;
    background-color: #f1ede4;
    /* Light card */
    color: var(--color-soft-black);
    /* Dark text */
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.testimonial-card .client-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-purple);
}

.testimonial-card p {
    font-size: 1.08rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--color-soft-black);
    line-height: 1.65;
    max-width: 34ch;
}

.testimonial-card-long p {
    font-size: 0.97rem;
    line-height: 1.72;
    max-width: 38ch;
}

.quote-mark {
    position: absolute;
    bottom: 0.75rem;
    right: 1.1rem;
    font-size: 2.75rem;
    font-family: serif;
    color: var(--color-purple);
    opacity: 0.18;
    line-height: 0.5;
}

/* Control Arrows */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.carousel-prev,
.carousel-next {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(244, 241, 234, 0.24);
    color: var(--color-bone);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.carousel-prev:hover {
    transform: translateX(-5px);
    color: var(--color-purple);
    border-color: var(--color-purple);
    background-color: rgba(94, 43, 151, 0.08);
}

.carousel-next:hover {
    transform: translateX(5px);
    color: var(--color-purple);
    border-color: var(--color-purple);
    background-color: rgba(94, 43, 151, 0.08);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(40% - var(--spacing-md));
    }
}

@media (max-width: 767px) {
    .disrupt .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-break {
        display: block;
    }

    .desktop-only-break {
        display: none;
    }

    .headline-break {
        display: block;
    }

    .desktop-break {
        display: block;
    }

    .header {
        padding: 0.7rem 0.85rem;
        justify-content: space-between;
    }

    .logo-img {
        height: 1.3rem;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        white-space: nowrap;
        opacity: 0.9;
    }

    .cta-header {
        display: none;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
        padding-top: 64px;
        padding-bottom: 0;
    }

    .hero .container {
        min-height: auto;
        display: flex;
        align-items: center;
        padding-top: 0.5rem;
    }

    .hero-content {
        max-width: 24rem;
        padding-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(3.2rem, 12.5vw, 4.1rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 18ch;
    }

    .hero-bg {
        width: 96%;
        right: -22%;
        bottom: 3.25rem;
        background-position: 72% 45%;
    }

    .hero-cinematic {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content-massive {
        top: 39%;
        left: 0;
        transform: translateY(-50%);
        text-align: left;
        padding-left: 0.85rem;
        padding-right: 1rem;
        width: 74%;
        max-width: none;
    }

    .hero-content-massive .hero-title {
        font-size: clamp(4.9rem, 19.2vw, 6.4rem);
        line-height: 0.9;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 74vw;
    }

    .hero-title-desktop {
        display: none;
    }

    .hero-title-mobile {
        display: inline;
        line-height: 0.88;
    }

    .hero-bg-cinematic {
        width: 142%;
        min-width: auto;
        transform: translate(-50%, -50%);
        background-position: 60% 58%;
        -webkit-mask-image: radial-gradient(ellipse 95% 84% at 50% 50%, black 54%, transparent 100%);
        mask-image: radial-gradient(ellipse 95% 84% at 50% 50%, black 54%, transparent 100%);
    }

    .hero-cinematic::after {
        display: block;
        height: 52vh;
        bottom: 0;
        background: linear-gradient(to bottom,
                rgba(26, 27, 28, 0) 0%,
                rgba(26, 27, 28, 0.34) 40%,
                rgba(26, 27, 28, 0.84) 74%,
                var(--color-soft-black) 100%);
    }

    .hero-bottom-row {
        padding-bottom: clamp(4.4rem, 14vw, 5.8rem);
        gap: 1.8rem;
    }

    .hero-subtext {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
        margin-bottom: 0.2rem;
    }

    .hero-bottom-row .btn-primary {
        font-size: 0.95rem;
        padding: 0.75rem 1.35rem;
    }

    .hero-wave {
        height: 21vw;
        min-height: 84px;
        max-height: 118px;
        bottom: -4px;
    }

    .hero-cta .btn {
        padding: 0.85rem 1.4rem;
    }

    .hero-cta {
        margin-top: 1.15rem;
    }

    .shift-full-copy {
        padding-top: 2.25rem;
        padding-bottom: 3.25rem;
        padding-left: 0;
        padding-right: 0;
    }

    .shift-full-copy .headline .shift-purple {
        display: block;
        white-space: normal;
    }

    .shift-full-copy .headline {
        white-space: normal;
        font-size: clamp(1.68rem, 7.5vw, 2rem);
        line-height: 1.1;
    }

    .shift-purple-desktop {
        display: none;
    }

    .shift-purple-mobile {
        display: inline;
    }

    .shift-purple-mobile .shift-line-one,
    .shift-purple-mobile .shift-line-two {
        display: block;
        white-space: nowrap;
    }

    #approach .sub-heading {
        font-size: 1.05rem;
    }

    #approach .side-text {
        font-size: clamp(1.15rem, 5.2vw, 1.55rem);
        max-width: 100%;
        text-align: left;
    }

    #approach .left-col.sticky-col {
        text-align: left;
    }

    .proof-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    /* Cinematic Approach Cards */
    .approach-block {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        min-height: 60vh;
        margin-bottom: var(--spacing-md);
        border: 1px solid rgba(244, 241, 234, 0.1);
        border-radius: 4px;
        overflow: hidden;
        padding: 0;
        background-color: var(--color-soft-black);
    }

    .block-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        max-width: none;
        border: none;
        z-index: 1;
    }

    .block-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
        /* Starting opacity, JS scales to 1 */
        transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
    }

    /* Text Overlay */
    .block-content {
        position: relative;
        z-index: 2;
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
        background: linear-gradient(to top, rgba(14, 15, 16, 0.95) 0%, rgba(14, 15, 16, 0.8) 45%, transparent 100%);
        width: 100%;
        margin: 0;
        justify-content: flex-end;
        /* Push text down */
    }

    .block-content h3 {
        margin-bottom: 0.5rem;
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .block-content p {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.4;
        color: rgba(244, 241, 234, 0.9);
    }

    .left-col.sticky-col {
        position: static;
        margin-bottom: var(--spacing-md);
    }
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.pricing-card {
    border: 1px solid var(--color-border);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.pricing-card:hover {
    background-color: rgba(244, 241, 234, 0.02);
}

/* Featured / Best Value Tier */
.pricing-card.featured {
    background-color: rgba(244, 241, 234, 0.04);
    border-color: rgba(244, 241, 234, 0.3);
    position: relative;
}

.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-purple);
    color: var(--color-bone);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        /* Remove gap to collapse borders */
    }

    .pricing-card {
        margin-left: -1px;
        /* Overlap borders */
    }

    .pricing-card:first-child {
        margin-left: 0;
    }

    .pricing-card.featured {
        z-index: 2;
        /* Keep featured border on top */
    }
}

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

.pricing-tier {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bone);
    margin-bottom: var(--spacing-xs);
}

.pricing-price {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--color-purple);
    line-height: 1;
}

.pricing-frequency {
    font-size: 0.875rem;
    color: rgba(244, 241, 234, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
}

/* FAQ Accordion */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-3 {
    padding: 1rem 0;
}

.pt-5 {
    padding-top: 4rem;
}

.pb-5 {
    padding-bottom: 4rem;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-bone);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    color: var(--color-purple);
    padding-left: 10px;
}

.chevron {
    font-size: 1rem;
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large number */
    padding-bottom: var(--spacing-md);
}

/* Line-by-line heading reveals */
.line-reveal {
    opacity: 1;
}

.line-reveal-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.line-reveal-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease;
    will-change: transform, opacity;
}

.line-word {
    display: inline-block;
    margin-right: 0.22em;
}

.line-reveal.line-reveal-active-forward .line-reveal-inner,
.line-reveal.line-reveal-active-reverse .line-reveal-inner {
    transform: translateY(0);
    opacity: 1;
}

.line-reveal.line-reveal-hidden-top .line-reveal-inner {
    transform: translateY(-110%);
    opacity: 0;
}

.line-reveal.line-reveal-hidden-bottom .line-reveal-inner {
    transform: translateY(110%);
    opacity: 0;
}

.line-reveal.line-reveal-active-forward .line-reveal-inner,
.line-reveal.line-reveal-hidden-top .line-reveal-inner {
    transition-delay: calc(var(--line-index) * 90ms);
}

.line-reveal.line-reveal-active-reverse .line-reveal-inner,
.line-reveal.line-reveal-hidden-bottom .line-reveal-inner {
    transition-delay: calc((var(--line-count) - var(--line-index) - 1) * 90ms);
}

/* Reusable Animations */
.reveal-text {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-text.hidden-bottom {
    transform: translateY(30px);
}

.reveal-text.hidden-top {
    transform: translateY(-30px);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}
