/* I.N.S. Production — Cinematic + Creative Studio theme */
:root {
    --ins-black: #0a0a0f;
    --ins-charcoal: #13131f;
    --ins-dark: #1e1e2e;
    --ins-gold: #c9a227;
    --ins-gold-hover: #e0b83d;
    --ins-red: #8b1538;
    --ins-red-hover: #a61b44;
    --ins-white: #f0f0f8;
    --ins-gray: #9090b0;
    --ins-overlay: rgba(0, 0, 0, 0.6);

    /* ── Vibrant accent palette ── */
    --ins-violet:    #7c3aed;
    --ins-violet-l:  #a78bfa;
    --ins-cyan:      #0891b2;
    --ins-cyan-l:    #22d3ee;
    --ins-rose:      #e11d48;
    --ins-rose-l:    #fb7185;
    --ins-amber:     #d97706;
    --ins-amber-l:   #fbbf24;
    --ins-emerald:   #059669;
    --ins-emerald-l: #34d399;
    --ins-pink:      #db2777;
    --ins-pink-l:    #f472b6;
    --ins-orange:    #ea580c;
    --ins-orange-l:  #fb923c;

    /* ── Per-section tint backgrounds ── */
    --bg-hero:     #080812;
    --bg-about:    #0c0a1e;
    --bg-services: #080f1a;
    --bg-portfolio:#080f18;
    --bg-talent:   #130a14;
    --bg-mission:  #0f0c08;
    --bg-stats:    #0a0f13;
    --bg-cta:      #0e0818;
    --bg-contact:  #08100f;
}

body.frontend-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ins-black);
    color: var(--ins-white);
    overflow-x: hidden;
}

/* ============================================================
   Custom lens cursor (.ins-cursor)
   ============================================================ */
@media (pointer: fine) {
    body.frontend-body.ins-has-custom-cursor {
        cursor: none;
    }
}

.ins-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    margin-top: -11px; /* centered on pointer */
    margin-left: -11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-9999px, -9999px, 0);
    transition:
        transform 0.16s ease-out,
        width 0.2s ease,
        height 0.2s ease,
        margin 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

.ins-cursor::before,
.ins-cursor::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    opacity: 0.8;
}
.ins-cursor::after {
    inset: 7px;
    border-color: rgba(255, 255, 255, 0.4);
}

.ins-cursor-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    margin: -1.5px 0 0 -1.5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

/* aperture-style notches */
.ins-cursor-notch {
    position: absolute;
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    top: 50%;
    left: 50%;
    transform-origin: 0 50%;
}
.ins-cursor-notch-1 { transform: translate(-50%, -50%) rotate(15deg); }
.ins-cursor-notch-2 { transform: translate(-50%, -50%) rotate(135deg); }
.ins-cursor-notch-3 { transform: translate(-50%, -50%) rotate(255deg); }

/* Active lens state when hovering interactive elements */
.ins-cursor.is-lens {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    margin-left: -17px;
    border-color: rgba(201, 162, 39, 0.9);
    background-color: rgba(10, 10, 15, 0.5);
    opacity: 1;
}

.ins-cursor.is-lens::before {
    border-color: rgba(201, 162, 39, 0.55);
}
.ins-cursor.is-lens::after {
    border-color: rgba(201, 162, 39, 0.9);
}

.ins-cursor.is-hidden {
    opacity: 0;
}

/* Cinematic headings */
.ins-heading {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Header */
.frontend-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.frontend-header.transparent {
    background: transparent;
}

.frontend-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.frontend-header .navbar-brand img {
    max-height: 42px;
    width: auto;
}

.frontend-header .nav-link {
    color: var(--ins-white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.frontend-header .nav-link:hover {
    color: var(--ins-gold) !important;
}

.frontend-header .btn-cta {
    background: linear-gradient(135deg, var(--ins-gold), #a6851e);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.frontend-header .btn-cta:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--ins-overlay);
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-section .hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ins-gold);
    margin-bottom: 0.75rem;
}

.hero-section .hero-title-line {
    position: relative;
}

.hero-section .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ins-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-section .hero-cta-wrap {
    transition: opacity 0.8s ease 0.5s;
}

.hero-section .btn-dive {
    letter-spacing: 0.05em;
}

.home-hero .hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
}

.hero-section .btn-primary-cta {
    background: var(--ins-gold);
    color: #0d0d0d;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.4);
    transition: box-shadow 0.3s, transform 0.2s;
}

.hero-section .btn-primary-cta:hover {
    background: var(--ins-gold-hover);
    color: #0d0d0d;
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.6);
    transform: translateY(-2px);
}

.hero-section .btn-secondary-cta {
    background: transparent;
    color: var(--ins-white);
    border: 2px solid var(--ins-gold);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.hero-section .btn-secondary-cta:hover {
    background: var(--ins-gold);
    color: #0d0d0d;
}

/* Section common */
.ins-section {
    padding: 5rem 0;
}

.ins-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.ins-section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.ins-section-title-accent em {
    font-style: italic;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--ins-gold);
}

.ins-section-subtitle {
    color: var(--ins-gray);
    font-size: 1.05rem;
}

.btn-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.btn-arrow .bi {
    transition: transform 0.3s ease;
}

.btn-arrow:hover .bi {
    transform: translateX(4px);
}

/* Service cards */
.service-card {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.4);
}

.home-service-grid .service-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s, border-color 0.3s;
}

.service-card .bi {
    font-size: 2.5rem;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

/* ----- Home Services Showcase (redesign with mouse-follow & animations) ----- */
.home-services-showcase {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    background: var(--ins-black);
}

.services-showcase-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201, 162, 39, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.services-showcase-deco {
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: rgba(201, 162, 39, 0.25);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
}

.services-showcase-deco-tl {
    top: 2rem;
    left: 1.5rem;
    border-top-width: 2px;
    border-left-width: 2px;
    border-radius: 4px 0 0 0;
}

.services-showcase-deco-br {
    bottom: 2rem;
    right: 1.5rem;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-radius: 0 0 4px 0;
}

.service-card-v2-link {
    display: block;
    height: 100%;
    color: inherit;
}

.service-card-v2 {
    position: relative;
    height: 100%;
    min-height: 260px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 40%, rgba(201, 162, 39, 0.15) 100%);
    background-clip: padding-box;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    --mouse-x: 50%;
    --mouse-y: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background 0.3s ease;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02), rgba(201, 162, 39, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-card-v2:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 162, 39, 0.3), 0 0 40px rgba(201, 162, 39, 0.08);
}

.service-card-v2-glow {
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    background: radial-gradient(
        420px circle at var(--mouse-x) var(--mouse-y),
        rgba(201, 162, 39, 0.15) 0%,
        rgba(201, 162, 39, 0.04) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card-v2:hover .service-card-v2-glow {
    opacity: 1;
}

.service-card-v2-inner {
    position: relative;
    height: 100%;
    min-height: 258px;
    border-radius: 11px;
    padding: 1.75rem 1.5rem;
    background: var(--ins-charcoal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

.service-card-v2-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    letter-spacing: 0.02em;
}

.service-card-v2-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-v2:hover .service-card-v2-icon-wrap {
    background: rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
    transform: scale(1.08);
}

.service-card-v2-icon {
    font-size: 1.75rem;
    color: var(--ins-gold);
}

.service-card-v2-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--ins-white);
    transition: color 0.25s ease;
}

.service-card-v2:hover .service-card-v2-title {
    color: var(--ins-gold);
}

.service-card-v2-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    color: var(--ins-gray);
    transition: color 0.25s ease;
}

.service-card-v2-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--ins-gold);
    font-size: 0.9rem;
    margin-top: auto;
    transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card-v2:hover .service-card-v2-arrow {
    transform: translateX(6px);
    border-color: var(--ins-gold);
    background: rgba(201, 162, 39, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .service-card-v2 { transition: box-shadow 0.3s ease, background 0.3s ease; transform: none; }
}

/* Portfolio grid */
.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--ins-charcoal);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.home-portfolio-section .portfolio-card {
    transition: transform 0.4s ease;
}

.home-portfolio-section .portfolio-card:hover {
    transform: translateY(-4px);
}

.home-portfolio-section .portfolio-card .portfolio-overlay {
    transition: opacity 0.4s ease, background 0.4s ease;
}

.home-portfolio-section .portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%);
}

.portfolio-card .portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ins-gold);
    margin-bottom: 0.25rem;
}

.portfolio-card .portfolio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.portfolio-filter .btn {
    color: var(--ins-gray);
    border-color: rgba(255,255,255,0.2);
    margin: 0.25rem;
}

.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
    color: var(--ins-gold);
    border-color: var(--ins-gold);
    background: rgba(201, 162, 39, 0.1);
}

/* Mission band */
.mission-band {
    background: var(--ins-charcoal);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Stats strip */
.stats-strip {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--ins-charcoal) 0%, var(--ins-dark) 100%);
}

.stats-strip .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--ins-gold);
    line-height: 1;
}

.stats-strip .stat-label {
    font-size: 0.9rem;
    color: var(--ins-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-strip .stat-number {
    min-height: 1.2em;
    display: inline-block;
}

.home-mission .mission-band-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1rem;
}

.home-mission .mission-band-text {
    font-size: 1.1rem;
    color: var(--ins-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.home-stats .stats-row .col-6 {
    transition: transform 0.4s ease;
}

.home-stats .stats-row .col-6:hover {
    transform: translateY(-2px);
}

.home-collab-cta {
    text-align: center;
    padding: 3rem 2rem;
}

.home-collab-cta .collab-cta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.home-collab-cta .collab-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1.5rem;
}

.home-collab-cta .btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35);
}

/* Collaboration CTA */
.collab-cta {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(139, 21, 56, 0.1) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

/* ── Global outline / ghost button visibility fixes ──
   Bootstrap's btn-outline-light can render as barely-visible on
   dark backgrounds if CSS variables are overridden by a theme reset.
   These rules guarantee legibility in all section contexts.        */

.btn-outline-light {
    color: var(--ins-white) !important;
    border-color: rgba(255,255,255,0.45) !important;
    background: transparent !important;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--ins-white) !important;
    color: var(--ins-white) !important;
    box-shadow: 0 0 18px rgba(255,255,255,0.12) !important;
}

/* Secondary CTA — transparent + gold border */
.btn-secondary-cta {
    background: transparent !important;
    color: var(--ins-white) !important;
    border: 2px solid var(--ins-gold) !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s !important;
}

.btn-secondary-cta:hover {
    background: var(--ins-gold) !important;
    color: #0d0d0d !important;
    box-shadow: 0 0 24px rgba(201,162,39,0.35) !important;
}

/* Global .btn-start — gold CTA button, works in any context */
.btn-start {
    background: linear-gradient(135deg, var(--ins-gold), #a6851e);
    color: #0d0d0d !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 28px rgba(201, 162, 39, 0.35);
    transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-start::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-start:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.55);
    transform: translateY(-2px);
}

.btn-start:hover::before {
    opacity: 1;
}

.btn-start:active {
    transform: translateY(0) scale(0.98);
}

/* Legacy: keep collab-cta override for older pages */
.collab-cta .btn-start {
    padding: 0.75rem 2.5rem;
}

/* Contact form */
.contact-form .form-control,
.contact-form .form-select {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--ins-white);
    border-radius: 6px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--ins-charcoal);
    border-color: var(--ins-gold);
    color: var(--ins-white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.contact-form .form-control::placeholder {
    color: var(--ins-gray);
}

.contact-form .btn-submit {
    background: var(--ins-gold);
    color: #0d0d0d;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.contact-form .btn-submit:hover {
    background: var(--ins-gold-hover);
    color: #0d0d0d;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
}

/* Footer */
.frontend-footer {
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 0 2rem;
}

.frontend-footer .footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    color: var(--ins-white);
}

.frontend-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frontend-footer .footer-links a {
    color: var(--ins-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.frontend-footer .footer-links a:hover {
    color: var(--ins-gold);
}

.frontend-footer .social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ins-dark);
    color: var(--ins-gray);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.frontend-footer .social-link:hover {
    background: var(--ins-gold);
    color: #0d0d0d;
}

.frontend-footer .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--ins-gray);
    font-size: 0.9rem;
}

/* Utility */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Placeholder when no hero video */
.hero-section .hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

/* ========== About Page — Cinematic ========== */
.page-about {
    position: relative;
}

/* Film grain overlay */
.film-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* About hero */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero .about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 40%, #0d0d0d 100%);
}

.about-hero .about-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

.about-hero .about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero .about-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.about-hero .about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.about-hero .about-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ins-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* About section blocks */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.about-section-alt {
    background: var(--ins-charcoal);
}

.about-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.about-section-lead {
    font-size: 1.15rem;
    color: var(--ins-gray);
    line-height: 1.75;
    max-width: 720px;
}

/* Founder card */
.founder-card {
    background: linear-gradient(145deg, var(--ins-charcoal) 0%, var(--ins-dark) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
}

.founder-card .founder-image-wrap {
    aspect-ratio: 3/4;
    background: var(--ins-dark);
    position: relative;
}

.founder-card .founder-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card .founder-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ins-dark) 0%, var(--ins-charcoal) 100%);
    color: var(--ins-gray);
    font-size: 4rem;
}

.founder-card .founder-body {
    padding: 2rem;
}

.founder-card .founder-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.founder-card .founder-role {
    font-size: 0.9rem;
    color: var(--ins-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.founder-card .founder-bio {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Mission / Vision blocks */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 991px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
}

.mission-block, .vision-block {
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.mission-block { border-left: 3px solid var(--ins-gold); }
.vision-block { border-left: 3px solid var(--ins-red); }

.mission-block h3, .vision-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.mission-block p, .vision-block p {
    color: var(--ins-gray);
    line-height: 1.7;
    margin: 0;
}

/* What makes us different */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .diff-grid { grid-template-columns: 1fr; }
}

.diff-item {
    padding: 2rem;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.diff-item:hover {
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.diff-item .diff-icon {
    font-size: 2rem;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.diff-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.diff-item p {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Studio values */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.values-list li:last-child { border-bottom: 0; }

.values-list .value-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--ins-gold);
    line-height: 1;
    flex-shrink: 0;
}

.values-list .value-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.values-list .value-desc {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.about-timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ins-gold), var(--ins-charcoal));
    opacity: 0.5;
}

@media (min-width: 768px) {
    .about-timeline::before { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

@media (min-width: 768px) {
    .timeline-item { padding-left: 0; padding-right: 50%; padding-bottom: 2.5rem; text-align: right; }
    .timeline-item:nth-child(even) { padding-right: 0; padding-left: 50%; text-align: left; }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ins-gold);
    box-shadow: 0 0 0 4px var(--ins-charcoal), 0 0 20px rgba(201, 162, 39, 0.4);
}

@media (min-width: 768px) {
    .timeline-item::before { left: 50%; margin-left: -7px; }
}

.timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--ins-gold);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.timeline-desc {
    color: var(--ins-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Team cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.team-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-4px);
}

.team-card .team-photo {
    aspect-ratio: 1;
    background: var(--ins-dark);
}

.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ins-dark) 0%, var(--ins-charcoal) 100%);
    color: var(--ins-gray);
    font-size: 2.5rem;
}

.team-card .team-info {
    padding: 1.5rem;
}

.team-card .team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--ins-gold);
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.about-cta .about-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.about-cta .about-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.about-cta .about-cta-text {
    color: var(--ins-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-cta .btn-collab {
    background: var(--ins-gold);
    color: #0d0d0d;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
    transition: box-shadow 0.3s, transform 0.2s;
}

.about-cta .btn-collab:hover {
    color: #0d0d0d;
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.6);
    transform: translateY(-2px);
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  ABOUT PAGE — World-class redesign                           ║
   ║  All new ab-* classes. Sections: hero, story, founder,       ║
   ║  mission/vision, diff cards, values, timeline, team, cta     ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── Base ── */
.ab-page {
    background: var(--bg-about);
    color: var(--ins-white);
    overflow-x: hidden;
}

/* Film grain overlay */
.ab-grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Shared section spacing */
.ab-section {
    padding: 7rem 0;
    position: relative;
}

/* ── Shared elements ── */
.ab-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-violet-l);
    margin-bottom: 0.75rem;
    display: block;
}

.ab-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--ins-white);
}

.ab-section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ins-violet-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-body-text {
    font-size: 1.05rem;
    color: var(--ins-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.ab-rule {
    width: 48px;
    height: 2px;
    margin: 1.25rem 0 1.75rem;
    border-radius: 2px;
}
.ab-rule-violet { background: linear-gradient(90deg, var(--ins-violet), transparent); }
.ab-rule-gold   { background: linear-gradient(90deg, var(--ins-gold), transparent); }
.ab-rule-cyan   { background: linear-gradient(90deg, var(--ins-cyan-l), transparent); }
.ab-rule-amber  { background: linear-gradient(90deg, var(--ins-amber-l), transparent); }

/* Corner bracket decoration (reusable) */
.ab-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: rgba(124, 58, 237, 0.4);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    z-index: 2;
}

/* ══════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════ */
.ab-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 30%, rgba(124, 58, 237, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(8, 145, 178, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 10% 70%, rgba(219, 39, 119, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, var(--bg-about) 0%, #0a0815 60%, #08101a 100%);
}

.ab-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.ab-hero-orb-1 {
    width: 320px; height: 320px;
    top: 10%; left: 5%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 65%);
}
.ab-hero-orb-2 {
    width: 240px; height: 240px;
    top: 55%; right: 8%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.22) 0%, transparent 65%);
}
.ab-hero-orb-3 {
    width: 180px; height: 180px;
    bottom: 20%; left: 20%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 65%);
}

/* Oversized year backdrop */
.ab-hero-year {
    position: absolute;
    right: -2%;
    bottom: -5%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 22vw, 20rem);
    letter-spacing: 0.06em;
    color: rgba(124, 58, 237, 0.05);
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

/* Hero corner brackets */
.ab-corner-tl { top: 5rem; left: 2rem; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.ab-corner-tr { top: 5rem; right: 2rem; border-top-width: 2px; border-right-width: 2px; border-radius: 0 4px 0 0; }
.ab-corner-bl { bottom: 3rem; left: 2rem; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 4px; }
.ab-corner-br { bottom: 3rem; right: 2rem; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }

/* Hero content */
.ab-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ab-hero-label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0; /* GSAP reveals */
}

.ab-hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ins-violet-l);
    box-shadow: 0 0 8px var(--ins-violet-l);
    flex-shrink: 0;
    animation: abDotPulse 2s ease-in-out infinite;
}

@keyframes abDotPulse {
    0%, 100% { box-shadow: 0 0 6px var(--ins-violet-l); }
    50%       { box-shadow: 0 0 16px var(--ins-violet-l); }
}

.ab-hero-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--ins-violet-l);
}

.ab-hero-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--ins-violet-l), transparent);
}

/* Hero title */
.ab-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 14vw, 12rem);
    letter-spacing: 0.02em;
    line-height: 0.92;
    margin-bottom: 1.5rem;
    opacity: 0; /* GSAP */
}

.ab-hero-title-row {
    display: block;
}

.ab-hero-title-accent {
    background: linear-gradient(135deg, var(--ins-violet-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ins-gray);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0; /* GSAP */
}

/* Scroll hint */
.ab-hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0; /* GSAP */
}

.ab-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--ins-violet-l), transparent);
    animation: abScrollBounce 2s ease-in-out infinite;
}

@keyframes abScrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50%       { transform: scaleY(1.2); opacity: 1; }
}

.ab-scroll-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* Bottom rule of hero */
.ab-hero-bottom-rule {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), rgba(34,211,238,0.2), transparent);
}

/* ══════════════════════════════════════════════════
   2. STORY SECTION
══════════════════════════════════════════════════ */
.ab-story {
    background: linear-gradient(180deg, var(--bg-about) 0%, #0a0d1a 100%);
}

.ab-story-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(124,58,237,0.09) 0%, transparent 55%);
    pointer-events: none;
}

.ab-story-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .ab-story-layout { grid-template-columns: 1fr; }
}

/* Oversized INS monogram */
.ab-story-mono {
    display: flex;
    flex-direction: column;
    gap: 0;
    user-select: none;
    pointer-events: none;
}

.ab-story-mono span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    letter-spacing: 0;
    line-height: 0.88;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(124, 58, 237, 0.2);
    display: block;
    transition: -webkit-text-stroke-color 0.3s ease;
}

.ab-story-mono:hover span {
    -webkit-text-stroke-color: rgba(124, 58, 237, 0.45);
}

/* Pull quote */
.ab-pull-quote {
    position: relative;
    padding: 3rem 3rem 3rem 5rem;
    border-left: 2px solid var(--ins-violet);
    background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, transparent 70%);
    border-radius: 0 12px 12px 0;
    margin: 0 0 4rem;
}

.ab-pq-mark {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(124,58,237,0.3);
    pointer-events: none;
}

.ab-pull-quote blockquote {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ins-white);
    border: none;
    margin: 0;
    padding: 0;
}

/* Story media */
.ab-story-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ab-story-media-inner {
    position: relative;
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(8,145,178,0.08) 100%);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 16px;
    overflow: hidden;
}

.ab-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.15);
    font-size: 3rem;
}

.ab-media-placeholder span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.ab-media-frame {
    position: absolute;
    width: 32px; height: 32px;
    border-color: rgba(124,58,237,0.5);
    border-style: solid;
    border-width: 0;
}
.ab-media-frame-tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; border-radius: 3px 0 0 0; }
.ab-media-frame-br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 3px 0; }

/* ══════════════════════════════════════════════════
   3. FOUNDER
══════════════════════════════════════════════════ */
.ab-founder {
    background: linear-gradient(135deg, #0e0818 0%, #080f18 100%);
}

.ab-founder-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,162,39,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.ab-founder-card {
    position: relative;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(201,162,39,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .ab-founder-card { grid-template-columns: 1fr; }
}

/* Gradient border effect */
.ab-founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(201,162,39,0.5), rgba(255,255,255,0.04), rgba(124,58,237,0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ab-founder-photo-wrap {
    position: relative;
}

.ab-founder-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1020 0%, #0f1a20 100%);
}

.ab-founder-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(201,162,39,0.25);
    background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(201,162,39,0.08) 100%);
}

/* Floating role badge on photo */
.ab-founder-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ins-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ab-founder-photo-deco {
    position: absolute;
    width: 24px; height: 24px;
    border-color: rgba(201,162,39,0.45);
    border-style: solid;
    border-width: 0;
}
.ab-fdeco-tl { top: -4px; left: -4px; border-top-width: 2px; border-left-width: 2px; border-radius: 3px 0 0 0; }
.ab-fdeco-br { bottom: -4px; right: -4px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 3px 0; }

/* Founder text content */
.ab-founder-est {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.ab-founder-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.ab-founder-role-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 30px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ins-gold);
    margin-bottom: 1.5rem;
}

.ab-founder-bio {
    color: var(--ins-gray);
    line-height: 1.75;
    font-size: 0.98rem;
    margin-bottom: 2rem;
}

/* Mini stats inside founder card */
.ab-founder-stats {
    display: flex;
    gap: 2rem;
}

.ab-fstat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--ins-white);
    line-height: 1;
}

.ab-fstat-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ins-gray);
}

.ab-card-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: rgba(201,162,39,0.35);
    border-style: solid;
    border-width: 0;
}
.ab-cc-tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 2px 0 0 0; }
.ab-cc-br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 2px 0; }

/* ══════════════════════════════════════════════════
   4. MISSION & VISION — Full-width alternating panels
══════════════════════════════════════════════════ */
.ab-mv {
    padding: 4rem 0 0;
    background: var(--bg-about);
}

.ab-mv .container { padding-bottom: 4rem; }

.ab-mv-panel {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ab-mv-mission { background: linear-gradient(135deg, #0e0818 0%, #080f18 100%); }
.ab-mv-vision  { background: linear-gradient(135deg, #08101a 0%, #0c0818 100%); }

.ab-mv-panel-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ab-mv-mission .ab-mv-panel-bg {
    background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(124,58,237,0.12) 0%, transparent 55%);
}

.ab-mv-vision .ab-mv-panel-bg {
    background: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(8,145,178,0.12) 0%, transparent 55%);
}

.ab-mv-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
}

.ab-mv-content-flip {
    flex-direction: row-reverse;
    margin-left: auto;
}

@media (max-width: 767px) {
    .ab-mv-content, .ab-mv-content-flip {
        flex-direction: column !important;
        gap: 2rem;
    }
}

.ab-mv-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 9rem);
    line-height: 1;
    flex-shrink: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
}

.ab-mv-mission .ab-mv-num { -webkit-text-stroke-color: rgba(124,58,237,0.2); }
.ab-mv-vision  .ab-mv-num { -webkit-text-stroke-color: rgba(8,145,178,0.2); }

.ab-mv-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    border: 1px solid;
}

.ab-mv-badge-violet {
    background: rgba(124,58,237,0.1);
    border-color: rgba(124,58,237,0.35);
    color: var(--ins-violet-l);
}

.ab-mv-badge-cyan {
    background: rgba(8,145,178,0.1);
    border-color: rgba(34,211,238,0.35);
    color: var(--ins-cyan-l);
}

.ab-mv-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1rem;
}

.ab-mv-text p {
    color: var(--ins-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    max-width: 520px;
}

.ab-mv-icon {
    flex-shrink: 0;
    width: 100px; height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.5;
}

.ab-mv-mission .ab-mv-icon {
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.2);
    color: var(--ins-violet-l);
}

.ab-mv-vision .ab-mv-icon {
    background: rgba(8,145,178,0.08);
    border: 1px solid rgba(34,211,238,0.2);
    color: var(--ins-cyan-l);
}

/* ══════════════════════════════════════════════════
   5. WHAT MAKES US DIFFERENT — Creative cards
══════════════════════════════════════════════════ */
.ab-diff {
    background: var(--bg-about);
}

.ab-diff-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(8,145,178,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.ab-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .ab-diff-grid { grid-template-columns: 1fr; }
}

.ab-diff-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.ab-diff-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Per-card accent colors */
.ab-diff-card-1 { --card-color: var(--ins-violet-l); --card-rgb: 124,58,237; }
.ab-diff-card-2 { --card-color: var(--ins-amber-l);  --card-rgb: 217,119,6; }
.ab-diff-card-3 { --card-color: var(--ins-cyan-l);   --card-rgb: 8,145,178; }
.ab-diff-card-4 { --card-color: var(--ins-rose-l);   --card-rgb: 225,29,72; }

.ab-diff-card:hover {
    box-shadow: 0 16px 48px rgba(var(--card-rgb), 0.2);
    border-color: rgba(var(--card-rgb), 0.25);
}

/* Gradient glow on hover (mouse-follow) */
.ab-diff-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: radial-gradient(
        300px circle at 50% 50%,
        rgba(var(--card-rgb), 0.12) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ab-diff-card:hover .ab-diff-card-glow { opacity: 1; }

/* Top accent number */
.ab-diff-num {
    position: absolute;
    top: 1rem; right: 1.25rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(var(--card-rgb), 0.08);
    pointer-events: none;
}

.ab-diff-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(var(--card-rgb), 0.1);
    border: 1px solid rgba(var(--card-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ab-diff-card:hover .ab-diff-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(var(--card-rgb), 0.18);
    box-shadow: 0 0 24px rgba(var(--card-rgb), 0.25);
}

.ab-diff-icon {
    font-size: 1.6rem;
    color: var(--card-color);
}

.ab-diff-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--ins-white);
    margin-bottom: 0.75rem;
    transition: color 0.25s ease;
}

.ab-diff-card:hover .ab-diff-title {
    color: var(--card-color);
}

.ab-diff-text {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Bottom accent line */
.ab-diff-card-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-diff-card:hover .ab-diff-card-line { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   6. VALUES
══════════════════════════════════════════════════ */
.ab-values {
    background: linear-gradient(135deg, #0f0c08 0%, #0a0d15 100%);
}

.ab-values-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(217,119,6,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.ab-values-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .ab-values-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.ab-values-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ab-value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
    border-radius: 8px;
}

.ab-value-item:last-child { border-bottom: none; }

.ab-value-item:hover {
    background: rgba(217,119,6,0.03);
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 -1rem;
}

.ab-value-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ab-value-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--ins-amber-l);
    line-height: 1;
    transition: color 0.25s, text-shadow 0.25s;
}

.ab-value-item:hover .ab-value-num {
    text-shadow: 0 0 20px rgba(251,191,36,0.5);
}

.ab-value-track {
    width: 1px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to bottom, rgba(217,119,6,0.3), transparent);
}

.ab-value-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ins-white);
    margin-bottom: 0.4rem;
    transition: color 0.25s ease;
}

.ab-value-item:hover .ab-value-title { color: var(--ins-amber-l); }

.ab-value-desc {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════
   7. TIMELINE
══════════════════════════════════════════════════ */
.ab-timeline {
    background: linear-gradient(180deg, #080f18 0%, var(--bg-about) 100%);
}

.ab-timeline-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(8,145,178,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.ab-tl-track {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Vertical center line */
.ab-tl-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(34,211,238,0.4) 10%,
        rgba(124,58,237,0.4) 60%,
        transparent 100%
    );
}

.ab-tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.ab-tl-item:last-child { margin-bottom: 0; }

/* Left item: content left, dot center */
.ab-tl-left .ab-tl-card { grid-column: 1; grid-row: 1; }
.ab-tl-left .ab-tl-dot-wrap { grid-column: 2; grid-row: 1; }
.ab-tl-left .ab-tl-card { text-align: right; }
/* Empty right */

/* Right item: empty left, dot center, content right */
.ab-tl-right { }
.ab-tl-right .ab-tl-dot-wrap { grid-column: 2; grid-row: 1; order: 0; }
.ab-tl-right .ab-tl-card { grid-column: 3; grid-row: 1; }

@media (max-width: 767px) {
    .ab-tl-track { padding-left: 3rem; }
    .ab-tl-line { left: 16px; }
    .ab-tl-item { grid-template-columns: auto 1fr; }
    .ab-tl-left .ab-tl-card, .ab-tl-right .ab-tl-card {
        grid-column: 2 !important;
        text-align: left !important;
    }
    .ab-tl-dot-wrap { grid-column: 1 !important; }
}

/* Timeline dot */
.ab-tl-dot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ab-tl-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8,145,178,0.2) 0%, rgba(124,58,237,0.2) 100%);
    border: 2px solid var(--ins-cyan-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ins-cyan-l);
    box-shadow: 0 0 20px rgba(34,211,238,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.ab-tl-item:hover .ab-tl-dot {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(34,211,238,0.45);
}

/* Timeline card */
.ab-tl-card {
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    transition: border-color 0.3s, background 0.3s;
}

.ab-tl-item:hover .ab-tl-card {
    border-color: rgba(34,211,238,0.2);
    background: rgba(8,145,178,0.04);
}

.ab-tl-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--ins-cyan-l);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.ab-tl-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.ab-tl-desc {
    color: var(--ins-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Bottom accent line on tl card */
.ab-tl-card-line {
    position: absolute;
    bottom: 0; left: 15%; right: 15%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--ins-cyan-l), transparent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ab-tl-item:hover .ab-tl-card-line { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   8. TEAM
══════════════════════════════════════════════════ */
.ab-team {
    background: linear-gradient(135deg, #100810 0%, #0a0818 100%);
}

.ab-team-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(219,39,119,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ab-team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.ab-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(219,39,119,0.3);
    box-shadow: 0 20px 50px rgba(219,39,119,0.15);
}

.ab-team-photo {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a14 0%, #0a0f1a 100%);
}

.ab-team-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(219,39,119,0.06) 0%, rgba(124,58,237,0.06) 100%);
}

/* Hover overlay */
.ab-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(219,39,119,0.85) 0%, rgba(124,58,237,0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ab-team-card:hover .ab-team-overlay { opacity: 1; }

.ab-team-overlay-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    color: #fff;
}

.ab-team-overlay-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ab-team-info {
    padding: 1.25rem 1.5rem;
}

.ab-team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: var(--ins-white);
    margin-bottom: 0.2rem;
}

.ab-team-role {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ins-pink-l);
}

/* Bottom accent line */
.ab-team-card-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ins-pink), var(--ins-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ab-team-card:hover .ab-team-card-line { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   9. CLOSING CTA
══════════════════════════════════════════════════ */
.ab-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0e0818 0%, #08101a 60%, #0c1408 100%);
}

.ab-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(34,211,238,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(16,185,129,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ab-cta-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* CTA corners */
.ab-cta-corner-tl { top: 2.5rem; left: 2.5rem; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.ab-cta-corner-tr { top: 2.5rem; right: 2.5rem; border-top-width: 2px; border-right-width: 2px; border-radius: 0 4px 0 0; }
.ab-cta-corner-bl { bottom: 2.5rem; left: 2.5rem; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 4px; }
.ab-cta-corner-br { bottom: 2.5rem; right: 2.5rem; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }

.ab-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ins-white) 20%, var(--ins-violet-l) 60%, var(--ins-cyan-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-cta-title em {
    font-style: normal;
}

.ab-cta-text {
    font-size: 1.1rem;
    color: var(--ins-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ab-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ab-btn-primary {
    background: linear-gradient(135deg, var(--ins-violet), var(--ins-cyan));
    color: #fff !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
    transition: box-shadow 0.3s, transform 0.2s;
    will-change: transform;
}

.ab-btn-primary:hover {
    box-shadow: 0 0 45px rgba(124,58,237,0.6);
    transform: translateY(-2px);
    color: #fff !important;
}

.ab-btn-outline {
    background: transparent;
    color: var(--ins-white) !important;
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
    will-change: transform;
}

.ab-btn-outline:hover {
    border-color: var(--ins-violet-l) !important;
    color: var(--ins-violet-l) !important;
    background: rgba(124,58,237,0.06) !important;
}

/* ── Hidden initial states (GSAP reveals) ── */
.ab-reveal,
.ab-reveal-el {
    opacity: 0;
}

/* Prefers-reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
    .ab-reveal, .ab-reveal-el {
        opacity: 1 !important;
        transform: none !important;
    }
    .ab-hero-dot, .ab-scroll-line { animation: none !important; }
}

/* ── Mobile adjustments ── */
@media (max-width: 575px) {
    .ab-hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
    .ab-founder-stats { flex-direction: column; gap: 1rem; }
    .ab-mv-panel { padding: 3rem 0; }
    .ab-cta { padding: 5rem 0; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   END ABOUT PAGE                                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ========== Services Page — Card grid + expandable ========== */
.page-services {
    padding-top: 0;
}

.services-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.services-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.services-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.services-hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--ins-gray);
    max-width: 560px;
    margin: 0 auto;
}

.services-section {
    padding: 4rem 0 5rem;
}

/* Service card — reusable component */
.service-page-card {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-page-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.service-page-card-head {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-page-card-head:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-page-card-head[aria-expanded="true"] .service-page-card-toggle .toggle-icon {
    transform: rotate(180deg);
}

.service-page-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    border-radius: 12px;
    color: var(--ins-gold);
    font-size: 1.75rem;
    transition: background 0.2s, color 0.2s;
}

.service-page-card:hover .service-page-card-icon {
    background: rgba(201, 162, 39, 0.2);
}

.service-page-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.service-page-card-excerpt {
    font-size: 0.95rem;
    color: var(--ins-gray);
    line-height: 1.5;
}

.service-page-card-toggle {
    font-size: 0.9rem;
    color: var(--ins-gold);
}

.service-page-card-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

/* Expandable detail section */
.service-page-card-detail {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-page-card-detail.collapsing {
    transition: height 0.35s ease;
}

.service-page-card-body {
    background: rgba(0, 0, 0, 0.2);
}

.service-page-desc {
    color: var(--ins-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-page-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.75rem;
}

.service-page-list {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--ins-gray);
    font-size: 0.9rem;
    line-height: 1.65;
}

.service-page-list li {
    margin-bottom: 0.35rem;
}

.service-page-list-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: step;
}

.service-page-list-steps li {
    counter-increment: step;
    padding-left: 1.75rem;
    position: relative;
}

.service-page-list-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ins-gold);
}

.service-page-list-outcomes {
    list-style: none;
    padding-left: 0;
}

.service-page-list-outcomes li::before {
    content: '→ ';
    color: var(--ins-gold);
    margin-right: 0.35rem;
}

.service-page-btn-cta {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-page-btn-cta:hover {
    background: var(--ins-gold-hover);
    color: #0d0d0d !important;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* Services bottom CTA */
.services-cta {
    padding: 4rem 0;
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.services-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.services-cta-text {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.services-cta-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.35);
    transition: box-shadow 0.3s, transform 0.2s;
}

.services-cta-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

/* ========== Portfolio Page — Dark gallery + modal ========== */
.page-portfolio {
    padding-top: 0;
}

.portfolio-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 4rem;
}

.portfolio-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 45%, #0d0d0d 100%);
}

.portfolio-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 25%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.portfolio-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.portfolio-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.portfolio-hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--ins-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* Tag-based filters */
.portfolio-filters-section {
    padding: 1.5rem 0 2rem;
    position: sticky;
    top: 70px;
    z-index: 10;
    background: linear-gradient(to bottom, var(--ins-black) 60%, transparent);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.portfolio-filter-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ins-gray);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.portfolio-filter-btn:hover {
    color: var(--ins-gold);
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.08);
}

.portfolio-filter-btn.active {
    color: var(--ins-black);
    background: var(--ins-gold);
    border-color: var(--ins-gold);
}

/* Gallery grid */
.portfolio-gallery-section {
    padding: 0 0 5rem;
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
}

@media (min-width: 576px) {
    .portfolio-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .portfolio-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Portfolio card */
.portfolio-gallery-card {
    height: 100%;
}

.portfolio-gallery-card-inner {
    height: 100%;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.portfolio-gallery-card-inner:hover {
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.portfolio-gallery-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ins-dark);
}

.portfolio-gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-gallery-card-inner:hover .portfolio-gallery-card-img {
    transform: scale(1.08);
}

/* Cinematic overlay */
.portfolio-gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-gallery-card-inner:hover .portfolio-gallery-card-overlay {
    opacity: 1;
}

.portfolio-gallery-card-play {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.9);
    color: #0d0d0d;
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-gallery-card-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.6);
    color: #0d0d0d;
}

a.portfolio-gallery-card-play:hover {
    color: #0d0d0d;
}

.portfolio-gallery-card-content {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-gallery-card-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.portfolio-gallery-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.portfolio-gallery-card-title-link {
    color: var(--ins-white);
    text-decoration: none;
    transition: color 0.2s;
}

.portfolio-gallery-card-title-link:hover {
    color: var(--ins-gold);
}

.portfolio-gallery-card-desc {
    font-size: 0.9rem;
    color: var(--ins-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-gallery-card-btn {
    background: transparent;
    color: var(--ins-gold);
    border: 1px solid var(--ins-gold);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

.portfolio-gallery-card-btn:hover:not(.disabled) {
    background: var(--ins-gold);
    color: #0d0d0d;
    border-color: var(--ins-gold);
}

.portfolio-gallery-card-btn.disabled {
    opacity: 0.5;
    cursor: default;
}

/* Video modal */
.portfolio-video-modal .modal-content {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.portfolio-video-modal .modal-body {
    padding: 0;
}

.portfolio-video-modal .ratio {
    background: #000;
}

.portfolio-video-modal iframe,
.portfolio-video-modal video {
    border-radius: 0 0 12px 12px;
}

/* Pagination (dark theme) */
.portfolio-pagination .pagination {
    justify-content: center;
    gap: 0.35rem;
}

.portfolio-pagination .page-link {
    background: var(--ins-charcoal);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--ins-gray);
}

.portfolio-pagination .page-link:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--ins-gold);
}

.portfolio-pagination .page-item.active .page-link {
    background: var(--ins-gold);
    border-color: var(--ins-gold);
    color: #0d0d0d;
}

.portfolio-pagination .page-item.disabled .page-link {
    background: var(--ins-charcoal);
    color: var(--ins-gray);
    opacity: 0.6;
}

/* ========== Project Detail Page — Reusable template ========== */
.page-project-detail {
    padding-top: 0;
}

/* Full-width hero */
.project-detail-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.project-detail-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.project-detail-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    padding-top: 5rem;
}

.project-detail-hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ins-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.project-detail-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.project-detail-hero-year {
    font-size: 1rem;
    color: var(--ins-gray);
    margin: 0;
}

/* Body sections */
.project-detail-body {
    padding-bottom: 0;
}

.project-detail-section {
    padding: 4rem 0;
}

.project-detail-section-alt {
    background: var(--ins-charcoal);
}

.container-narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.project-detail-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1.25rem;
}

.project-detail-synopsis,
.project-detail-credits,
.project-detail-team,
.project-detail-results {
    color: var(--ins-gray);
    line-height: 1.75;
    font-size: 1.05rem;
}

/* Embedded video */
.project-detail-video-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-detail-video-wrap iframe,
.project-detail-video-wrap video {
    border: none;
}

/* BTS gallery */
.project-detail-bts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.project-detail-bts-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ins-dark);
}

.project-detail-bts-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-detail-bts-item:hover img {
    transform: scale(1.05);
}

/* Next/previous navigation */
.project-detail-nav-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.project-detail-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 767px) {
    .project-detail-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.project-detail-nav-link {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    color: var(--ins-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.project-detail-nav-link:hover:not(.disabled) {
    color: var(--ins-gold);
}

.project-detail-nav-link.disabled {
    visibility: hidden;
}

.project-detail-nav-prev {
    text-align: left;
}

@media (max-width: 767px) {
    .project-detail-nav-prev { text-align: center; }
}

.project-detail-nav-next {
    text-align: right;
}

@media (max-width: 767px) {
    .project-detail-nav-next { text-align: center; }
}

.project-detail-nav-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.project-detail-nav-title {
    font-weight: 600;
    color: var(--ins-white);
    font-size: 1rem;
}

.project-detail-nav-link:hover .project-detail-nav-title {
    color: var(--ins-gold);
}

.project-detail-nav-all {
    font-weight: 600;
    color: var(--ins-gold);
    white-space: nowrap;
}

.project-detail-nav-all:hover {
    color: var(--ins-gold-hover);
}

/* CTA */
.project-detail-cta {
    padding: 4rem 0;
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.project-detail-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.project-detail-cta-text {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.project-detail-cta-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.35);
    transition: box-shadow 0.3s, transform 0.2s;
}

.project-detail-cta-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

/* ========== Talent & Artists Page ========== */
.page-talent {
    padding-top: 0;
}

.talent-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.talent-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.talent-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 55%);
}

.talent-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.talent-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.talent-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.talent-hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--ins-gray);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.talent-hero-cta {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.35);
    transition: box-shadow 0.3s, transform 0.2s;
}

.talent-hero-cta:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

.talent-filters-section {
    padding: 1.5rem 0 2rem;
}

.talent-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.talent-filter-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ins-gray);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.talent-filter-btn:hover {
    color: var(--ins-gold);
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.08);
}

.talent-filter-btn.active {
    color: var(--ins-black);
    background: var(--ins-gold);
    border-color: var(--ins-gold);
}

.talent-grid-section {
    padding: 0 0 4rem;
}

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

@media (min-width: 576px) {
    .talent-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .talent-grid { grid-template-columns: repeat(3, 1fr); }
}

.talent-card-inner {
    height: 100%;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.talent-card-inner:hover {
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.talent-card-photo-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ins-dark);
}

.talent-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.talent-card-inner:hover .talent-card-photo {
    transform: scale(1.05);
}

.talent-card-content {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.talent-card-skill {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.talent-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.talent-card-bio {
    font-size: 0.9rem;
    color: var(--ins-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.talent-card-btn {
    background: transparent;
    color: var(--ins-gold);
    border: 1px solid var(--ins-gold);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

.talent-card-btn:hover {
    background: var(--ins-gold);
    color: #0d0d0d;
    border-color: var(--ins-gold);
}

.talent-cta-section {
    padding: 4rem 0;
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.talent-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.talent-cta-text {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.talent-cta-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.talent-cta-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

.talent-form-section {
    padding: 4rem 0 5rem;
}

.talent-form-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.talent-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
}

.talent-form .form-control,
.talent-form .form-select {
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ins-white);
    border-radius: 6px;
}

.talent-form .form-control:focus,
.talent-form .form-select:focus {
    background: var(--ins-dark);
    border-color: var(--ins-gold);
    color: var(--ins-white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.talent-form .form-label {
    color: var(--ins-gray);
}

.talent-form-submit {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.talent-form-submit:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
}

/* Artist detail modal */
.talent-artist-modal .modal-content {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.talent-artist-modal .modal-body {
    padding: 1.5rem 1.5rem 2rem;
}

.artist-modal-photo-wrap {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 220px;
    margin: 0 auto;
    background: var(--ins-dark);
}

.artist-modal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-modal-bio {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ========== Artist Submission Page — Cinematic + clean ========== */
.page-artist-submission {
    padding-top: 0;
}

.submission-hero {
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.submission-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.submission-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
}

.submission-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.submission-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.submission-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 0.75rem;
}

.submission-hero-tagline {
    font-size: 1rem;
    color: var(--ins-gray);
    max-width: 480px;
    margin: 0 auto;
}

.submission-form-section {
    padding: 2rem 0 5rem;
}

.submission-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem;
}

.submission-alert {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.submission-alert-error {
    background: rgba(139, 21, 56, 0.2);
    border: 1px solid rgba(139, 21, 56, 0.4);
    color: #e8a0b5;
}

.submission-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 575px) {
    .submission-form-grid { grid-template-columns: 1fr; }
}

.submission-form-group {
    margin-bottom: 1.25rem;
}

.submission-form-group:last-of-type {
    margin-bottom: 0;
}

.submission-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ins-gray);
    margin-bottom: 0.4rem;
}

.submission-label .required {
    color: var(--ins-gold);
}

.submission-input,
.submission-select {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--ins-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.submission-input:focus,
.submission-select:focus {
    outline: none;
    border-color: var(--ins-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.submission-input::placeholder {
    color: var(--ins-gray);
    opacity: 0.8;
}

.submission-textarea {
    min-height: 100px;
    resize: vertical;
}

.submission-file {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--ins-gray);
}

.submission-file::file-selector-button {
    padding: 0.4rem 0.75rem;
    margin-right: 0.75rem;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--ins-white);
    cursor: pointer;
}

.submission-uploads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
    .submission-uploads { grid-template-columns: 1fr; }
}

.submission-upload-preview {
    margin-top: 0.75rem;
    min-height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ins-dark);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.submission-upload-preview[aria-hidden="true"] {
    display: none;
}

.submission-preview-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.submission-preview-video {
    width: 100%;
    max-height: 200px;
    display: block;
}

.submission-form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.submission-submit-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.submission-submit-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

.submission-cancel-link {
    color: var(--ins-gray);
    font-size: 0.95rem;
    text-decoration: none;
}

.submission-cancel-link:hover {
    color: var(--ins-gold);
}

/* Success state */
.submission-success {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1rem;
}

.submission-success-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.submission-success-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.submission-success-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.submission-success-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.submission-success-icon {
    font-size: 4rem;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.submission-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.submission-success-text {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.submission-success-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
}

.submission-success-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* ========== Collaborate / Project inquiry page ========== */
.page-collaborate {
    padding-top: 0;
}

.collab-hero {
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.collab-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.collab-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
}

.collab-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.collab-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.collab-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 0.75rem;
}

.collab-hero-tagline {
    font-size: 1rem;
    color: var(--ins-gray);
    max-width: 480px;
    margin: 0 auto;
}

/* Reassurance blocks */
.collab-reassurance {
    padding: 1.5rem 0;
}

.collab-reassurance-top .collab-reassurance-inner {
    text-align: center;
}

.collab-reassurance-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 10px;
}

.collab-reassurance-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.collab-reassurance-text {
    color: var(--ins-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.collab-reassurance-bottom .collab-reassurance-text {
    margin-bottom: 1rem;
}

.collab-reassurance-bottom .collab-reassurance-inner {
    text-align: center;
}

.collab-reassurance-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
}

.collab-reassurance-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* Form section */
.collab-form-section {
    padding: 2rem 0 4rem;
}

.collab-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.collab-alert {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.collab-alert-error {
    background: rgba(139, 21, 56, 0.2);
    border: 1px solid rgba(139, 21, 56, 0.4);
    color: #e8a0b5;
}

.collab-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem;
}

.collab-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .collab-form-grid { grid-template-columns: 1fr; }
}

.collab-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .collab-form-row { grid-template-columns: 1fr; }
}

.collab-form-group {
    margin-bottom: 1.25rem;
}

.collab-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ins-gray);
    margin-bottom: 0.4rem;
}

.collab-label .required {
    color: var(--ins-gold);
}

.collab-input,
.collab-select {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--ins-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.collab-input:focus,
.collab-select:focus {
    outline: none;
    border-color: var(--ins-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.collab-textarea {
    min-height: 100px;
    resize: vertical;
}

.collab-file {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--ins-gray);
}

.collab-file::file-selector-button {
    padding: 0.4rem 0.75rem;
    margin-right: 0.75rem;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--ins-white);
    cursor: pointer;
}

.collab-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--ins-gray);
    margin-top: 0.35rem;
    opacity: 0.9;
}

.collab-form-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collab-submit-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.collab-submit-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* Process steps */
.collab-process-section {
    padding: 4rem 0;
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.collab-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .collab-process-steps { grid-template-columns: 1fr; }
}

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

.collab-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--ins-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.collab-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.collab-step-desc {
    font-size: 0.9rem;
    color: var(--ins-gray);
    line-height: 1.55;
    margin: 0;
}

/* FAQ accordion */
.collab-faq-section {
    padding: 4rem 0;
}

.collab-faq-accordion {
    max-width: 640px;
    margin: 0 auto;
}

.collab-faq-item {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.collab-faq-item .accordion-button {
    background: var(--ins-charcoal);
    color: var(--ins-white);
    font-weight: 500;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: none;
}

.collab-faq-item .accordion-button:not(.collapsed) {
    background: rgba(201, 162, 39, 0.08);
    color: var(--ins-gold);
}

.collab-faq-item .accordion-button::after {
    filter: invert(1);
    opacity: 0.7;
}

.collab-faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.collab-faq-item .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--ins-gray);
    padding: 1rem 1.25rem;
    line-height: 1.6;
}

/* Success state */
.collab-success {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1rem;
}

.collab-success-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.collab-success-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.collab-success-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.collab-success-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.collab-success-icon {
    font-size: 4rem;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.collab-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 0.5rem;
}

.collab-success-text {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.collab-success-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
}

.collab-success-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

/* ========== Contact page ========== */
.page-contact {
    padding-top: 0;
}

.contact-hero {
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ins-gold);
    margin-bottom: 1rem;
}

.contact-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 0.75rem;
}

.contact-hero-tagline {
    font-size: 1rem;
    color: var(--ins-gray);
    max-width: 480px;
    margin: 0 auto;
}

.contact-main {
    padding: 2rem 0 5rem;
}

.contact-form-card {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.contact-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1.5rem;
}

.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-alert-error {
    background: rgba(139, 21, 56, 0.2);
    border: 1px solid rgba(139, 21, 56, 0.4);
    color: #e8a0b5;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ins-gray);
    margin-bottom: 0.4rem;
}

.contact-label .required {
    color: var(--ins-gold);
}

.contact-input,
.contact-select {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--ins-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus,
.contact-select:focus {
    outline: none;
    border-color: var(--ins-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-submit-btn {
    background: var(--ins-gold);
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-submit-btn:hover {
    color: #0d0d0d !important;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

.contact-info-card {
    background: var(--ins-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--ins-white);
    margin-bottom: 1.25rem;
}

.contact-info-location {
    color: var(--ins-gray);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-info-location i,
.contact-info-item i {
    margin-right: 0.5rem;
    color: var(--ins-gold);
}

.contact-info-address {
    color: var(--ins-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.contact-info-item {
    margin-bottom: 0.75rem;
}

.contact-info-item a {
    color: var(--ins-white);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--ins-gold);
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ins-dark);
    color: var(--ins-gray);
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.contact-social-link:hover {
    background: var(--ins-gold);
    color: #0d0d0d;
}

.contact-response-note {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--ins-gray);
}

.contact-response-note i {
    margin-right: 0.5rem;
    color: var(--ins-gold);
}

.contact-map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    background: var(--ins-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 220px;
}

.contact-map-placeholder iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
}

.contact-map-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 2rem;
    color: var(--ins-gray);
    text-align: center;
}

.contact-map-fallback i {
    font-size: 2.5rem;
    color: var(--ins-gold);
    margin-bottom: 0.75rem;
}

.contact-map-fallback small {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ========== News & Updates ========== */
.page-news {
    padding-top: 80px;
}

.news-hero {
    position: relative;
    padding: 4rem 0 3rem;
    text-align: center;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ins-charcoal) 0%, var(--ins-black) 100%);
}

.news-hero-content {
    position: relative;
    z-index: 1;
}

.news-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

.news-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.news-hero-tagline {
    color: var(--ins-gray);
    font-size: 1rem;
}

.news-filters-section {
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--ins-dark);
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.news-filter-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--ins-gray);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.news-filter-btn:hover {
    color: var(--ins-white);
}

.news-filter-btn.active {
    color: var(--ins-black);
    background: var(--ins-gold);
}

.news-content-section {
    padding: 2.5rem 0 4rem;
}

.news-featured {
    margin-bottom: 2.5rem;
}

.news-featured-inner {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ins-charcoal);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--ins-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.news-featured-inner:hover {
    border-color: var(--ins-gold);
    box-shadow: 0 4px 24px rgba(201, 162, 39, 0.15);
}

.news-featured-image-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--ins-dark);
    overflow: hidden;
}

.news-featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ins-gray);
    font-size: 3rem;
}

.news-featured-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--ins-gold);
    color: var(--ins-black);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.news-featured-body {
    padding: 1.5rem 1.75rem;
}

.news-featured-date {
    font-size: 0.85rem;
    color: var(--ins-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.news-featured-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.news-featured-excerpt {
    color: var(--ins-gray);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.news-featured-link {
    font-weight: 600;
    color: var(--ins-gold);
    font-size: 0.9rem;
}

.news-featured-link i {
    margin-left: 0.25rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    background: var(--ins-charcoal);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--ins-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.news-card-inner:hover {
    border-color: var(--ins-gold);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.12);
}

.news-card-image-wrap {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--ins-dark);
    overflow: hidden;
}

.news-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ins-gray);
    font-size: 2rem;
}

.news-card-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--ins-gold);
    color: var(--ins-black);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.news-card-body {
    padding: 1.25rem;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--ins-gold);
    display: block;
    margin-bottom: 0.4rem;
}

.news-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.news-card-excerpt {
    color: var(--ins-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.news-pagination {
    display: flex;
    justify-content: center;
}

.news-pagination .pagination {
    flex-wrap: wrap;
}

.news-pagination .page-link {
    background: var(--ins-charcoal);
    border-color: var(--ins-dark);
    color: var(--ins-white);
}

.news-pagination .page-link:hover {
    background: var(--ins-dark);
    color: var(--ins-gold);
}

.news-pagination .page-item.active .page-link {
    background: var(--ins-gold);
    border-color: var(--ins-gold);
    color: var(--ins-black);
}

.news-empty {
    color: var(--ins-gray);
}

/* Article page */
.page-news-article {
    padding-top: 80px;
    padding-bottom: 4rem;
}

.news-article-header {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--ins-dark);
}

.container-narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.news-article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ins-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-article-back:hover {
    color: var(--ins-gold-hover);
}

.news-article-cat {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ins-gold);
    margin-bottom: 0.75rem;
}

.news-article-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.news-article-meta {
    font-size: 0.9rem;
    color: var(--ins-gray);
}

.news-article-meta time + .news-article-author::before {
    content: ' · ';
}

.news-article-image-wrap {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-article-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.news-article-body {
    padding-top: 2rem;
}

.news-article-lead {
    font-size: 1.1rem;
    color: var(--ins-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-article-content {
    line-height: 1.7;
}

.news-article-content p {
    margin-bottom: 1rem;
}

.news-article-footer {
    padding: 2.5rem 0;
}

.news-article-back-btn {
    background: transparent;
    border: 2px solid var(--ins-gold);
    color: var(--ins-gold);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.news-article-back-btn:hover {
    background: var(--ins-gold);
    color: var(--ins-black);
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER — Zoom-to-Logo / Cinematic Reveal
═══════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.pl {
    position: fixed; inset: 0; z-index: 99999;
    background: #080705;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; pointer-events: all;
}

/* ── EXIT: whole overlay fades while logo blasts outward ── */
.pl.pl-exiting {
    pointer-events: none;
    /* Delay opacity fade slightly so logo zoom is seen first */
    animation: pl-exit-fade 0.85s cubic-bezier(0.4, 0, 0.6, 1) 0.1s forwards;
}
@keyframes pl-exit-fade {
    0%   { opacity: 1; }
    40%  { opacity: 0.85; }
    100% { opacity: 0; }
}

/* Chrome elements fade out first */
.pl.pl-exiting .pl-grain,
.pl.pl-exiting .pl-scanline,
.pl.pl-exiting .pl-perf,
.pl.pl-exiting .pl-clap-stripe,
.pl.pl-exiting .pl-frame,
.pl.pl-exiting .pl-rec,
.pl.pl-exiting .pl-slate,
.pl.pl-exiting #pl-bar-wrap,
.pl.pl-exiting .pl-tagline,
.pl.pl-exiting .pl-tc-strip {
    opacity: 0 !important;
    transition: opacity 0.15s ease !important;
}

/* Logo zoom blast — ONLY transform + opacity for GPU smoothness */
.pl.pl-exiting .pl-logo-wrap,
.pl.pl-exiting .pl-brand {
    will-change: transform, opacity;
    animation: pl-logo-blast 0.95s cubic-bezier(0.22, 0, 0.6, 1) forwards;
}
@keyframes pl-logo-blast {
    0%   { transform: scale(1);  opacity: 1; }
    18%  { transform: scale(1.5); opacity: 1; }
    65%  { transform: scale(9);  opacity: 0.5; }
    100% { transform: scale(24); opacity: 0; }
}

/* Glow ring expands with logo */
.pl.pl-exiting .pl-flash-ring {
    animation: pl-flash-ring 0.85s cubic-bezier(0.22, 0, 0.6, 1) forwards;
}
@keyframes pl-flash-ring {
    0%   { opacity: 0;   transform: scale(0.8); }
    20%  { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0;   transform: scale(18); }
}

/* ── Film grain texture ── */
.pl-grain {
    position: absolute; inset: -200%; width: 400%; height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
    background-size: 180px; pointer-events: none; z-index: 1;
    animation: pl-grain-shift 0.09s steps(1) infinite;
}
@keyframes pl-grain-shift {
    0%  { transform:translate(0,0); }      20% { transform:translate(-5%,10%); }
    40% { transform:translate(-14%,4%); }  60% { transform:translate(8%,-7%); }
    80% { transform:translate(-4%,13%); } 100% { transform:translate(3%,-2%); }
}

/* ── Horizontal scanline ── */
.pl-scanline {
    position: absolute; left: 0; right: 0; height: 2px; top: -2px;
    background: linear-gradient(90deg, transparent, rgba(240,192,96,.5), transparent);
    z-index: 2; pointer-events: none;
    animation: pl-scan 3.5s linear infinite;
}
@keyframes pl-scan {
    0%   { top: -2px; opacity: 0; }
    3%   { opacity: 1; }
    97%  { opacity: .4; }
    100% { top: 100%; opacity: 0; }
}

/* ── Film strip perforations ── */
.pl-perf {
    position: absolute; top: 0; bottom: 0; width: 32px; z-index: 3;
    display: flex; flex-direction: column; justify-content: space-around;
    align-items: center; padding: 20px 0;
    opacity: 0; animation: pl-fade-in .5s ease .3s forwards;
}
.pl-perf-l { left: 0;  background: rgba(0,0,0,.4); border-right: 1px solid rgba(255,255,255,.06); }
.pl-perf-r { right: 0; background: rgba(0,0,0,.4); border-left:  1px solid rgba(255,255,255,.06); }
.pl-perf span {
    width: 16px; height: 11px; border-radius: 2px;
    background: transparent; border: 1px solid rgba(255,255,255,.18);
    flex-shrink: 0;
}

/* ── Clapperboard diagonal stripes (top accent) ── */
.pl-clap-stripe {
    position: absolute; top: 0; left: 32px; right: 32px; height: 5px; z-index: 4;
    background: repeating-linear-gradient(
        -45deg,
        #f0c060 0px, #f0c060 8px,
        #080705 8px, #080705 16px
    );
    opacity: 0; animation: pl-fade-in .3s ease .1s forwards;
}

/* ── Frame corners ── */
.pl-frame {
    position: absolute; width: 28px; height: 28px; z-index: 5;
    pointer-events: none; opacity: 0;
    animation: pl-frame-in .45s ease forwards;
}
.pl-frame-tl { top:42px; left:48px;  border-top:1.5px solid rgba(240,192,96,.6); border-left:1.5px solid rgba(240,192,96,.6);  animation-delay:.15s; }
.pl-frame-tr { top:42px; right:48px; border-top:1.5px solid rgba(240,192,96,.6); border-right:1.5px solid rgba(240,192,96,.6); animation-delay:.22s; }
.pl-frame-bl { bottom:42px; left:48px;  border-bottom:1.5px solid rgba(240,192,96,.6); border-left:1.5px solid rgba(240,192,96,.6);  animation-delay:.3s; }
.pl-frame-br { bottom:42px; right:48px; border-bottom:1.5px solid rgba(240,192,96,.6); border-right:1.5px solid rgba(240,192,96,.6); animation-delay:.38s; }
@keyframes pl-frame-in {
    from { opacity:0; transform:scale(.75); }
    to   { opacity:1; transform:scale(1); }
}

/* ── REC indicator ── */
.pl-rec {
    position: absolute; top: 18px; left: 50px; z-index: 6;
    display: flex; align-items: center; gap: .4rem;
    opacity: 0; animation: pl-fade-in .4s ease .4s forwards;
}
.pl-rec-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #e03030;
    box-shadow: 0 0 7px rgba(224,48,48,.9);
    animation: pl-rec-blink 1.1s ease-in-out infinite;
}
@keyframes pl-rec-blink { 0%,100%{opacity:1;} 45%,55%{opacity:.1;} }
.pl-rec-label {
    font-size: .58rem; font-weight: 700; letter-spacing: .18em;
    color: #e03030; font-family: 'Bebas Neue', monospace;
}

/* ── Slate info (top-right) ── */
.pl-slate {
    position: absolute; top: 18px; right: 50px; z-index: 6;
    display: flex; align-items: center; gap: .5rem;
    opacity: 0; animation: pl-fade-in .4s ease .45s forwards;
}
.pl-slate-row {
    font-size: .55rem; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.3); font-family: 'Bebas Neue', monospace;
}
.pl-slate-row strong { color: rgba(240,192,96,.7); font-weight: 700; }
.pl-slate-sep { color: rgba(255,255,255,.15); font-size: .55rem; }

/* ── Inner content ── */
.pl-inner {
    position: relative; z-index: 7; text-align: center;
    padding: 2rem 4rem; display: flex; flex-direction: column;
    align-items: center; gap: 0;
}

/* ── Flash ring (gold burst on exit) ── */
.pl-flash-ring {
    position: absolute; z-index: 6; pointer-events: none;
    width: 160px; height: 160px; border-radius: 50%;
    border: 2px solid rgba(240,192,96,.6);
    box-shadow: 0 0 30px 6px rgba(240,192,96,.25), inset 0 0 30px 6px rgba(240,192,96,.1);
    opacity: 0;
}

/* ── Logo — ZOOM IN entry (transform + opacity only = GPU smooth) ── */
.pl-logo-wrap { margin-bottom: 2rem; position: relative; }
.pl-logo-img {
    max-height: 72px; width: auto; max-width: 260px; object-fit: contain;
    opacity: 0;
    transform-origin: center center;
    will-change: transform, opacity;
    animation: pl-logo-zoom-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
    /* Static glow via drop-shadow — no animation on it */
    filter: drop-shadow(0 0 20px rgba(240,192,96,.45));
}
@keyframes pl-logo-zoom-in {
    0%   { opacity: 0;   transform: scale(0.06); }
    55%  { opacity: 0.9; transform: scale(1.06); }
    80%  { opacity: 1;   transform: scale(0.97); }
    100% { opacity: 1;   transform: scale(1); }
}

/* ── Brand text (no-logo fallback) — ZOOM IN entry ── */
.pl-brand { margin-bottom: 2rem; transform-origin: center center; }
.pl-brand-letters {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; margin-bottom: .55rem;
}
.pl-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 6.5rem);
    line-height: 1; color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
    display: inline-block; opacity: 0;
    will-change: transform, opacity;
    animation: pl-letter-zoom .85s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i)*.08s + .12s) forwards;
}
.pl-brand-sep {
    font-size: clamp(1.8rem,4.5vw,3rem); color: #f0c060;
    opacity: 0; line-height: 1; margin-top: -.3em;
    will-change: transform, opacity;
    animation: pl-letter-zoom .75s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i)*.08s + .12s) forwards;
}
@keyframes pl-letter-zoom {
    0%   { opacity: 0; transform: scale(0.06); }
    55%  { opacity: 0.9; transform: scale(1.08); }
    80%  { opacity: 1;   transform: scale(0.97); }
    100% { opacity: 1;   transform: scale(1); }
}
.pl-brand-sub {
    display: flex; justify-content: center; gap: .06em; overflow: hidden;
}
.pl-sub-char {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(.7rem,2.5vw,.95rem); letter-spacing: .32em;
    color: rgba(240,192,96,.75); opacity: 0; transform: translateY(10px);
    animation: pl-sub-in .4s ease calc(var(--j)*.03s + .8s) forwards;
}
@keyframes pl-sub-in {
    from { opacity:0; transform:translateY(10px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Progress (film timeline) ── */
#pl-bar-wrap { width: 280px; }
#pl-bar-track {
    width: 100%; height: 2px; background: rgba(255,255,255,.1);
    border-radius: 2px; overflow: visible; position: relative;
    opacity: 0; animation: pl-fade-in .3s ease .5s forwards;
}
#pl-bar-fill {
    position: absolute; top: 0; left: 0; height: 100%; width: 0%;
    background: linear-gradient(90deg, #b8893a, #f0c060, #d4a045);
    background-size: 280px 100%; border-radius: 2px;
    transition: width .08s linear;
    animation: pl-bar-shine 2s linear infinite, pl-css-fill 1.4s cubic-bezier(.4,0,.6,1) forwards;
}
@keyframes pl-css-fill { 0%{width:0%} 70%{width:72%} 100%{width:88%} }
@keyframes pl-bar-shine {
    0%   { background-position: -280px 0; }
    100% { background-position:  280px 0; }
}
#pl-bar-glow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 10px 4px rgba(240,192,96,.9), 0 0 18px 6px rgba(184,137,58,.5);
    left: -4px; transition: left .08s linear; z-index: 2; pointer-events: none;
}
#pl-bar-label {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px; opacity: 0; animation: pl-fade-in .3s ease .55s forwards;
}
#pl-bar-status {
    font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.28); font-family: sans-serif;
}
#pl-bar-pct {
    font-size: 11px; font-weight: 700; color: #f0c060;
    font-family: 'Bebas Neue', monospace; letter-spacing: .06em;
}

/* ── Tagline ── */
.pl-tagline {
    font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255,255,255,.25); margin: 1rem 0 0;
    opacity: 0; transition: opacity .2s ease;
    animation: pl-fade-in .4s ease .6s forwards;
}

/* ── Bottom timecode strip ── */
.pl-tc-strip {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    z-index: 6; display: flex; align-items: center; gap: .55rem;
    white-space: nowrap;
    opacity: 0; animation: pl-fade-in .4s ease .65s forwards;
}
.pl-tc-item {
    font-size: .55rem; letter-spacing: .2em;
    color: rgba(255,255,255,.2); font-family: 'Bebas Neue', monospace;
}
.pl-tc-sep  { color: rgba(255,255,255,.1); font-size: .5rem; }
.pl-tc-brand { color: rgba(240,192,96,.25); }

/* ── Shared fade-in keyframe ── */
@keyframes pl-fade-in {
    from { opacity:0; transform:translateY(6px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Hide page hero until ready ── */
body:not(.preloader-done) .hero-section .hero-content,
body:not(.preloader-done) .hero-section .hero-title,
body:not(.preloader-done) .hero-section .hero-subtitle,
body:not(.preloader-done) .hero-section .d-flex.gap-3,
body:not(.preloader-done) .sv-hero-content,
body:not(.preloader-done) .ct-hero-content,
body:not(.preloader-done) .cl-hero-content,
body:not(.preloader-done) .pf-hero-content,
body:not(.preloader-done) .tl-hero-content { opacity: 0; }
body.preloader-done .hero-section .hero-content { opacity:1; transition:opacity .6s ease .2s; }
body.preloader-done .sv-hero-content,
body.preloader-done .ct-hero-content,
body.preloader-done .cl-hero-content,
body.preloader-done .pf-hero-content,
body.preloader-done .tl-hero-content { opacity:1; transition:opacity .9s ease .3s; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .pl-grain, .pl-scanline { animation: none; }
    .pl-logo-img { animation:none; opacity:1; transform:scale(1); filter:none; }
    .pl-letter, .pl-brand-sep, .pl-sub-char { animation:none; opacity:1; transform:none; filter:none; }
    .pl-frame, .pl-perf, .pl-clap-stripe, .pl-rec, .pl-slate,
    .pl-tc-strip, .pl-tagline, #pl-bar-track, #pl-bar-label { animation:none; opacity:1; transform:none; }
    .pl.pl-exiting { animation:none; }
    .pl.pl-exiting .pl-logo-wrap, .pl.pl-exiting .pl-brand { animation:none; opacity:0; }
}

/* ========== Scroll-triggered animations ========== */
.ins-animate {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ins-animate.ins-animated {
    opacity: 1;
    transform: translateY(0);
}

.ins-animate-up {
    transform: translateY(48px);
}

.ins-animate-scale {
    transform: translateY(24px) scale(0.98);
}

.ins-animate-scale.ins-animated {
    transform: translateY(0) scale(1);
}

.ins-animate-fade {
    transform: none;
}

.ins-animate-delay-1 { transition-delay: 0.1s; }
.ins-animate-delay-2 { transition-delay: 0.2s; }
.ins-animate-delay-3 { transition-delay: 0.3s; }
.ins-animate-delay-4 { transition-delay: 0.4s; }
.ins-animate-delay-5 { transition-delay: 0.5s; }
.ins-animate-delay-6 { transition-delay: 0.6s; }

/* Stagger children */
.ins-animate-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ins-animate-stagger.ins-animated > *:nth-child(1) { transition-delay: 0.05s; }
.ins-animate-stagger.ins-animated > *:nth-child(2) { transition-delay: 0.1s; }
.ins-animate-stagger.ins-animated > *:nth-child(3) { transition-delay: 0.15s; }
.ins-animate-stagger.ins-animated > *:nth-child(4) { transition-delay: 0.2s; }
.ins-animate-stagger.ins-animated > *:nth-child(5) { transition-delay: 0.25s; }
.ins-animate-stagger.ins-animated > *:nth-child(6) { transition-delay: 0.3s; }
.ins-animate-stagger.ins-animated > *:nth-child(7) { transition-delay: 0.35s; }
.ins-animate-stagger.ins-animated > *:nth-child(8) { transition-delay: 0.4s; }
.ins-animate-stagger.ins-animated > *:nth-child(9) { transition-delay: 0.45s; }
.ins-animate-stagger.ins-animated > *:nth-child(10) { transition-delay: 0.5s; }

.ins-animate-stagger.ins-animated > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Scroll progress bar ========== */
.scroll-progress-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9998;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--ins-gold), var(--ins-gold-hover));
    transform-origin: left center;
    transform: scaleX(0);
}

/* ========== Floating elements (hero) ========== */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.float-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    width: 280px;
    height: 280px;
}

.float-orb-1 { top: 10%; left: 5%; width: 200px; height: 200px; }
.float-orb-2 { top: 60%; right: 10%; width: 160px; height: 160px; opacity: 0.7; }
.float-orb-3 { bottom: 15%; left: 15%; width: 120px; height: 120px; opacity: 0.5; }

.float-svg {
    position: absolute;
    color: var(--ins-gold);
    width: 80px;
    height: auto;
}

.float-svg-frame { top: 20%; right: 12%; width: 100px; opacity: 0.2; }
.float-svg-circle { bottom: 25%; left: 8%; width: 70px; opacity: 0.15; }
.float-svg-film { top: 70%; left: 20%; width: 60px; opacity: 0.12; }

.float-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.25), transparent);
    width: 120px;
}

.float-line-1 { top: 35%; left: 15%; width: 100px; }
.float-line-2 { bottom: 40%; right: 20%; width: 80px; transform: rotate(-15deg); }

@media (max-width: 768px) {
    .float-orb { width: 120px !important; height: 120px !important; }
    .float-svg { width: 50px !important; }
}

/* ========== Reel strip (horizontal slider) ========== */
.reel-strip-section {
    padding: 4rem 0;
    overflow: hidden;
    background: var(--ins-charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reel-strip-track-wrap {
    overflow: hidden;
    width: 100%;
}

.reel-strip-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0 1rem;
    will-change: transform;
}

.reel-strip-card {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--ins-dark);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.reel-strip-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.reel-strip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.reel-strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ins-gold);
}

/* Smooth scroll for whole page */
html {
    scroll-behavior: smooth;
}

/* Reveal elements: GSAP animates from opacity 0 */
.reveal-text {
    opacity: 0;
}

/* Section scroll-reveal: start hidden so GSAP can reveal (avoids flash) */
[data-scroll-reveal] .ins-section-label,
[data-scroll-reveal] .ins-section-title,
[data-scroll-reveal] .ins-section-subtitle,
[data-scroll-reveal] .mission-band-title,
[data-scroll-reveal] .mission-band-text,
[data-scroll-reveal] .collab-cta-label,
[data-scroll-reveal] .collab-cta-title,
[data-scroll-reveal] .reveal-el {
    opacity: 0;
}

[data-scroll-reveal] .service-card,
[data-scroll-reveal] .service-card-v2,
[data-scroll-reveal] .portfolio-item,
[data-scroll-reveal] .portfolio-card {
    opacity: 0;
}

/* Fallback: if JS runs and adds .revealed, show content (e.g. when GSAP not loaded) */
[data-scroll-reveal].revealed .ins-section-label,
[data-scroll-reveal].revealed .ins-section-title,
[data-scroll-reveal].revealed .ins-section-subtitle,
[data-scroll-reveal].revealed .mission-band-title,
[data-scroll-reveal].revealed .mission-band-text,
[data-scroll-reveal].revealed .collab-cta-label,
[data-scroll-reveal].revealed .collab-cta-title,
[data-scroll-reveal].revealed .reveal-el,
[data-scroll-reveal].revealed .service-card,
[data-scroll-reveal].revealed .service-card-v2,
[data-scroll-reveal].revealed .portfolio-item,
[data-scroll-reveal].revealed .portfolio-card {
    opacity: 1;
    transform: none;
}

/* ============================================================
   CINEMATIC ANIMATION SYSTEM v2.0
   Additions for: Lenis, word-split, pinned section,
   media reveal, micro interactions, animated underlines
   ============================================================ */

/* ── Lenis smooth scroll compatibility ── */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ── Word-split hero text reveal ── */
/* Outer wrapper clips the word during translate-up */
.sw-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

/* The actual animated word actor */
.sw {
    display: inline-block;
    will-change: transform, opacity;
}

/* ── Pinned Storytelling Section ── */
.ins-pin-storytelling {
    position: relative;
    background: var(--ins-black);
    overflow: hidden;
}

/* Radial gold glow behind pin content */
.ins-pin-storytelling::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(201, 162, 39, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

/* Subtle film-grain texture */
.ins-pin-storytelling::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Pin container — full viewport height, items stacked absolutely */
.ins-pin-inner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

/* Each pin item fills the container and stacks */
.ins-pin-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    will-change: transform, opacity;
    text-align: center;
}

/* First item is visible before scroll; GSAP sets rest to opacity:0 */
.ins-pin-item:first-child {
    opacity: 1;
}

/* Pin section headline */
.ins-pin-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    line-height: 1.08;
    margin: 0.6rem auto 0;
    max-width: 820px;
    color: var(--ins-white);
}

.ins-pin-headline em {
    color: var(--ins-gold);
    font-style: normal;
}

/* Pin label above headline */
.ins-pin-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--ins-gold);
    margin-bottom: 0.5rem;
}

/* Pin accent line below headline */
.ins-pin-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ins-gold), transparent);
    margin: 1.5rem auto 0;
}

/* CTA button inside pin items */
.ins-pin-item .btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 2rem;
    padding: .85rem 2.25rem;
    background: linear-gradient(135deg, hsl(262 80% 55%), hsl(330 70% 55%));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .05em;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 30px hsl(262 80% 55% / .4);
    transition: opacity .25s, transform .2s, box-shadow .25s;
}
.ins-pin-item .btn-primary-cta:hover {
    opacity: .9;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px hsl(262 80% 55% / .6);
    color: #fff;
}

/* ── Media reveal initial states ── */
/* Images inside portfolio-card start invisible; GSAP reveals */
.portfolio-card img {
    will-change: transform, opacity;
}

/* ── Animated Nav Underline ── */
.ins-anim-link {
    position: relative;
    overflow: hidden;
}

.ins-anim-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--ins-gold), var(--ins-gold-hover));
    transform: translateX(-101%);
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.ins-anim-link:hover::after {
    transform: translateX(0);
}

/* ── Button micro-interaction: GPU-composited transform only ── */
.btn-primary-cta,
.btn-secondary-cta,
.btn-start,
.btn-submit,
.btn-arrow,
.btn-cta {
    will-change: transform;
    transform-origin: center center;
}

/* ── Card hover elevation (GSAP overrides, CSS is fallback) ── */
.portfolio-card {
    will-change: transform;
    transform-origin: center center;
}

/* ── Reel strip performance hint ── */
.reel-strip-track {
    will-change: transform;
}

/* ── Section parallax layers ── */
.services-showcase-bg {
    will-change: transform;
}

/* ── Stats strip — initial hidden state (GSAP reveals) ── */
/* Remove opacity:0 from generic .ins-animate on stats since GSAP handles it */
.stats-strip .col-6,
.home-stats .col-6 {
    /* GSAP sets opacity + y inline; ensure clean base */
    transform-origin: center bottom;
}

/* ── Scroll reveal scale base ── */
/* Sections inside [data-scroll-reveal] that have cards:
   GSAP sets scale:0.96 as fromTo start — ensure GPU layer */
[data-scroll-reveal] .service-card-v2,
[data-scroll-reveal] .portfolio-item {
    transform-origin: center bottom;
}

/* ── Portfolio filter — animate items on filter change ── */
.portfolio-item {
    transition: opacity 0.35s ease;
}

.portfolio-item[style*="display: none"] {
    opacity: 0;
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
    .ins-pin-headline {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .sw-wrap {
        line-height: 1.2;
    }

    /* Don't pin on very small screens — scroll would feel trapped */
    @media (max-height: 600px) {
        .ins-pin-storytelling [data-pin-section] {
            /* ScrollTrigger pin is removed by JS on short screens */
        }
    }
}

/* ── Prefers-reduced-motion: ensure everything visible ── */
@media (prefers-reduced-motion: reduce) {
    .ins-pin-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .sw,
    .sw-wrap {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   SECTION REDESIGNS — Creative upgrade matching services quality
   Sections: About, Talent, Mission, Stats, CTA, Contact
   ============================================================ */

/* ── Shared utility: rule / divider accent ── */
.about-rule {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--ins-gold), transparent);
    margin: 1.25rem 0 1.5rem;
}

/* ════════════════════════════════════════════════
   ABOUT SECTION — editorial split
   ════════════════════════════════════════════════ */
.home-about-section {
    position: relative;
    overflow: hidden;
    background: var(--ins-black);
    padding: 5rem 0;
}

.about-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(201,162,39,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 100% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Corner bracket decorations */
.about-deco {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: rgba(201,162,39,0.2);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
}
.about-deco-tl { top: 2rem; left: 1.5rem; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 3px 0 0 0; }
.about-deco-br { bottom: 2rem; right: 1.5rem; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 3px 0; }

/* Visual quote block */
.about-visual-block {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(201,162,39,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    overflow: hidden;
}

.about-visual-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(201,162,39,0.3), rgba(255,255,255,0.04), rgba(201,162,39,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-visual-quote {
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(201,162,39,0.12);
    user-select: none;
    pointer-events: none;
}

.about-blockquote {
    position: relative;
    margin: 1rem 0 1.5rem;
    padding: 0;
    border: none;
}

.about-blockquote p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.65;
    color: var(--ins-white);
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-blockquote cite {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ins-gold);
    font-style: normal;
}

.about-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--ins-gray);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.25s, color 0.25s;
}

.about-tag:hover, .about-tag.about-tag-gold {
    border-color: rgba(201,162,39,0.5);
    color: var(--ins-gold);
    background: rgba(201,162,39,0.06);
}

/* Inner corner brackets on the visual block */
.about-visual-deco-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(201,162,39,0.35);
    border-style: solid;
    border-width: 0;
}
.about-deco-inner-tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 2px 0 0 0; }
.about-deco-inner-br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 2px 0; }

/* ════════════════════════════════════════════════
   TALENT SECTION — split layout + floating tag cloud
   ════════════════════════════════════════════════ */
.home-talent-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--ins-charcoal);
}

.talent-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(201,162,39,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255,255,255,0.015) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating tag cloud */
.talent-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.talent-cloud-tag {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.03);
    transition: transform 0.3s ease, border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: default;
}

.talent-cloud-tag:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(201,162,39,0.4);
    color: var(--ins-white);
    background: rgba(201,162,39,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.talent-cloud-lg {
    font-size: 1.6rem;
    padding: 0.6rem 1.5rem;
}

.talent-cloud-sm {
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
}

.talent-cloud-gold {
    border-color: rgba(201,162,39,0.35);
    color: var(--ins-gold);
    background: rgba(201,162,39,0.06);
}

.talent-cloud-gold:hover {
    box-shadow: 0 8px 24px rgba(201,162,39,0.15);
}

/* ════════════════════════════════════════════════
   MISSION SECTION — cinematic with oversized backdrop
   ════════════════════════════════════════════════ */
.home-mission-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--ins-black);
}

/* Giant "MISSION" text behind content */
.mission-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 18rem);
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.025);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* Gold accent horizontal lines */
.mission-accent-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ins-gold), transparent);
    margin: 0 auto 1.5rem;
}

.mission-accent-line-bottom {
    margin: 1.5rem auto 0;
}

/* Divider between title and text */
.mission-rule {
    width: 40px;
    height: 2px;
    background: var(--ins-gold);
    margin: 1.25rem auto 1.5rem;
    border-radius: 2px;
}

/* Override generic mission styles */
.home-mission-section .mission-band-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0;
}

.home-mission-section .mission-band-title em {
    color: var(--ins-gold);
    font-style: normal;
}

.home-mission-section .mission-band-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ════════════════════════════════════════════════
   STATS SECTION — icon cards with gold accent
   ════════════════════════════════════════════════ */
.home-stats-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--ins-charcoal);
}

.stats-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-card-v2 {
    position: relative;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.35s ease;
}

.stat-card-v2:last-child {
    border-right: none;
}

.stat-card-v2:hover {
    background: rgba(201,162,39,0.04);
}

/* Gold top accent line — animates in on scroll via GSAP */
.stat-card-v2-top {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ins-gold), transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card-v2:hover .stat-card-v2-top,
.stat-card-v2.in-view .stat-card-v2-top {
    transform: scaleX(1);
}

.stat-card-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--ins-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Inherit stat-number styles from existing CSS, override specifics */
.home-stats-section .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--ins-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.home-stats-section .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ins-gray);
}

@media (max-width: 767px) {
    .stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-card-v2:nth-child(2) { border-right: none; }
    .stat-card-v2:nth-child(3), .stat-card-v2:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

/* ════════════════════════════════════════════════
   CTA SECTION — cinematic full-width
   ════════════════════════════════════════════════ */
.home-cta-cinematic {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background: var(--ins-black);
}

/* Deep radial atmospheric background */
.cta-cinematic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,162,39,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 15% 20%, rgba(139,21,56,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(139,21,56,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Film-grain texture overlay */
.cta-cinematic-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.7;
}

/* Corner bracket frames */
.cta-frame {
    position: absolute;
    width: 56px;
    height: 56px;
    border-color: rgba(201,162,39,0.35);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.cta-frame-tl { top: 2rem;    left: 2rem;   border-top-width: 2px;    border-left-width: 2px;   border-radius: 4px 0 0 0; }
.cta-frame-tr { top: 2rem;    right: 2rem;  border-top-width: 2px;    border-right-width: 2px;  border-radius: 0 4px 0 0; }
.cta-frame-bl { bottom: 2rem; left: 2rem;   border-bottom-width: 2px; border-left-width: 2px;   border-radius: 0 0 0 4px; }
.cta-frame-br { bottom: 2rem; right: 2rem;  border-bottom-width: 2px; border-right-width: 2px;  border-radius: 0 0 4px 0; }

/* Headline with gradient gold treatment */
.home-cta-cinematic .collab-cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--ins-white) 30%, var(--ins-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

.home-cta-cinematic .collab-cta-title em {
    font-style: normal;
}

.home-cta-cinematic .collab-cta-label {
    letter-spacing: 0.28em;
    color: var(--ins-gold);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ════════════════════════════════════════════════
   CONTACT SECTION — cinematic dark glass redesign
   ════════════════════════════════════════════════ */
.home-contact-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 7rem;
    background: var(--ins-black);
}

.contact-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,162,39,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(255,255,255,0.015) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    margin-bottom: 4rem;
}

/* Two-column layout: form | info */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ── Floating-label form ── */
.contact-form-panel {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}

.cf-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Two-column row inside form */
.cf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

@media (max-width: 575px) {
    .cf-row-2 { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 1.5rem; }
}

/* Each field: relative container for floating label */
.cf-field {
    position: relative;
}

/* Input / textarea / select base styles */
.cf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: var(--ins-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 1.25rem 0 0.5rem;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cf-input::placeholder {
    color: transparent;
}

/* Select: custom arrow */
.cf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a3a3a3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
    cursor: pointer;
}

.cf-select option {
    background: var(--ins-charcoal);
    color: var(--ins-white);
}

/* Textarea */
.cf-textarea {
    resize: none;
    min-height: 100px;
}

/* Floating label */
.cf-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
    transform-origin: left top;
}

/* Label floats up when input has value or is focused */
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
    top: 0;
    font-size: 0.68rem;
    color: var(--ins-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Select: always show label floated if has value */
.cf-select:valid ~ .cf-label {
    top: 0;
    font-size: 0.68rem;
    color: var(--ins-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Gold underline that expands on focus */
.cf-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--ins-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.cf-input:focus ~ .cf-line {
    transform: scaleX(1);
}

.cf-input:focus {
    border-bottom-color: transparent;
}

/* Submit button */
.cf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ins-gold), #a6851e);
    color: #0d0d0d;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cf-submit:hover {
    box-shadow: 0 0 30px rgba(201,162,39,0.45);
    transform: translateY(-2px);
}

.cf-submit:hover::before {
    opacity: 1;
}

.cf-submit:active {
    transform: translateY(0) scale(0.98);
}

.cf-submit-icon {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.cf-submit:hover .cf-submit-icon {
    transform: translateX(4px) rotate(-15deg);
}

/* ── Contact Info Panel ── */
.contact-info-panel {
    position: sticky;
    top: 100px;
}

.cip-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(201,162,39,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
}

.cip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(201,162,39,0.35), rgba(255,255,255,0.04), rgba(201,162,39,0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Status indicator */
.cip-status-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
}

.cip-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74,222,128,0.6);
    animation: cipPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes cipPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.5); }
    50%       { box-shadow: 0 0 14px rgba(74,222,128,0.8); }
}

/* Info panel heading */
.cip-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--ins-white);
    margin-bottom: 1.5rem;
}

.cip-heading em {
    color: var(--ins-gold);
    font-style: normal;
}

.cip-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--ins-gold), rgba(255,255,255,0.05));
    margin-bottom: 1.5rem;
    border-radius: 1px;
}

/* Info list */
.cip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.cip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.cip-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ins-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.cip-item-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.2rem;
}

.cip-item-value {
    font-size: 0.9rem;
    color: var(--ins-white);
    text-decoration: none;
    transition: color 0.2s;
}

a.cip-item-value:hover {
    color: var(--ins-gold);
}

/* Corner bracket decorations inside info card */
.cip-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(201,162,39,0.4);
    border-style: solid;
    border-width: 0;
}
.cip-corner-tl { top: 10px; left: 10px; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 2px 0 0 0; }
.cip-corner-br { bottom: 10px; right: 10px; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 2px 0; }

/* ── Portfolio filter pill overhaul ── */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.55) !important;
    background: transparent !important;
    transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s !important;
}

.filter-btn:hover {
    border-color: rgba(201,162,39,0.5) !important;
    color: var(--ins-gold) !important;
    background: rgba(201,162,39,0.06) !important;
}

.filter-btn.active {
    border-color: var(--ins-gold) !important;
    color: #0d0d0d !important;
    background: var(--ins-gold) !important;
    box-shadow: 0 0 20px rgba(201,162,39,0.3) !important;
}

/* ── Reduced-motion overrides for new sections ── */
@media (prefers-reduced-motion: reduce) {
    .talent-cloud-tag,
    .cf-line,
    .stat-card-v2-top,
    .cip-status-dot {
        transition: none;
        animation: none;
    }
    .cta-frame { display: none; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  VIBRANT COLOR THEME UPGRADE                                 ║
   ║  Full-site multi-color cinematic palette                     ║
   ║  Sections: distinct tinted backgrounds, neon accents,        ║
   ║  gradient borders, color-coded labels & decorations          ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════
   GLOBAL — Scroll progress: rainbow gradient
═══════════════════════════════════════════════════ */
.scroll-progress-bar {
    background: linear-gradient(90deg,
        var(--ins-violet) 0%,
        var(--ins-cyan-l) 25%,
        var(--ins-emerald-l) 50%,
        var(--ins-amber-l) 75%,
        var(--ins-rose-l) 100%
    ) !important;
}


/* ═══════════════════════════════════════════════════
   NAVIGATION — Colorful accents
═══════════════════════════════════════════════════ */
.frontend-header.scrolled {
    background: rgba(10, 10, 15, 0.97) !important;
    box-shadow: 0 2px 30px rgba(124, 58, 237, 0.15), 0 1px 0 rgba(124, 58, 237, 0.1) !important;
}

.frontend-header .nav-link:hover {
    color: var(--ins-violet-l) !important;
}

/* CTA "Work With Us" button — gradient */
.frontend-header .btn-cta {
    background: linear-gradient(135deg, var(--ins-violet), var(--ins-cyan)) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.35) !important;
}

.frontend-header .btn-cta:hover {
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.55) !important;
    color: #fff !important;
}

/* Animated nav underline — violet */
.ins-anim-link::after {
    background: linear-gradient(90deg, var(--ins-violet-l), var(--ins-cyan-l)) !important;
}

/* ═══════════════════════════════════════════════════
   HERO — Deep space atmospheric backdrop
═══════════════════════════════════════════════════ */
.hero-section {
    background: var(--bg-hero) !important;
}

.hero-bg-placeholder {
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(124, 58, 237, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 70%, rgba(8, 145, 178, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 10%, rgba(219, 39, 119, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #080812 0%, #0c0820 50%, #08101a 100%) !important;
}

/* Orbs get distinct vibrant colors */
.float-orb-1 {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 65%) !important;
}
.float-orb-2 {
    background: radial-gradient(circle, rgba(8, 145, 178, 0.28) 0%, transparent 65%) !important;
}
.float-orb-3 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 65%) !important;
}

/* Hero label — violet */
.hero-section .hero-label {
    color: var(--ins-violet-l) !important;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

/* Hero title em — gradient */
.hero-section .hero-title em {
    background: linear-gradient(135deg, var(--ins-gold), var(--ins-amber-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA button — electric */
.hero-section .btn-primary-cta {
    background: linear-gradient(135deg, var(--ins-violet), var(--ins-cyan)) !important;
    color: #fff !important;
    box-shadow: 0 0 28px rgba(124, 58, 237, 0.45) !important;
    border: none !important;
}

.hero-section .btn-primary-cta:hover {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.65) !important;
    color: #fff !important;
}

.hero-section .btn-secondary-cta {
    border-color: var(--ins-cyan-l) !important;
    color: var(--ins-cyan-l) !important;
}

.hero-section .btn-secondary-cta:hover {
    background: var(--ins-cyan) !important;
    color: #fff !important;
    border-color: var(--ins-cyan) !important;
}

/* Float lines — violet/cyan */
.float-line-1 {
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.45), transparent) !important;
}
.float-line-2 {
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), transparent) !important;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION — Violet / Indigo
═══════════════════════════════════════════════════ */
.home-about-section {
    background: var(--bg-about) !important;
}

.about-section-bg {
    background:
        radial-gradient(ellipse 65% 55% at 0% 50%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 100% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 50%) !important;
}

.home-about-section .ins-section-label {
    color: var(--ins-violet-l) !important;
    text-shadow: 0 0 14px rgba(167, 139, 250, 0.3);
}

.home-about-section .ins-section-title em {
    background: linear-gradient(135deg, var(--ins-violet-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.home-about-section .about-rule {
    background: linear-gradient(90deg, var(--ins-violet), transparent) !important;
}

.home-about-section .about-deco-tl,
.home-about-section .about-deco-br {
    border-color: rgba(124, 58, 237, 0.35) !important;
}

/* Visual quote block — violet tinted */
.about-visual-block {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%) !important;
    border-color: rgba(124, 58, 237, 0.15) !important;
}

.about-visual-block::before {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.45), rgba(34, 211, 238, 0.08), rgba(167, 139, 250, 0.15)) !important;
}

.about-visual-quote {
    color: rgba(124, 58, 237, 0.18) !important;
}

.about-blockquote cite {
    color: var(--ins-violet-l) !important;
}

.about-tag.about-tag-gold,
.about-tag:hover {
    border-color: rgba(124, 58, 237, 0.5) !important;
    color: var(--ins-violet-l) !important;
    background: rgba(124, 58, 237, 0.08) !important;
}

.about-visual-deco-corner {
    border-color: rgba(124, 58, 237, 0.45) !important;
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION — Electric Blue / Cyan
═══════════════════════════════════════════════════ */
.home-services-showcase {
    background: var(--bg-services) !important;
}

.services-showcase-bg {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(8, 145, 178, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(34, 211, 238, 0.05) 0%, transparent 40%) !important;
}

.home-services-showcase .ins-section-label {
    color: var(--ins-cyan-l) !important;
    text-shadow: 0 0 14px rgba(34, 211, 238, 0.3);
}

.home-services-showcase .ins-section-title em {
    background: linear-gradient(135deg, var(--ins-cyan-l), var(--ins-emerald-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.services-showcase-deco-tl,
.services-showcase-deco-br {
    border-color: rgba(34, 211, 238, 0.35) !important;
}

/* Service cards — cyan tinted gradient border */
.service-card-v2 {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 40%, rgba(34,211,238,0.1) 100%) !important;
}

.service-card-v2::before {
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.3), rgba(255,255,255,0.03), rgba(124, 58, 237, 0.2)) !important;
}

.service-card-v2:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,211,238,0.3), 0 0 40px rgba(34,211,238,0.1) !important;
}

.service-card-v2-glow {
    background: radial-gradient(
        420px circle at var(--mouse-x) var(--mouse-y),
        rgba(34, 211, 238, 0.18) 0%,
        rgba(124, 58, 237, 0.06) 40%,
        transparent 70%
    ) !important;
}

.service-card-v2-icon-wrap {
    background: rgba(34, 211, 238, 0.1) !important;
    border-color: rgba(34, 211, 238, 0.25) !important;
}

.service-card-v2:hover .service-card-v2-icon-wrap {
    background: rgba(34, 211, 238, 0.2) !important;
    border-color: rgba(34, 211, 238, 0.5) !important;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.25) !important;
}

.service-card-v2-icon {
    color: var(--ins-cyan-l) !important;
}

.service-card-v2:hover .service-card-v2-title {
    color: var(--ins-cyan-l) !important;
}

.service-card-v2-arrow {
    color: var(--ins-cyan-l) !important;
    border-color: rgba(34, 211, 238, 0.25) !important;
}

.service-card-v2:hover .service-card-v2-arrow {
    border-color: var(--ins-cyan-l) !important;
    background: rgba(34, 211, 238, 0.12) !important;
}

/* ═══════════════════════════════════════════════════
   REEL STRIP — Magenta / Pink accent
═══════════════════════════════════════════════════ */
.reel-strip-section {
    background: linear-gradient(135deg, #10080f 0%, #0a0a18 100%) !important;
    border-top: 1px solid rgba(219, 39, 119, 0.15) !important;
    border-bottom: 1px solid rgba(219, 39, 119, 0.15) !important;
}

.reel-strip-label {
    color: var(--ins-pink-l) !important;
}

.reel-strip-card:hover {
    box-shadow: 0 20px 50px rgba(219,39,119,0.3) !important;
}

/* ═══════════════════════════════════════════════════
   PINNED SECTION — Deep violet with gradient text
═══════════════════════════════════════════════════ */
.ins-pin-storytelling {
    background: var(--bg-cta) !important;
}

.ins-pin-storytelling::before {
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 65%
    ) !important;
}

.ins-pin-label {
    color: var(--ins-violet-l) !important;
    text-shadow: 0 0 14px rgba(167,139,250,0.4);
}

.ins-pin-headline em {
    background: linear-gradient(135deg, var(--ins-violet-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ins-pin-line {
    background: linear-gradient(90deg, transparent, var(--ins-violet), transparent) !important;
}

/* ═══════════════════════════════════════════════════
   PORTFOLIO SECTION — Cyan / Teal
═══════════════════════════════════════════════════ */
.home-portfolio-section {
    background: var(--bg-portfolio) !important;
}

.home-portfolio-section .ins-section-label {
    color: var(--ins-cyan-l) !important;
    text-shadow: 0 0 14px rgba(34,211,238,0.3);
}

.home-portfolio-section .ins-section-title em {
    background: linear-gradient(135deg, var(--ins-cyan-l), var(--ins-emerald-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* Portfolio card category — teal */
.portfolio-card .portfolio-category {
    color: var(--ins-cyan-l) !important;
}

/* Portfolio card hover overlay — cyan glow */
.home-portfolio-section .portfolio-card:hover {
    box-shadow: 0 16px 48px rgba(8,145,178,0.3) !important;
}

/* Filter active — cyan */
.filter-btn.active {
    border-color: var(--ins-cyan) !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--ins-cyan), var(--ins-violet)) !important;
    box-shadow: 0 0 20px rgba(8,145,178,0.35) !important;
}

.filter-btn:hover:not(.active) {
    border-color: rgba(34,211,238,0.4) !important;
    color: var(--ins-cyan-l) !important;
    background: rgba(34,211,238,0.06) !important;
}

/* ═══════════════════════════════════════════════════
   TALENT SECTION — Rose / Magenta
═══════════════════════════════════════════════════ */
.home-talent-section {
    background: var(--bg-talent) !important;
}

.talent-section-bg {
    background:
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(219, 39, 119, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(124, 58, 237, 0.06) 0%, transparent 50%) !important;
}

.home-talent-section .ins-section-label {
    color: var(--ins-pink-l) !important;
    text-shadow: 0 0 14px rgba(244,114,182,0.35);
}

.home-talent-section .ins-section-title em {
    background: linear-gradient(135deg, var(--ins-pink-l), var(--ins-rose-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.home-talent-section .about-rule {
    background: linear-gradient(90deg, var(--ins-pink), transparent) !important;
}

/* Talent cloud tags — rose/pink toned */
.talent-cloud-tag {
    border-color: rgba(219, 39, 119, 0.15) !important;
    color: rgba(240, 210, 220, 0.65) !important;
}

.talent-cloud-tag:hover {
    border-color: rgba(244, 114, 182, 0.55) !important;
    color: var(--ins-pink-l) !important;
    background: rgba(219, 39, 119, 0.08) !important;
    box-shadow: 0 8px 24px rgba(219,39,119,0.2) !important;
}

.talent-cloud-gold {
    border-color: rgba(244, 114, 182, 0.45) !important;
    color: var(--ins-pink-l) !important;
    background: rgba(219, 39, 119, 0.07) !important;
}

.talent-cloud-gold:hover {
    box-shadow: 0 8px 24px rgba(219,39,119,0.25) !important;
}

/* CTA buttons in talent section */
.home-talent-section .btn-primary-cta {
    background: linear-gradient(135deg, var(--ins-pink), var(--ins-rose)) !important;
    color: #fff !important;
    box-shadow: 0 0 24px rgba(219,39,119,0.35) !important;
}

.home-talent-section .btn-primary-cta:hover {
    box-shadow: 0 0 36px rgba(219,39,119,0.55) !important;
}

.home-talent-section .btn-secondary-cta {
    border-color: var(--ins-pink-l) !important;
    color: var(--ins-pink-l) !important;
}

.home-talent-section .btn-secondary-cta:hover {
    background: var(--ins-pink) !important;
    color: #fff !important;
    border-color: var(--ins-pink) !important;
    box-shadow: 0 0 24px rgba(219,39,119,0.35) !important;
}

/* ═══════════════════════════════════════════════════
   MISSION SECTION — Amber / Warm Orange
═══════════════════════════════════════════════════ */
.home-mission-section {
    background: var(--bg-mission) !important;
}

.mission-backdrop {
    color: rgba(217, 119, 6, 0.05) !important;
}

.home-mission-section .ins-section-label {
    color: var(--ins-amber-l) !important;
    text-shadow: 0 0 14px rgba(251,191,36,0.35);
}

.home-mission-section .mission-band-title em {
    background: linear-gradient(135deg, var(--ins-amber-l), var(--ins-orange-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-accent-line {
    background: linear-gradient(90deg, transparent, var(--ins-amber), transparent) !important;
}

.mission-rule {
    background: var(--ins-amber) !important;
    box-shadow: 0 0 16px rgba(217,119,6,0.5);
}

/* ═══════════════════════════════════════════════════
   STATS SECTION — Per-card unique colors
═══════════════════════════════════════════════════ */
.home-stats-section {
    background: var(--bg-stats) !important;
}

.stats-section-bg {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%,
            rgba(124,58,237,0.07) 0%,
            rgba(8,145,178,0.04) 50%,
            transparent 70%) !important;
}

/* Stat 1 — Violet */
.stat-card-v2:nth-child(1) .stat-card-v2-top {
    background: linear-gradient(90deg, transparent, var(--ins-violet-l), transparent) !important;
}
.stat-card-v2:nth-child(1) .stat-card-icon { color: var(--ins-violet-l) !important; }
.stat-card-v2:nth-child(1):hover { background: rgba(124,58,237,0.05) !important; }
.stat-card-v2:nth-child(1) .stat-number { color: var(--ins-violet-l) !important; }

/* Stat 2 — Cyan */
.stat-card-v2:nth-child(2) .stat-card-v2-top {
    background: linear-gradient(90deg, transparent, var(--ins-cyan-l), transparent) !important;
}
.stat-card-v2:nth-child(2) .stat-card-icon { color: var(--ins-cyan-l) !important; }
.stat-card-v2:nth-child(2):hover { background: rgba(8,145,178,0.05) !important; }
.stat-card-v2:nth-child(2) .stat-number { color: var(--ins-cyan-l) !important; }

/* Stat 3 — Rose */
.stat-card-v2:nth-child(3) .stat-card-v2-top {
    background: linear-gradient(90deg, transparent, var(--ins-rose-l), transparent) !important;
}
.stat-card-v2:nth-child(3) .stat-card-icon { color: var(--ins-rose-l) !important; }
.stat-card-v2:nth-child(3):hover { background: rgba(225,29,72,0.05) !important; }
.stat-card-v2:nth-child(3) .stat-number { color: var(--ins-rose-l) !important; }

/* Stat 4 — Emerald */
.stat-card-v2:nth-child(4) .stat-card-v2-top {
    background: linear-gradient(90deg, transparent, var(--ins-emerald-l), transparent) !important;
}
.stat-card-v2:nth-child(4) .stat-card-icon { color: var(--ins-emerald-l) !important; }
.stat-card-v2:nth-child(4):hover { background: rgba(5,150,105,0.05) !important; }
.stat-card-v2:nth-child(4) .stat-number { color: var(--ins-emerald-l) !important; }

/* Vertical dividers get subtle color */
.stat-card-v2 {
    border-right-color: rgba(124,58,237,0.08) !important;
}

/* ═══════════════════════════════════════════════════
   CTA SECTION — Violet gradient, cinematic
═══════════════════════════════════════════════════ */
.home-cta-cinematic {
    background: linear-gradient(135deg, #0e0818 0%, #080f18 60%, #0c1408 100%) !important;
}

.cta-cinematic-bg {
    background:
        radial-gradient(ellipse 85% 80% at 50% 50%, rgba(124, 58, 237, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(16, 185, 129, 0.07) 0%, transparent 50%) !important;
}

.home-cta-cinematic .collab-cta-title {
    background: linear-gradient(135deg, var(--ins-white) 20%, var(--ins-violet-l) 60%, var(--ins-cyan-l) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-cta-cinematic .collab-cta-label {
    color: var(--ins-violet-l) !important;
    opacity: 1 !important;
    text-shadow: 0 0 16px rgba(167,139,250,0.4);
}

/* Corner frames — violet */
.cta-frame-tl, .cta-frame-tr,
.cta-frame-bl, .cta-frame-br {
    border-color: rgba(124, 58, 237, 0.5) !important;
}

/* CTA button — violet gradient */
.home-cta-cinematic .btn-start {
    background: linear-gradient(135deg, var(--ins-violet), var(--ins-cyan)) !important;
    color: #fff !important;
    box-shadow: 0 0 32px rgba(124,58,237,0.4) !important;
}

.home-cta-cinematic .btn-start:hover {
    box-shadow: 0 0 48px rgba(124,58,237,0.6) !important;
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION — Emerald / Teal ocean
═══════════════════════════════════════════════════ */
.home-contact-section {
    background: var(--bg-contact) !important;
}

.contact-section-bg {
    background:
        radial-gradient(ellipse 65% 50% at 50% 0%, rgba(5,150,105,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 0% 100%, rgba(34,211,238,0.05) 0%, transparent 50%) !important;
}

.home-contact-section .ins-section-label {
    color: var(--ins-emerald-l) !important;
    text-shadow: 0 0 14px rgba(52,211,153,0.35);
}

.home-contact-section .ins-section-title em {
    background: linear-gradient(135deg, var(--ins-emerald-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* Form panel — teal-tinted */
.contact-form-panel {
    background: rgba(5, 150, 105, 0.04) !important;
    border-color: rgba(5,150,105,0.12) !important;
}

/* Focus line — emerald */
.cf-line {
    background: var(--ins-emerald-l) !important;
}

.cf-input:focus ~ .cf-label {
    color: var(--ins-emerald-l) !important;
}

.cf-select:valid ~ .cf-label {
    color: var(--ins-emerald-l) !important;
}

/* Submit — emerald gradient */
.cf-submit {
    background: linear-gradient(135deg, var(--ins-emerald), var(--ins-cyan)) !important;
    color: #fff !important;
}

.cf-submit:hover {
    box-shadow: 0 0 30px rgba(5,150,105,0.45) !important;
}

/* Info panel — teal tinted */
.cip-card {
    background: linear-gradient(145deg, rgba(5,150,105,0.06) 0%, rgba(34,211,238,0.04) 100%) !important;
    border-color: rgba(5,150,105,0.12) !important;
}

.cip-card::before {
    background: linear-gradient(145deg, rgba(52,211,153,0.4), rgba(34,211,238,0.06), rgba(5,150,105,0.15)) !important;
}

.cip-heading em {
    background: linear-gradient(135deg, var(--ins-emerald-l), var(--ins-cyan-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cip-icon {
    background: rgba(5,150,105,0.12) !important;
    border-color: rgba(52,211,153,0.25) !important;
    color: var(--ins-emerald-l) !important;
}

.cip-divider {
    background: linear-gradient(90deg, var(--ins-emerald-l), rgba(34,211,238,0.08)) !important;
}

.cip-corner-tl, .cip-corner-br {
    border-color: rgba(52,211,153,0.45) !important;
}

a.cip-item-value:hover {
    color: var(--ins-emerald-l) !important;
}

/* ═══════════════════════════════════════════════════
   FOOTER — Slightly elevated tint
═══════════════════════════════════════════════════ */
.frontend-footer {
    background: #080810 !important;
    border-top-color: rgba(124,58,237,0.12) !important;
}

/* ═══════════════════════════════════════════════════
   GLOBAL — Section titles: colored em words
   (for sections that don't have specific section class)
═══════════════════════════════════════════════════ */
.ins-section-title em {
    font-style: normal;
    color: var(--ins-gold);
}

/* Services section label gold line */
.home-services-showcase .about-rule,
.home-portfolio-section .about-rule {
    background: linear-gradient(90deg, var(--ins-cyan-l), transparent);
}

/* ═══════════════════════════════════════════════════
   INTERIOR PAGES — Colorful hero gradients
═══════════════════════════════════════════════════ */
/* About page */
.page-about .about-hero,
.about-hero {
    background: linear-gradient(135deg, var(--bg-about) 0%, #0a0c1e 100%);
}

/* Services page */
.page-services .services-hero,
.services-hero {
    background: linear-gradient(135deg, var(--bg-services) 0%, #080a18 100%);
}

/* Contact page */
.page-contact .contact-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--bg-contact) 0%, #080f12 100%);
}

/* Collaborate page */
.page-collaborate .collab-hero,
.collab-hero {
    background: linear-gradient(135deg, var(--bg-cta) 0%, #0c0818 100%);
}

/* News page */
.news-hero, .page-news .news-hero {
    background: linear-gradient(135deg, #100810 0%, #0a0818 100%);
}

/* ═══════════════════════════════════════════════════
   GLOBAL LABEL COLORS for other pages
═══════════════════════════════════════════════════ */
.ins-section-label {
    background: linear-gradient(90deg, var(--ins-gold), var(--ins-amber-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Specific section overrides (take precedence over the gradient default) */
.home-about-section .ins-section-label,
.home-talent-section .ins-section-label {
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
}

.home-about-section .ins-section-label {
    color: var(--ins-violet-l) !important;
}

.home-talent-section .ins-section-label {
    color: var(--ins-pink-l) !important;
}

.home-portfolio-section .ins-section-label,
.home-services-showcase .ins-section-label,
.home-contact-section .ins-section-label,
.home-mission-section .ins-section-label {
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
}

.home-portfolio-section .ins-section-label { color: var(--ins-cyan-l) !important; }
.home-services-showcase .ins-section-label { color: var(--ins-cyan-l) !important; }
.home-contact-section .ins-section-label   { color: var(--ins-emerald-l) !important; }
.home-mission-section .ins-section-label   { color: var(--ins-amber-l) !important; }

/* ═══════════════════════════════════════════════════
   SPECIAL: Portfolio card overlay — color tinted per category
═══════════════════════════════════════════════════ */
.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top,
        rgba(8,145,178,0.75) 0%,
        rgba(0,0,0,0.3) 60%,
        transparent 100%) !important;
}

/* ═══════════════════════════════════════════════════
   MISC: Colorful news card accents, talent card accents
═══════════════════════════════════════════════════ */
.news-card:hover {
    border-color: rgba(124,58,237,0.3) !important;
    box-shadow: 0 12px 40px rgba(124,58,237,0.15) !important;
}

/* About page diff items / timeline items — colored */
.diff-item:hover,
.timeline-item:hover {
    border-color: rgba(124,58,237,0.25) !important;
}

/* ═══════════════════════════════════════════════════
   REDUCED-MOTION: remove gradient text for simplicity
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .ins-section-label {
        -webkit-text-fill-color: unset !important;
        background: none !important;
        background-clip: unset !important;
        color: var(--ins-gold) !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   HOME SERVICES SECTION  (.hs-*)
══════════════════════════════════════════════════════════════ */
.hs-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #060609;
}

/* atmospheric bg */
.hs-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, hsl(262 80% 18% / .35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 40%, hsl(191 90% 12% / .3) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 100%, hsl(330 70% 14% / .2) 0%, transparent 60%);
    z-index: 0;
}

/* animated orbs */
.hs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}
.hs-orb-1 {
    width: 500px; height: 500px;
    top: -150px; left: -100px;
    background: hsl(262 80% 55% / .18);
    animation: hs-orb-float 14s ease-in-out infinite;
}
.hs-orb-2 {
    width: 400px; height: 400px;
    bottom: -120px; right: -80px;
    background: hsl(191 90% 50% / .15);
    animation: hs-orb-float 18s ease-in-out infinite reverse;
}
@keyframes hs-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(30px, -30px) scale(1.08); }
}

/* decorative grid lines */
.hs-grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
}
.hs-grid-lines span {
    width: 1px;
    background: linear-gradient(to bottom, transparent, hsl(262 60% 60% / .07) 30%, hsl(262 60% 60% / .07) 70%, transparent);
}

/* section header */
.hs-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.hs-header-left { max-width: 480px; }
.hs-header-right { max-width: 400px; text-align: right; }
@media (max-width: 767px) {
    .hs-header { flex-direction: column; }
    .hs-header-right { text-align: left; }
}

.hs-label {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: hsl(262 80% 72%);
    margin-bottom: .75rem;
}
.hs-label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: hsl(262 80% 65%);
    box-shadow: 0 0 8px hsl(262 80% 65% / .8);
    animation: hs-dot-pulse 2s ease-in-out infinite;
}
@keyframes hs-dot-pulse {
    0%, 100% { box-shadow: 0 0 6px hsl(262 80% 65% / .7); }
    50%       { box-shadow: 0 0 14px hsl(262 80% 65%); }
}

.hs-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .75rem;
}
.hs-title em {
    font-style: normal;
    background: linear-gradient(135deg, hsl(262 80% 75%) 0%, hsl(191 90% 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-rule {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, hsl(262 80% 65%), hsl(191 90% 55%));
    border-radius: 2px;
}

.hs-subtitle {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hs-all-link {
    display: inline-flex;
    align-items: center;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: hsl(262 80% 72%);
    text-decoration: none;
    transition: color .25s, gap .25s;
    gap: .25rem;
}
.hs-all-link:hover {
    color: #fff;
    gap: .5rem;
}

/* cards grid */
.hs-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.4rem;
}

/* individual card */
.hs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    overflow: hidden;
    text-decoration: none;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
    cursor: pointer;
    isolation: isolate;
}
.hs-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px hsl(var(--card-h) 70% 50% / .2);
}

/* glow that follows mouse (set via JS) */
.hs-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(400px at var(--mx,50%) var(--my,50%), hsl(var(--card-h) 80% 60% / .14) 0%, transparent 60%);
    transition: background .25s;
    pointer-events: none;
    z-index: 0;
}

/* gradient border */
.hs-card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, hsl(var(--card-h) 70% 55% / .45), transparent 55%, hsl(var(--card-h) 70% 55% / .2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.hs-card-num {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: hsl(var(--card-h) 70% 65% / .4);
    z-index: 2;
    font-variant-numeric: tabular-nums;
}

.hs-card-icon-wrap {
    position: relative;
    z-index: 2;
    width: 52px; height: 52px;
    border-radius: 12px;
    background: hsl(var(--card-h) 70% 50% / .15);
    border: 1px solid hsl(var(--card-h) 70% 55% / .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background .3s, transform .3s;
}
.hs-card:hover .hs-card-icon-wrap {
    background: hsl(var(--card-h) 70% 50% / .3);
    transform: rotate(-6deg) scale(1.08);
}

.hs-card-icon {
    font-size: 1.4rem;
    color: hsl(var(--card-h) 80% 70%);
}

/* ── Cover image variant ───────────────────────────────── */
.hs-card--has-img {
    padding-top: 0;  /* remove top padding so image bleeds to the border */
}

.hs-card-img {
    position: relative;
    /* pull out of the card's 1.75rem side padding and 2rem top padding */
    margin: -2rem -1.75rem 0;
    width: calc(100% + 3.5rem);
    height: 160px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    flex-shrink: 0;
    z-index: 1;
}
.hs-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(.7) brightness(.75);
    transition: transform .6s ease, filter .45s ease;
}
.hs-card:hover .hs-card-img img {
    transform: scale(1.07);
    filter: saturate(1) brightness(.85);
}
/* gradient fade: image → card body background */
.hs-card-img-fade {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 35%,
        hsl(var(--card-h) 15% 6% / .55) 70%,
        hsl(var(--card-h) 15% 6% / .95) 100%
    );
}

/* re-add body padding for cards that have an image */
.hs-card--has-img .hs-card-title,
.hs-card--has-img .hs-card-excerpt,
.hs-card--has-img .hs-card-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.hs-card--has-img .hs-card-title { padding-top: 1rem; }
.hs-card--has-img .hs-card-footer { padding-bottom: 1.25rem; }

.hs-card-title {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .55rem;
    line-height: 1.3;
    transition: color .25s;
}
.hs-card:hover .hs-card-title {
    color: hsl(var(--card-h) 85% 78%);
}

.hs-card-excerpt {
    position: relative;
    z-index: 2;
    font-size: .875rem;
    color: rgba(255,255,255,.48);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.5rem;
}

.hs-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.07);
}

.hs-card-cta {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: hsl(var(--card-h) 75% 65%);
}

.hs-card-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid hsl(var(--card-h) 70% 60% / .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--card-h) 75% 70%);
    font-size: .85rem;
    transition: background .25s, transform .3s;
}
.hs-card:hover .hs-card-arrow {
    background: hsl(var(--card-h) 70% 50% / .25);
    transform: translateX(4px);
}

.hs-card-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--card-h) 80% 60%), hsl(var(--card-h) 60% 75%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    z-index: 3;
}
.hs-card:hover .hs-card-line { transform: scaleX(1); }

/* mobile CTA */
.hs-mobile-cta {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.75rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background .25s, border-color .25s;
}
.hs-mobile-cta:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); color: #fff; }

/* reduce-motion fallbacks */
@media (prefers-reduced-motion: reduce) {
    .hs-orb { animation: none; }
    .hs-label-dot { animation: none; }
    .hs-card { transition: box-shadow .2s; transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE  (.sv-*)
══════════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.sv-page {
    background: #060609;
    color: #fff;
}

/* ── Shared label / title ── */
.sv-section-label {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: hsl(262 80% 72%);
    margin-bottom: .9rem;
}
.sv-label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: hsl(var(--dot-h, 262) 80% 65%);
    box-shadow: 0 0 8px hsl(var(--dot-h, 262) 80% 65% / .8);
}
.sv-section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
}
.sv-section-title em {
    font-style: normal;
    background: linear-gradient(135deg, hsl(262 80% 75%), hsl(191 90% 65%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* reusable corner brackets */
.sv-corner {
    position: absolute;
    width: 24px; height: 24px;
    pointer-events: none;
    z-index: 3;
}
.sv-corner-tl { top: 20px; left: 20px; border-top: 1.5px solid rgba(255,255,255,.3); border-left: 1.5px solid rgba(255,255,255,.3); }
.sv-corner-tr { top: 20px; right: 20px; border-top: 1.5px solid rgba(255,255,255,.3); border-right: 1.5px solid rgba(255,255,255,.3); }
.sv-corner-bl { bottom: 20px; left: 20px; border-bottom: 1.5px solid rgba(255,255,255,.3); border-left: 1.5px solid rgba(255,255,255,.3); }
.sv-corner-br { bottom: 20px; right: 20px; border-bottom: 1.5px solid rgba(255,255,255,.3); border-right: 1.5px solid rgba(255,255,255,.3); }

/* ────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────── */
.sv-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sv-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 65% at 15% 55%, hsl(262 85% 18% / .55) 0%, transparent 70%),
        radial-gradient(ellipse 60% 55% at 85% 35%, hsl(191 90% 12% / .4) 0%, transparent 65%),
        radial-gradient(ellipse 50% 45% at 50% 95%, hsl(330 70% 14% / .3) 0%, transparent 60%),
        #060609;
    z-index: 0;
}

/* floating orbs */
.sv-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.sv-hero-orb-1 {
    width: 600px; height: 600px;
    top: -200px; left: -150px;
    background: hsl(262 80% 55% / .22);
    animation: sv-orb-float 16s ease-in-out infinite;
}
.sv-hero-orb-2 {
    width: 450px; height: 450px;
    top: 30%; right: -100px;
    background: hsl(191 90% 50% / .18);
    animation: sv-orb-float 20s ease-in-out infinite reverse;
}
.sv-hero-orb-3 {
    width: 300px; height: 300px;
    bottom: -80px; left: 40%;
    background: hsl(330 70% 50% / .14);
    animation: sv-orb-float 24s ease-in-out infinite 4s;
}
@keyframes sv-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(20px, -25px) scale(1.07); }
}

/* backdrop word */
.sv-hero-backdrop {
    position: absolute;
    bottom: -3%;
    right: -2%;
    font-size: clamp(100px, 20vw, 220px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.04);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* content */
.sv-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 100px;
}

.sv-hero-label-wrap {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}
.sv-hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: hsl(262 80% 65%);
    box-shadow: 0 0 10px hsl(262 80% 65% / .9);
    animation: sv-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes sv-dot-pulse {
    0%, 100% { box-shadow: 0 0 6px hsl(262 80% 65% / .7); }
    50%       { box-shadow: 0 0 18px hsl(262 80% 65%); }
}
.sv-hero-line {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, hsl(262 80% 65%), transparent);
}
.sv-hero-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: hsl(262 80% 72%);
    margin: 0;
}

.sv-hero-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.sv-hero-title-row {
    display: block;
    opacity: 0;
    transform: translateY(80px);
}
.sv-hero-title-accent {
    background: linear-gradient(135deg, hsl(262 80% 75%) 0%, hsl(191 90% 65%) 55%, hsl(330 70% 70%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.55);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(18px);
}

/* scroll hint */
.sv-hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: .75rem;
    opacity: 0;
}
.sv-scroll-bar {
    display: block;
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, hsl(262 80% 65%), transparent);
    border-radius: 1px;
}
.sv-scroll-text {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

/* ────────────────────────────────────────────────────────────
   PILLARS STRIP
──────────────────────────────────────────────────────────── */
.sv-pillars {
    padding: 80px 0;
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sv-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}
.sv-pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sv-pillar-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: hsl(262 70% 50% / .15);
    border: 1px solid hsl(262 70% 55% / .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: hsl(262 80% 72%);
    margin-bottom: 1.1rem;
    transition: transform .3s, background .3s;
}
.sv-pillar:hover .sv-pillar-icon {
    transform: scale(1.08) rotate(-5deg);
    background: hsl(262 70% 50% / .28);
}
.sv-pillar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.sv-pillar-text {
    font-size: .875rem;
    color: rgba(255,255,255,.48);
    line-height: 1.7;
    margin: 0;
}

/* ────────────────────────────────────────────────────────────
   CARDS SECTION
──────────────────────────────────────────────────────────── */
.sv-cards-section {
    padding: 100px 0;
    position: relative;
}
.sv-cards-header {
    margin-bottom: 3rem;
}
.sv-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* individual card */
.sv-card {
    position: relative;
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
    isolation: isolate;
    transition: box-shadow .35s ease;
}
.sv-card:hover {
    box-shadow: 0 8px 40px hsl(var(--card-h) 70% 50% / .2);
}

.sv-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(500px at var(--mx,50%) var(--my,50%), hsl(var(--card-h) 80% 60% / .1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: opacity .3s;
}
.sv-card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, hsl(var(--card-h) 70% 55% / .4), transparent 50%, hsl(var(--card-h) 70% 55% / .15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* accent bottom line */
.sv-card-accent-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, hsl(var(--card-h) 80% 60%), hsl(var(--card-h) 60% 75%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
    z-index: 3;
}
.sv-card.open .sv-card-accent-line,
.sv-card:hover .sv-card-accent-line { transform: scaleX(1); }

/* card head (button/toggle) */
.sv-card-head {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: auto 60px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background .25s;
}
.sv-card-head:hover { background: rgba(255,255,255,.02); }
@media (max-width: 767px) {
    .sv-card-head {
        grid-template-columns: 50px 1fr auto;
    }
    .sv-card-num { display: none; }
}

.sv-card-num {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: hsl(var(--card-h) 70% 65% / .35);
    font-variant-numeric: tabular-nums;
    min-width: 24px;
}

.sv-card-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: hsl(var(--card-h) 70% 50% / .12);
    border: 1px solid hsl(var(--card-h) 70% 55% / .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, transform .3s;
}
.sv-card-head:hover .sv-card-icon-wrap,
.sv-card.open .sv-card-icon-wrap {
    background: hsl(var(--card-h) 70% 50% / .25);
    transform: rotate(-5deg) scale(1.05);
}
.sv-card-icon {
    font-size: 1.5rem;
    color: hsl(var(--card-h) 80% 72%);
}

.sv-card-text { min-width: 0; }
.sv-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .35rem;
    line-height: 1.3;
    transition: color .25s;
}
.sv-card.open .sv-card-title,
.sv-card-head:hover .sv-card-title {
    color: hsl(var(--card-h) 85% 80%);
}
.sv-card-excerpt {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    margin: 0;
    line-height: 1.6;
}

.sv-card-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: border-color .25s, background .25s, transform .35s;
}
.sv-card-head:hover .sv-card-toggle {
    border-color: hsl(var(--card-h) 70% 55% / .5);
    color: hsl(var(--card-h) 80% 70%);
}
.sv-card.open .sv-card-toggle {
    transform: rotate(45deg);
    background: hsl(var(--card-h) 70% 50% / .2);
    border-color: hsl(var(--card-h) 70% 60% / .6);
    color: hsl(var(--card-h) 85% 78%);
}

/* expanded body */
.sv-card-detail {
    position: relative;
    z-index: 2;
}
.sv-card-body {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .sv-card-body { grid-template-columns: 1fr 1fr; }
    .sv-card-desc { grid-column: 1 / -1; }
    .sv-card-cta  { grid-column: 1 / -1; }
}

.sv-card-desc {
    font-size: .925rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin: 0;
}
.sv-card-block {}
.sv-card-block-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: hsl(var(--card-h) 75% 68%);
    margin-bottom: .65rem;
    display: flex;
    align-items: center;
}
.sv-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.sv-card-list li {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    padding-left: 1.1rem;
    position: relative;
}
.sv-card-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .6em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: hsl(var(--card-h) 70% 60%);
}
.sv-card-list-steps { counter-reset: steps; }
.sv-card-list-steps li::before {
    content: counter(steps);
    counter-increment: steps;
    background: none;
    border: 1px solid hsl(var(--card-h) 70% 55% / .5);
    font-size: .6rem;
    font-weight: 700;
    width: 16px; height: 16px;
    top: .3em; left: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: hsl(var(--card-h) 80% 70%);
}
.sv-card-list-outcomes li::before { background: hsl(152 70% 55%); }

.sv-card-cta-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.sv-card-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1.1rem;
    border-radius: 100px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.45);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .04em;
    transition: border-color .25s, color .25s, background .25s;
}
.sv-card-detail-btn:hover {
    border-color: hsl(var(--card-h) 65% 55% / .5);
    color: hsl(var(--card-h) 80% 70%);
    background: hsl(var(--card-h) 60% 45% / .1);
}
.sv-card-cta { margin-top: .5rem; }
.sv-card-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: 100px;
    background: hsl(var(--card-h) 70% 50% / .18);
    border: 1px solid hsl(var(--card-h) 70% 55% / .45);
    color: hsl(var(--card-h) 80% 75%);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, transform .2s;
}
.sv-card-cta-btn:hover {
    background: hsl(var(--card-h) 70% 50% / .35);
    transform: translateX(4px);
    color: hsl(var(--card-h) 85% 85%);
}

/* ────────────────────────────────────────────────────────────
   PROCESS SECTION
──────────────────────────────────────────────────────────── */
.sv-process {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.sv-process-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, hsl(191 80% 15% / .25) 0%, transparent 70%),
        rgba(255,255,255,.01);
}
.sv-process-header { margin-bottom: 3.5rem; }
.sv-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}
.sv-process-step {
    position: relative;
    padding: 2rem 1.5rem 2rem 0;
    border-right: 1px solid rgba(255,255,255,.07);
}
.sv-process-step:last-child { border-right: none; }
@media (max-width: 767px) {
    .sv-process-steps { grid-template-columns: 1fr 1fr; }
    .sv-process-step:nth-child(2) { border-right: none; }
    .sv-process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 1.5rem; }
    .sv-process-step:last-child { border-bottom: none; }
}

.sv-step-num {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.1);
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
}
.sv-step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: hsl(191 80% 50% / .12);
    border: 1px solid hsl(191 80% 55% / .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: hsl(191 90% 65%);
    margin-bottom: 1rem;
    transition: background .3s, transform .3s;
}
.sv-process-step:hover .sv-step-icon {
    background: hsl(191 80% 50% / .25);
    transform: scale(1.08);
}
.sv-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}
.sv-step-text {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    margin: 0;
}
.sv-step-connector {
    display: none;
}

/* ────────────────────────────────────────────────────────────
   CLOSING CTA
──────────────────────────────────────────────────────────── */
.sv-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}
.sv-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 50%, hsl(262 80% 20% / .5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, hsl(330 70% 15% / .3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, hsl(191 80% 12% / .3) 0%, transparent 60%),
        #060609;
}
.sv-cta-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    background-size: 180px;
    opacity: .4;
    pointer-events: none;
}
.sv-cta-inner {
    position: relative;
    z-index: 2;
}
.sv-cta-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}
.sv-cta-title em {
    font-style: normal;
    background: linear-gradient(135deg, hsl(330 80% 72%), hsl(262 80% 75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sv-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.sv-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.sv-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: .85rem 2.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, hsl(262 80% 55%), hsl(330 70% 55%));
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    text-decoration: none;
    transition: opacity .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 8px 30px hsl(262 80% 55% / .35);
}
.sv-btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px hsl(262 80% 55% / .5);
    color: #fff;
}
.sv-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: .85rem 2.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .2s;
}
.sv-btn-outline:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    color: #fff;
}

/* reveal utility for GSAP */
.sv-reveal { opacity: 0; transform: translateY(40px); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sv-hero-orb  { animation: none; }
    .sv-hero-dot  { animation: none; }
    .sv-label-dot { animation: none; }
    .sv-card      { transition: box-shadow .2s; }
    .sv-reveal    { opacity: 1; transform: none; }
    .sv-hero-label-wrap,
    .sv-hero-title-row,
    .sv-hero-tagline,
    .sv-hero-scroll-hint { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   SHARED UTILITIES for redesigned pages
══════════════════════════════════════════════════════════════ */
.ct-corner,.cl-corner,.pf-corner,.pj-corner,.tl-corner,.e4-corner {
    position:absolute; width:28px; height:28px; pointer-events:none; z-index:3;
}
.ct-corner-tl,.cl-corner-tl,.pf-corner-tl,.pj-corner-tl,.tl-corner-tl,.e4-corner-tl {
    top:24px; left:24px; border-top:1.5px solid rgba(255,255,255,.25); border-left:1.5px solid rgba(255,255,255,.25);
}
.ct-corner-tr,.pj-corner-tr,.e4-corner-tr {
    top:24px; right:24px; border-top:1.5px solid rgba(255,255,255,.25); border-right:1.5px solid rgba(255,255,255,.25);
}
.ct-corner-bl,.pj-corner-bl,.e4-corner-bl {
    bottom:24px; left:24px; border-bottom:1.5px solid rgba(255,255,255,.25); border-left:1.5px solid rgba(255,255,255,.25);
}
.ct-corner-br,.cl-corner-br,.pf-corner-br,.pj-corner-br,.tl-corner-br,.e4-corner-br {
    bottom:24px; right:24px; border-bottom:1.5px solid rgba(255,255,255,.25); border-right:1.5px solid rgba(255,255,255,.25);
}

.ct-section-label,.cl-section-label,.tl-section-label,.pj-section-label {
    display:inline-flex; align-items:center; gap:.5rem;
    font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
    color:hsl(262 80% 72%); margin-bottom:.75rem;
}
.ct-dot,.cl-dot,.tl-dot,.pj-dot {
    width:6px; height:6px; border-radius:50%;
    background:hsl(var(--dot-h,262) 80% 65%);
    box-shadow:0 0 8px hsl(var(--dot-h,262) 80% 65%/.8);
}
.ct-reveal,.cl-reveal,.pf-reveal,.pj-reveal,.tl-reveal {
    opacity:0; transform:translateY(40px);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE  (.ct-*)
══════════════════════════════════════════════════════════════ */
.ct-page { background:#060609; color:#fff; }
.ct-hero { position:relative; min-height:60vh; display:flex; align-items:center; overflow:hidden; }
.ct-hero-bg {
    position:absolute; inset:0;
    background: radial-gradient(ellipse 70% 65% at 15% 55%, hsl(262 85% 16%/.6) 0%, transparent 65%),
        radial-gradient(ellipse 55% 50% at 85% 35%, hsl(191 90% 10%/.4) 0%, transparent 60%), #060609;
    z-index:0;
}
.ct-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:0; }
.ct-orb-1 { width:450px;height:450px;top:-150px;left:-100px;background:hsl(262 80% 55%/.22);animation:ct-orb 14s ease-in-out infinite; }
.ct-orb-2 { width:350px;height:350px;bottom:-80px;right:-60px;background:hsl(191 90% 50%/.18);animation:ct-orb 18s ease-in-out infinite reverse; }
@keyframes ct-orb { 0%,100%{transform:translate(0,0)}50%{transform:translate(20px,-25px)} }
.ct-hero-backdrop {
    position:absolute; bottom:-5%; right:-2%;
    font-size:clamp(80px,16vw,200px); font-weight:900; letter-spacing:-.03em;
    color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.04);
    user-select:none; pointer-events:none; z-index:0;
}
.ct-hero-content { position:relative; z-index:2; padding-top:130px; padding-bottom:80px; }
.ct-hero-label-wrap { display:flex; align-items:center; gap:.6rem; margin-bottom:1.25rem; opacity:0; transform:translateY(18px); }
.ct-hero-dot { width:7px;height:7px;border-radius:50%;background:hsl(262 80% 65%);box-shadow:0 0 10px hsl(262 80% 65%/.9);animation:ct-dot-pulse 2s ease-in-out infinite; }
@keyframes ct-dot-pulse { 0%,100%{box-shadow:0 0 6px hsl(262 80% 65%/.7)}50%{box-shadow:0 0 16px hsl(262 80% 65%)} }
.ct-hero-line { width:44px;height:1px;background:linear-gradient(90deg,hsl(262 80% 65%),transparent); }
.ct-hero-label { font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:hsl(262 80% 72%);margin:0; }
.ct-hero-title { display:flex;flex-direction:column;font-size:clamp(3.5rem,9vw,7rem);font-weight:900;line-height:1;letter-spacing:-.03em;margin-bottom:1rem;overflow:hidden; }
.ct-title-row { display:block;opacity:0;transform:translateY(70px); }
.ct-title-accent { background:linear-gradient(135deg,hsl(262 80% 75%),hsl(191 90% 65%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.ct-hero-tagline { font-size:1rem;color:rgba(255,255,255,.5);opacity:0;transform:translateY(15px);max-width:420px; }
.ct-main { padding:80px 0 120px; }
.ct-layout { display:grid;grid-template-columns:1.3fr 1fr;gap:3rem;align-items:start; }
@media(max-width:991px){ .ct-layout{ grid-template-columns:1fr; } }
.ct-form-card { background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.06);border-radius:20px;padding:2.5rem;position:relative;overflow:hidden; }
.ct-form-header { margin-bottom:2rem; }
.ct-form-title { font-size:1.6rem;font-weight:800;color:#fff;margin:0; }
.ct-form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem; }
@media(max-width:600px){ .ct-form-row{ grid-template-columns:1fr; } }
.ct-field-wrap { margin-bottom:1rem; }
.ct-label { font-size:.78rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,.55);display:block;margin-bottom:.5rem; }
.ct-required { color:hsl(330 80% 65%); }
.ct-input { width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:.75rem 1rem;color:#fff;font-size:.9rem;transition:border-color .25s;outline:none;-webkit-appearance:none; }
.ct-input:focus { border-color:hsl(262 80% 60%/.6); }
.ct-input::placeholder { color:rgba(255,255,255,.25); }
.ct-select { cursor:pointer; } .ct-select option { background:#1a1a2e;color:#fff; }
.ct-textarea { resize:vertical;min-height:130px; }
.ct-submit { display:inline-flex;align-items:center;padding:.85rem 2rem;border:none;border-radius:100px;background:linear-gradient(135deg,hsl(262 80% 55%),hsl(330 70% 55%));color:#fff;font-weight:700;font-size:.9rem;cursor:pointer;box-shadow:0 8px 30px hsl(262 80% 55%/.4);transition:opacity .25s,transform .2s; }
.ct-submit:hover { opacity:.9;transform:translateY(-2px); }
.ct-alert { padding:1rem 1.25rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem; }
.ct-alert-success { background:hsl(152 70% 40%/.15);border:1px solid hsl(152 70% 50%/.3);color:hsl(152 70% 65%); }
.ct-alert-error { background:hsl(0 70% 40%/.15);border:1px solid hsl(0 70% 50%/.3);color:hsl(0 70% 70%); }
.ct-info-card { background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.06);border-radius:20px;padding:2rem;margin-bottom:1.5rem; }
.ct-info-heading { font-size:1.4rem;font-weight:800;color:#fff;margin-bottom:1.5rem; }
.ct-info-items { display:flex;flex-direction:column;gap:1.25rem;margin-bottom:1.5rem; }
.ct-info-item { display:flex;align-items:flex-start;gap:1rem; }
.ct-info-icon { width:38px;height:38px;border-radius:10px;flex-shrink:0;background:hsl(262 70% 50%/.15);border:1px solid hsl(262 70% 55%/.25);display:flex;align-items:center;justify-content:center;color:hsl(262 80% 72%);font-size:1rem; }
.ct-info-icon-wa { background:hsl(142 70% 40%/.15);border-color:hsl(142 70% 50%/.25);color:hsl(142 70% 65%); }
.ct-info-item-title { font-size:.78rem;font-weight:700;letter-spacing:.06em;color:rgba(255,255,255,.5);display:block;margin-bottom:.2rem;text-transform:uppercase; }
.ct-info-item-text { font-size:.875rem;color:rgba(255,255,255,.65);margin:0; }
.ct-info-link { font-size:.875rem;color:hsl(262 80% 72%);text-decoration:none;transition:color .2s; }
.ct-info-link:hover { color:#fff; }
.ct-response-note { font-size:.78rem;color:rgba(255,255,255,.35);border-top:1px solid rgba(255,255,255,.07);padding-top:1rem;margin-bottom:1.25rem; }
.ct-socials { display:flex;gap:.75rem; }
.ct-social-link { width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);font-size:.9rem;text-decoration:none;transition:border-color .2s,color .2s,background .2s; }
.ct-social-link:hover { border-color:hsl(262 80% 60%/.5);color:hsl(262 80% 72%);background:hsl(262 80% 55%/.1); }
.ct-map-wrap { border-radius:16px;overflow:hidden;height:220px; }
.ct-map-wrap iframe { width:100%;height:100%;border:none; }
.ct-map-fallback { background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:16px;height:180px;display:flex;flex-direction:column;align-items:center;justify-content:center;color:rgba(255,255,255,.3);font-size:.875rem;gap:.5rem; }
.ct-map-fallback i { font-size:1.8rem; }

/* ══════════════════════════════════════════════════════════════
   COLLABORATE PAGE  (.cl-*)
══════════════════════════════════════════════════════════════ */
.cl-page { background:#060609; color:#fff; }
.cl-hero { position:relative;min-height:65vh;display:flex;align-items:center;overflow:hidden; }
.cl-hero-bg { position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 20% 50%,hsl(191 85% 14%/.6) 0%,transparent 65%),radial-gradient(ellipse 55% 50% at 80% 40%,hsl(262 80% 12%/.4) 0%,transparent 60%),#060609;z-index:0; }
.cl-orb,.tl-orb,.pf-orb { position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;z-index:0; }
.cl-orb-1 { width:400px;height:400px;top:-120px;left:-80px;background:hsl(191 80% 50%/.2);animation:ct-orb 12s ease-in-out infinite; }
.cl-orb-2 { width:320px;height:320px;bottom:-80px;right:-60px;background:hsl(262 80% 55%/.18);animation:ct-orb 16s ease-in-out infinite reverse; }
.cl-hero-backdrop,.tl-hero-backdrop,.pf-hero-backdrop { position:absolute;bottom:-5%;right:-2%;font-size:clamp(60px,14vw,190px);font-weight:900;letter-spacing:-.03em;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.04);user-select:none;pointer-events:none;z-index:0; }
.cl-hero-content,.tl-hero-content,.pf-hero-content { position:relative;z-index:2;padding-top:130px;padding-bottom:80px; }
.cl-hero-label-wrap,.tl-hero-label-wrap,.pf-hero-label-wrap { display:flex;align-items:center;gap:.6rem;margin-bottom:1.25rem;opacity:0;transform:translateY(18px); }
.cl-hero-dot,.tl-hero-dot,.pf-hero-dot { width:7px;height:7px;border-radius:50%;background:hsl(191 80% 60%);box-shadow:0 0 10px hsl(191 80% 60%/.9);animation:cl-dot-pulse 2s ease-in-out infinite; }
@keyframes cl-dot-pulse { 0%,100%{box-shadow:0 0 6px hsl(191 80% 60%/.7)}50%{box-shadow:0 0 16px hsl(191 80% 60%)} }
.cl-hero-line,.tl-hero-line,.pf-hero-line { width:44px;height:1px;background:linear-gradient(90deg,hsl(191 80% 60%),transparent); }
.cl-hero-label,.tl-hero-label,.pf-hero-label { font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:hsl(191 80% 65%);margin:0; }
.cl-hero-title,.tl-hero-title,.pf-hero-title { display:flex;flex-direction:column;font-size:clamp(3.5rem,9vw,7rem);font-weight:900;line-height:1;letter-spacing:-.03em;margin-bottom:1rem;overflow:hidden; }
.cl-title-row,.tl-title-row,.pf-title-row { display:block;opacity:0;transform:translateY(70px); }
.cl-title-accent { background:linear-gradient(135deg,hsl(191 90% 65%),hsl(262 80% 72%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.tl-title-accent { background:linear-gradient(135deg,hsl(330 80% 70%),hsl(262 80% 72%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.pf-title-accent { background:linear-gradient(135deg,hsl(38 90% 65%),hsl(330 70% 65%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.cl-hero-tagline,.tl-hero-tagline,.pf-hero-tagline { font-size:1rem;color:rgba(255,255,255,.5);opacity:0;transform:translateY(15px);max-width:440px;margin-bottom:1.75rem; }
.cl-hero-cta,.tl-hero-cta { display:inline-flex;align-items:center;padding:.75rem 1.75rem;border-radius:100px;border:1px solid rgba(255,255,255,.2);color:#fff;font-weight:600;font-size:.875rem;text-decoration:none;opacity:0;transform:translateY(12px);transition:background .25s,border-color .25s; }
.cl-hero-cta:hover,.tl-hero-cta:hover { background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.4);color:#fff; }
.cl-process { padding:70px 0;background:rgba(255,255,255,.02);border-bottom:1px solid rgba(255,255,255,.06); }
.cl-process-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:2rem; }
@media(max-width:767px){ .cl-process-grid{ grid-template-columns:1fr; } }
.cl-process-step { padding:1.75rem;position:relative; }
.cl-process-step:not(:last-child)::after { content:'';position:absolute;right:0;top:2rem;bottom:2rem;width:1px;background:linear-gradient(to bottom,transparent,rgba(255,255,255,.1),transparent); }
@media(max-width:767px){ .cl-process-step::after{ display:none; } }
.cl-step-num { font-size:2.5rem;font-weight:900;letter-spacing:-.03em;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.12);display:block;line-height:1;margin-bottom:.5rem; }
.cl-step-icon { width:46px;height:46px;border-radius:12px;background:hsl(191 80% 50%/.12);border:1px solid hsl(191 80% 55%/.25);display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:hsl(191 90% 65%);margin-bottom:.9rem;transition:background .3s,transform .3s; }
.cl-process-step:hover .cl-step-icon { background:hsl(191 80% 50%/.25);transform:scale(1.08); }
.cl-step-title { font-size:.95rem;font-weight:700;color:#fff;margin-bottom:.4rem; }
.cl-step-text { font-size:.85rem;color:rgba(255,255,255,.45);line-height:1.65;margin:0; }
.cl-form-section { position:relative;padding:90px 0;overflow:hidden; }
.cl-form-section-bg { position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 50% 50%,hsl(262 80% 14%/.3) 0%,transparent 70%); }
.cl-section-label { display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:hsl(191 80% 65%);margin-bottom:.75rem; }
.cl-section-title { font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:#fff;margin-bottom:2rem; }
.cl-section-title em { font-style:normal;background:linear-gradient(135deg,hsl(262 80% 75%),hsl(191 90% 65%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.cl-form-header { margin-bottom:2.5rem; }
.cl-form-card { background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.07);border-radius:20px;padding:2.5rem; }
.cl-form-row { display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem;margin-bottom:1rem; }
.cl-form-row-2 { grid-template-columns:1fr 1fr; }
@media(max-width:767px){ .cl-form-row,.cl-form-row-2{ grid-template-columns:1fr; } }
.cl-field-wrap { margin-bottom:1rem; }
.cl-label { font-size:.78rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,.55);display:block;margin-bottom:.5rem; }
.cl-required { color:hsl(330 80% 65%); }
.cl-input { width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:.75rem 1rem;color:#fff;font-size:.9rem;transition:border-color .25s;outline:none;-webkit-appearance:none; }
.cl-input:focus { border-color:hsl(191 80% 55%/.5); }
.cl-input::placeholder { color:rgba(255,255,255,.25); }
.cl-select { cursor:pointer; } .cl-select option { background:#0d0d1a; }
.cl-textarea { resize:vertical;min-height:130px; }
.cl-file-label { display:flex;align-items:center;gap:.5rem;width:100%;background:rgba(255,255,255,.03);border:1.5px dashed rgba(255,255,255,.12);border-radius:10px;padding:.85rem 1rem;cursor:pointer;color:rgba(255,255,255,.45);font-size:.875rem;transition:border-color .25s,background .25s; }
.cl-file-label:hover { border-color:hsl(191 80% 55%/.4);background:rgba(255,255,255,.05); }
.cl-file-input { display:none; }
.cl-form-actions { display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;margin-top:.5rem; }
.cl-submit { display:inline-flex;align-items:center;padding:.85rem 2rem;border:none;border-radius:100px;background:linear-gradient(135deg,hsl(191 80% 45%),hsl(262 80% 55%));color:#fff;font-weight:700;font-size:.9rem;cursor:pointer;box-shadow:0 8px 30px hsl(191 80% 45%/.4);transition:opacity .25s,transform .2s; }
.cl-submit:hover { opacity:.9;transform:translateY(-2px); }
.cl-form-note { font-size:.78rem;color:rgba(255,255,255,.35);margin:0; }
.cl-alert { padding:1rem 1.25rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem; }
.cl-alert-error { background:hsl(0 70% 40%/.15);border:1px solid hsl(0 70% 50%/.3);color:hsl(0 70% 70%); }
.cl-faq { padding:90px 0 100px; }
.cl-faq-header { margin-bottom:3rem; }
.cl-faq-grid { display:flex;flex-direction:column;gap:0;max-width:780px; }
.cl-faq-item { border-bottom:1px solid rgba(255,255,255,.07);padding:1.25rem 0;cursor:pointer; }
.cl-faq-q { display:flex;align-items:center;justify-content:space-between;gap:1rem;font-size:1rem;font-weight:600;color:#fff;user-select:none; }
.cl-faq-icon { font-size:1.2rem;color:hsl(191 80% 65%);transition:transform .3s; }
.cl-faq-item[aria-expanded="true"] .cl-faq-icon { transform:rotate(45deg); }
.cl-faq-a { padding-top:.75rem; }
.cl-faq-a p { font-size:.9rem;color:rgba(255,255,255,.5);line-height:1.7;margin:0; }
.cl-success { position:relative;min-height:100svh;display:flex;align-items:center;justify-content:center;overflow:hidden; }
.cl-success-bg { position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 50% 50%,hsl(152 70% 14%/.5) 0%,#060609 70%);z-index:0; }
.cl-success-inner { position:relative;z-index:2;text-align:center;padding:2rem; }
.cl-success-icon { font-size:3.5rem;color:hsl(152 70% 55%);display:block;margin-bottom:1.5rem;animation:cl-success-pop .6s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes cl-success-pop { from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1} }
.cl-success-title { font-size:clamp(2.5rem,6vw,4.5rem);font-weight:900;color:#fff;margin-bottom:.75rem; }
.cl-success-text { font-size:1rem;color:rgba(255,255,255,.5);max-width:420px;margin:0 auto 2rem;line-height:1.7; }
.cl-success-btn { display:inline-flex;align-items:center;padding:.85rem 2rem;border-radius:100px;background:hsl(152 70% 45%/.2);border:1px solid hsl(152 70% 50%/.4);color:hsl(152 70% 65%);font-weight:700;text-decoration:none;transition:background .25s; }
.cl-success-btn:hover { background:hsl(152 70% 45%/.35);color:hsl(152 70% 75%); }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO PAGE  (.pf-*)
══════════════════════════════════════════════════════════════ */
.pf-page { background:#060609;color:#fff; }
.pf-hero { position:relative;min-height:60vh;display:flex;align-items:center;overflow:hidden; }
.pf-hero-bg { position:absolute;inset:0;background:radial-gradient(ellipse 65% 60% at 20% 50%,hsl(38 90% 14%/.5) 0%,transparent 65%),radial-gradient(ellipse 55% 50% at 80% 40%,hsl(330 70% 12%/.4) 0%,transparent 60%),#060609;z-index:0; }
.pf-orb-1 { width:400px;height:400px;top:-130px;left:-80px;background:hsl(38 80% 50%/.18);animation:ct-orb 13s ease-in-out infinite; }
.pf-orb-2 { width:300px;height:300px;bottom:-70px;right:-50px;background:hsl(330 70% 50%/.15);animation:ct-orb 17s ease-in-out infinite reverse; }
.pf-filters-bar { background:rgba(255,255,255,.02);border-bottom:1px solid rgba(255,255,255,.07);padding:1rem 0;position:sticky;top:0;z-index:40;backdrop-filter:blur(12px); }
.pf-filters { display:flex;align-items:center;gap:.5rem;flex-wrap:wrap; }
.pf-filter-btn { padding:.45rem 1.1rem;border-radius:100px;font-size:.78rem;font-weight:600;letter-spacing:.06em;color:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.1);text-decoration:none;transition:all .25s; }
.pf-filter-btn:hover { border-color:rgba(255,255,255,.3);color:#fff; }
.pf-filter-btn.active { background:hsl(38 80% 50%/.2);border-color:hsl(38 80% 55%/.5);color:hsl(38 90% 70%); }
.pf-grid-section { padding:60px 0 100px; }
.pf-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem; }
.pf-empty { text-align:center;padding:80px 0;color:rgba(255,255,255,.4);display:flex;flex-direction:column;align-items:center;gap:1rem; }
.pf-empty-icon { font-size:2.5rem; }
.pf-empty-link { color:hsl(38 80% 65%);text-decoration:none;font-size:.875rem; }
.pf-pagination { padding:2rem 0; }
.pf-video-modal .modal-dialog { max-width:1000px; }
.pf-modal-content { background:#0a0a12;border:1px solid rgba(255,255,255,.08);border-radius:16px;overflow:hidden;position:relative; }
.pf-modal-close { position:absolute;top:1rem;right:1rem;z-index:10;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);border:none;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s; }
.pf-modal-close:hover { background:rgba(255,255,255,.2); }
.pf-modal-body { padding:0; }

/* ══════════════════════════════════════════════════════════════
   PROJECT DETAIL  (.pj-*)
══════════════════════════════════════════════════════════════ */
.pj-page { background:#060609;color:#fff; }
.pj-hero { position:relative;height:100svh;min-height:500px;overflow:hidden; }
.pj-hero-media { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0; }
.pj-hero-media-placeholder { background:linear-gradient(135deg,hsl(262 80% 12%),hsl(191 80% 8%)); }
.pj-hero-overlay { position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(6,6,9,.95) 0%,rgba(6,6,9,.5) 40%,rgba(6,6,9,.1) 100%); }
.pj-hero-content { position:relative;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;padding-bottom:80px;height:100%; }
.pj-hero-tag { display:inline-block;padding:.35rem .9rem;border-radius:100px;margin-bottom:1rem;font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;background:hsl(262 80% 55%/.25);border:1px solid hsl(262 80% 55%/.4);color:hsl(262 80% 75%);opacity:0;transform:translateY(14px); }
.pj-hero-title { font-size:clamp(2.5rem,7vw,6rem);font-weight:900;line-height:1.05;letter-spacing:-.02em;color:#fff;margin-bottom:.5rem;opacity:0;transform:translateY(40px); }
.pj-hero-year { font-size:.85rem;color:rgba(255,255,255,.4);opacity:0; }
.pj-hero-play { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;display:flex;align-items:center;justify-content:center;text-decoration:none; }
.pj-play-ring { position:absolute;width:80px;height:80px;border-radius:50%;border:2px solid rgba(255,255,255,.3);animation:pj-ring-pulse 2s ease-in-out infinite; }
@keyframes pj-ring-pulse { 0%,100%{transform:scale(1);opacity:.6}50%{transform:scale(1.15);opacity:1} }
.pj-play-icon { font-size:2.2rem;color:#fff;z-index:1;margin-left:.25em; }
.pj-section { padding:70px 0; }
.pj-section-dark { background:rgba(255,255,255,.015); }
.pj-container-narrow { max-width:720px; }
.pj-section-label { display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:hsl(262 80% 72%);margin-bottom:1.25rem; }
.pj-dot { width:6px;height:6px;border-radius:50%;background:hsl(var(--dot-h,262) 80% 65%);box-shadow:0 0 8px hsl(var(--dot-h,262) 80% 65%/.8); }
.pj-text { font-size:1rem;color:rgba(255,255,255,.6);line-height:1.85; }
.pj-video-wrap { border-radius:12px;overflow:hidden; }
.pj-bts-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem; }
.pj-bts-item { border-radius:10px;overflow:hidden;aspect-ratio:16/9; }
.pj-bts-item img { width:100%;height:100%;object-fit:cover;transition:transform .4s ease; }
.pj-bts-item:hover img { transform:scale(1.04); }
.pj-nav-section { padding:50px 0;border-top:1px solid rgba(255,255,255,.07); }
.pj-nav { display:grid;grid-template-columns:1fr auto 1fr;gap:1rem;align-items:center; }
@media(max-width:600px){ .pj-nav{ grid-template-columns:1fr;text-align:center; } }
.pj-nav-btn { display:flex;align-items:center;gap:.75rem;text-decoration:none;padding:.75rem 1.25rem;border-radius:12px;border:1px solid rgba(255,255,255,.08);transition:background .25s,border-color .25s; }
.pj-nav-btn:hover { background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.18); }
.pj-nav-next { justify-content:flex-end; }
.pj-nav-disabled { border:1px solid rgba(255,255,255,.04);opacity:.3;cursor:default; }
.pj-nav-label { font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.3);display:block; }
.pj-nav-title { font-size:.875rem;font-weight:600;color:#fff;display:block; }
.pj-nav-icon { font-size:1.1rem;color:rgba(255,255,255,.4);flex-shrink:0; }
.pj-nav-all { text-align:center;font-size:.8rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,.45);text-decoration:none;white-space:nowrap;transition:color .2s; }
.pj-nav-all:hover { color:#fff; }
.pj-cta { position:relative;padding:100px 0;overflow:hidden;text-align:center; }
.pj-cta-bg { position:absolute;inset:0;background:radial-gradient(ellipse 80% 70% at 50% 50%,hsl(262 80% 16%/.5) 0%,#060609 70%); }
.pj-cta-inner { position:relative;z-index:2; }
.pj-cta-title { font-size:clamp(2rem,5vw,3.5rem);font-weight:900;color:#fff;margin-bottom:.75rem;line-height:1.15; }
.pj-cta-title em { font-style:normal;background:linear-gradient(135deg,hsl(262 80% 75%),hsl(330 70% 65%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.pj-cta-sub { font-size:1rem;color:rgba(255,255,255,.45);max-width:400px;margin:0 auto 2.5rem; }
.pj-cta-btn { display:inline-flex;align-items:center;padding:.85rem 2.25rem;border-radius:100px;background:linear-gradient(135deg,hsl(262 80% 55%),hsl(330 70% 55%));color:#fff;font-weight:700;font-size:.9rem;text-decoration:none;box-shadow:0 8px 30px hsl(262 80% 55%/.4);transition:opacity .25s,transform .2s; }
.pj-cta-btn:hover { opacity:.9;transform:translateY(-2px);color:#fff; }

/* ══════════════════════════════════════════════════════════════
   TALENT PAGE  (.tl-*)
══════════════════════════════════════════════════════════════ */
.tl-page { background:#060609;color:#fff; }
.tl-hero { position:relative;min-height:65vh;display:flex;align-items:center;overflow:hidden; }
.tl-hero-bg { position:absolute;inset:0;background:radial-gradient(ellipse 65% 60% at 15% 55%,hsl(330 80% 14%/.55) 0%,transparent 65%),radial-gradient(ellipse 55% 50% at 82% 40%,hsl(262 80% 12%/.4) 0%,transparent 60%),#060609;z-index:0; }
.tl-orb-1 { width:420px;height:420px;top:-130px;left:-80px;background:hsl(330 70% 50%/.2);animation:ct-orb 13s ease-in-out infinite; }
.tl-orb-2 { width:300px;height:300px;bottom:-70px;right:-50px;background:hsl(262 80% 55%/.16);animation:ct-orb 17s ease-in-out infinite reverse; }
.tl-filters-bar { background:rgba(255,255,255,.02);border-bottom:1px solid rgba(255,255,255,.07);padding:1rem 0;position:sticky;top:0;z-index:40;backdrop-filter:blur(12px); }
.tl-filters { display:flex;align-items:center;gap:.5rem;flex-wrap:wrap; }
.tl-filter-btn { padding:.45rem 1.1rem;border-radius:100px;font-size:.78rem;font-weight:600;letter-spacing:.06em;color:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.1);text-decoration:none;transition:all .25s; }
.tl-filter-btn:hover { border-color:rgba(255,255,255,.3);color:#fff; }
.tl-filter-btn.active { background:hsl(330 70% 50%/.2);border-color:hsl(330 70% 55%/.5);color:hsl(330 80% 72%); }
.tl-grid-section { padding:60px 0 80px; }
.tl-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem; }
.tl-empty { text-align:center;padding:80px 0;color:rgba(255,255,255,.4);display:flex;flex-direction:column;align-items:center;gap:1rem; }
.tl-empty-icon { font-size:2.5rem; }
.tl-empty-link { color:hsl(330 80% 65%);text-decoration:none;font-size:.875rem; }
.tl-submit-section { position:relative;padding:90px 0 110px;overflow:hidden; }
.tl-submit-bg { position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 50% 50%,hsl(330 70% 14%/.3) 0%,transparent 70%); }
.tl-submit-header { margin-bottom:3rem; }
.tl-section-label { display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:hsl(330 80% 70%);margin-bottom:.75rem; }
.tl-section-title { font-size:clamp(2rem,5vw,3.2rem);font-weight:800;color:#fff;margin-bottom:.5rem; }
.tl-section-title em { font-style:normal;background:linear-gradient(135deg,hsl(330 80% 72%),hsl(262 80% 72%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.tl-section-sub { font-size:.95rem;color:rgba(255,255,255,.45); }
.tl-form-card { background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.07);border-radius:20px;padding:2.5rem;max-width:680px; }
.tl-form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem; }
@media(max-width:600px){ .tl-form-row{ grid-template-columns:1fr; } }
.tl-field-wrap { margin-bottom:1rem; }
.tl-label { font-size:.78rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,.55);display:block;margin-bottom:.5rem; }
.tl-label-optional { color:rgba(255,255,255,.3);font-size:.7rem; }
.tl-required { color:hsl(330 80% 65%); }
.tl-input { width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:.75rem 1rem;color:#fff;font-size:.9rem;transition:border-color .25s;outline:none;-webkit-appearance:none; }
.tl-input:focus { border-color:hsl(330 70% 55%/.5); }
.tl-input::placeholder { color:rgba(255,255,255,.25); }
.tl-select { cursor:pointer; } .tl-select option { background:#0d0d1a; }
.tl-textarea { resize:vertical;min-height:120px; }
.tl-file-label { display:flex;align-items:center;gap:.5rem;width:100%;background:rgba(255,255,255,.03);border:1.5px dashed rgba(255,255,255,.12);border-radius:10px;padding:.85rem 1rem;cursor:pointer;color:rgba(255,255,255,.45);font-size:.875rem;transition:border-color .25s,background .25s; }
.tl-file-label:hover { border-color:hsl(330 70% 55%/.4);background:rgba(255,255,255,.05); }
.tl-file-input { display:none; }
.tl-form-actions { margin-top:.5rem; }
.tl-submit-btn { display:inline-flex;align-items:center;padding:.85rem 2rem;border:none;border-radius:100px;background:linear-gradient(135deg,hsl(330 70% 50%),hsl(262 80% 55%));color:#fff;font-weight:700;font-size:.9rem;cursor:pointer;box-shadow:0 8px 30px hsl(330 70% 50%/.4);transition:opacity .25s,transform .2s; }
.tl-submit-btn:hover { opacity:.9;transform:translateY(-2px); }
.tl-alert { padding:1rem 1.25rem;border-radius:10px;margin-bottom:1.5rem;font-size:.875rem; }
.tl-alert-success { background:hsl(152 70% 40%/.15);border:1px solid hsl(152 70% 50%/.3);color:hsl(152 70% 65%); }
.tl-alert-error { background:hsl(0 70% 40%/.15);border:1px solid hsl(0 70% 50%/.3);color:hsl(0 70% 70%); }
.tl-artist-modal .modal-dialog { max-width:480px; }
.tl-modal-content { background:#0d0d1a;border:1px solid rgba(255,255,255,.08);border-radius:20px;overflow:hidden;position:relative; }
.tl-modal-close { position:absolute;top:1rem;right:1rem;z-index:10;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);border:none;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s; }
.tl-modal-close:hover { background:rgba(255,255,255,.15); }
.tl-modal-body { padding:2rem; }
.tl-modal-photo-wrap { width:90px;height:90px;border-radius:50%;overflow:hidden;margin-bottom:1rem;border:2px solid hsl(330 70% 55%/.3); }
.tl-modal-photo { width:100%;height:100%;object-fit:cover; }
.tl-modal-skill { font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:hsl(330 80% 65%);display:block;margin-bottom:.4rem; }
.tl-modal-name { font-size:1.4rem;font-weight:800;color:#fff;margin-bottom:.75rem; }
.tl-modal-bio { font-size:.875rem;color:rgba(255,255,255,.55);line-height:1.7; }

/* ══════════════════════════════════════════════════════════════
   404 PAGE  (.e4-*)
══════════════════════════════════════════════════════════════ */
.e4-page { position:relative;min-height:100svh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#060609; }
.e4-bg { position:absolute;inset:0;background:radial-gradient(ellipse 70% 65% at 30% 40%,hsl(0 70% 14%/.5) 0%,transparent 65%),radial-gradient(ellipse 60% 55% at 75% 65%,hsl(262 80% 12%/.4) 0%,transparent 60%),#060609; }
.e4-orb { position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none; }
.e4-orb-1 { width:400px;height:400px;top:-120px;left:-80px;background:hsl(0 70% 50%/.18);animation:ct-orb 12s ease-in-out infinite; }
.e4-orb-2 { width:320px;height:320px;bottom:-80px;right:-50px;background:hsl(262 80% 55%/.16);animation:ct-orb 16s ease-in-out infinite reverse; }
.e4-scanline { position:absolute;top:-4px;left:0;right:0;height:3px;z-index:4;pointer-events:none;background:linear-gradient(90deg,transparent,hsl(0 70% 60%/.5),transparent);animation:pl-scan 6s linear infinite; }
.e4-backdrop { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:clamp(200px,40vw,400px);font-weight:900;letter-spacing:-.05em;color:transparent;-webkit-text-stroke:1.5px rgba(255,255,255,.04);user-select:none;pointer-events:none;z-index:0;white-space:nowrap; }
.e4-content { position:relative;z-index:2;text-align:center;padding:2rem; }
.e4-label { display:inline-flex;align-items:center;gap:.6rem;font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:hsl(0 70% 65%);margin-bottom:1.5rem;justify-content:center; }
.e4-dot { width:7px;height:7px;border-radius:50%;background:hsl(0 70% 60%);box-shadow:0 0 10px hsl(0 70% 60%/.8);animation:e4-pulse 2s ease-in-out infinite; }
@keyframes e4-pulse { 0%,100%{box-shadow:0 0 6px hsl(0 70% 60%/.7)}50%{box-shadow:0 0 16px hsl(0 70% 60%)} }
.e4-title { font-size:clamp(3rem,9vw,7rem);font-weight:900;line-height:1.05;letter-spacing:-.03em;color:#fff;margin-bottom:1.25rem; }
.e4-title em { font-style:normal;background:linear-gradient(135deg,hsl(0 70% 68%),hsl(330 70% 65%));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.e4-text { font-size:1rem;color:rgba(255,255,255,.45);max-width:460px;margin:0 auto 2.5rem;line-height:1.75; }
.e4-actions { display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap; }
.e4-btn-primary { display:inline-flex;align-items:center;padding:.85rem 2rem;border-radius:100px;background:linear-gradient(135deg,hsl(0 70% 50%),hsl(330 70% 50%));color:#fff;font-weight:700;font-size:.9rem;text-decoration:none;box-shadow:0 8px 30px hsl(0 70% 50%/.4);transition:opacity .25s,transform .2s; }
.e4-btn-primary:hover { opacity:.9;transform:translateY(-2px);color:#fff; }
.e4-btn-outline { display:inline-flex;align-items:center;padding:.85rem 2rem;border-radius:100px;border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.8);font-weight:600;font-size:.9rem;text-decoration:none;transition:background .25s,transform .2s; }
.e4-btn-outline:hover { background:rgba(255,255,255,.07);transform:translateY(-2px);color:#fff; }

@media(prefers-reduced-motion:reduce){
    .ct-orb,.cl-orb-1,.cl-orb-2,.tl-orb-1,.tl-orb-2,.pf-orb-1,.pf-orb-2,.e4-orb { animation:none; }
    .ct-hero-dot,.cl-hero-dot,.tl-hero-dot,.e4-dot { animation:none; }
    .ct-reveal,.cl-reveal,.pf-reveal,.pj-reveal,.tl-reveal { opacity:1;transform:none; }
    .ct-hero-label-wrap,.cl-hero-label-wrap,.tl-hero-label-wrap,.pf-hero-label-wrap { opacity:1;transform:none; }
    .ct-title-row,.cl-title-row,.tl-title-row,.pf-title-row { opacity:1;transform:none; }
    .ct-hero-tagline,.cl-hero-tagline,.tl-hero-tagline,.pf-hero-tagline { opacity:1;transform:none; }
    .cl-hero-cta,.tl-hero-cta { opacity:1;transform:none; }
    .pj-hero-tag,.pj-hero-title,.pj-hero-year { opacity:1;transform:none; }
}

/* ═══ PORTFOLIO CARD (.pf-card-*) ═══ */
.pf-card {
    position:relative;border-radius:14px;overflow:hidden;
    background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);
    transition:border-color .3s,transform .3s;
    --card-h:262;
}
.pf-card:hover { border-color:hsl(var(--card-h) 80% 55%/.35);transform:translateY(-4px); }
.pf-card-glow {
    position:absolute;inset:0;pointer-events:none;opacity:0;transition:opacity .4s;
    background:radial-gradient(ellipse 80% 60% at 50% 0%,hsl(var(--card-h) 80% 55%/.18),transparent 70%);
}
.pf-card:hover .pf-card-glow { opacity:1; }
.pf-card-media { position:relative;aspect-ratio:16/10;overflow:hidden; }
.pf-card-img { width:100%;height:100%;object-fit:cover;transition:transform .5s ease;display:block; }
.pf-card:hover .pf-card-img { transform:scale(1.06); }
.pf-card-img-placeholder { background:linear-gradient(135deg,hsl(var(--card-h) 60% 12%),hsl(var(--card-h) 40% 8%));width:100%;height:100%; }
.pf-card-overlay { position:absolute;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s; }
.pf-card:hover .pf-card-overlay { opacity:1; }
.pf-card-play { width:54px;height:54px;border-radius:50%;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1.5px solid rgba(255,255,255,.4);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.3rem;transition:background .25s,transform .25s;text-decoration:none;cursor:pointer; }
.pf-card-play:hover { background:rgba(255,255,255,.3);transform:scale(1.1);color:#fff; }
.pf-card-tag { position:absolute;top:.75rem;left:.75rem;padding:.25rem .7rem;border-radius:100px;font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;background:hsl(var(--card-h) 80% 50%/.2);border:1px solid hsl(var(--card-h) 80% 55%/.35);color:hsl(var(--card-h) 90% 75%); }
.pf-card-body { padding:1.25rem; }
.pf-card-title { font-size:1rem;font-weight:700;color:#fff;margin-bottom:.4rem; }
.pf-card-title-link { color:inherit;text-decoration:none;transition:color .2s; }
.pf-card-title-link:hover { color:hsl(var(--card-h) 90% 75%); }
.pf-card-desc { font-size:.82rem;color:rgba(255,255,255,.45);line-height:1.6;margin-bottom:.9rem; }
.pf-card-footer { display:flex;align-items:center;justify-content:space-between; }
.pf-card-detail-link { font-size:.78rem;font-weight:600;color:hsl(var(--card-h) 80% 65%);text-decoration:none;transition:gap .2s; }
.pf-card-detail-link:hover { color:hsl(var(--card-h) 90% 78%); }
.pf-card-year { font-size:.72rem;color:rgba(255,255,255,.25);letter-spacing:.06em; }

/* ═══ TALENT / ARTIST CARD (.tl-card-*) ═══ */
.tl-card {
    position:relative;border-radius:16px;overflow:hidden;
    background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);
    transition:border-color .3s,transform .3s;
    --card-h:330;
}
.tl-card:hover { border-color:hsl(var(--card-h) 70% 55%/.35);transform:translateY(-4px); }
.tl-card-glow { position:absolute;inset:0;pointer-events:none;opacity:0;transition:opacity .4s;background:radial-gradient(ellipse 80% 60% at 50% 0%,hsl(var(--card-h) 70% 55%/.2),transparent 70%); }
.tl-card:hover .tl-card-glow { opacity:1; }
.tl-card-photo-wrap { position:relative;aspect-ratio:4/5;overflow:hidden; }
.tl-card-photo { width:100%;height:100%;object-fit:cover;object-position:top;display:block;transition:transform .5s ease; }
.tl-card:hover .tl-card-photo { transform:scale(1.05); }
.tl-card-photo-placeholder { background:linear-gradient(135deg,hsl(var(--card-h) 50% 14%),hsl(var(--card-h) 30% 10%));width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:3rem;color:rgba(255,255,255,.15); }
.tl-card-skill-badge { position:absolute;bottom:.75rem;left:.75rem;padding:.25rem .7rem;border-radius:100px;font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;background:hsl(var(--card-h) 70% 50%/.25);border:1px solid hsl(var(--card-h) 70% 55%/.4);color:hsl(var(--card-h) 80% 75%); }
.tl-card-body { padding:1.25rem; }
.tl-card-name { font-size:1rem;font-weight:700;color:#fff;margin-bottom:.4rem; }
.tl-card-bio { font-size:.82rem;color:rgba(255,255,255,.45);line-height:1.6;margin-bottom:.9rem; }
.tl-card-btn { display:inline-flex;align-items:center;padding:.45rem 1rem;border-radius:100px;background:hsl(var(--card-h) 70% 50%/.15);border:1px solid hsl(var(--card-h) 70% 55%/.3);color:hsl(var(--card-h) 80% 72%);font-size:.78rem;font-weight:600;transition:background .25s,border-color .25s;cursor:pointer; }
.tl-card-btn:hover { background:hsl(var(--card-h) 70% 50%/.3);border-color:hsl(var(--card-h) 70% 60%/.6); }

/* ============================================================
   Camera Rental — Homepage Teaser  (.hrt-*)
   ============================================================ */
.hrt-section {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: #07060c;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.hrt-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(201,162,39,.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 80%, rgba(201,162,39,.04) 0%, transparent 50%);
}

.hrt-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
}
.hrt-orb-1 {
    width: 480px; height: 480px; top: -160px; right: -80px;
    background: radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 70%);
}
.hrt-orb-2 {
    width: 320px; height: 320px; bottom: -100px; left: -60px;
    background: radial-gradient(circle, rgba(201,162,39,.06) 0%, transparent 70%);
}

.hrt-grid-lines {
    position: absolute; inset: 0; display: flex;
    justify-content: space-evenly; pointer-events: none;
}
.hrt-grid-lines span {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,162,39,.04) 30%, rgba(201,162,39,.04) 70%, transparent);
}

/* eyebrow */
.hrt-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(201,162,39,.07);
    border: 1px solid rgba(201,162,39,.2);
    padding: .3rem .9rem .3rem .6rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}
.hrt-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #c9a227;
    box-shadow: 0 0 6px rgba(201,162,39,.7);
}
.hrt-eyebrow-text {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: #c9a227;
}

/* title */
.hrt-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1; letter-spacing: .02em;
    color: #fff; margin: 0 0 1rem;
}
.hrt-title em {
    font-style: normal;
    background: linear-gradient(135deg, #c9a227 0%, #f0d060 60%, #c9a227 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hrt-rule {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, #c9a227, rgba(201,162,39,.2));
    margin-bottom: 1.5rem;
}
.hrt-subtitle {
    font-size: .97rem; color: rgba(255,255,255,.45);
    line-height: 1.75; margin-bottom: 2rem;
    max-width: 440px;
}

/* CTA */
.hrt-cta {
    display: inline-flex; align-items: center; gap: .8rem;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.3);
    color: #c9a227; text-decoration: none;
    padding: .8rem 1.6rem; border-radius: 4px;
    font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    transition: background .3s, border-color .3s, transform .25s, color .2s;
}
.hrt-cta:hover {
    background: rgba(201,162,39,.18);
    border-color: rgba(201,162,39,.55);
    color: #fff;
    transform: translateX(4px);
}
.hrt-cta-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid rgba(201,162,39,.4);
    font-size: .8rem;
    transition: transform .25s, border-color .25s;
}
.hrt-cta:hover .hrt-cta-arrow { transform: translateX(3px); border-color: rgba(201,162,39,.7); }

/* tiles */
.hrt-tiles {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.hrt-tile {
    position: relative; overflow: hidden;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none;
    --tile-h: 38;
    transition: border-color .3s, background .3s, transform .35s cubic-bezier(.25,.46,.45,.94);
}
.hrt-tile:hover {
    border-color: hsla(var(--tile-h),70%,55%,.35);
    background: hsla(var(--tile-h),60%,45%,.06);
    transform: translateY(-4px);
}

.hrt-tile-glow {
    position: absolute; inset: 0; pointer-events: none;
    opacity: 0; transition: opacity .35s;
    background: radial-gradient(ellipse 80% 70% at 30% 30%,
        hsla(var(--tile-h),70%,55%,.12) 0%, transparent 65%);
}
.hrt-tile:hover .hrt-tile-glow { opacity: 1; }

.hrt-tile-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
    background: hsla(var(--tile-h),60%,45%,.12);
    border: 1px solid hsla(var(--tile-h),70%,55%,.25);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, transform .3s;
}
.hrt-tile:hover .hrt-tile-icon-wrap {
    background: hsla(var(--tile-h),60%,45%,.22);
    transform: rotate(-5deg) scale(1.08);
}
.hrt-tile-icon {
    font-size: 1.2rem;
    color: hsla(var(--tile-h),80%,70%,1);
}
.hrt-tile-body { display: flex; flex-direction: column; flex: 1; gap: .15rem; }
.hrt-tile-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem; letter-spacing: .03em;
    color: #fff; transition: color .25s;
}
.hrt-tile:hover .hrt-tile-title { color: hsla(var(--tile-h),85%,78%,1); }
.hrt-tile-sub {
    font-size: .72rem; color: rgba(255,255,255,.3);
    letter-spacing: .04em;
}
.hrt-tile-arrow {
    font-size: .75rem; color: rgba(255,255,255,.2);
    transition: color .25s, transform .25s;
}
.hrt-tile:hover .hrt-tile-arrow { color: hsla(var(--tile-h),80%,70%,.8); transform: translate(2px,-2px); }
.hrt-tile-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg,
        transparent,
        hsla(var(--tile-h),70%,55%,.5) 40%,
        hsla(var(--tile-h),70%,55%,.5) 60%,
        transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.hrt-tile:hover .hrt-tile-line { transform: scaleX(1); }

/* reveal helpers (reuse HRT namespace so they don't conflict) */
.hrt-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.hrt-reveal.hrt-visible { opacity: 1; transform: translateY(0); }
.hrt-reveal-d1 { transition-delay: .1s; }
.hrt-reveal-d2 { transition-delay: .2s; }
.hrt-reveal-d3 { transition-delay: .3s; }

@media (max-width: 767px) {
    .hrt-tiles { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .hrt-title { font-size: clamp(2rem, 10vw, 2.8rem); }
}
@media (prefers-reduced-motion: reduce) {
    .hrt-reveal { opacity: 1; transform: none; transition: none; }
    .hrt-tile { transition: none; }
}
