/* ==========================================================================
   CHABIG.AI - MASTER THEPATCHSYSTEM DESIGN SYSTEM STYLESHEET
   100% Faithful Replica of https://thepatchsystem.com/ai
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Instrument+Serif:ital@0;1&display=swap");

@font-face {
    font-family: "PP Right";
    src: url("/fonts/PPRightGrotesk-CompactDark.otf") format("opentype"),
         url("fonts/PPRightGrotesk-CompactDark.otf") format("opentype"),
         url("../fonts/PPRightGrotesk-CompactDark.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* RESET & CORE VARIABLES */
*, *::before, *::after {
    margin: 0; padding: 0; border: 0;
    border-style: solid; font: inherit;
    vertical-align: baseline; box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:after, blockquote:before, q:after, q:before { content: ""; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
h1, h2, h3, h4, h5, h6 { font-size: 1em; }
input { box-sizing: border-box; }

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes ai-border-spin {
    to { --border-angle: 1turn; }
}

:root {
    --red: #ff1e27;
    --red-dark: #d60017;
    --red-glow: rgba(255, 30, 39, 0.45);
    --orange: #ff622b;
    --purple: #b15af8;
    --dark: #000000;
    --black: #040404;
    --card-bg: #131313;
    --border-color: rgba(244, 244, 244, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
    --gray-text: #a3a3a3;
    --gray-muted: #737373;
    --white: #ffffff;
    --app-height: 100%;
}

html {
    font-size: 0.6613756614vw;
    scroll-behavior: initial;
    background-color: #000000;
    color: #f4f4f4;
    overflow-x: clip;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar { display: none; }

@media screen and (orientation: portrait) and (max-width: 800px),
       screen and (orientation: landscape) and (max-width: 1200px) and (max-height: 600px) {
    html { font-size: 2.6666666667vw; }
}

body {
    font-family: Archivo, sans-serif;
    color: #f4f4f4;
    font-weight: 400;
    font-size: 1.5rem;
    background-color: #040404;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 9.44rem 9.44rem;
    background-position: -4.72rem 4.72rem;
    min-height: 100%;
    height: auto;
    overflow-x: clip;
}

@media screen and (orientation: portrait) and (max-width: 800px),
       screen and (orientation: landscape) and (max-width: 1200px) and (max-height: 600px) {
    body {
        background-size: 7.05rem 7.05rem;
        background-position: -2.4675rem 3.525rem;
    }
}

a { text-decoration: none; color: inherit; }
img, picture, svg { pointer-events: none; max-width: 100%; }

button, input, select, textarea {
    font-family: Archivo, sans-serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    outline: 0;
    background: 0 0;
}

label { user-select: none; }
::-moz-selection { background-color: var(--red); color: #fff; }
::selection { background-color: var(--red); color: #fff; }

@media screen and (orientation: portrait) and (max-width: 800px),
       screen and (orientation: landscape) and (max-width: 1200px) and (max-height: 600px) {
    .u-hideMobile { display: none !important; }
}

@media screen and (min-width: 801px) {
    .u-showMobile { display: none !important; }
}

#main { z-index: 1; position: relative; }

/* ==========================================================================
   TYPOGRAPHY - CONDENSED HEADINGS MATCHING INDEX.HTML & THEPATCHSYSTEM
   ========================================================================== */
.h1, .h2, .h3, .h4, .heading, h1, h2, h3, h4 {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 0.94;
}

.h1 { font-size: 14rem; letter-spacing: 0.02em; }
.h2 { font-size: 10rem; }
.h3 { font-size: 7rem; }
.h4 { font-size: 5rem; }

@media screen and (orientation: portrait) and (max-width: 800px),
       screen and (orientation: landscape) and (max-width: 1200px) and (max-height: 600px) {
    .h1 { font-size: 5.5rem; }
    .h2 { font-size: 4rem; }
    .h3 { font-size: 3rem; }
}

/* 3D Perspective Roll-down Headings (.h-anim) */
.h-anim { opacity: 0; }
.h-anim .h-line {
    position: relative;
    display: block;
    overflow: hidden;
    perspective: 200vw;
    transform-style: preserve-3d;
    padding: 0 5rem;
    margin: 0 -5rem;
}

.h-anim .h-word {
    display: inline-block;
    transform: translateY(75%) rotateX(-88deg);
    transform-origin: 50% 75%;
    transform-style: preserve-3d;
}

.h-anim.in { opacity: 1; }
.h-anim.in .h-word {
    transform: translateY(0) rotateX(0);
    transition: transform 0.7s cubic-bezier(0, 0, 0, 1);
}

.h-anim.in .h-line:nth-child(1) [data-i="1"] { transition-delay: 0s; }
.h-anim.in .h-line:nth-child(1) [data-i="2"] { transition-delay: 0.08s; }
.h-anim.in .h-line:nth-child(1) [data-i="3"] { transition-delay: 0.16s; }
.h-anim.in .h-line:nth-child(1) [data-i="4"] { transition-delay: 0.24s; }
.h-anim.in .h-line:nth-child(1) [data-i="5"] { transition-delay: 0.32s; }
.h-anim.in .h-line:nth-child(2) [data-i="1"],
.h-anim.in .h-line:nth-child(2) [data-i="6"] { transition-delay: 0.28s; }
.h-anim.in .h-line:nth-child(2) [data-i="2"],
.h-anim.in .h-line:nth-child(2) [data-i="7"] { transition-delay: 0.36s; }
.h-anim.in .h-line:nth-child(2) [data-i="3"],
.h-anim.in .h-line:nth-child(2) [data-i="8"] { transition-delay: 0.44s; }
.h-anim.in .h-line:nth-child(2) [data-i="4"],
.h-anim.in .h-line:nth-child(2) [data-i="9"] { transition-delay: 0.52s; }
.h-anim.in .h-line:nth-child(3) [data-i="1"],
.h-anim.in .h-line:nth-child(3) [data-i="10"] { transition-delay: 0.48s; }
.h-anim.in .h-line:nth-child(3) [data-i="2"],
.h-anim.in .h-line:nth-child(3) [data-i="11"] { transition-delay: 0.56s; }
.h-anim.in .h-line:nth-child(3) [data-i="3"],
.h-anim.in .h-line:nth-child(3) [data-i="12"] { transition-delay: 0.64s; }
.h-anim.in .h-line:nth-child(4) [data-i="1"],
.h-anim.in .h-line:nth-child(4) [data-i="13"] { transition-delay: 0.68s; }
.h-anim.in .h-line:nth-child(4) [data-i="2"],
.h-anim.in .h-line:nth-child(4) [data-i="14"] { transition-delay: 0.76s; }

/* Glowing Text Layers (.aiHero__heading & .aiText) */
.aiHero__heading .h-line:nth-child(3) .h-word, .aiText {
    position: relative;
}

.aiHero__heading .h-line:nth-child(3) .h-word::before, .aiText::before {
    content: attr(data-content);
    position: absolute;
    top: .5rem; left: 0; width: 100%;
    color: var(--red);
    z-index: -1;
    filter: blur(.5rem);
    transform: scaleX(1.01);
}

.aiHero__heading .h-line:nth-child(3) .h-word::after, .aiText::after {
    content: attr(data-content);
    position: absolute;
    top: 1rem; left: 0; width: 100%;
    color: var(--orange);
    z-index: -2;
    filter: blur(1rem);
    transform: scaleX(1.02);
}

/* ==========================================================================
   BUTTONS - 3D PERSPECTIVE FLIP BUTTONS
   ========================================================================== */
.button, .button--ai {
    background: linear-gradient(104deg, #ff1e27 12.08%, #ff622b 93.89%);
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    white-space: nowrap;
    padding: 0 3.5rem;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.button:hover, .button--ai:hover {
    box-shadow: 0 0 2.5rem rgba(255, 30, 39, 0.5);
}

.button input, .button__inner {
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    letter-spacing: .03em;
    font-size: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), opacity .25s ease;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.button input:nth-child(1), .button .button__inner:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
}

.button input:nth-child(2), .button .button__inner:nth-child(2) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    opacity: 0;
}

.button:hover input:nth-child(1), .button:hover .button__inner:nth-child(1) {
    transform: translateY(-110%);
    opacity: 0;
}

.button:hover input:nth-child(2), .button:hover .button__inner:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
}

.button--black {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.button--small {
    height: 4.2rem;
    padding: 0 2.5rem;
}

.button--small .button__inner {
    font-size: 1.6rem;
}

/* ==========================================================================
   AMBIENT GLOWING BLOBS (.gradBlobs)
   ========================================================================== */
.gradBlobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .66;
    overflow: hidden;
}

.gradBlobs__orb {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: calc(var(--size, 40rem) + 6 * var(--blur, 8rem));
    height: calc(var(--size, 40rem) + 6 * var(--blur, 8rem));
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .8s ease;
    will-change: transform, opacity;
}

.gradBlobs.in .gradBlobs__orb {
    opacity: 0.85;
}

.gradBlobs__orb--orange {
    background: radial-gradient(circle, rgba(255, 98, 43, 0.35) 0%, rgba(255, 98, 43, 0.1) 45%, transparent 70%);
}

.gradBlobs__orb--purple {
    background: radial-gradient(circle, rgba(255, 30, 39, 0.4) 0%, rgba(255, 30, 39, 0.1) 50%, transparent 75%);
}

/* ==========================================================================
   NAVIGATION BAR & FULL DRAWER MENU
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
}

.nav__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}

.nav__barBg {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 4, 0.85);
    backdrop-filter: blur(1.5rem);
    -webkit-backdrop-filter: blur(1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: -1;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 38px;
    max-height: 38px;
    pointer-events: auto;
}

.nav__logo-img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.nav__logo-img--white { display: block !important; }
.nav__logo-img--dark { display: none !important; }

.nav__logoText {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3.2rem;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav__logoBadge {
    font-family: Archivo, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff1e27;
    background: rgba(255, 30, 39, 0.12);
    border: 1px solid rgba(255, 30, 39, 0.3);
    padding: 0.2rem 0.8rem;
    border-radius: 10rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__toggle {
    width: 4.8rem;
    height: 4.8rem;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.nav__toggle:hover {
    background: #222;
    border-color: #ff1e27;
}

.nav__toggle span {
    display: block;
    width: 2.2rem;
    height: .2rem;
    background-color: #fff;
    transition: transform .3s, opacity .3s;
}

.nav.is-open .nav__toggle span:nth-child(1),
html.menu-open .nav__toggle span:nth-child(1) {
    transform: translateY(.8rem) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2),
html.menu-open .nav__toggle span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3),
html.menu-open .nav__toggle span:nth-child(3) {
    transform: translateY(-.8rem) rotate(-45deg);
}

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.nav.is-open .nav__overlay,
html.menu-open .nav__overlay {
    opacity: 1;
    pointer-events: auto;
}

.nav__menu, .nav__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 48rem;
    max-width: 100vw;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: -2rem 0 5rem rgba(0, 0, 0, 0.8);
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    z-index: 10000;
    overflow-y: auto;
    padding: 10rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.nav.is-open .nav__menu,
.nav.is-open .nav__drawer,
html.menu-open .nav__menu,
html.menu-open .nav__drawer {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav__linksHeader {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.nav__menuLinks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.nav__menuLink {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3.2rem;
    color: #888;
    text-transform: uppercase;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.nav__menuLink:hover, .nav__menuLink.active {
    color: #fff;
    transform: translateX(1rem);
}

.nav__serviceMenu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 30, 39, 0.4);
    margin-bottom: 3rem;
}

.nav__serviceItem {
    font-family: Archivo, sans-serif;
    font-size: 1.5rem;
    color: #aaa;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav__serviceItem:hover, .nav__serviceItem.active {
    color: #ff1e27;
}

.nav__menuInfo {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__menuHeader {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.8rem;
    display: block;
    font-weight: 700;
}

.nav__smallLink {
    font-size: 1.4rem;
    color: #888;
}

/* ==========================================================================
   SECTION 1: HERO (.aiHero)
   ========================================================================== */
.aiHero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 14rem 4rem 8rem;
    overflow: clip;
}

.aiHero__badgeWrap {
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 2rem;
    border-radius: 10rem;
    backdrop-filter: blur(1rem);
}

.aiHero__badgeDot {
    width: 0.8rem;
    height: 0.8rem;
    background: #ff1e27;
    border-radius: 50%;
    box-shadow: 0 0 1.2rem #ff1e27;
}

.aiHero__badgeText {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #d1d1d1;
}

.aiHero__heading {
    font-size: clamp(4.5rem, 6.8vw, 9.8rem);
    line-height: 0.94;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    margin-bottom: 3rem;
    max-width: 140rem;
    letter-spacing: -0.01em;
}

.aiHero__sub {
    font-family: Archivo, sans-serif;
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    max-width: 86rem;
    margin: 0 auto 4rem;
}

.aiHero__ctaGroup, .aiHero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.aiHero__arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    opacity: 0.6;
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 1.2rem); }
}

@media screen and (max-width: 800px) {
    .aiHero { padding: 12rem 2rem 6rem; }
    .aiHero__heading { font-size: 4.8rem; line-height: 1.0; }
    .aiHero__sub { font-size: 1.7rem; }
}

/* ==========================================================================
   SECTION 2: PITCH WITH ACTIVE CARDS & FLOATING CANVAS (.aiPitch)
   ========================================================================== */
.aiPitch {
    padding: 10rem 6rem;
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.aiPitch__inner {
    display: flex;
    gap: 8rem;
    position: relative;
    max-width: 150rem;
    margin: 0 auto;
    align-items: stretch;
}

.aiPitch__left {
    width: 44%;
    flex-shrink: 0;
    position: relative;
    align-self: stretch;
}

.aiPitch__leftInner {
    position: sticky;
    top: 14rem;
    max-height: calc(100vh - 16rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.aiPitch__heading {
    font-size: clamp(3.6rem, 4.4vw, 6.4rem);
    line-height: 0.98;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.aiPitch__sub {
    font-size: 1.8rem;
    color: #ff1e27;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.aiPitch__right {
    flex: 1;
    position: relative;
    padding-top: 1rem;
}

.aiPitch__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.aiPitch__cards {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    position: relative;
    z-index: 2;
}

.aiPitch__card {
    background: #131313;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    padding: 3.5rem 4rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    opacity: 0.45;
}

.aiPitch__card.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 4rem rgba(255, 30, 39, 0.25), inset 0 0 2rem rgba(255, 30, 39, 0.08);
    transform: scale(1.02);
}

.aiPitch__cardIcon {
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aiPitch__cardIcon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.aiPitch__cardIcon img:nth-child(2) {
    opacity: 0;
}

.aiPitch__card.active .aiPitch__cardIcon img:nth-child(1) {
    opacity: 0;
}

.aiPitch__card.active .aiPitch__cardIcon img:nth-child(2) {
    opacity: 1;
}

.aiPitch__cardContent {
    flex: 1;
}

.aiPitch__cardLabel {
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 600;
    color: #f4f4f4;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.aiPitch__cardText {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #888;
    margin-top: 1rem;
}

@media screen and (max-width: 800px) {
    .aiPitch { padding: 8rem 2rem; }
    .aiPitch__inner { flex-direction: column; gap: 4rem; }
    .aiPitch__left { width: 100%; }
    .aiPitch__leftInner { position: relative; top: auto; max-height: none; }
    .aiPitch__heading { font-size: 4.2rem; }
    .aiPitch__card { opacity: 1; padding: 2.5rem; }
}

/* ==========================================================================
   SECTION 3: 3D BENEFITS SWOOP STAGE (.aiBenefits)
   ========================================================================== */
.aiBenefits {
    background: 0 0;
    color: #f4f4f4;
    position: relative;
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    overflow: visible;
}

.aiBenefits__fadeZone {
    height: 15rem;
    pointer-events: none;
}

.aiBenefits__intro {
    margin: auto;
    padding: 0 2rem;
}

.aiBenefits__introHeading {
    font-size: clamp(4.5rem, 6.5vw, 8.8rem);
    line-height: .95;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.aiBenefits__introSub {
    font-size: 1.8rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.aiBenefits__statements {
    position: relative;
    height: calc(100vh + 180rem);
    margin-bottom: 0;
}

.aiBenefits__statementsStage {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    perspective: 180rem;
}

.aiBenefits__statement {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: transform, opacity;
}

.aiBenefits__statementText {
    font-size: clamp(3.8rem, 5.2vw, 7.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    text-align: center;
    padding: 0 4rem;
    max-width: 120rem;
    letter-spacing: -0.01em;
}

@media screen and (max-width: 800px) {
    .aiBenefits { margin-top: 4rem; margin-bottom: 4rem; }
    .aiBenefits__introHeading { font-size: 5rem; }
    .aiBenefits__statements { height: auto; margin-bottom: 0; }
    .aiBenefits__statementsStage { position: relative; height: auto; overflow: visible; display: flex; flex-direction: column; gap: 6rem; margin-top: 4rem; perspective: none; }
    .aiBenefits__statement { position: relative; inset: auto; opacity: 1 !important; transform: none !important; }
    .aiBenefits__statementText { font-size: 4.2rem; padding: 0 2rem; }
}

/* ==========================================================================
   SECTION 4: STICKY FEATURE SLIDER DECK (.aiFeatures)
   ========================================================================== */
.aiFeatures {
    position: relative;
    height: calc(var(--num-cards, 5) * 100vh);
    margin: 6rem 0;
    overflow: visible;
}

.aiFeatures__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.aiFeatures__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.aiFeatures__card {
    position: absolute;
    top: 50%;
    left: 6rem;
    width: calc(100% - 12rem);
    height: min(68rem, 82vh);
    background: #131313;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-50%) translateX(calc(100vw + 6rem));
    will-change: transform;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.9);
}

.aiFeatures__card:nth-child(1) { z-index: 10; transform: translateY(-50%) translateX(0); }
.aiFeatures__card:nth-child(2) { z-index: 20; }
.aiFeatures__card:nth-child(3) { z-index: 30; }
.aiFeatures__card:nth-child(4) { z-index: 40; }
.aiFeatures__card:nth-child(5) { z-index: 50; }

.aiFeatures__cardInner {
    width: 52%;
    padding: clamp(3rem, 4vh, 5rem) clamp(3rem, 4vw, 5.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.aiFeatures__cardNum {
    font-size: 1.3rem;
    color: #ff1e27;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    display: block;
}

.aiFeatures__cardFeature {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: clamp(3.2rem, 3.8vw, 5rem);
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.aiFeatures__cardHeading {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #e5e5e5;
    font-weight: 600;
}

.aiFeatures__cardBody {
    font-size: 1.55rem;
    line-height: 1.5;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.aiFeatures__cardList {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.aiFeatures__cardList li {
    font-size: 1.45rem;
    color: #d1d1d1;
    padding-left: 2.2rem;
    position: relative;
    line-height: 1.4;
}

.aiFeatures__cardList li::before {
    content: "•";
    color: #ff1e27;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.aiFeatures__cardMedia {
    width: 48%;
    background: #090909;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 3vw, 4rem);
    position: relative;
    overflow: hidden;
}

.aiFeatures__cardMediaVisual {
    width: 100%;
    height: 100%;
    background: #151515;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.aiFeatures__progress {
    position: absolute;
    top: 3.5rem;
    left: 6rem;
    right: 6rem;
    height: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    z-index: 100;
}

.aiFeatures__progressInner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff1e27, #ff622b);
    transition: width 0.1s linear;
}

@media screen and (max-width: 800px) {
    .aiFeatures { height: auto; margin: 6rem 0; }
    .aiFeatures__sticky { position: relative; height: auto; }
    .aiFeatures__slides { display: flex; flex-direction: column; gap: 4rem; padding: 0 2rem; }
    .aiFeatures__card { position: relative; top: auto; left: auto; width: 100%; height: auto; transform: none !important; flex-direction: column; }
    .aiFeatures__cardInner { width: 100%; padding: 4rem 2rem; }
    .aiFeatures__cardFeature { font-size: 4rem; }
    .aiFeatures__cardMedia { width: 100%; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 3rem 2rem; }
    .aiFeatures__progress { display: none; }
}

/* ==========================================================================
   SECTION 5: 3-TIER ROLLING MARQUEE BANNERS (.aiBanners)
   ========================================================================== */
.aiBanners {
    overflow: clip;
    position: relative;
    z-index: 10;
}

.rollingBanner {
    height: 10.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #212121;
    position: relative;
    width: 100%;
    font-size: 4rem;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: default;
}

.rollingBanner:nth-child(1) { background-color: #1a1a1a; }
.rollingBanner:nth-child(2) { background-color: #d60017; color: #fff; }
.rollingBanner:nth-child(3) { background-color: #ff622b; color: #fff; }

.rollingBanner__rail {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transform: translateY(-50%);
}

.rollingBanner span {
    padding: 0 4rem;
    display: inline-block;
    color: #e0e0e0;
}

.rollingBanner:nth-child(2) span,
.rollingBanner:nth-child(3) span {
    color: #ffffff;
}

.rollingBanner img {
    height: 1.8rem;
    width: 1.8rem;
    margin: 0 1rem;
}

/* ==========================================================================
   SECTION 6: ALL-IN-ONE 2-PLAN PRICING MATRIX (.products)
   ========================================================================== */
.products {
    color: #040404;
    background-color: #ffffff;
    background-image: url(../../images/grid.svg);
    background-position: -4.72rem 4.72rem;
    background-size: 9.44rem 9.44rem;
    position: relative;
    padding: 14rem 0 12rem;
    overflow: visible;
    scroll-margin-top: 10rem;
}

.products__top {
    padding: 0 8rem;
    margin-bottom: 6rem;
}

.products__top .h1 {
    color: #000000;
}

.products__plans {
    position: relative;
    padding: 0 4rem;
    max-width: 140rem;
    margin: 0 auto;
}

.products__sticky {
    position: sticky;
    top: 7rem;
    z-index: 50;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 36rem repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.products__stickyLeft {
    background: #0d0d0d;
    color: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.products__stickyInner {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.products__productHeader {
    background: #0d0d0d;
    color: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
    padding: 3.2rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.products__productHeader:last-child {
    border-color: rgba(255, 30, 39, 0.4);
    background: #0f0909;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 30, 39, 0.15);
}

.products__tierBadge {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ff1e27;
    background: rgba(255, 30, 39, 0.12);
    border: 1px solid rgba(255, 30, 39, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 10rem;
    width: fit-content;
}

.products__tierBadge--gold {
    color: #ff8951;
    background: rgba(255, 137, 81, 0.15);
    border-color: rgba(255, 137, 81, 0.4);
}

.products__productHeader h3 {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3.6rem;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.products__productHeader p {
    font-size: 1.5rem;
    color: #a3a3a3;
    line-height: 1.4;
}

.products__productHeader .button {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.products__features {
    display: flex;
    flex-direction: column;
    position: relative;
}

.products__featureCols {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 36rem repeat(2, 1fr);
    gap: 1.5rem;
    pointer-events: none;
    z-index: 0;
}

.products__featureCols div {
    background: #f4f4f4;
    border-radius: 1rem;
}

.products__featureCols div:first-child {
    background: #fafafa;
}

.products__featureCols div:last-child {
    background: #fdf5f5;
    border: 1px solid rgba(255, 30, 39, 0.15);
}

.products__featureCategory {
    padding: 3.5rem 0 1.2rem 2.5rem;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 2.1rem;
    line-height: 1.18;
    text-transform: uppercase;
    color: #ff1e27;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 1.5rem;
    max-width: 33.5rem;
    word-break: normal;
    white-space: normal;
}

.products__featureCategory:first-child {
    border-top: none;
    margin-top: 0;
}

.products__feature {
    display: grid;
    grid-template-columns: 36rem repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.8rem 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.products__feature:last-child {
    border-bottom: none;
}

.products__feature div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 2rem;
    text-align: center;
}

.products__feature div:first-child {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-left: 2.5rem;
}

.products__feature .body {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.products__feature .featureDesc {
    font-size: 1.3rem;
    color: #666;
    margin-top: 0.3rem;
    font-weight: 400;
    line-height: 1.4;
}

.products__feature .tick,
.products__feature .cross {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.products__feature .tick img,
.products__feature .cross img {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
}

.products__feature .tierText {
    font-size: 1.45rem;
    font-weight: 600;
    color: #222;
}

.products__feature .tierText--highlight {
    color: #ff1e27;
    font-weight: 700;
}

.products__mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    .products { padding: 10rem 2rem 6rem; }
    .products__top { padding: 0; }
    .products__plans { padding: 0; }
    .products__sticky { display: none; }
    .products__features { display: none; }
    .products__mobile { display: flex; flex-direction: column; gap: 2.5rem; }
    .products__productAccordion {
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1rem;
        padding: 3rem 2rem;
    }
    .products__productAccordion h3 {
        font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
        font-size: 3.2rem;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: #fff;
    }
    .products__mobileFeatures {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .products__mobileRow {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        font-size: 1.4rem;
        color: #ccc;
    }
    .products__mobileRow img {
        width: 2rem;
        height: 2rem;
        flex-shrink: 0;
        margin-top: 0.2rem;
    }
}

/* ==========================================================================
   SECTION 7: CTA CALLOUT (.aiCta)
   ========================================================================== */
.aiCta {
    text-align: center;
    padding: 16rem 4rem 20rem;
    position: relative;
    overflow: clip;
    background-color: #040404 !important;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px) !important;
    background-size: 9.44rem 9.44rem !important;
    background-position: -4.72rem 4.72rem !important;
    color: #ffffff !important;
}

.aiCta__inner {
    max-width: 125rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aiCta .subheading,
.aiCta__sub {
    font-family: Archivo, sans-serif !important;
    font-size: clamp(2.2rem, 2.8vw, 3.4rem) !important;
    text-transform: none !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
    line-height: 1.35 !important;
    display: block !important;
    margin: 0 auto 2rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-width: 92rem !important;
}

.aiCta__heading {
    font-size: clamp(5.2rem, 8vw, 11.5rem) !important;
    line-height: .92;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    color: #ffffff;
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.aiCta .body,
.aiCta__body,
.aiCta p.body,
.aiCta__body p,
.aiCta p {
    font-family: Archivo, sans-serif !important;
    font-size: clamp(1.8rem, 2vw, 2.2rem) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 86rem !important;
    margin: 0 auto 4.5rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

@media screen and (max-width: 800px) {
    .aiCta { padding: 10rem 2rem 12rem; }
    .aiCta .subheading, .aiCta__sub { font-size: 2rem !important; margin-bottom: 1.5rem !important; }
    .aiCta__heading { font-size: 4.8rem !important; }
    .aiCta .body, .aiCta__body, .aiCta p.body, .aiCta__body p, .aiCta p { font-size: 1.7rem !important; margin-bottom: 3.5rem !important; }
}

/* ==========================================================================
   SECTION 8: FAQ ACCORDION (.faqs)
   ========================================================================== */
.faqs {
    padding: 14rem 4rem 12rem;
    position: relative;
    max-width: 140rem;
    margin: 0 auto;
    overflow: visible;
}

.faqs h2 {
    font-size: clamp(4.5rem, 6.8vw, 8.8rem);
    line-height: .92;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    margin-bottom: 6rem;
    text-align: center;
}

.faqs__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3.5rem 4rem;
    cursor: pointer;
}

.faq:hover, .faq.is-open {
    border-color: rgba(255, 30, 39, 0.4);
}

.faq__inner {
    flex: 1;
}

.faq__header {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.faq__arrow {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
    flex-shrink: 0;
    margin-left: 3rem;
}

.faq.is-open .faq__arrow {
    transform: rotate(90deg);
    background: #ff1e27;
}

.faq__arrow::after {
    content: "→";
    color: #fff;
    font-size: 1.8rem;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.5, 0, 0.25, 1);
}

.faq__content {
    padding-top: 2.5rem;
    font-size: 1.8rem;
    color: #a3a3a3;
    line-height: 1.6;
}

@media screen and (max-width: 800px) {
    .faqs { padding: 8rem 2rem; }
    .faqs h2 { font-size: 5rem; margin-bottom: 4rem; }
    .faq { padding: 2.5rem 2rem; }
    .faq__header { font-size: 2.2rem; }
    .faq__content { font-size: 1.6rem; }
}

/* ==========================================================================
   SECTION 9: MASTER UNIFIED FOOTER & GIANT ANIMATED WORDMARK (.footer)
   Faithful Replica of Fiasco Design Studio letter-hover physics & aesthetics
   ========================================================================== */
.footer {
    background-color: #040404;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12rem 6rem 3rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 6rem;
    max-width: 150rem;
    margin: 0 auto 8rem;
    position: relative;
    z-index: 2;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__logo {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 4.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    display: inline-block;
}

.footer__desc {
    font-size: 1.6rem;
    color: #888;
    line-height: 1.6;
    max-width: 44rem;
}

.footer__colTitle {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer__link {
    font-size: 1.6rem;
    color: #888;
    transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease;
    display: inline-block;
}

.footer__link:hover {
    color: #ff1e27;
    transform: translateX(4px);
}

.footer__bottom {
    max-width: 150rem;
    margin: 0 auto;
    padding: 3.5rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* GIANT FIASCO-STYLE ANIMATED CHABIG WORDMARK */
.footerBigBrand {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: default;
}

.footerBigBrand__track {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 155rem;
    perspective: 1000px;
}

.footerBigBrand__letter {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: clamp(8rem, 17.5vw, 25rem);
    line-height: 0.78;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.12);
    display: inline-block;
    letter-spacing: -0.04em;
    cursor: pointer;
    user-select: none;
    transform-origin: center 85%;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease,
                text-shadow 0.3s ease,
                filter 0.3s ease;
    will-change: transform, color, text-shadow;
}

.footerBigBrand__letter:hover {
    color: #ffffff;
    transform: translateY(-2.5rem) scale(1.16) rotate(-2deg);
    text-shadow: 0 0 40px rgba(255, 30, 39, 0.85),
                 0 0 80px rgba(255, 30, 39, 0.5),
                 0 0 120px rgba(255, 98, 43, 0.3);
    z-index: 5;
}

/* Ripple Neighbor Classes dynamically managed by JS for smooth wave */
.footerBigBrand__letter.neighbor-1 {
    transform: translateY(-1.2rem) scale(1.08) rotate(-1deg);
    color: rgba(255, 255, 255, 0.45);
    text-shadow: 0 0 20px rgba(255, 30, 39, 0.4);
}

.footerBigBrand__letter.neighbor-2 {
    transform: translateY(-0.6rem) scale(1.04);
    color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 900px) {
    .footer { padding: 8rem 2rem 3rem; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; margin-bottom: 5rem; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footerBigBrand__letter { font-size: clamp(6rem, 16vw, 12rem); }
}

@media screen and (max-width: 500px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footerBigBrand__letter { font-size: clamp(4.8rem, 15vw, 8rem); }
}

/* ==========================================================================
   SCROLL TRIGGERED ANIMATIONS (.anima, .fadeUp, .fade)
   ========================================================================== */
.anima {
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.anima.fade {
    transform: none;
    transition: opacity 0.6s ease-out;
}

.anima.in {
    opacity: 1;
    transform: translateY(0);
}

.anima:nth-child(1) { transition-delay: 0.05s; }
.anima:nth-child(2) { transition-delay: 0.1s; }
.anima:nth-child(3) { transition-delay: 0.15s; }
.anima:nth-child(4) { transition-delay: 0.2s; }
.anima:nth-child(5) { transition-delay: 0.25s; }

/* ==========================================================================
   INDUSTRY HUB & INNER PAGE COMPONENTS (.industryFilters, .industryGrid, .industryCard)
   ========================================================================== */
.industryHub {
    padding: 10rem 0 14rem;
    position: relative;
    z-index: 2;
}

.industryFilters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 4rem auto 7rem;
    max-width: 120rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    backdrop-filter: blur(12px);
}

.industryFilterBtn {
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #999;
    border-radius: 9999px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.industryFilterBtn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.industryFilterBtn.active {
    color: #fff;
    background: #111;
    border-color: rgba(255, 30, 39, 0.5);
    box-shadow: 0 0 20px rgba(255, 30, 39, 0.25), inset 0 0 12px rgba(255, 30, 39, 0.15);
}

.industryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (max-width: 1100px) {
    .industryGrid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 700px) {
    .industryGrid { grid-template-columns: 1fr; }
    .industryFilters { border-radius: 2rem; }
}

.industryCard {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.industryCard::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #ff1e27, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.industryCard:hover {
    transform: translateY(-0.8rem);
    border-color: rgba(255, 30, 39, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 30, 39, 0.15);
}

.industryCard:hover::before {
    opacity: 1;
}

.industryCard__icon {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(255, 30, 39, 0.3));
}

.industryCard__tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff1e27;
    background: rgba(255, 30, 39, 0.1);
    border: 1px solid rgba(255, 30, 39, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.industryCard__title {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 2.8rem;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.4rem;
}

.industryCard__desc {
    font-size: 1.5rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.industryCard__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
}

.industryStat {
    display: flex;
    flex-direction: column;
}

.industryStat__val {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
}

.industryStat__lbl {
    font-size: 1.2rem;
    color: #777;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industryCard__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.industryFeatureItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: #bbb;
}

.industryFeatureItem img {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.industryCard__cta {
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   WEBFLOW-ENTERPRISE STYLE CONTACT PAGE (.contactEnterprise)
   ========================================================================== */
.contactEnterprise {
    padding: 12rem 0 10rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.contactEnterprise__container {
    max-width: 132rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.contactEnterprise__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8rem;
    align-items: start;
}

@media screen and (max-width: 992px) {
    .contactEnterprise__grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

/* Left Column */
.contactEnterprise__left {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 10rem;
}

.availabilityBadge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 2.5rem;
    width: fit-content;
}

.availabilityBadge__dot {
    width: 0.8rem;
    height: 0.8rem;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.contactEnterprise__title {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 5.4rem;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
    .contactEnterprise__title { font-size: 4rem; }
}

.contactEnterprise__sub {
    font-size: 1.8rem;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.auditDeliverables {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.auditDeliverable {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.6rem;
    padding: 2.2rem 2.6rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.auditDeliverable:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 30, 39, 0.3);
    transform: translateX(0.6rem);
}

.auditDeliverable__icon {
    font-size: 2.4rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.auditDeliverable__title {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.6rem;
}

.auditDeliverable__desc {
    font-size: 1.4rem;
    color: #888;
    line-height: 1.5;
}

.contactStatsRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contactStat__num {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3.2rem;
    color: #fff;
}

.contactStat__label {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
}

/* Right Column (Glassmorphic Enterprise Form) */
.contactEnterprise__formCard {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.4rem;
    padding: 4.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 30, 39, 0.1);
}

@media screen and (max-width: 600px) {
    .contactEnterprise__formCard { padding: 3rem 2rem; }
}

.formSectionHeader {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff1e27;
    margin-bottom: 1.6rem;
    display: block;
}

.formGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 600px) {
    .formGrid { grid-template-columns: 1fr; }
}

.formGroup {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
}

.formGroup label {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ccc;
}

.formInput, .formSelect, .formTextarea {
    width: 100%;
    padding: 1.5rem 1.8rem;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    transition: all 0.25s ease;
}

.formInput:focus, .formSelect:focus, .formTextarea:focus {
    border-color: #ff1e27;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(255, 30, 39, 0.25);
}

.formSelect option {
    background: #111;
    color: #fff;
}

/* Interactive Pills */
.pillGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pillOption {
    position: relative;
    cursor: pointer;
}

.pillOption input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pillOption__label {
    display: inline-block;
    padding: 1.1rem 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #999;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.pillOption:hover .pillOption__label {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.pillOption input:checked + .pillOption__label {
    color: #fff;
    background: #111;
    border-color: #ff1e27;
    box-shadow: 0 0 15px rgba(255, 30, 39, 0.3), inset 0 0 8px rgba(255, 30, 39, 0.2);
}

.formSubmitBtn {
    width: 100%;
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 1.4rem;
    margin-top: 1.5rem;
}

.formDisclaimer {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-top: 1.8rem;
    line-height: 1.5;
}

.formSuccessNotice {
    display: none;
    padding: 3rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 1.8rem;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.formSuccessNotice h3 {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 1rem;
}

.formSuccessNotice p {
    font-size: 1.6rem;
    color: #ddd;
    line-height: 1.6;
}

/* ==========================================================================
   STUDIO & ABOUT US PAGE (FAITHFUL TO FIASCO DESIGN STUDIO CRAFT)
   ========================================================================== */

/* STUDIO HERO */
.studioHero {
    padding: 16rem 6rem 10rem;
    position: relative;
    max-width: 150rem;
    margin: 0 auto;
    overflow: visible;
}

.studioHero__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    background: rgba(255, 30, 39, 0.08);
    border: 1px solid rgba(255, 30, 39, 0.28);
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    margin-bottom: 3.5rem;
}

.studioHero__title {
    font-size: clamp(4.8rem, 7.5vw, 10.5rem);
    line-height: 0.92;
    text-transform: uppercase;
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.studioHero__lead {
    font-size: clamp(2.2rem, 2.6vw, 3.2rem);
    line-height: 1.42;
    color: #dedede;
    max-width: 115rem;
    margin-bottom: 6rem;
    font-weight: 400;
}

.studioHero__metaGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.studioHero__metaItem {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.studioHero__metaLabel {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #737373;
    font-weight: 600;
}

.studioHero__metaVal {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: "PP Right", Impact, sans-serif;
    letter-spacing: 0.02em;
}

/* STUDIO REEL / GALLERY */
.studioReelSection {
    padding: 6rem 0 10rem;
    overflow: hidden;
    position: relative;
}

.studioReelTrack {
    display: flex;
    gap: 3rem;
    padding: 2rem 6rem;
    width: max-content;
    animation: marquee 45s linear infinite;
}

.studioReelTrack:hover {
    animation-play-state: paused;
}

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

.studioReelCard {
    width: 42rem;
    height: 52rem;
    border-radius: 1.6rem;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.studioReelCard:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 30, 39, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 30, 39, 0.2);
}

.studioReelCard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.studioReelCard:hover .studioReelCard__img {
    transform: scale(1.06);
    opacity: 1;
}

.studioReelCard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.studioReelCard__badge {
    align-self: flex-start;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f4f4f4;
}

.studioReelCard__title {
    font-family: "PP Right", Impact, sans-serif;
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.studioReelCard__desc {
    font-size: 1.4rem;
    color: #a3a3a3;
    line-height: 1.4;
}

/* STUDIO MANIFESTO / PRINCIPLES */
.studioManifesto {
    padding: 12rem 6rem;
    max-width: 150rem;
    margin: 0 auto;
}

.studioManifesto__header {
    margin-bottom: 8rem;
}

.studioManifesto__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.manifestoCard {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifestoCard:hover {
    border-color: rgba(255, 30, 39, 0.4);
    box-shadow: 0 0 40px rgba(255, 30, 39, 0.12);
    transform: translateY(-4px);
}

.manifestoCard__num {
    font-family: "PP Right", Impact, sans-serif;
    font-size: 6rem;
    color: rgba(255, 30, 39, 0.3);
    line-height: 1;
    margin-bottom: 2.5rem;
    transition: color 0.3s ease;
}

.manifestoCard:hover .manifestoCard__num {
    color: var(--red);
}

.manifestoCard__title {
    font-family: "PP Right", Impact, sans-serif;
    font-size: 3.6rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1;
}

.manifestoCard__body {
    font-size: 1.7rem;
    color: #a3a3a3;
    line-height: 1.6;
}

/* TEAM SECTION */
.studioTeam {
    padding: 14rem 6rem 12rem;
    max-width: 150rem;
    margin: 0 auto;
    position: relative;
}

.studioTeam__header {
    text-align: center;
    max-width: 100rem;
    margin: 0 auto 6rem;
}

.teamFilterGroup {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 7rem;
}

.teamFilterBtn {
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.teamFilterBtn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.teamFilterBtn.active {
    color: #fff;
    background: #111;
    border-color: #ff1e27;
    box-shadow: 0 0 20px rgba(255, 30, 39, 0.35);
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.teamCard {
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.teamCard:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.8), 0 0 30px rgba(255, 30, 39, 0.15);
}

.teamCard__visual {
    position: relative;
    width: 100%;
    height: 36rem;
    background: #111111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teamCard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.teamCard:hover .teamCard__img {
    filter: grayscale(0%) contrast(1.05) brightness(1.02);
    transform: scale(1.05);
}

.teamCard__avatarGrad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 3;
    pointer-events: none;
}

.teamCard__monogram {
    display: none;
}

.teamCard__tagBadge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    border-radius: 0.4rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 30, 39, 0.35);
    color: #ff1e27;
}

.teamCard__content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.teamCard__name {
    font-family: "PP Right", Impact, sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.teamCard__role {
    font-size: 1.5rem;
    color: #ff1e27;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.teamCard__bio {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #a3a3a3;
    margin-bottom: 2.5rem;
    flex: 1;
}

.teamCard__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.teamCard__skillPill {
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #ccc;
}

.teamCard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.teamCard__link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s ease;
}

.teamCard__link:hover {
    color: var(--red);
}

/* ==========================================================================
   FIASCO DESIGN STUDIO SIGNATURE STYLES & INTERACTION ENGINE
   ========================================================================== */

/* Character Shift Link Hover Animation (.c-LinkCharShift) */
.c-LinkCharShift {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.1;
    vertical-align: middle;
}

.c-LinkCharShift__char {
    position: relative;
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--char-index, 0) * 0.018s);
}

.c-LinkCharShift__char::after {
    content: attr(data-char);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: inherit;
}

.c-LinkCharShift:hover .c-LinkCharShift__char,
.c-LinkCharShift.is-active .c-LinkCharShift__char {
    transform: translateY(-100%);
}

/* Dynamic Floating Cursor Label (.c-CursorLabel) */
.c-CursorLabel {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    padding: 0.8rem 1.6rem;
    background: #ff1e27;
    color: #ffffff;
    font-family: Archivo, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999rem;
    box-shadow: 0 1rem 3rem rgba(255, 30, 39, 0.4);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
    will-change: transform, opacity;
}

.c-CursorLabel.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.c-CursorLabel--dark {
    background: #07080B;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.c-CursorLabel--red {
    background: #ff1e27;
    color: #ffffff;
}

.c-CursorLabel__title {
    display: block;
    white-space: nowrap;
}

/* Typography & Italic Serif Accent */
em, .italic-serif, .slide-title, .subheader em, .c-ScrollMediaShowcase__label em {
    font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

/* ==========================================================================
   FIASCO-STYLE PINNED CENTER-STAGE HERO (.c-FiascoHero)
   ChaBig Brand Signature: Deep Obsidian Canvas (#08090C) + Neon Red (#ff1e27) Accents
   ========================================================================== */
.c-FiascoHero {
    position: relative;
    width: 100%;
    height: 350vh; /* 3-stage scroll runway */
    background-color: #07080B;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 30, 39, 0.15) 0%, transparent 60%),
        linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 80px 80px, 80px 80px;
    color: #FFFFFF;
}

.c-FiascoHero__sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Center Text States */
.c-FiascoHero__centerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 82rem;
    text-align: center;
    z-index: 30;
    pointer-events: none;
    padding: 3.5rem 4.5rem;
    border-radius: 2.4rem;
    background: rgba(7, 8, 11, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.75);
}

.c-FiascoHero__state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
}

.c-FiascoHero__state.is-active {
    opacity: 1;
    visibility: visible;
}

.c-FiascoHero__subhead {
    font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2.4rem, 2.8vw, 3.4rem);
    color: #ff3b42;
    margin-bottom: 2rem;
    display: block;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.c-FiascoHero__headline {
    font-family: "PP Right", Impact, "Arial Narrow", sans-serif;
    font-size: clamp(3.6rem, 5vw, 6.8rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0 auto;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.c-FiascoHero__paragraph {
    font-family: Archivo, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    font-weight: 400;
    line-height: 1.55;
    color: #F3F4F6;
    max-width: 72rem;
    margin: 0 auto;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}

/* Floating Photo Cards */
.c-FiascoHero__cardsLayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.c-FiascoHero__cardGroup {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
}

.c-FiascoHero__cardGroup.is-active {
    opacity: 1;
    visibility: visible;
}

.c-FloatCard {
    position: absolute;
    overflow: hidden;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.65);
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.c-FloatCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-FloatCard:hover {
    border-color: #ff1e27;
    box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.8), 0 0 3.5rem rgba(255, 30, 39, 0.35);
}

.c-FloatCard:hover img {
    transform: scale(1.06);
}

/* Slide 1 Card Placements (Perimeter framing) */
.c-FloatCard--s1-leftMid {
    left: 2rem;
    top: 20%;
    width: 15vw;
    min-width: 18rem;
    max-width: 24rem;
    aspect-ratio: 4/5;
}

.c-FloatCard--s1-leftBot {
    left: 2rem;
    bottom: 2rem;
    width: 16vw;
    min-width: 19rem;
    max-width: 25rem;
    aspect-ratio: 4/3;
}

.c-FloatCard--s1-botMid {
    left: 24%;
    bottom: 1.5rem;
    width: 14vw;
    min-width: 17rem;
    max-width: 22rem;
    aspect-ratio: 4/3;
}

.c-FloatCard--s1-botRight {
    right: 22%;
    bottom: 1.5rem;
    width: 14vw;
    min-width: 17rem;
    max-width: 22rem;
    aspect-ratio: 4/3;
}

.c-FloatCard--s1-topRight {
    right: 2rem;
    top: 9rem;
    width: 17vw;
    min-width: 20rem;
    max-width: 26rem;
    aspect-ratio: 4/3;
}

.c-FloatCard--s1-rightMid {
    right: 2rem;
    top: 56%;
    width: 14vw;
    min-width: 17rem;
    max-width: 22rem;
    aspect-ratio: 4/5;
}

/* Slide 2 Card Placements (Perimeter framing) */
.c-FloatCard--s2-left {
    left: 2.5rem;
    top: 24%;
    width: 18vw;
    min-width: 22rem;
    max-width: 28rem;
    aspect-ratio: 16/11;
}

.c-FloatCard--s2-right {
    right: 2.5rem;
    top: 24%;
    width: 17vw;
    min-width: 20rem;
    max-width: 26rem;
    aspect-ratio: 4/5;
}

.c-FloatCard--s2-bot {
    right: 4rem;
    bottom: 2.5rem;
    left: auto;
    width: 20vw;
    min-width: 24rem;
    max-width: 32rem;
    aspect-ratio: 16/10;
}

/* Slide 3 Card Placements (Perimeter framing) */
.c-FloatCard--s3-top {
    left: 3rem;
    top: 9rem;
    width: 16vw;
    min-width: 20rem;
    max-width: 26rem;
    aspect-ratio: 16/11;
}

.c-FloatCard--s3-left {
    left: 2.5rem;
    top: 50%;
    width: 16vw;
    min-width: 20rem;
    max-width: 25rem;
    aspect-ratio: 16/11;
}

.c-FloatCard--s3-right {
    right: 2.5rem;
    top: 20%;
    width: 17vw;
    min-width: 20rem;
    max-width: 26rem;
    aspect-ratio: 4/5;
}

.c-FloatCard--s3-botLeft {
    left: 2.5rem;
    bottom: 2rem;
    width: 16vw;
    min-width: 20rem;
    max-width: 25rem;
    aspect-ratio: 4/3;
}

.c-FloatCard--s3-botRight {
    right: 3rem;
    bottom: 2.5rem;
    left: auto;
    width: 20vw;
    min-width: 24rem;
    max-width: 32rem;
    aspect-ratio: 16/10;
}

/* Bottom Progress Pill */
.c-FiascoHero__pill {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.4rem;
    height: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999rem;
    overflow: hidden;
    z-index: 20;
}

.c-FiascoHero__pillTrack {
    height: 100%;
    width: 33.333%;
    background: #ff1e27;
    border-radius: 999rem;
    transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 0 0 10px #ff1e27;
}

/* ==========================================================================
   AUTHENTIC PINNED CORKBOARD COLLAGE (.c-Corkboard) - Screenshot 4
   ========================================================================== */
.c-Corkboard {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1.6rem;
    overflow: hidden;
    background: #c89658 url('https://images.unsplash.com/photo-1586075010923-2dd4570fb338?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.12), inset 0 0 4rem rgba(0,0,0,0.25);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.c-Corkboard__item {
    position: absolute;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.4s ease, filter 0.3s ease;
    cursor: pointer;
}

.c-Corkboard__item:hover {
    transform: scale(1.1) translateY(-0.8rem) rotate(0deg) !important;
    box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.55);
    filter: brightness(1.06);
    z-index: 25 !important;
}

/* Photobooth Strip 1 (Left Top) */
.c-Corkboard__strip1 {
    top: 5%;
    left: 8%;
    width: 22%;
    transform: rotate(-3deg);
}

/* Event Flyer "PROPYARD" (Top Center) */
.c-Corkboard__flyer {
    top: 6%;
    left: 36%;
    width: 28%;
    transform: rotate(2deg);
}

/* Photobooth Strip 2 (Middle Left) */
.c-Corkboard__strip2 {
    top: 42%;
    left: 6%;
    width: 23%;
    transform: rotate(1deg);
}

/* Photobooth Strip 3 (Middle Center) */
.c-Corkboard__strip3 {
    top: 43%;
    left: 35%;
    width: 26%;
    transform: rotate(-2deg);
}

/* Blue Poster Card (Right Center) */
.c-Corkboard__card1 {
    top: 46%;
    left: 65%;
    width: 26%;
    transform: rotate(1deg);
}

/* Polaroid Strip (Right Top) */
.c-Corkboard__polaroid {
    top: 8%;
    right: 6%;
    width: 24%;
    transform: rotate(2deg);
}

/* Push Pin element */
.c-Pin {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.5);
    z-index: 2;
}

.c-Pin--white { background: radial-gradient(circle at 35% 35%, #ffffff 0%, #d0d0d0 70%, #999999 100%); }
.c-Pin--red { background: radial-gradient(circle at 35% 35%, #ff5252 0%, #ff1e27 70%, #990005 100%); }
.c-Pin--green { background: radial-gradient(circle at 35% 35%, #69f0ae 0%, #00c853 70%, #00692c 100%); }
.c-Pin--blue { background: radial-gradient(circle at 35% 35%, #40c4ff 0%, #0091ea 70%, #004b7c 100%); }

/* ==========================================================================
   PAGE LAYER: WARM CRISP LIGHT EDITORIAL SECTION (FIASCO SIGNATURE)
   ========================================================================== */
.page-layer {
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    color: #0B0C10;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    box-shadow: 0 -2rem 6rem rgba(0, 0, 0, 0.4), 0 4rem 8rem rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.page-layer .b-text-and-media .subheader {
    color: #ff1e27;
}
.page-layer .b-text-and-media .subheader::before {
    background: #ff1e27;
}
.page-layer .b-text-and-media__text p {
    color: #0B0C10;
}
.page-layer .b-text-and-media__text p:last-child {
    color: #4B5563 !important;
}
.page-layer .b-carousel-ticker::before {
    background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}
.page-layer .b-carousel-ticker::after {
    background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}
.page-layer .block-stats-list {
    border-top: 1px solid rgba(15, 18, 21, 0.1);
    border-bottom: 1px solid rgba(15, 18, 21, 0.1);
}
.page-layer .block-stats-list h3 {
    color: #0B0C10;
}
.page-layer .block-stats-list__stat {
    border-top: 1px solid rgba(15, 18, 21, 0.1);
}
.page-layer .block-stats-list__stat-number {
    color: #ff1e27;
}
.page-layer .block-stats-list__stat-label {
    color: #4B5563;
}
.page-layer .teamSection__title {
    color: #0B0C10;
}
.page-layer .teamSection__desc {
    color: #4B5563;
}
.page-layer .teamSection__pill {
    background: rgba(15, 18, 21, 0.05);
    color: #0B0C10;
    border: 1px solid rgba(15, 18, 21, 0.1);
}
.page-layer .teamSection__pill:hover,
.page-layer .teamSection__pill.is-active {
    background: #ff1e27;
    color: #FFFFFF;
    border-color: #ff1e27;
}

/* Editorial Asymmetric Text & Media Blocks (.b-text-and-media) */
.b-text-and-media {
    padding: 10rem 6rem;
    max-width: 144rem;
    margin: 0 auto;
}

.b-text-and-media__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8rem;
    align-items: center;
}

.b-text-and-media--flip .b-text-and-media__wrapper {
    grid-template-columns: 0.8fr 1.2fr;
}

.b-text-and-media__image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.5);
}

.b-text-and-media__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.b-text-and-media__image:hover img {
    transform: scale(1.04);
}

.b-text-and-media__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fiasco-style Action Pill Button */
/* Fiasco-style Action Pill Button */
.btn-fiasco {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 3.2rem;
    border-radius: 999rem;
    font-family: Archivo, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    background: #111111;
    color: #FFFFFF;
    border: 1px solid #111111;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.btn-fiasco:hover {
    background: #ff1e27;
    color: #FFFFFF;
    border-color: #ff1e27;
    transform: translateY(-2px);
    box-shadow: 0 1rem 3rem rgba(255, 30, 39, 0.35);
}

.btn-fiasco--dark {
    background: #07080B;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-fiasco--dark:hover {
    background: #ff1e27;
    color: #FFFFFF;
    border-color: #ff1e27;
    box-shadow: 0 1rem 3rem rgba(255, 30, 39, 0.4);
}

.b-text-and-media .subheader {
    font-size: 2.4rem;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: #ff1e27;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.b-text-and-media .subheader::before {
    display: none;
}

.b-text-and-media__text p {
    font-size: clamp(2rem, 2.2vw, 3rem);
    line-height: 1.45;
    color: #e5e5e5;
    font-weight: 400;
}

.b-text-and-media__links {
    margin-top: 3.5rem;
}

/* Infinite Dual-Track Carousel Ticker (.b-carousel-ticker) */
.b-carousel-ticker {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
}

.b-carousel-ticker::before, .b-carousel-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 2;
    pointer-events: none;
}

.b-carousel-ticker::before {
    left: 0;
    background: linear-gradient(to right, #040404 0%, transparent 100%);
}

.b-carousel-ticker::after {
    right: 0;
    background: linear-gradient(to left, #040404 0%, transparent 100%);
}

.carousel-ticker__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: tickerLeft 45s linear infinite;
    padding: 1.5rem 0;
    will-change: transform;
}

.carousel-ticker__track--reverse {
    animation: tickerRight 50s linear infinite;
}

.b-carousel-ticker:hover .carousel-ticker__track {
    animation-play-state: paused;
}

@keyframes tickerLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes tickerRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.carousel-ticker__slide {
    flex: 0 0 38rem;
    border-radius: 1.4rem;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    aspect-ratio: 16/10;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.carousel-ticker__slide:hover {
    transform: scale(1.04) translateY(-0.4rem);
    border-color: rgba(255, 30, 39, 0.7);
    z-index: 3;
}

.carousel-ticker__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-ticker__slideCaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.carousel-ticker__slide:hover .carousel-ticker__slideCaption {
    opacity: 1;
    transform: translateY(0);
}

/* Stats List & Impact Outcomes (.block-stats-list) */
.block-stats-list {
    padding: 12rem 6rem;
    max-width: 144rem;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-stats-list .g-fill {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.block-stats-list h3 {
    font-family: Archivo, sans-serif;
    font-size: clamp(2.4rem, 3vw, 4.2rem);
    font-weight: 500;
    line-height: 1.35;
    color: #f4f4f4;
    margin-bottom: 3rem;
}

.block-stats-list__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
}

.block-stats-list__stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
}

.block-stats-list__stat-number {
    font-family: "PP Right", Impact, sans-serif;
    font-size: clamp(5rem, 7vw, 9rem);
    text-transform: uppercase;
    line-height: 0.9;
    color: #ff1e27;
    letter-spacing: -0.02em;
}

.block-stats-list__stat-label {
    font-size: 1.5rem;
    color: #a3a3a3;
    line-height: 1.45;
    margin-top: 1rem;
}

/* Floating Islands UI / Chat Avatar Pill (.c-IslandsUi) - Disabled */
.c-IslandsUi {
    display: none !important;
}

/* Full-Width Accent CTA Section (.block-fullwidthcta) */
.block-fullwidthcta {
    width: 100%;
    padding: 14rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section--red, .section--yellow {
    background: linear-gradient(135deg, #ff1e27 0%, #d60017 100%);
    color: #FFFFFF;
}

.block-fullwidthcta .contain {
    max-width: 120rem;
    margin: 0 auto;
}

.block-fullwidthcta .mega {
    font-family: "PP Right", Impact, sans-serif;
    font-size: clamp(4rem, 6.5vw, 9.5rem);
    text-transform: uppercase;
    line-height: 0.94;
    letter-spacing: -0.01em;
    margin-bottom: 5rem;
    color: #FFFFFF;
}

.block-fullwidthcta .btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 4.5rem;
    background: #07080B;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-fullwidthcta .btn:hover {
    background: #ffffff;
    color: #07080B;
    transform: scale(1.06);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.35);
}

/* Showreel Interactive Component */
.showreelPlayer {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 2rem;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.showreelPlayer__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showreelPlayer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    transition: background 0.3s ease;
}

.showreelPlayer:hover .showreelPlayer__overlay {
    background: rgba(0, 0, 0, 0.15);
}

.showreelPlayer__badge {
    align-self: flex-start;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 999rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.showreelPlayer__badge::before {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background: #ff1e27;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.showreelPlayer__centerBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: #ff1e27;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 1.5rem 4rem rgba(255, 30, 39, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showreelPlayer:hover .showreelPlayer__centerBtn {
    transform: translate(-50%, -50%) scale(1.15);
}

.showreelPlayer__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* STUDIO METHODOLOGY PIPELINE */
.studioMethod {
    padding: 12rem 6rem;
    max-width: 150rem;
    margin: 0 auto;
}

.methodGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.methodCard {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    padding: 4rem;
    position: relative;
    transition: all 0.3s ease;
}

.methodCard:hover {
    border-color: rgba(255, 30, 39, 0.35);
    background: #121212;
}

.methodCard__step {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff1e27;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.methodCard__title {
    font-family: "PP Right", Impact, sans-serif;
    font-size: 2.6rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.methodCard__text {
    font-size: 1.5rem;
    color: #999;
    line-height: 1.55;
}

/* RESPONSIVE MEDIA QUERIES FOR STUDIO */
@media screen and (max-width: 1100px) {
    .teamGrid { grid-template-columns: repeat(2, 1fr); }
    .studioHero__metaGrid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .methodGrid { grid-template-columns: repeat(2, 1fr); }
    .b-text-and-media__wrapper, .b-text-and-media--flip .b-text-and-media__wrapper { grid-template-columns: 1fr; gap: 4rem; }
    .block-stats-list .g-fill { grid-template-columns: 1fr; gap: 4rem; }
    .c-ScrollMediaShowcase__slide--cover { display: flex; flex-direction: column; }
    .c-ScrollMediaShowcase__slide--var-3, .c-ScrollMediaShowcase__slide--var-2 { grid-template-columns: 1fr; }
}

@media screen and (max-width: 800px) {
    .studioHero { padding: 12rem 2rem 6rem; }
    .studioHero__title { font-size: 4.6rem; }
    .studioHero__lead { font-size: 2rem; }
    .studioHero__metaGrid { grid-template-columns: 1fr; }
    .studioManifesto { padding: 8rem 2rem; }
    .studioManifesto__grid { grid-template-columns: 1fr; }
    .manifestoCard { padding: 3rem; }
    .studioTeam { padding: 8rem 2rem; }
    .teamGrid { grid-template-columns: 1fr; }
    .teamFilterGroup { justify-content: flex-start; overflow-x: auto; padding-bottom: 1rem; }
    .studioMethod { padding: 8rem 2rem; }
    .methodGrid { grid-template-columns: 1fr; }
    .c-ScrollMediaShowcase { padding: 10rem 0 6rem; }
    .c-ScrollMediaShowcase__header { padding: 0 2rem 3rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
    .c-ScrollMediaShowcase__slide { padding: 0 2rem; }
    .b-text-and-media { padding: 6rem 2rem; }
    .block-stats-list { padding: 6rem 2rem; }
    .block-stats-list__stats { grid-template-columns: 1fr; }
    .block-fullwidthcta { padding: 8rem 2rem; }
    .c-IslandsUi { bottom: 2rem; right: 2rem; }
}


