/* ======================== VARIABLES ======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --pure-white: #ffffff;
    --pure-black: #000000;
    --gray: #777;
    --gray-light: #aaa;
    --gray-dark: #555;
    --dim: #141414;
    --card: #111;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --bg-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --coral: #e84c2e;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* ===== TYPE SCALE =====
     * Display  — hero, footer CTA
     * H1       — primary section headings
     * H2       — left-col sub-headings (FAQ, global)
     * H3       — accordion row text (services, why)
     * Eyebrow  — all uppercase labels
     * Body     — primary body / subtitles
     * Body-sm  — descriptions, card copy
     * Caption  — meta / credits
     */
    --type-display: clamp(3.3rem, 6.5vw, 6.2rem);
    --type-h1:      clamp(2.7rem, 5vw, 4.5rem);
    --type-h2:      clamp(2.04rem, 3.5vw, 3.08rem);
    --type-h3:      clamp(1.32rem, 2.5vw, 2.2rem);
    --type-eyebrow: 0.78rem;
    --type-body:    1.125rem;
    --type-body-sm: 1rem;
    --type-caption: 0.85rem;
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('../ppneuemontreal-thin.otf') format('opentype');
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../ppneuemontreal-book.otf') format('opentype');
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../ppneuemontreal-medium.otf') format('opentype');
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../ppneuemontreal-bold.otf') format('opentype');
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../ppneuemontreal-italic.otf') format('opentype');
}

@font-face {
    font-family: 'PP Neue Montreal';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('../ppneuemontreal-semibolditalic.otf') format('opentype');
}

/* ======================== RESET ======================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-size: var(--type-h1);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: none;
    color: var(--text-dark);
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

body::before,
body::after {
    content: '';
    position: fixed;
    display: none;
}

@media (max-width: 768px) {
    body::before,
    body::after {
        display: none;
    }
}

@keyframes globalGradientDrift1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 8%) scale(1.05); }
    100% { transform: translate(-3%, -5%) scale(0.97); }
}

@keyframes globalGradientDrift2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-4%, -6%) scale(1.03); }
    100% { transform: translate(3%, 4%) scale(0.98); }
}

::selection {
    background: var(--white);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ======================== UTILITY ======================== */
.text-accent {
    color: var(--accent);
}

/* On light backgrounds, use the darker blue */
.ethos-statement .text-accent,
.audience-quiet .text-accent,
.work-section .text-accent,
.cta-quiet .text-accent {
    color: var(--accent);
}

/* ======================== LAYOUT ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    display: flex;
    justify-content: center;
    pointer-events: all;
}

.navbar-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1.25rem, 3vw, 2.25rem);
    height: 72px;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    backdrop-filter: blur(22px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: visible;
    border-radius: 0;
}

.navbar-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.navbar.scrolled .navbar-pill {
    background: rgba(255, 255, 255, 0.82);
}

.navbar.on-light .navbar-pill {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.navbar.on-light .navbar-pill::before {
    display: none;
}

.navbar.on-light .nav-link { color: var(--text-mid); }
.navbar.on-light .nav-link:hover { color: var(--text-dark); background: rgba(0, 0, 0, 0.04); }
.navbar.on-light .nav-link.active { color: var(--text-dark); background: rgba(0, 0, 0, 0.06); }
.navbar.on-light .nav-links:hover .nav-link.active:not(:hover) { color: rgba(0, 0, 0, 0.35); background: transparent; }
.navbar.on-light .logo-dark { opacity: 1 !important; }
.navbar.on-light .logo-light { opacity: 0; }
.navbar.on-light .nav-cta { background: var(--accent); color: var(--pure-white); }
.navbar.on-light .nav-cta:hover { background: var(--accent-dark); }
.navbar.on-light .hamburger span { background: var(--text-dark); }

/* Hide leftover mobile menu markup by default (visible only on small screens) */
.mobile-menu-links {
    display: none;
}

@media (max-width: 1180px) {
    .mobile-menu-links {
        display: block;
    }
}

.theme-toggle {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text-dark);
    font: inherit;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    min-width: 80px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    outline: none;
}

body.dark {
    background: #090b12;
    color: #f4f7fb;
}

body.dark a {
    color: #7fb5ff;
}

body.dark .navbar-pill {
    background: rgba(10, 12, 18, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark .navbar-pill::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
}

body.dark .navbar .logo-dark { opacity: 0 !important; }
body.dark .navbar .logo-light { opacity: 1 !important; }

body.dark .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #f9fbff;
}

body.dark .theme-toggle:hover,
body.dark .theme-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

/* Ensure hero and global headings/paragraphs are visible in dark mode */
body.dark .hero-heading,
body.dark .hero-sub-heading,
body.dark .hero-description,
body.dark .hero-lead,
body.dark .hero-content,
body.dark .hero-cta-pill,
body.dark .hero-cta-outline,
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark p,
body.dark li {
    color: #f4f7fb !important;
}

body.dark a { color: var(--accent) !important; }

body.dark .hero-cta-pill {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
}

body.dark .hero-cta-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    width: 112px;
    height: 32px;
}

.logo-img {
    display: block;
    height: 26px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.logo-dark {
    opacity: 1;
}

.logo-light {
    opacity: 0;
}

/* ======================== HERO ======================== */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    background: transparent;
    overflow: clip;
    overflow-x: clip;
    overflow-y: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 3rem;
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

.hero-figure {
    width: 100%;
    margin: 0 0 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: min(42%, 100%);
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    max-height: 720px;
    display: block;
    transform: translateY(40%);
}

/* Desktop hero lock */
@media (min-width: 1025px) {
    .hero-inner {
        align-items: stretch !important;
    }

    .hero-content {
        position: absolute !important;
        left: 2rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0 !important;
        z-index: 5 !important;
        max-width: 520px !important;
        animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both !important;
    }

    .hero-heading {
        font-size: 2.24rem !important;
        line-height: 1.1 !important;
        text-align: left !important;
    }

    .hero-heading-highlight {
        color: var(--accent) !important;
    }

    .hero-image {
        width: 42% !important;
        transform: translateY(40%) !important;
    }
}

/* Centered content */
.hero-content {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    z-index: 5;
    max-width: 520px;
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.hero-heading {
    font-size: clamp(1.44rem, 2.56vw, 2.24rem);
    font-weight: 300;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-btn-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    margin-top: 1.5rem;
}

.hero-btn-started:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-sub-heading {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 720px;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    border: 2px solid var(--accent);
}

.hero-cta-pill:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

@property --cta-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.hero-cta-outline {
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(
            from var(--cta-angle),
            #a78bfa 0%,
            #60a5fa 20%,
            #34d399 40%,
            #fbbf24 60%,
            #f472b6 80%,
            #a78bfa 100%
        ) border-box;
    border: 2.5px solid transparent;
    color: #1a1a1a;
    animation: ctaBorderSpin 6s linear infinite;
    transition: transform 0.15s;
}

.hero-cta-outline:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
}

@keyframes ctaBorderSpin {
    to { --cta-angle: 360deg; }
}

/* Client logos */
.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

.hero-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Gradient blob */
.hero-gradient-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(255, 190, 100, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 140, 180, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 45%, rgba(190, 140, 255, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 55%, rgba(80, 190, 255, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 35% 60%, rgba(130, 240, 200, 0.3) 0%, transparent 45%);
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    animation: gradientMove 12s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translate(-48%, -50%) scale(1.05) rotate(1deg);
        opacity: 1;
    }
    66% {
        transform: translate(-52%, -50%) scale(0.97) rotate(-1deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.03) rotate(0.5deg);
        opacity: 0.9;
    }
}

/* Entrance animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-logos,
    .hero-gradient-blob {
        animation: none !important;
    }
}

/* ======================== HERO 3D VIDEO ======================== */
.hero-video-perspective {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 0;
    perspective: 1200px;
    position: relative;
    z-index: 2;
}

.hero-video-inner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    aspect-ratio: 16 / 9;
    transform: rotateX(25deg) scale(0.92);
    transform-origin: center bottom;
    transition: transform 0.1s linear;
    box-shadow: none;
    position: relative;
}

.hero-video-inner.in-view {
    transform: rotateX(0deg) scale(1);
    box-shadow: none;
}

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

.hero-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
}

.hero-video-placeholder svg {
    opacity: 0.5;
}

.hero-video-placeholder span {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ======================== NAVBAR SHRINK ON SCROLL ======================== */
/* (Styles merged into main .navbar and .navbar.scrolled .navbar-pill above) */

/* ======================== SECTIONS ======================== */

/* ======================== TRUSTED BY ======================== */
.trusted-section {
    padding: 4rem 0 5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.trusted-label-top {
    text-align: center;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.trusted-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.trusted-marquee-track:hover {
    animation-play-state: paused;
}

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

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    flex-shrink: 0;
}

.trusted-logo img {
    height: 20px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
}

.trusted-logo:hover img {
    opacity: 0.9;
    filter: grayscale(0);
}

.trusted-logo--icon img {
    height: 28px;
}

/* old grid — no longer used */
.trusted-grid { display: none; }
.trusted-label { display: none; }

/* ======================== STATS — BENTO GRID ======================== */
.stats-bento-section {
    position: relative;
    background: transparent;
    padding: 6rem 0;
}

.stats-bento-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 3rem;
    text-align: center;
}

.stats-bento-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.stats-bento-card {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.stats-bento-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    align-self: stretch;
    margin: 1rem 0;
}

.stats-bento-num {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 200;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stats-bento-plus {
    color: var(--accent);
    font-weight: 200;
}

.stats-bento-word {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.stats-bento-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.4;
}

/* ======================== SHARED ======================== */
.section-label {
    display: inline-block;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-label-dark {
    display: block;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.8rem;
    text-align: center;
}

.section-heading {
    font-size: var(--type-h1);
    font-weight: 300;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-heading.dark {
    color: var(--text-dark);
}

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

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.section-desc.dark {
    color: var(--text-mid);
}

.section-desc.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--pure-white);
    background: var(--accent);
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ======================== HERO STATIC COPY ======================== */
.hero-static-text {
    padding: 8.4rem 0 4rem;
    position: relative;
    z-index: 3;
}

.hero-static-text .container {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.hero-static-copy {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.5px;
}

/* ======================== ETHOS (replaces Foundation + Vision) ======================== */
.ethos-section {
    background: transparent;
    padding: 12rem 0 8rem;
    position: relative;
    overflow: clip;
    z-index: 3;
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 6rem;
}

.ethos-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.5s ease;
}

.ethos-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.ethos-item:last-child {
    border-right: none;
}

.ethos-num {
    display: block;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.ethos-item h3 {
    font-size: 1.3rem !important;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.ethos-statement {
    text-align: center;
    background: transparent;
    width: 100%;
    padding: 5rem 2rem;
}

.ethos-statement h2 {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

/* ======================== PROCESS — ORBITAL TIMELINE ======================== */
.process-section {
    background: transparent;
    padding: 5rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.process-section-label {
    display: block;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 0;
}

/* Orbital scene wrapper */
.orbital-scene {
    position: relative;
    width: 560px;
    height: 560px;
    flex-shrink: 0;
    cursor: default;
    overflow: visible;
    margin-top: 2rem;
}

/* ---- Central orb ---- */
.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #3b82f6, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: orb-pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.orb-ping {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: orb-ping-anim 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.orb-ping-1 { width: 80px; height: 80px; opacity: 0.7; }
.orb-ping-2 { width: 96px; height: 96px; animation-delay: 0.5s; opacity: 0.4; }

.orb-core {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
}

/* Orbit ring */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

/* ---- Nodes ---- */
#orbitalNodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

/* Energy aura glow behind node */
.orb-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.orb-icon {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-node.expanded .orb-icon {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
}

.orb-node.related .orb-icon {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    border-color: rgba(59, 130, 246, 0.4);
    animation: orb-pulse-glow 1.2s ease infinite;
}

/* Node label */
.orb-label {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-family: var(--font);
    transition: color 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.orb-node.expanded .orb-label {
    color: var(--accent);
    transform: translateX(-50%) scale(1.15);
}

/* ---- Info card ---- */
.orb-card {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    background: rgba(6, 6, 6, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    z-index: 300;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
    display: none;
    pointer-events: all;
}

.orb-node.expanded .orb-card {
    display: block;
    animation: orb-card-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Card flipped to the left when node is on right side */
.orb-node.card-right .orb-card {
    left: auto;
    right: 0;
    transform: none;
}

.orb-node.card-right.expanded .orb-card {
    animation: orb-card-in-right 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes orb-card-in-right {
    from { opacity: 0; transform: translateY(8px) scale(0.96); }
    to   { opacity: 1; transform: none; }
}

@keyframes orb-card-in {
    from { opacity: 0; transform: translateX(-50%) translateY(8px) scale(0.96); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.orb-card-pip {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
}

.orb-card-inner {
    padding: 14px 14px 12px;
}

.orb-card-title {
    font-size: 0.92rem;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font);
    letter-spacing: -0.3px;
    margin-bottom: 7px;
}

.orb-card-text {
    font-size: 0.74rem;
    color: #ffffff;
    line-height: 1.65;
    font-family: var(--font);
}

/* Keyframes */
@keyframes orb-pulse-glow {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}

@keyframes orb-ping-anim {
    75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* ======================== SERVICES ======================== */
.services-section {
    background: transparent;
    padding: 8rem 0;
    position: relative;
    overflow: visible;
}

.services-top {
    margin-bottom: 4rem;
    max-width: 720px;
}

.services-heading {
    font-size: 2.24rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0;
}

.services-h2 {
    font-size: 2.24rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-top: 1rem;
}

.services-body {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: .75rem;
    font-weight: 400;
}

/* Service icon cards grid */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.svc-card {
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 65%;
    height: 65%;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Card gradient smoke variants */
.svc-card--blue::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(100, 200, 255, 0.25) 40%, transparent 70%);
}
.svc-card--orange::after {
    background: radial-gradient(circle, rgba(255, 180, 100, 0.5) 0%, rgba(255, 140, 160, 0.25) 40%, transparent 70%);
}
.svc-card--purple::after {
    background: radial-gradient(circle, rgba(180, 130, 255, 0.45) 0%, rgba(255, 140, 200, 0.25) 40%, transparent 70%);
}
.svc-card--green::after {
    background: radial-gradient(circle, rgba(100, 220, 180, 0.45) 0%, rgba(80, 180, 255, 0.25) 40%, transparent 70%);
}

.svc-card--blue .svc-tag { background: rgba(59, 130, 246, 0.1); color: #3b6fd4; }
.svc-card--orange .svc-tag { background: rgba(232, 120, 40, 0.1); color: #b86820; }
.svc-card--purple .svc-tag { background: rgba(140, 90, 220, 0.1); color: #6b3fa0; }
.svc-card--green .svc-tag { background: rgba(40, 180, 100, 0.1); color: #1a8a50; }

.svc-card--full {
    grid-column: 1 / -1;
}

.svc-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
}

.svc-card-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 1.25rem;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.svc-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.svc-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: auto;
    padding-top: 0.5rem;
    transition: color 0.3s ease;
}

.svc-card-link span {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card-link span {
    transform: translateX(4px);
}

/* ======================== CLIENT SHOWCASE — FAN CARDS + TILES ======================== */
.showcase-section {
    background: transparent;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: visible;
    position: relative;
}

.showcase-heading h2 {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 3rem;
}

/* Fan cards */
.showcase-fan {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    height: 340px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.showcase-card {
    position: absolute;
    width: 200px;
    height: 260px;
    border-radius: 8px;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-origin: bottom center;
    transform: rotate(calc((var(--i) - 2.5) * 1deg)) translateX(calc((var(--i) - 2.5) * 130px));
    z-index: calc(6 - var(--i));
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(145deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.showcase-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    text-align: center;
    padding: 1rem;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.showcase-card-label {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    padding: 0.3rem 0.85rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.showcase-card-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1a1a1a;
}

.showcase-card:hover {
    transform: rotate(calc((var(--i) - 2.5) * 1deg)) translateX(calc((var(--i) - 2.5) * 130px)) translateY(-14px);
}

.showcase-card:hover .showcase-card-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Tiles section */
.tiles-section {
    background: transparent;
    padding: 4rem 0 6rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.showcase-tile {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.showcase-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
}

.showcase-tile-icon {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: background 0.3s ease, transform 0.3s ease;
}

.showcase-tile:hover .showcase-tile-icon {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.08);
}

.showcase-tile h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.showcase-tile p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}

/* ======================== AUDIENCE (WHITE — quiet) ======================== */
.audience-section {
    background: transparent;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.audience-quiet h2,
.audience-heading h2 {
    font-size: 2.24rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-align: center;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.audience-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--card-bg) center / cover no-repeat;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card:hover {
    transform: translateY(-6px);
}

.audience-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 30%, transparent 100%);
    mask-image: linear-gradient(to top, black 0%, black 30%, transparent 100%);
    border-radius: 0 0 20px 20px;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: 1;
    background: linear-gradient(to top, var(--card-grad) 0%, var(--card-grad-mid) 45%, transparent 100%);
    border-radius: 0 0 20px 20px;
}

.audience-card:nth-child(1) { --card-grad: rgba(15, 40, 120, 0.85); --card-grad-mid: rgba(15, 40, 120, 0.3); }
.audience-card:nth-child(2) { --card-grad: rgba(10, 80, 60, 0.85); --card-grad-mid: rgba(10, 80, 60, 0.3); }
.audience-card:nth-child(3) { --card-grad: rgba(75, 20, 130, 0.85); --card-grad-mid: rgba(75, 20, 130, 0.3); }
.audience-card:nth-child(4) { --card-grad: rgba(120, 50, 15, 0.85); --card-grad-mid: rgba(120, 50, 15, 0.3); }

.audience-card-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
    color: #fff;
}

.audience-card-inner h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 0.4rem;
}

.audience-card-inner p {
    font-size: 0.82rem;
    font-weight: 350;
    line-height: 1.6;
    opacity: 0.85;
}

.audience-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.audience-tags span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--pure-white);
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    letter-spacing: 0.5px;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-tags span:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ======================== WHY (BLACK — minimal list) ======================== */
.why-section {
    background: transparent;
    padding: 8rem 0;
    position: relative;
    overflow: visible;
}

.why-minimal {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.why-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.why-heading {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-top: 1rem;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-point {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    cursor: pointer;
}

.why-point:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.why-point-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
}

.why-point-name {
    font-size: var(--type-h3);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-point:hover .why-point-name,
.why-point.active .why-point-name {
    color: var(--accent);
    transform: translateX(1.5rem);
}

.why-point-arrow {
    width: 22px;
    height: 22px;
    color: var(--gray-dark);
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.why-point:hover .why-point-arrow,
.why-point.active .why-point-arrow {
    transform: translate(4px, -4px);
    color: var(--accent);
}

.why-point-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 0 0 1.5rem;
    font-size: var(--type-body-sm);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-point.active .why-point-desc {
    max-height: 200px;
    opacity: 1;
    padding: 0 0 1.4rem 1.5rem;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials-section {
    background: transparent;
    padding: 8rem 0;
    position: relative;
    overflow: visible;
}

.testimonials-heading {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    position: relative;
    border-radius: 0 !important;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-img {
    position: absolute;
    inset: 0;
    border-radius: 0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.04);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1.75rem;
    gap: 0.75rem;
    z-index: 2;
}

.testimonial-text h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.testimonial-company {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-top: 0.1rem;
}

.testimonial-play {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-play:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

/* ======================== FAQ SECTION ======================== */
.faq-section {
    background: transparent;
    padding: 6rem 0;
    position: relative;
    overflow: visible;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.faq-heading {
    font-size: var(--type-h2);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-top: 1rem;
}

.faq-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: var(--font);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

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

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

.faq-a p {
    font-size: var(--type-body-sm);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

/* ======================== INTERACTIVE 3D ROBOT ======================== */
/* (Robot is now inside hero section) */

/* ======================== GLOBAL REACH (BLACK) ======================== */
.global-section {
    background: transparent;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.global-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.global-heading {
    font-size: 2.24rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.global-desc {
    font-size: var(--type-body-sm);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 2rem;
}

.global-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.global-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.global-btn span {
    display: inline-block;
    font-size: 1.1rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-btn:hover span {
    transform: translateX(5px);
}

.global-globe-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#globeCanvas {
    cursor: grab;
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

#globeCanvas:active {
    cursor: grabbing;
}

.globe-hint {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--gray);
    white-space: nowrap;
    opacity: 0.6;
}

.global-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    max-width: 700px;
    margin-left: auto;
}

.global-stat-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.global-stat-label {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.3px;
    margin-bottom: 0.4rem;
}

.global-stat-desc {
    font-size: var(--type-body-sm);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ======================== TESTIMONIALS (BLACK) ======================== */
.testimonials-section {
    background: #ffffff;
    padding: 8rem 0;
}

.testimonials-heading-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-label {
    display: block;
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-card blockquote {
    font-size: var(--type-body-sm);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: normal;
}

.testimonial-card .tc-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
}

.testimonial-card .tc-company {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    display: block;
}

.testimonial-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.metric-val {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--accent);
    letter-spacing: -1px;
}

.metric-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

/* ======================== WORK (WHITE — project cards) ======================== */
.work-section {
    background: var(--bg-light);
    padding: 8rem 0;
}

.work-header {
    margin-bottom: 3rem;
}

.work-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

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

.work-card {
    position: relative;
    border-radius: 20px;
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.15);
}

.work-card-inner {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    position: relative;
}

.work-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: background 0.4s ease, color 0.4s ease;
}

.work-card:hover .work-card-icon {
    background: var(--accent);
    color: var(--pure-white);
}

.work-card-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    transition: color 0.4s ease;
}

.work-card:hover .work-card-name {
    color: var(--accent);
}

.work-card-desc {
    font-size: var(--type-body-sm);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.work-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-card-pill {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-mid);
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, color 0.3s ease;
}

.work-card:hover .work-card-pill {
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent);
}

.work-card-arrow {
    position: absolute;
    top: 2rem;
    right: 1.8rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.work-card:hover .work-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--accent);
    color: var(--pure-white);
}

/* ======================== CTA (WHITE — quiet) ======================== */
.cta-section {
    background: transparent;
    padding: 6rem 0;
    text-align: center;
}

.cta-quiet h2 {
    font-size: var(--type-h1);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pure-white);
    letter-spacing: 0.3px;
    padding: 0.8rem 2.4rem;
    background: var(--text-dark);
    border: none;
    border-radius: 100px;
    transition: background 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-whatsapp {
    background: var(--pure-black);
    color: var(--pure-white);
}

.cta-whatsapp:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-whatsapp svg {
    flex-shrink: 0;
    stroke: var(--pure-white);
}

.cta-btn:hover {
    background: var(--pure-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Newsletter */
.newsletter {
    margin-top: 0;
    padding-top: 0;
    text-align: center;
}

.newsletter-label {
    font-size: var(--type-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.newsletter-heading {
    font-size: var(--type-h2);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font);
    color: var(--pure-white);
    background: var(--text-dark);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.newsletter-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* ======================== END SECTION (CTA + FOOTER) ======================== */
.end-section {
    background: transparent;
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

.end-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: start;
}

.end-heading {
    font-size: 2.24rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 2.5rem;
}

.end-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0;
    background: var(--text-dark);
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    cursor: pointer;
    font-family: inherit;
}

.end-talk-btn svg {
    stroke: #fff;
}

.end-talk-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.25);
}

.end-business {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.end-business-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 300;
}

.end-business-email {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.end-business-email:hover {
    opacity: 0.8;
}

.end-right {
    display: flex;
    gap: 5rem;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.end-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.end-col-label {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
    display: block;
}

.end-col a {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.end-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.end-arrow {
    display: none;
}

.end-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 2rem;
}

.end-bottom span,
.end-legal span {
    font-size: 0.75rem;
    color: var(--text-mid);
    font-weight: 300;
}

.end-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.end-brand {
        font-family: var(--font);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    text-align: center;
    line-height: 0.8;
    letter-spacing: -6px;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    overflow: visible;
    padding-bottom: calc(1rem + 40px);
    position: relative;
}

/* ======================== RESPONSIVE ======================== */
/* ======================== IPAD / TABLET (max 1024px) ======================== */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 3.5rem 3.5rem 3rem;
    }

    .hero-heading {
        font-size: 2.24rem;
        font-weight: 300;
        line-height: 1.1;
    }

    .hero-gradient-blob {
        height: 250px;
    }

    .process-section {
        overflow: hidden;
    }

    .hero-logos {
        gap: 1.5rem;
    }

    .navbar-pill {
        width: 100%;
        border-radius: 0;
        padding: 0 1.5rem;
    }

    .logo {
        margin: 0;
    }

    .nav-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 0.5rem 1.1rem;
        font-size: 0.8rem;
    }

    /* Ethos */
    .ethos-section {
        padding: 5rem 0;
    }

    .ethos-grid {
        margin-bottom: 4rem;
    }

    .ethos-statement h2 {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }

    /* Process — Orbital */
    .process-section {
        padding: 4rem 0 2rem;
    }

    .orbital-scene {
        width: min(440px, 94vw);
        height: min(440px, 94vw);
    }

    .orbital-ring {
        width: 300px;
        height: 300px;
    }

    /* Services */
    .services-section {
        padding: 5rem 0;
    }

    .svc-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Audience */
    .audience-section {
        padding: 5rem 0;
    }

    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats Bento */
    .stats-bento-grid {
        flex-wrap: wrap;
    }

    .stats-bento-card {
        flex: 1 1 40%;
    }

    .stats-bento-divider:nth-of-type(4) {
        width: 100%;
        height: 1px;
        margin: 0 1.5rem;
    }

    /* Why */
    .why-section {
        padding: 5rem 0;
    }

    .why-minimal {
        gap: 2rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-track {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .testimonial-card {
        flex: 0 0 72vw;
        max-width: 280px;
    }

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

    .faq-wrapper {
        gap: 2rem;
    }

    /* Global */
    .global-section {
        padding: 5rem 0;
    }

    .global-inner {
        gap: 2rem;
    }

    #globeCanvas {
        width: 320px !important;
        height: 320px !important;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Work */
    .work-section {
        padding: 5rem 0;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-section {
        padding: 4rem 0;
    }

    /* End section */
    .end-heading {
        font-size: clamp(1.6rem, 5vw, 2.24rem);
    }

    .end-brand {
        font-size: clamp(6rem, 16vw, 14rem);
    }
}

/* ======================== MOBILE (max 768px) ======================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .interstitial-statement {
        padding: 6rem 0 5rem;
    }

    .interstitial-line {
        transition-duration: 0.5s;
    }

    /* Performance: reduce heavy animations on mobile */
    body::before,
    body::after {
        animation-duration: 40s;
        filter: blur(120px);
        opacity: 0.7;
    }

    .navbar {
        padding: 0;
    }

    .navbar-pill {
        padding: 0 1rem;
        height: 60px;
    }

    .logo {
        width: 86px;
        height: 24px;
    }

    .hamburger {
        display: flex;
        width: 44px;
        height: 44px;
        background: transparent;
        border-radius: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar.on-light .hamburger {
        background: transparent;
    }

    .nav-desktop,
    .nav-actions {
        display: none;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        background: rgba(255, 255, 255, 0.18);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.3s ease;
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-overlay.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-shell {
        width: 100%;
        min-height: calc(100dvh - 60px);
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-menu-links {
        gap: 0.65rem;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: auto;
        padding: 3.5rem 0 2rem;
    }

    .hero-inner {
        padding: 1.5rem 1.25rem 2rem !important;
        gap: 1.5rem;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100%;
        padding: 0;
    }

    .hero-eyebrow {
        font-size: 0.88rem;
    }

    .hero-heading {
        font-size: 2.24rem;
        font-weight: 300;
        letter-spacing: -1px;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-figure {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .hero-image {
        width: min(80%, 100%);
        height: auto;
        max-height: none;
        transform: translateY(0) !important;
    }

    .hero-sub-heading {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .hero-description {
        text-align: center;
        max-width: 90%;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-cta-group {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta-pill,
    .hero-cta-outline {
        width: 180px;
        justify-content: center;
        padding: 0.65rem 1.4rem;
        font-size: 0.82rem;
    }

    .hero-logos {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .hero-gradient-blob {
        height: 200px;
        opacity: 0.6;
    }

    /* ---- Hero 3D Video ---- */
    .hero-video-perspective {
        margin: 2rem auto 0;
        perspective: 800px;
    }

    .hero-video-inner {
        border-radius: 12px;
    }

    /* ---- Showcase ---- */
    .showcase-fan {
        height: 220px;
        padding: 0 1rem 1.5rem;
    }

    .showcase-card {
        width: 110px;
        height: 150px;
        transform: rotate(calc((var(--i) - 2) * 5deg)) translateX(calc((var(--i) - 2) * 55px));
    }

    .showcase-card:hover {
        transform: rotate(calc((var(--i) - 2) * 5deg)) translateX(calc((var(--i) - 2) * 55px)) translateY(-10px);
    }

    .showcase-card-label {
        top: -30px;
        font-size: 0.62rem;
        padding: 0.2rem 0.6rem;
    }

    .showcase-card-name {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .showcase-heading h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .showcase-tile {
        padding: 1.75rem 1.25rem;
    }

    .showcase-tile h3 {
        font-size: 1.05rem;
    }

    .showcase-tile p {
        font-size: 0.82rem;
    }

    /* ---- Ethos ---- */
    .ethos-section {
        padding: 4rem 0;
    }

    .ethos-grid {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .ethos-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        padding: 1.8rem 1.25rem;
    }

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

    .ethos-item h3 {
        font-size: 1.17rem !important;
        line-height: 1.4;
    }

    .ethos-statement {
        padding: 3rem 1.25rem;
    }

    .ethos-statement h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    /* ---- Stats Bento ---- */
    .stats-bento-section {
        padding: 3rem 0;
    }

    .stats-bento-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .stats-bento-card {
        flex: 1 1 45%;
        padding: 1.5rem 1rem;
    }

    .stats-bento-num {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stats-bento-divider {
        display: none;
    }

    /* ---- Trusted ---- */
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-logo:nth-child(4n) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }

    .trusted-logo:nth-child(2n) {
        border-right: none;
    }

    .trusted-label {
        padding: 1.2rem 1rem;
    }

    .trusted-label span {
        font-size: 0.8rem;
    }

    .trusted-logo {
        padding: 1.2rem 0.8rem;
    }

    .trusted-logo:nth-child(4n) {
        border-right: none;
    }

    .trusted-logo:nth-last-child(-n+1) {
        border-bottom: none;
    }

    .trusted-logo img {
        height: 16px;
        max-width: 80px;
    }

    .trusted-logo--icon img {
        height: 22px;
    }

    /* ---- Process — Orbital (mobile) ---- */
    .process-section {
        padding: 3.5rem 0 1.5rem;
        overflow: hidden;
    }

    .orbital-scene {
        width: min(340px, 94vw);
        height: min(340px, 94vw);
    }

    .orbital-ring {
        width: 220px;
        height: 220px;
    }

    .orbital-center {
        width: 48px;
        height: 48px;
    }

    .orb-core { width: 22px; height: 22px; }
    .orb-ping-1 { width: 60px; height: 60px; }
    .orb-ping-2 { width: 72px; height: 72px; }

    .orb-icon {
        width: 36px;
        height: 36px;
        font-size: 0.62rem;
    }

    .orb-label {
        font-size: 0.6rem;
        top: 43px;
        white-space: normal;
        text-align: center;
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .orb-card {
        width: 190px;
        top: 50px;
    }

    .orb-card-title { font-size: 0.82rem; }
    .orb-card-text  { font-size: 0.7rem; }

    /* ---- Services ---- */
    .services-section {
        padding: 4rem 0;
    }

    .services-top {
        margin-bottom: 2.5rem;
    }

    .services-h2 {
        font-size: clamp(1.6rem, 5vw, 2.24rem);
    }

    .svc-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .svc-cards > a:nth-child(3) {
        grid-column: 1 / -1;
    }

    .svc-card {
        padding: 1.5rem;
    }

    .svc-card-title {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    .svc-card-desc {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .svc-tags {
        gap: 0.35rem;
    }

    .svc-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.65rem;
    }

    .svc-card-link {
        font-size: 0.88rem;
        min-height: 44px;
        align-items: center;
    }

    /* ---- Audience ---- */
    .audience-section {
        padding: 4rem 0;
    }

    .audience-heading h2,
    .audience-quiet h2 {
        font-size: clamp(1.4rem, 4vw, 2.24rem);
        margin-bottom: 2rem;
    }

    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .audience-card-inner {
        padding: 1.25rem;
    }

    .audience-card-inner h3 {
        font-size: 1.1rem;
    }

    .audience-card-inner p {
        font-size: 0.75rem;
    }

    .audience-tags {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .audience-tags span {
        font-size: 0.68rem;
        padding: 0.45rem 0.9rem;
        white-space: nowrap;
    }

    /* ---- Why ---- */
    .why-section {
        padding: 4rem 0;
    }

    .why-minimal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-heading {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }

    /* ---- Testimonials (image track) ---- */
    .testimonials-section:not(.testimonials-section + .testimonials-section) {
        padding: 4rem 0;
    }

    .testimonials-heading {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .testimonial-info {
        padding: 1rem 1.15rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .testimonial-text h4 {
        font-size: 0.95rem;
    }

    .testimonial-role {
        font-size: 0.78rem;
    }

    .testimonial-play {
        width: 38px;
        height: 38px;
    }

    /* ---- Testimonials (card grid) ---- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .testimonial-card blockquote {
        font-size: 0.88rem;
        line-height: 1.75;
    }

    .testimonial-metrics {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ---- FAQ ---- */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-heading {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .faq-q {
        font-size: 0.95rem;
        padding: 1.2rem 0;
        min-height: 44px;
    }

    .faq-a p {
        font-size: 0.85rem;
    }

    /* ---- Global ---- */
    .global-section {
        padding: 4rem 0;
    }

    .global-inner {
        grid-template-columns: 1fr;
    }

    .global-heading {
        font-size: clamp(1.6rem, 5vw, 2.24rem);
    }

    .global-globe-wrap {
        padding-top: 2rem;
        display: flex;
        justify-content: center;
    }

    #globeCanvas {
        width: 280px !important;
        height: 280px !important;
    }

    .global-stat {
        max-width: 100%;
    }

    /* ---- Work ---- */
    .work-section {
        padding: 4rem 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .work-card-inner {
        padding: 1.5rem;
        min-height: 200px;
    }

    .work-card-name {
        font-size: 1.2rem;
    }

    .work-card-desc {
        font-size: 0.82rem;
    }

    .work-card-arrow {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* ---- CTA ---- */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-quiet h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        min-height: 48px;
    }

    /* ---- Newsletter ---- */
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-input {
        width: 100%;
        padding: 0.95rem 1.25rem;
    }

    .newsletter-btn {
        width: 100%;
        padding: 0.95rem 2rem;
        min-height: 48px;
    }

    .newsletter-heading {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    /* ---- End section ---- */
    .end-section {
        padding: 4rem 0 0;
    }

    .end-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-bottom: 2.5rem;
        align-items: start;
    }

    .end-heading {
        font-size: clamp(1.4rem, 5vw, 2.24rem);
        margin-bottom: 1.25rem;
        letter-spacing: -1px;
    }

    .end-talk-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        min-height: 48px;
    }

    .end-right {
        justify-content: flex-start;
        gap: 2rem;
    }

    .end-col a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .end-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    }

    .end-brand {
        font-size: clamp(5rem, 18vw, 10rem);
    }

    /* ---- Buttons — global touch targets ---- */
    .btn-primary,
    .btn-outline-dark {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .section-heading {
        font-size: clamp(1.8rem, 6vw, 3rem);
        word-break: break-word;
    }

    .section-desc {
        font-size: 0.92rem;
    }
}

/* ======================== SMALL MOBILE (max 480px) ======================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Further reduce heavy FX */
    body::before,
    body::after {
        opacity: 0.4;
        animation: none;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-heading {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
        letter-spacing: -0.8px;
    }

    .hero-sub-heading {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.88rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-cta-pill,
    .hero-cta-outline {
        width: 160px;
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }

    .hero-logos {
        gap: 1rem;
    }

    .hero-logo-item span {
        font-size: 0.72rem;
    }

    /* Ethos */
    .ethos-item {
        padding: 1.5rem 1rem;
    }

    /* Stats Bento */
    .stats-bento-card {
        flex: 1 1 100%;
    }

    .stats-bento-num {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    /* Process */
    .process-bg-num {
        font-size: 7rem;
    }

    .process-nav-btn {
        width: 44px;
        height: 44px;
    }

    /* Services */
    .svc-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-cards > a:nth-child(3) {
        grid-column: auto;
    }

    .svc-card {
        padding: 1.5rem 1.25rem;
    }

    .svc-card-title {
        font-size: 1rem;
    }

    /* Audience */
    .audience-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-card {
        aspect-ratio: 16 / 10;
    }

    .audience-heading h2,
    .audience-quiet h2 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .audience-tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    .audience-tags span {
        font-size: 0.68rem;
        padding: 0.45rem 0.8rem;
    }

    /* Showcase */
    .showcase-fan {
        height: 180px;
    }

    .showcase-card {
        width: 90px;
        height: 125px;
        transform: rotate(calc((var(--i) - 2) * 6deg)) translateX(calc((var(--i) - 2) * 44px));
    }

    .showcase-card:hover {
        transform: rotate(calc((var(--i) - 2) * 6deg)) translateX(calc((var(--i) - 2) * 44px)) translateY(-6px);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-track {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-metrics {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Why */
    .why-heading {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .why-point-name {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    /* End section */
    .end-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .end-right {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .end-heading {
        font-size: clamp(1.4rem, 6vw, 2.24rem);
    }

    .end-talk-btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .end-brand {
        font-size: clamp(3.5rem, 16vw, 6rem);
    }

    /* Global */
    .global-heading {
        font-size: clamp(1.2rem, 5vw, 2.24rem);
    }

    #globeCanvas {
        width: 240px !important;
        height: 240px !important;
    }
}

/* ======================== REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
    .hero-tags-track {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ======================== CONTACT MODAL ======================== */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.contact-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.contact-modal-close:hover {
    color: var(--text-dark);
}

.contact-modal-heading {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.35rem;
}

.contact-modal-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.contact-field {
    margin-bottom: 1.15rem;
}

.contact-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}

.contact-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .contact-modal {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px;
    }
    .contact-modal-heading {
        font-size: 1.45rem;
    }
}
