/* ============================================================
   REVAMP.CSS : WebMar Studio Visual Refresh
   Motion-forward, Motionfly-inspired design layer.
   NEVER change brand color tokens. Only ADD neutral tints,
   blur accents, spacing refinements, and motion definitions.
   Loaded after all existing CSS : inherits all custom props.
   ============================================================ */

/* ============================================================
   DESIGN TOKENS : spacing scale, motion timings, type scale
   ============================================================ */
:root {
    /* Motion timings */
    --ease-expo-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back-out:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --dur-fast:   0.25s;
    --dur-base:   0.55s;
    --dur-slow:   0.85s;
    --dur-crawl:  1.1s;

    /* Section rhythm */
    --section-gap: clamp(5rem, 8vw + 1rem, 9rem);

    /* Soft tints : NO hue change; just opacity overlays of brand colors */
    --tint-ocean-5:  rgba(10, 77, 104, 0.05);
    --tint-ocean-8:  rgba(10, 77, 104, 0.08);
    --tint-aqua-6:   rgba(5, 191, 219, 0.06);
    --tint-aqua-12:  rgba(5, 191, 219, 0.12);
    --tint-coral-8:  rgba(255, 140, 66, 0.08);

    /* Blur glow radii */
    --glow-aqua:  0 0 60px rgba(5, 191, 219, 0.18);
    --glow-ocean: 0 0 80px rgba(10, 77, 104, 0.22);
}

/* ============================================================
   BODY FADE-IN : cinematic first-paint entry
   ============================================================ */
html, body {
    overflow-x: hidden;
}

body {
    opacity: 0;
    animation: bodyReveal 0.6s var(--ease-smooth) 0.05s forwards;
}

@keyframes bodyReveal {
    to { opacity: 1; }
}

/* Lang-switch restore: keep page invisible until JS scrolls to saved position. */
html.lang-restoring body {
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
}

/* Safety net: revamp.js force-sets opacity:1 on load in case the animation
   is paused (background tab, throttled mobile browser, etc). */

/* ============================================================
   SCROLL REVEAL : universal section-element entrance
   Applied by revamp.js via IntersectionObserver.
   Extend: add .rv-up, .rv-left, .rv-right, .rv-scale
   ============================================================ */
.rv-hidden {
    opacity: 0;
    transform: translateY(44px);
    transition:
        opacity var(--dur-slow) var(--ease-expo-out),
        transform var(--dur-slow) var(--ease-expo-out);
}

.rv-hidden.rv-scale-init {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition:
        opacity var(--dur-base) var(--ease-expo-out),
        transform var(--dur-base) var(--ease-expo-out);
}

.rv-hidden.rv-left-init {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity var(--dur-slow) var(--ease-expo-out),
        transform var(--dur-slow) var(--ease-expo-out);
}

.rv-hidden.rv-right-init {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity var(--dur-slow) var(--ease-expo-out),
        transform var(--dur-slow) var(--ease-expo-out);
}

.rv-visible {
    opacity: 1 !important;
    transform: none !important;
}

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

/* Ensure hero-content is a positioned ancestor for the blob */
.hero-content {
    position: relative;
}

/* Soft gradient blob behind hero text. Clamped on mobile to prevent overflow. */
.hero-content {
    overflow: visible;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    max-width: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(5, 191, 219, 0.12) 0%,
        rgba(10, 77, 104, 0.06) 45%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: blobFloat 14s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-content::before {
        top: -40px;
        left: -10vw;
        width: 80vw;
        height: 80vw;
    }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -30px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.96); }
}

/* Animated underline on the hero highlight title line */
.title-line.highlight {
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-light);
    border-radius: 2px;
    animation: underlineGrow 0.9s var(--ease-expo-out) 0.7s forwards;
}

@keyframes underlineGrow {
    to { width: 100%; }
}

/* Hero floating cards : lift + glow on hover */
.floating-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition:
        box-shadow var(--dur-base) var(--ease-expo-out),
        border-color var(--dur-base) var(--ease-expo-out),
        transform 0.6s var(--ease-expo-out);
}

.floating-card:hover {
    border-color: var(--aqua);
    box-shadow: 0 30px 60px -15px rgba(10, 77, 104, 0.3), var(--glow-aqua);
}

/* ============================================================
   NAV ENHANCEMENTS
   ============================================================ */
.nav {
    transition:
        background var(--dur-base) var(--ease-smooth),
        box-shadow var(--dur-base) var(--ease-smooth),
        padding var(--dur-base) var(--ease-smooth);
}

.nav-container {
    transition: padding var(--dur-base) var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 1px 0 rgba(10, 77, 104, 0.08), 0 4px 24px rgba(10, 77, 104, 0.08);
}

.nav.scrolled .nav-container {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/* ============================================================
   SECTION LABEL : pill badge reveal feel
   ============================================================ */
.section-label {
    animation: none; /* controlled by rv- classes */
    transition: transform var(--dur-base) var(--ease-back-out);
}

/* ============================================================
   SECTION TITLE : tighter display rhythm
   ============================================================ */
.section-title {
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ============================================================
   SECTION DIVIDERS : soft gradient fade instead of hard break
   Each white section transitions into the next via a thin
   gradient overlay at the bottom edge.
   ============================================================ */
.section {
    position: relative;
}

.section + .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(10, 77, 104, 0.10) 20%,
        rgba(5, 191, 219, 0.18) 50%,
        rgba(10, 77, 104, 0.10) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
}

/* Reveal the divider when the section is in view */
.section.in-view + .section::before,
.section + .section.in-view::before {
    opacity: 1;
}

/* ============================================================
   BUTTON ENHANCEMENTS
   ============================================================ */

/* Magnetic wrapper: JS will apply transform here */
.btn-mag-wrapper {
    display: inline-block;
    transition: transform 0.4s var(--ease-expo-out);
}

/* Scale-down on press for all buttons */
.btn:active {
    transform: scale(0.97) translateY(1px) !important;
}

/* Border glow on focus-visible */
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 191, 219, 0.5);
}

/* Primary button : stop pulsing after hover, add glow layer */
.btn-primary {
    position: relative;
    isolation: isolate;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--gradient-ocean);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity var(--dur-base) var(--ease-smooth);
}

.btn-primary:hover::after {
    opacity: 0.5;
}

/* ============================================================
   SERVICE CARDS : border highlight on hover
   ============================================================ */
.service-card {
    border: 1px solid transparent;
    transition:
        transform 0.4s var(--ease-expo-out),
        box-shadow 0.4s var(--ease-expo-out),
        border-color 0.4s var(--ease-smooth);
}

.service-card:hover {
    border-color: rgba(5, 191, 219, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(10, 77, 104, 0.18), var(--glow-aqua);
}

/* ============================================================
   TESTIMONIAL CARDS : reveal + lift
   ============================================================ */
.testimonial-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition:
        transform 0.4s var(--ease-expo-out),
        box-shadow 0.4s var(--ease-expo-out),
        border-color 0.35s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(10, 77, 104, 0.15);
    border-color: rgba(5, 191, 219, 0.3);
}

/* ============================================================
   WOD COMPARISON CARDS : enhanced hover depth
   Extends packages.css existing border/bg styles.
   ============================================================ */
.wod-new-way:hover {
    box-shadow: 0 16px 40px -8px rgba(5, 191, 219, 0.25), var(--glow-aqua) !important;
    transform: translateY(-6px) !important;
}

.wod-old-way:hover {
    box-shadow: 0 12px 30px -6px rgba(220, 38, 38, 0.12) !important;
    transform: translateY(-4px) !important;
}

/* ============================================================
   GEO CARDS : stronger hover
   ============================================================ */
.geo-card {
    transition:
        transform 0.4s var(--ease-expo-out),
        box-shadow 0.4s var(--ease-expo-out),
        border-color 0.35s var(--ease-smooth);
}

.geo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -8px rgba(10, 77, 104, 0.14), var(--glow-aqua);
}

/* ============================================================
   PACKAGE CARDS : lift + glow
   ============================================================ */
.package-card {
    transition:
        transform 0.4s var(--ease-expo-out),
        box-shadow 0.4s var(--ease-expo-out),
        border-color 0.4s var(--ease-smooth);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -12px rgba(10, 77, 104, 0.2);
}

.package-card-featured:hover {
    box-shadow: 0 28px 56px -14px rgba(5, 191, 219, 0.3), var(--glow-aqua);
}

/* ============================================================
   PORTFOLIO ITEMS : uniform reveal treatment
   ============================================================ */
.portfolio-item {
    transition:
        transform 0.4s var(--ease-expo-out),
        box-shadow 0.4s var(--ease-expo-out);
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

/* ============================================================
   CURSOR ACCENT : small dot follower on desktop
   Hidden on touch/mobile. Subtle aqua ring.
   ============================================================ */
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
    .rv-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 14px;
        height: 14px;
        border: 2px solid rgba(5, 191, 219, 0.7);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9990;
        will-change: transform;
        backface-visibility: hidden;
        mix-blend-mode: multiply;
        transition:
            width 0.3s var(--ease-expo-out),
            height 0.3s var(--ease-expo-out),
            border-color 0.3s var(--ease-smooth),
            opacity 0.25s ease;
    }

    .rv-cursor.rv-cursor-hover {
        width: 36px;
        height: 36px;
        border-color: rgba(5, 191, 219, 0.5);
        background: rgba(5, 191, 219, 0.06);
    }

    .rv-cursor.rv-cursor-click {
        width: 10px;
        height: 10px;
        border-color: rgba(255, 140, 66, 0.8);
    }
}

/* ============================================================
   SCROLL PROGRESS : refinement (already exists in JS,
   this just makes it a bit thicker and adds a glow)
   ============================================================ */

/* The progress bar is injected inline by immersive-interactions.js.
   We intercept it via the class we'll add in revamp.js. */
.rv-scroll-bar {
    height: 3px !important;
    background: linear-gradient(90deg, var(--deep-ocean), var(--teal), var(--aqua), var(--coral)) !important;
    box-shadow: 0 0 8px rgba(5, 191, 219, 0.4);
}

/* ============================================================
   SOCIAL PROOF : result number pop
   ============================================================ */
.result-number {
    transition: transform 0.3s var(--ease-back-out);
}

.testimonial-card:hover .result-number {
    transform: scale(1.08);
}

/* ============================================================
   ABOUT SECTION : paragraph rhythm
   ============================================================ */
.about-paragraph {
    line-height: 1.85;
}

/* ============================================================
   WOD PRICE TAGS : hover float
   ============================================================ */
.wod-price-tag {
    transition:
        transform 0.35s var(--ease-back-out),
        box-shadow 0.35s var(--ease-smooth);
    cursor: default;
}

.wod-price-tag:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 20px rgba(10, 77, 104, 0.15);
}

/* ============================================================
   REDUCED MOTION : full disable of all new animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none !important;
        opacity: 1 !important;
    }

    .rv-hidden,
    .rv-hidden.rv-scale-init,
    .rv-hidden.rv-left-init,
    .rv-hidden.rv-right-init {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-content::before {
        animation: none !important;
    }

    .title-line.highlight::after {
        animation: none !important;
        width: 100%;
    }

    .rv-cursor {
        display: none !important;
    }

    .btn:active { transform: none !important; }

    .floating-card,
    .service-card,
    .testimonial-card,
    .wod-old-way,
    .wod-new-way,
    .geo-card,
    .package-card,
    .portfolio-item,
    .wod-price-tag {
        transition: none !important;
    }
}

/* ============================================================
   STAGGER UTILITIES : applied dynamically by revamp.js
   ============================================================ */
.rv-stagger-1 { transition-delay: 0.08s; }
.rv-stagger-2 { transition-delay: 0.16s; }
.rv-stagger-3 { transition-delay: 0.24s; }
.rv-stagger-4 { transition-delay: 0.32s; }
.rv-stagger-5 { transition-delay: 0.40s; }
.rv-stagger-6 { transition-delay: 0.48s; }

/* ============================================================
   FOOTER POLISH : consistent spacing across all pages.
   Fluid column gap, even alignment, calmer hierarchy.
   ============================================================ */
.footer-content {
    gap: clamp(2rem, 5vw, 5rem) !important;
    align-items: start;
}

.footer-content > div {
    align-self: start;
    min-width: 0;
}

.footer-column h4 {
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.95;
}

.footer-column a {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-brand p {
    margin-bottom: 1.25rem;
}

.footer-contact > div {
    margin-bottom: 0.85rem;
}

.footer-contact .icon {
    width: 18px;
    height: 18px;
    color: var(--aqua, #05BFDB);
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .footer-content {
        grid-template-columns: 2.4fr 1fr 1.2fr 1fr;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem !important;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ============================================================
   MUSICIANS NICHE : niche-specific visual layer
   Scoped to .musicians-* classes. No brand color changes.
   Radically simplified 2026-04: HERO + PAIN + 3 FEATURES + CASE STUDY.
   ============================================================ */

/* ---- HERO ---- */

.musicians-hero {
    position: relative;
    overflow: hidden;
    /* kill landing-hero default bottom padding so next section's top padding
       provides the only inter-section gap */
    padding-bottom: 0;
}

.musicians-hero-inner {
    position: relative;
    z-index: 1;
}

.musicians-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(
        ellipse at center,
        rgba(5, 191, 219, 0.08) 0%,
        rgba(10, 77, 104, 0.04) 50%,
        transparent 72%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

/* Soundwave SVG decoration */
.musicians-soundwave {
    display: block;
    width: clamp(160px, 30vw, 280px);
    height: auto;
    color: var(--aqua);
    opacity: 0.13;
    margin-bottom: 1.25rem;
    pointer-events: none;
}

/* Niche label (ALL-CAPS pre-headline) */
.musicians-niche-label {
    display: inline-block;
    font-family: 'Inconsolata', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--tint-aqua-6);
    border: 1px solid rgba(5, 191, 219, 0.2);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
}

/* Hero two-column split. No internal padding — landing-hero outer already provides it. */
.musicians-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.musicians-hero-copy {
    position: relative;
    z-index: 2;
}

.musicians-hero-lang-link {
    margin: 4rem 0 0 !important;
    font-size: 0.9rem;
}

/* Hero CTAs row */
.musicians-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Mockup / image column */
.musicians-hero-mockup {
    position: relative;
    z-index: 1;
    will-change: transform;
}

/* Caption below hero image */
.musicians-hero-mockup-caption {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--gray-400);
    text-align: center;
    font-style: italic;
}

.musicians-hero-mockup-caption a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .musicians-hero-split {
        grid-template-columns: 1fr;
    }

    .musicians-hero-mockup {
        order: -1;
    }
}

/* ---- CLEAN SCREENSHOT FRAME ---- */
/* Used for hero image and all 3 feature screenshots and case study image.
   No browser chrome. Rounded corners, soft drop shadow, natural crop. */

.joao-screenshot-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.08),
        0 20px 60px -10px rgba(10, 77, 104, 0.20);
}

.joao-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
    /* Render at natural aspect — no cropping. Mixed-aspect screenshots
       (panoramic, square, tall) all show full content. */
    vertical-align: bottom;
}

/* Tall variant for case study full-page screenshot */
.joao-screenshot-frame--tall {
    max-height: 480px;
    overflow: hidden;
}

.joao-screenshot-frame--tall img {
    aspect-ratio: unset;
    height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* ---- PAIN LIST (plain text, no cards) ---- */

/* Narrow container helper */
.landing-container--narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain section headline */
.musicians-section-headline {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
    font-weight: 700;
    color: var(--deep-ocean);
    margin: 0 0 1.5rem;
}

/* Numbered pain list — plain prose, no card borders */
.musicians-pain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    counter-reset: pain-counter;
}

.musicians-pain-list li {
    counter-increment: pain-counter;
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    align-items: start;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.65;
}

.musicians-pain-list li::before {
    content: counter(pain-counter, decimal-leading-zero);
    font-family: 'Inconsolata', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    padding-top: 0.25rem;
}

/* ---- FEATURE ROWS (3 only) ---- */

.musicians-features-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 5rem);
    margin-top: 2.5rem;
}

.musicians-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

/* Reverse layout: text-image instead of image-text */
.musicians-feature-row--reverse .musicians-feature-row-text {
    order: 1;
}

.musicians-feature-row--reverse .musicians-feature-row-img {
    order: 2;
}

.musicians-feature-row-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.musicians-feature-row-text h3 {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
    font-weight: 700;
    color: var(--deep-ocean);
    line-height: 1.2;
    margin: 0;
}

.musicians-feature-row-text p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.musicians-feature-row-img {
    position: relative;
}

@media (max-width: 768px) {
    .musicians-feature-row,
    .musicians-feature-row--reverse {
        grid-template-columns: 1fr;
    }

    .musicians-feature-row--reverse .musicians-feature-row-text,
    .musicians-feature-row--reverse .musicians-feature-row-img {
        order: unset;
    }
}

/* ---- CASE STUDY FULLBLEED ---- */

.musicians-casestudy-fullbleed {
    background: linear-gradient(160deg, var(--deep-ocean) 0%, var(--ocean-dark) 60%, #051f2c 100%);
    color: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.musicians-casestudy-fullbleed::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(5, 191, 219, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(10, 77, 104, 0.30) 0%, transparent 50%);
    pointer-events: none;
}

.musicians-casestudy-fullbleed .post-container {
    position: relative;
    z-index: 1;
}

.musicians-casestudy-fullbleed-eyebrow {
    display: inline-block;
    font-family: 'Inconsolata', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aqua);
    border: 1px solid rgba(5, 191, 219, 0.3);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.5rem;
}

.musicians-casestudy-fullbleed h2 {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(1.8rem, 1.4rem + 1.8vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 clamp(2.5rem, 5vw, 4rem);
    max-width: 720px;
}

.musicians-casestudy-fullbleed-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.musicians-casestudy-fullbleed-device {
    position: relative;
    max-height: 560px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.musicians-casestudy-fullbleed-device .joao-screenshot-frame,
.musicians-casestudy-fullbleed-device .joao-screenshot-frame--tall {
    max-height: 560px;
    overflow: hidden;
}

.musicians-casestudy-fullbleed-body {
    padding: 0;
}

.musicians-casestudy-fullbleed-body p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.musicians-casestudy-fullbleed-note {
    margin: 3.5rem 0 0 !important;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    font-style: italic;
}

.musicians-casestudy-fullbleed-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .musicians-casestudy-fullbleed-layout {
        grid-template-columns: 1fr;
    }
}

/* ---- PRICING CTA BLOCK ---- */

.musicians-pricing-cta {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.musicians-pricing-cta h2 {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
    font-weight: 700;
    color: var(--deep-ocean);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.musicians-pricing-cta p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.musicians-pricing-cta .musicians-hero-ctas {
    justify-content: center;
}

/* ---- FINAL CLOSING LINE ---- */

.musicians-closing-line {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.9rem);
    font-weight: 700;
    color: var(--deep-ocean);
    line-height: 1.25;
    max-width: 640px;
    margin: 0 auto;
}

/* ---- PARALLAX SCROLL (applied via JS) ---- */

.musicians-hero-mockup[data-parallax] {
    will-change: transform;
}

/* ---- REDUCED MOTION ---- */

@media (prefers-reduced-motion: reduce) {
    .musicians-hero::before {
        animation: none !important;
    }

    .musicians-hero-mockup[data-parallax] {
        transform: none !important;
    }
}

/* ---- 2x2 GRID OVERRIDE FOR 4-CARD SECTIONS ---- */
.landing-grid-3.grid-2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
    .landing-grid-3.grid-2x2 {
        grid-template-columns: 1fr;
    }
}
