/* ==========================================================================
   AETHER STUDIO - "LIQUID GEOMETRY" DESIGN SYSTEM & STYLES
   ========================================================================== */

/* 1. Reset and Variables */
:root {
    /* Color Tokens */
    --color-obsidian: #050506;       /* Main backdrop black */
    --color-charcoal: #0f1013;       /* Secondary section charcoal */
    --color-void: #000000;
    --color-bone: #f7f4ed;
    --color-text-white: #ffffff;
    --color-text-muted: #8a8f98;
    --color-text-faded: rgba(255, 255, 255, 0.08);

    /* Glowing Accents */
    --color-limeglow: #b3ff00;       /* Primary creative accent */
    --color-cyanglow: #00f0ff;       /* Secondary tech accent */
    --color-ritual-red: #ff2f2f;
    
    /* Font Mapping */
    --font-display: 'Syne', sans-serif;
    --font-text: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-condensed: 'Bebas Neue', sans-serif;

    /* Grid & Animation constants */
    --max-width: 1400px;
    --transition-bezier: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --hero-title-scale: 1;
    --hero-title-shift: 0px;
    --hero-title-opacity: 1;
    --top-chrome-opacity: 1;
    --hero-sigil-opacity: 0.34;
    --hero-cta-opacity: 1;
    --hero-corner-opacity: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--color-void);
    color: var(--color-text-white);
    font-family: var(--font-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

html {
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-obsidian);
}
::-webkit-scrollbar-thumb {
    background: #1c1d22;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-limeglow);
}

/* 2. Utility classes */
.mono-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-limeglow);
    text-transform: uppercase;
}

.text-limeglow { color: var(--color-limeglow); }
.text-cyanglow { color: var(--color-cyanglow); }

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

.font-display,
.font-gothic,
.font-script,
.font-tech,
.section-heading,
.contact-title,
.faq-question,
.metric-title,
.card-title,
.step-title,
.footer-handle,
.gs-line,
.hero-kicker,
.contact-email {
    padding-bottom: 0.08em;
}

.hidden {
    display: none !important;
}

/* Global Section Stacking for Sticky Parallax Fix */
main section:not(.hero-section) {
    position: relative;
    z-index: 2;
}

/* 3. Preloader Styling */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-obsidian);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0; /* Keep it tight and stacked */
    width: 100%;
}

.preloader-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 8.5vw;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--color-text-white);
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.cycler-container {
    height: 15vw; /* Expanded height to prevent vertical clipping of characters */
    overflow: hidden;
    position: relative;
    margin: -2.5vw 0; /* Pull lines together tightly and cohesively without overlapping text bounding boxes */
    width: 100%;
}

.cycler-track {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    animation: cycleText 4s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.cycler-item {
    display: block;
    height: 15vw;
    line-height: 15vw;
    font-size: 10vw;
    color: var(--color-text-white);
    text-align: center;
    white-space: nowrap;
}

/* Individual cycler font styles matching original design with clipping protection */
.cycler-item.font-gothic {
    font-family: 'Pirata One', serif;
    font-weight: 400;
    font-size: 10vw; /* Fits fully within the 15vw container */
    text-transform: none;
    line-height: 15vw;
}

.cycler-item.font-tech {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 8.8vw;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 15vw;
}

.cycler-item.font-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 9.5vw;
    font-weight: 700;
    text-transform: none;
    line-height: 15vw;
}

.preloader-subtitle {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 8.5vw;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--color-text-white);
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes cycleText {
    0%, 20% { transform: translateY(0); }
    33%, 53% { transform: translateY(-15vw); }
    66%, 86% { transform: translateY(-30vw); }
    100% { transform: translateY(0); }
}

/* 4. Header & Fullscreen Navigation */
.header {
    position: fixed;
    top: 2.25rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.45rem 3rem;
    opacity: var(--top-chrome-opacity);
    pointer-events: none;
    transition: var(--transition-bezier);
}

.header-logo-block, .header-menu-block, .header-meta-block {
    pointer-events: auto;
}

.hero-covered .header-logo-block,
.hero-covered .header-menu-block,
.hero-covered .header-meta-block {
    pointer-events: none;
}

.header-menu-block {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.header.scrolled {
    padding: 1rem 3rem;
    background-color: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-text-faded);
}

.header-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: var(--color-text-white);
    perspective: 400px;
    transform-style: preserve-3d;
}

.logo-slogan {
    font-family: var(--font-text);
    font-size: 0.72rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    border-left: 1px solid var(--color-text-faded);
    padding-left: 1.2rem;
    margin-left: 1.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-slogan {
        display: none;
    }
}

.logo-brand {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    display: inline-block;
    will-change: transform;
    transform-style: preserve-3d;
}

.menu-toggle-btn {
    background: var(--color-text-white);
    color: var(--color-obsidian);
    border: 1px solid var(--color-text-white);
    padding: 0.6rem 2.2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-toggle-btn:hover {
    background: transparent;
    color: var(--color-limeglow);
    border-color: var(--color-limeglow);
    box-shadow: 0 0 15px rgba(179, 255, 0, 0.3);
}


.header-meta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--color-text-white);
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
}

.meta-item {
    line-height: 0.95;
}

.meta-item:last-child {
    color: var(--color-text-muted);
}

/* Fullscreen Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 6, 0.99);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.overlay-close-btn {
    position: absolute;
    top: 2.2rem;
    right: 3rem;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-white);
    transition: var(--transition-fast);
}

.overlay-close-btn:hover {
    color: var(--color-cyanglow);
}

.overlay-nav ul {
    list-style: none;
    text-align: center;
}

.overlay-nav ul li {
    margin: 2rem 0;
    overflow: hidden;
}

.menu-link {
    display: block;
    text-decoration: none;
    color: var(--color-text-white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.8rem;
    letter-spacing: -0.03em;
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlay-menu.open .menu-link {
    transform: translateY(0);
}

.overlay-nav ul li:nth-child(2) .menu-link { transition-delay: 0.08s; }
.overlay-nav ul li:nth-child(3) .menu-link { transition-delay: 0.16s; }
.overlay-nav ul li:nth-child(4) .menu-link { transition-delay: 0.24s; }

.menu-link:hover {
    font-style: italic;
    color: var(--color-limeglow);
}

.overlay-menu-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.6rem;
    border: 1px solid var(--color-limeglow);
    color: var(--color-limeglow);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* 5. Hero Section & Liquid Particles Canvas */
.hero-section {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-void);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-canvas {
    display: none !important; /* Disables the particles background for a solid dark theme */
}

.hero-marquee-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1200;
    background: var(--color-bone);
    height: 2.15rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
    pointer-events: none;
}

.hero-active .hero-marquee-ribbon {
    opacity: var(--top-chrome-opacity);
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    height: 2.15rem;
    padding: 0;
    color: var(--color-obsidian);
    font-size: clamp(0.78rem, 0.9vw, 0.98rem);
    white-space: nowrap;
    animation: heroRibbon 26s linear infinite;
}

.hero-marquee-set {
    display: flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: clamp(1.6rem, 2.7vw, 3rem);
    padding-right: clamp(1.6rem, 2.7vw, 3rem);
}

.hero-marquee-track .marquee-word {
    display: inline-flex;
    align-items: baseline;
    line-height: 1.2;
    color: var(--color-obsidian);
    padding: 0.34rem 0 0.42rem;
    transform: none;
}

.hero-marquee-track .marquee-positioning {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.96em;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-marquee-track .marquee-branding {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05em;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.hero-marquee-track .marquee-performance {
    font-family: 'Playfair Display', serif;
    font-size: 1.08em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-marquee-track .marquee-audiovisual {
    font-family: 'Playfair Display', serif;
    font-size: 1.08em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-marquee-track .marquee-copywriting {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92em;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-marquee-track .marquee-creative {
    font-family: 'Grenze Gotisch', serif;
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-marquee-track .marquee-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.02em;
    font-weight: 800;
    letter-spacing: -0.04em;
}

@keyframes heroRibbon {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

.hero-sigil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(18rem, 38vw, 36rem);
    aspect-ratio: 1;
    transform: translate(-50%, -50%) rotate(var(--sigil-rotation, 0deg));
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 24px rgba(179, 255, 0, 0.08));
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-active .hero-sigil {
    opacity: var(--hero-sigil-opacity);
    transform: translate(-50%, -50%) rotate(var(--sigil-rotation, 0deg)) scale(1);
}

.sigil-ring,
.sigil-cut,
.sigil-core {
    position: absolute;
    inset: 0;
    display: block;
}

.sigil-ring {
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
}

.sigil-ring-outer {
    border-width: 12px;
    border-color: rgba(255, 255, 255, 0.12);
}

.sigil-ring-inner {
    inset: 18%;
    border-color: rgba(179, 255, 0, 0.26);
}

.sigil-cut-a,
.sigil-cut-b {
    inset: 46% 3%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform-origin: center;
}

.sigil-cut-a {
    transform: rotate(28deg);
}

.sigil-cut-b {
    transform: rotate(-34deg);
}

.sigil-core {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: clamp(1.8rem, 4vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.08em;
}

/* Giant background typography */
.hero-giant-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(calc(-50% + var(--hero-title-shift))) scale(var(--hero-title-scale)) rotateX(var(--hero-title-rx, 0deg)) rotateY(var(--hero-title-ry, 0deg));
    transform-style: preserve-3d;
    font-family: 'Syne', sans-serif;
    font-size: clamp(6.6rem, 10.4vw, 11rem);
    font-weight: 800;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.92); /* Highly highlighted/stand out focal title text */
    z-index: 2;
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center; /* Dynamically center the content horizontally */
    align-items: center; /* Center vertically inside the container */
    gap: 0;
    will-change: transform;
    letter-spacing: -0.045em; /* Tight aggressive letter-spacing */
    opacity: var(--hero-title-opacity);
}

.hero-giant-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.32, 0.72, 0, 1), transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
}

/* Triggered stagger animation on load */
.hero-active .hero-giant-title span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays for 6 letters: A E T H E R */
.hero-giant-title span:nth-child(1) { transition-delay: 0.1s; }
.hero-giant-title span:nth-child(2) { transition-delay: 0.18s; }
.hero-giant-title span:nth-child(3) { transition-delay: 0.26s; }
.hero-giant-title span:nth-child(4) { transition-delay: 0.34s; }
.hero-giant-title span:nth-child(5) { transition-delay: 0.42s; }
.hero-giant-title span:nth-child(6) { transition-delay: 0.5s; }

/* Continuous active text glitch animation */
.hero-active .hero-giant-title {
    animation: giantTextGlitch 8s ease-in-out infinite alternate;
}

@keyframes giantTextGlitch {
    0%, 95%, 100% {
        text-shadow: none;
        color: rgba(255, 255, 255, 0.92);
    }
    96% {
        text-shadow: 3px 0 var(--color-limeglow), -3px 0 var(--color-cyanglow);
        color: rgba(255, 255, 255, 0.96);
    }
    97% {
        text-shadow: -4px 0 var(--color-limeglow), 4px 0 var(--color-cyanglow);
        color: rgba(255, 255, 255, 0.98);
    }
    98% {
        text-shadow: none;
        color: rgba(255, 255, 255, 0.92);
    }
}

.hero-verb-stack {
    position: absolute;
    top: calc(50% + clamp(3.6rem, 6vw, 6rem));
    left: 50%;
    width: min(90vw, 1050px);
    height: clamp(3.8rem, 8.5vw, 8.8rem);
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.7s;
}

.hero-active .hero-verb-stack {
    opacity: 1;
}

.hero-verb-track {
    display: flex;
    flex-direction: column;
    animation: heroVerbCycle 5.4s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.verb-item {
    height: clamp(3.8rem, 8.5vw, 8.8rem);
    line-height: clamp(3.8rem, 8.5vw, 8.8rem);
    color: var(--color-bone);
    white-space: nowrap;
}

.verb-item.font-gothic {
    font-family: 'Grenze Gotisch', serif;
    font-size: clamp(4.2rem, 9.6vw, 9.8rem);
    font-weight: 800;
}

.verb-item.font-tech {
    font-family: var(--font-mono);
    font-size: clamp(2.8rem, 7.5vw, 7.8rem);
    font-weight: 700;
    letter-spacing: -0.08em;
}

.verb-item.font-script {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 8.8vw, 9.2rem);
    font-style: italic;
    font-weight: 700;
}

@keyframes heroVerbCycle {
    0%, 24% { transform: translateY(0); }
    35%, 58% { transform: translateY(-33.333%); }
    69%, 92% { transform: translateY(-66.666%); }
    100% { transform: translateY(0); }
}

.hero-cta-panel {
    position: absolute;
    left: 4rem;
    bottom: 5.8rem;
    z-index: 5;
    width: min(42vw, 620px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 1.15rem 2rem;
    padding: 0;
    color: var(--color-text-white);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.9s;
}

.hero-active .hero-cta-panel {
    opacity: var(--hero-cta-opacity);
    transform: translateY(0);
}

.hero-kicker {
    max-width: 42rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-cta-row {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.hero-primary-cta {
    background: var(--color-limeglow);
    border-color: var(--color-limeglow);
    color: var(--color-obsidian);
    box-shadow: 0 0 34px rgba(179, 255, 0, 0.14);
}

.hero-secondary-cta {
    color: var(--color-text-white);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.35rem;
    transition: var(--transition-fast);
}

.hero-secondary-cta:hover,
.hero-secondary-cta:focus-visible {
    color: var(--color-limeglow);
    border-bottom-color: var(--color-limeglow);
    outline: none;
}

/* Bottom corner metadata style */
.hero-corner-left, .hero-corner-right {
    position: absolute;
    bottom: 3.5rem;
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
}

.hero-active .hero-corner-left, .hero-active .hero-corner-right {
    opacity: var(--hero-corner-opacity);
}

.hero-corner-left {
    left: 4rem;
    color: var(--color-text-white);
}

.hero-corner-left span:last-child {
    color: var(--color-text-muted);
}

.hero-corner-right {
    right: 4rem;
    align-items: flex-end;
    color: var(--color-text-white);
}

.hero-corner-right span:last-child {
    color: var(--color-text-muted);
}

/* Bottom Center minimal React text cycle */
.hero-bottom-center {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.95;
}

.hero-active .hero-bottom-center {
    opacity: var(--hero-corner-opacity);
}

.hero-bottom-center .motion-cycle-root {
    display: inline-flex;
    min-height: auto;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    overflow: visible;
}

.hero-bottom-center .motion-cycle-word,
.hero-bottom-center .motion-cycle-fallback {
    font-family: var(--font-condensed);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 0.95;
    color: var(--color-limeglow);
    text-shadow: 0 0 8px rgba(179, 255, 0, 0.4);
    letter-spacing: 0.03em;
    padding-bottom: 0;
}

.hero-bottom-center .motion-cycle-frame::after {
    display: none !important;
}

/* Slanted Button */
.btn-slanted {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-text-white);
    color: var(--color-obsidian);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: skewX(-12deg);
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid var(--color-text-white);
    cursor: pointer;
}

.btn-slanted .btn-text {
    display: block;
    transform: skewX(12deg); /* Counter skew to straighten text */
}

.btn-slanted:hover {
    background-color: transparent;
    color: var(--color-limeglow);
    border-color: var(--color-limeglow);
    box-shadow: 0 0 20px rgba(179, 255, 0, 0.3);
}

/* Infinite Marquee */
.marquee-container {
    width: 100vw;
    overflow: hidden;
    border-top: 1px solid var(--color-text-faded);
    border-bottom: 1px solid var(--color-text-faded);
    padding: 1.8rem 0;
    background-color: rgba(5, 5, 6, 0.4);
    backdrop-filter: blur(8px);
}

.marquee-inner {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-right: 5rem;
}

.accent-slant {
    color: var(--color-limeglow);
    font-weight: 400;
}

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

/* Hero info grid */
.hero-info-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.2rem 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--color-text-faded);
}

.info-block .mono-label {
    display: block;
    margin-bottom: 0.5rem;
}

.info-desc {
    font-family: var(--font-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-white);
}



/* Responsive fixes for new Hero elements */
@media (max-width: 768px) {
    .hero-giant-title {
        font-size: clamp(3.2rem, 16vw, 4.8rem);
    }
    .hero-corner-left {
        left: 2rem;
        bottom: 2rem;
    }
    .hero-corner-right {
        right: 2rem;
        bottom: 2rem;
    }
    .header {
        padding: 1.5rem 2.2rem;
    }
    .header-container {
        grid-template-columns: 1fr auto;
    }
    .header-meta-block {
        display: none;
    }
}

/* 6. Section 2: Sobre / Giant Statement */
.giant-statement-section {
    position: relative;
    padding: 5rem 3rem 12rem; /* Reduced top padding from 15rem */
    background-color: var(--color-obsidian);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to top-align */
    text-align: center;
    min-height: 75vh; /* Tightened from 100vh */
    z-index: 1300;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
}

.giant-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.95;
}

.gs-line {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5.5vw, 6rem);
    letter-spacing: -0.04em;
    color: var(--color-text-white);
    text-transform: uppercase;
}

.gs-line.font-gothic {
    font-family: 'Grenze Gotisch', serif;
    font-weight: 400;
    font-size: clamp(3rem, 7.5vw, 8rem);
    text-transform: none;
    line-height: 0.85;
    color: var(--color-text-white);
    margin: 1.2rem 0;
}

.giant-statement .gs-line {
    color: rgba(255, 255, 255, 0.15);
    transition: color 0s;
    will-change: color;
}

.giant-statement .gs-line.is-active {
    color: #ffffff;
}

.motion-cycle-root {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(3rem, 7.2vw, 8.2rem);
    margin: 0.15rem 0 0.35rem;
    overflow: visible;
}

.motion-cycle-measure {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.motion-cycle-frame {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    vertical-align: baseline;
}

.motion-cycle-frame::after {
    content: "";
    position: absolute;
    left: 0.08em;
    right: 0.08em;
    bottom: -0.05em;
    height: 0.08em;
    background: var(--color-limeglow);
    transform: skewX(-14deg);
    transform-origin: center;
}

.motion-cycle-word,
.motion-cycle-fallback {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 8rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: var(--color-text-white);
    white-space: nowrap;
    padding-bottom: 0.08em;
}

.motion-signal-root {
    margin: -2.5rem 0 4.5rem;
}

.motion-signal-board,
.motion-signal-fallback {
    display: grid;
    grid-template-columns: minmax(11rem, 0.36fr) 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.15rem 0;
    border-top: 1px solid var(--color-text-faded);
    border-bottom: 1px solid var(--color-text-faded);
}

.motion-signal-fallback {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.motion-signal-fallback span {
    border: 1px solid var(--color-text-faded);
    padding: 0.75rem 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.motion-signal-label {
    font-family: var(--font-mono);
    color: var(--color-limeglow);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.motion-signal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.motion-signal-chip {
    min-width: min(11rem, 100%);
    border: 1px solid var(--color-text-faded);
    background: rgba(255, 255, 255, 0.025);
    padding: 0.8rem 0.9rem 0.75rem;
}

.motion-signal-chip strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 1.05vw, 1.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.motion-signal-chip span {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* Scroll Reveal Utility Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .giant-statement-section {
        padding: 10rem 2rem;
    }

    .motion-cycle-root {
        min-height: clamp(3rem, 15vw, 5.6rem);
    }

    .motion-cycle-word,
    .motion-cycle-fallback {
        font-size: clamp(2.3rem, 13vw, 5rem);
        letter-spacing: -0.05em;
    }

    .motion-signal-root {
        margin: -2.5rem 0 3rem;
    }

    .motion-signal-board {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .motion-signal-chips {
        justify-content: flex-start;
    }

    .motion-signal-chip {
        min-width: calc(50% - 0.4rem);
    }
}

/* 7. Section 3: Serviços (Capabilities) */
.services-section {
    position: relative;
    background-color: var(--color-obsidian); /* Solid black — no shader, no borders */
    display: block;
}

/* Services heading: Bebas Neue for maximum impact/pressure */
.services-left-col .section-heading {
    font-family: 'Bebas Neue', var(--font-condensed), sans-serif;
    font-weight: 400; /* Bebas Neue is inherently bold at 400 */
    font-size: clamp(3.2rem, 6vw, 6rem);
    letter-spacing: 0.01em;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--color-text-white);
    margin-top: 1.8rem;
    margin-bottom: 2.5rem;
}

/* Right column heading hidden */
.services-right-col .section-heading {
    display: none;
}

.services-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
    position: relative;
}

@media (min-width: 992px) {
    .services-section {
        padding: 7rem 8rem;
    }

    .services-left-col {
        position: -webkit-sticky;
        position: sticky;
        top: 7rem;
        align-self: start;
    }

    .services-left-col .services-intro-copy {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 52ch;
    }

    .services-right-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.5rem;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 5rem 2rem;
    }

    .services-split-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .services-left-col {
        position: static;
    }

    .services-left-col .section-heading {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .services-left-col .services-intro-copy {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}


.services-large-para {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: clamp(1.0rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    letter-spacing: 0em;
    color: var(--color-text-white);
    opacity: 0.72;
}

.disciplines-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-left: 0;
    margin-top: 2.5rem;
}

.discipline-item {
    display: block;
    padding: 0.65rem 0;
    cursor: default;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.discipline-name {
    font-family: 'Bebas Neue', var(--font-condensed), sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    transition: color 0.2s ease;
    display: block;
    line-height: 1.1;
}

/* Hover: lime glow */
.discipline-item:hover .discipline-name {
    color: var(--color-limeglow);
}

/* 8. Section 4: Processo (Timeline) */
/* ============================================================
   8. Section 3.5: Portfólio — Marquee Gallery (Light Mode)
   ============================================================ */

.work-section {
    background-color: #F4F3EE; /* warm off-white — maximum contrast with black sections */
    padding: 7rem 0 5rem;
    overflow: hidden;
    position: relative;
}

/* Intro block */
.work-intro {
    padding: 0 8rem 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.work-label {
    color: #0A0A0A !important; /* Override mono-label color for light bg */
    opacity: 0.45;
}

.work-intro-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
}

.work-title {
    font-family: 'Bebas Neue', var(--font-condensed), sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #0A0A0A;
    line-height: 0.95;
    flex-shrink: 0;
}

.work-subtitle {
    font-family: var(--font-text);
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #0A0A0A;
    opacity: 0.55;
    max-width: 36ch;
    padding-bottom: 0.4rem;
    text-align: right;
}

/* Marquee rows */
.work-marquee-row {
    overflow: hidden;
    width: 100%;
    margin-bottom: 1.4rem;
}

.work-marquee-track {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
    width: max-content;
    will-change: transform;
}

/* Cards */
.work-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

/* Card sizes */
.work-card--wide    { width: 440px; }
.work-card--square  { width: 270px; }
.work-card--portrait { width: 196px; }

/* Card image placeholder */
.work-card-img {
    flex: 1;
    height: 290px;
    background: linear-gradient(140deg, #141414 0%, #1e1e1e 100%);
    position: relative;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Varied placeholder tints per card type */
.work-card[data-type="identidade"] .work-card-img {
    background: linear-gradient(140deg, #0d140d 0%, #192619 100%);
}
.work-card[data-type="vídeo"] .work-card-img {
    background: linear-gradient(140deg, #0d0f14 0%, #191e26 100%);
}
.work-card[data-type="performance"] .work-card-img {
    background: linear-gradient(140deg, #14120d 0%, #261f15 100%);
}
.work-card[data-type="campanha"] .work-card-img {
    background: linear-gradient(140deg, #100d14 0%, #1e1a26 100%);
}

/* Type badge overlay */
.work-card-img::before {
    content: attr(data-type);
    /* Inherit from parent */
}
.work-card::after {
    content: attr(data-type);
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    pointer-events: none;
}

/* Card meta (title + year) */
.work-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0.85rem;
    background: #EEEDE8;
    flex-shrink: 0;
}

.work-card-meta span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0A0A0A;
    opacity: 0.6;
}

.work-card-meta span:last-child {
    opacity: 0.35;
}

/* Hover lift on card image */
.work-card:hover .work-card-img {
    transform: scale(1.03);
}

/* Hover: show lime accent border on card */
.work-card:hover {
    box-shadow: 0 0 0 1.5px #D4FF00;
}

/* Footer CTA */
.work-footer {
    display: flex;
    justify-content: center;
    padding: 3.5rem 8rem 0;
}

.work-cta-btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0A0A0A;
    border: 1px solid rgba(0,0,0,0.25);
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.work-cta-btn span {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-cta-btn:hover {
    background: #0A0A0A;
    color: #D4FF00;
    border-color: #0A0A0A;
}

.work-cta-btn:hover span {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .work-intro {
        padding: 0 2rem 3rem;
    }

    .work-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .work-subtitle {
        text-align: left;
        max-width: 48ch;
    }

    .work-footer {
        padding: 2.5rem 2rem 0;
        justify-content: flex-start;
    }

    .work-card-img {
        height: 220px;
    }

    .work-card--wide    { width: 320px; }
    .work-card--square  { width: 200px; }
    .work-card--portrait { width: 148px; }
}

/* ============================================================
   9. Section 4: Processo (Timeline)
   ============================================================ */
.process-section {

    padding: 10rem 3rem;
    background-color: var(--color-obsidian);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.timeline-step {
    display: flex;
    gap: 4rem;
}

.step-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-size: 1rem;
    color: var(--color-limeglow);
    border: 1px solid var(--color-limeglow);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-obsidian);
    z-index: 2;
}

.step-line-fill {
    width: 1px;
    flex-grow: 1;
    background-color: var(--color-text-faded);
    margin: 1.5rem 0;
    transition: background-color 0.8s ease;
}

.timeline-step:last-child .step-line-fill {
    display: none;
}

.step-content-col {
    padding-bottom: 6rem;
}

.timeline-step:last-child .step-content-col {
    padding-bottom: 0;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.step-text {
    font-family: var(--font-text);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Step active states triggerable by JS scrolling */
.timeline-step.active .step-number {
    background-color: var(--color-limeglow);
    color: var(--color-obsidian);
    box-shadow: 0 0 15px rgba(179, 255, 0, 0.4);
}

.timeline-step.active .step-line-fill {
    background-color: var(--color-limeglow);
}

/* 9. Section 5: Diferenciais (Structural Table) */
.diff-section {
    padding: 10rem 3rem;
    background-color: var(--color-charcoal);
    border-top: 1px solid var(--color-text-faded);
    border-bottom: 1px solid var(--color-text-faded);
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 2rem;
}

.diff-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.diff-table th {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding: 2.2rem 2rem;
    border-bottom: 1px solid var(--color-text-faded);
}

.diff-table td {
    font-family: var(--font-text);
    font-size: 1.1rem;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--color-text-faded);
    color: var(--color-text-muted);
}

.diff-table tr:hover td {
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.diff-table .active-col {
    color: var(--color-text-white);
    font-weight: 600;
    border-left: 1px solid var(--color-text-faded);
    border-right: 1px solid var(--color-text-faded);
    background-color: rgba(255, 255, 255, 0.02);
}

.diff-table tbody tr:last-child td {
    border-bottom: none;
}

/* 10. Section 6: Resultados Esperados (Target Metrics) */
.metrics-section {
    position: relative;
    padding: 10rem 3rem;
    background-color: var(--color-obsidian);
    overflow: hidden;
}

.rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.metrics-section .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.section-description {
    position: relative;
    z-index: 2;
    font-family: var(--font-text);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 60%;
    margin-bottom: 6rem;
}

.metrics-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.metric-card {
    background-color: var(--color-charcoal);
    border: 1px solid var(--color-text-faded);
    padding: 4rem 3rem;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.metric-val {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.metric-title {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
}

.metric-desc {
    font-family: var(--font-text);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.metric-progress-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.metric-progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-progress-fill.color-lime { background-color: var(--color-limeglow); }
.metric-progress-fill.color-cyan { background-color: var(--color-cyanglow); }
.metric-progress-fill.color-white { background-color: var(--color-text-white); }

/* 11. Section 7: FAQ (Accordion) */
.faq-section {
    padding: 10rem 3rem;
    background-color: var(--color-charcoal);
    border-top: 1px solid var(--color-text-faded);
    border-bottom: 1px solid var(--color-text-faded);
}

.faq-accordion-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-text-faded);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-text-faded);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 1rem;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-white);
}

.faq-question {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}

.faq-icon {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.faq-trigger:hover .faq-question {
    color: var(--color-limeglow);
    transform: translateX(5px);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    font-family: var(--font-text);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding: 0 1rem 2.2rem 1rem;
}

.faq-item.active .faq-panel {
    max-height: 200px; /* Arbitrary large max-height for panel open transition */
}

.faq-item.active .faq-icon {
    color: var(--color-limeglow);
    transform: rotate(45deg);
}

/* 12. Section 8: CTA Final & Scanning follower */
.contact-section {
    position: relative;
    padding: 10rem 3rem;
    background-color: var(--color-obsidian);
}

.project-follower {
    position: fixed;
    width: 300px;
    height: 180px;
    background-color: rgba(15, 16, 19, 0.95);
    border: 1px solid var(--color-limeglow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 100;
    border-radius: 4px;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-follower.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.follower-scanner-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-limeglow);
    animation: scanAnimation 2s linear infinite;
    box-shadow: 0 0 8px var(--color-limeglow);
}

@keyframes scanAnimation {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

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

.f-metric-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-white);
}

.scan-trigger-zone {
    width: 100%;
}

.contact-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-description {
    font-family: var(--font-text);
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    max-width: 85%;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-email {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-text-white);
}

.whatsapp-link {
    text-decoration: none;
    color: var(--color-limeglow);
    transition: var(--transition-fast);
}

.whatsapp-link:hover {
    color: var(--color-text-white);
    text-shadow: 0 0 15px var(--color-limeglow);
}

.wa-action {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.whatsapp-link:hover .wa-action {
    color: var(--color-limeglow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    background-color: var(--color-charcoal);
    border: 1px solid var(--color-text-faded);
    padding: 5rem 4rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--color-text-white);
    outline: none;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    transform: translateY(-25px);
    font-size: 0.8rem;
    color: var(--color-limeglow);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.input-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text-faded);
    transition: background-color 0.3s ease;
}

.form-group input:focus ~ .input-glow-line,
.form-group textarea:focus ~ .input-glow-line {
    background-color: var(--color-cyanglow);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.contact-form .submit-btn {
    align-self: flex-start;
}

.success-message {
    padding: 3rem;
    background-color: var(--color-charcoal);
    border: 1px dashed var(--color-limeglow);
    text-align: center;
    border-radius: 4px;
}

/* ============================================================
   N. CTA Final Section — "Iniciar Projeto"
   ============================================================ */

.cta-final-section {
    background-color: var(--color-obsidian);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem 0;
}

/* Subtle radial glow at center */
.cta-final-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.055) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
    flex: 1;
    justify-content: center;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
}

/* Label */
.cta-final-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-white);
    opacity: 0.38;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

/* Mixed heading */
.cta-final-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 2.8rem;
}

/* "Pronto para" — Grenze Gotisch gothic */
.cta-gothic {
    font-family: 'Grenze Gotisch', serif;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 7.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.01em;
    display: block;
    line-height: 1.0;
}

/* "Crescer." — Bebas Neue bold impact */
.cta-impact {
    font-family: 'Bebas Neue', var(--font-condensed), sans-serif;
    font-weight: 400;
    font-size: clamp(5rem, 14vw, 14rem);
    color: var(--color-text-white);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    display: block;
    line-height: 0.9;
}

/* Subtext */
.cta-final-sub {
    font-family: var(--font-mono);
    font-size: clamp(0.72rem, 1vw, 0.88rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-white);
    opacity: 0.45;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

/* CTA buttons group */
.cta-final-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary CTA: white pill button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-text-white);
    color: var(--color-obsidian);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    border: 1.5px solid var(--color-text-white);
    border-radius: 3px;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-limeglow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover::before {
    transform: scaleX(1);
}

.cta-btn-primary:hover {
    color: var(--color-obsidian);
    box-shadow: 0 0 40px rgba(212, 255, 0, 0.25);
}

.cta-btn-text,
.cta-btn-arrow {
    position: relative;
    z-index: 1;
}

.cta-btn-arrow {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Secondary: email link */
.cta-btn-secondary {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--color-text-white);
    opacity: 0.42;
    text-decoration: none;
    text-transform: lowercase;
    transition: opacity 0.2s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cta-btn-secondary:hover {
    opacity: 0.85;
}

/* Bottom ticker */
.cta-ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.1rem 0;
}

.cta-ticker-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    width: max-content;
    animation: ctaTicker 22s linear infinite;
}

.cta-ticker-track span {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
}

.cta-sep {
    color: var(--color-limeglow) !important;
    opacity: 0.5 !important;
}

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

/* Responsive */
@media (max-width: 768px) {
    .cta-final-section {
        padding: 5rem 2rem 0;
        min-height: auto;
        padding-bottom: 5rem;
    }

    .cta-ticker-wrap {
        position: relative;
        margin-top: 4rem;
    }

    .cta-final-actions {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }

    .cta-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Light mode lead-in before final CTA */
.contact-section {
    background: #f4f3ee;
    color: #0a0a0a;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-section .mono-label {
    color: #0a0a0a;
    opacity: 0.56;
}

.contact-section .contact-title,
.contact-section .contact-email,
.contact-section .contact-email-link {
    color: #0a0a0a;
}

.contact-email-link {
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-section .contact-email-link:hover {
    color: #415f00;
}

.contact-section .contact-description,
.contact-section .wa-action {
    color: rgba(10, 10, 10, 0.56);
}

.contact-section .whatsapp-link {
    color: #0a0a0a;
}

.contact-section .whatsapp-link:hover {
    color: #415f00;
    text-shadow: none;
}

.contact-section .contact-form,
.contact-section .success-message {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    color: #0a0a0a;
}

.contact-section .form-group label {
    color: rgba(10, 10, 10, 0.52);
}

.contact-section .input-glow-line {
    background-color: rgba(0, 0, 0, 0.18);
}

.contact-section .submit-btn {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #ffffff;
}

.contact-section .submit-btn:hover,
.contact-section .submit-btn:focus-visible {
    background-color: transparent;
    color: #0a0a0a;
    border-color: #0a0a0a;
    box-shadow: none;
}

/* Summoner-inspired final ritual CTA */
.cta-final-section {
    background: #000;
    min-height: 100svh;
    padding: clamp(6rem, 10vh, 9rem) 3rem clamp(3rem, 6vh, 5rem);
    justify-content: center;
}

.cta-final-section::before {
    display: none;
}

.cta-final-inner {
    max-width: 1080px;
    min-height: calc(100svh - clamp(9rem, 16vh, 14rem));
    justify-content: center;
    padding-bottom: 0;
}

.cta-final-label {
    margin-bottom: clamp(2.2rem, 5vh, 4.4rem);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
}

.cta-final-heading {
    margin-bottom: clamp(2.3rem, 4.2vh, 3.6rem);
}

.cta-gothic {
    font-family: 'Pirata One', 'Grenze Gotisch', serif;
    font-weight: 400;
    font-size: clamp(4.9rem, 8.6vw, 9.8rem);
    line-height: 0.78;
    letter-spacing: -0.025em;
    margin-bottom: clamp(0.65rem, 1.4vw, 1.35rem);
}

.cta-impact {
    font-family: var(--font-condensed);
    font-size: clamp(7rem, 14.4vw, 15.8rem);
    line-height: 0.74;
    letter-spacing: 0.015em;
}

.cta-final-sub {
    margin-bottom: clamp(2.8rem, 5vh, 4.2rem);
    color: #ffffff;
    opacity: 1;
    font-size: clamp(0.9rem, 1.08vw, 1.12rem);
    line-height: 1.75;
    letter-spacing: 0.13em;
    text-align: center;
    text-wrap: balance;
}

.cta-final-sub span,
.cta-final-sub strong {
    display: block;
}

.cta-final-sub span {
    color: rgba(255, 255, 255, 0.78);
}

.cta-final-sub strong {
    color: #ffffff;
    font-weight: 700;
}

.cta-final-actions {
    gap: 0;
}

.cta-btn-primary {
    min-width: 252px;
    justify-content: center;
    border-radius: 3px;
    padding: 1.05rem 2.25rem;
    background: #ffffff;
    border-color: #ffffff;
    color: #050506;
    box-shadow: none;
}

.cta-final-section .cta-final-label,
.cta-final-section .cta-gothic,
.cta-final-section .cta-impact,
.cta-final-section .cta-final-sub,
.cta-final-section .cta-final-actions > * {
    opacity: 1 !important;
    transform: none !important;
}

.cta-final-corner {
    position: absolute;
    left: clamp(1.5rem, 3vw, 3rem);
    bottom: clamp(1.4rem, 3vw, 2.2rem);
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cta-final-section {
        padding: 6rem 1.4rem 4rem;
        min-height: 100svh;
    }

    .cta-final-inner {
        min-height: auto;
    }

    .cta-gothic {
        font-size: clamp(3.8rem, 17vw, 6rem);
    }

    .cta-impact {
        font-size: clamp(5.2rem, 24vw, 8rem);
    }

    .cta-final-corner {
        position: static;
        margin-top: 4rem;
        text-align: center;
    }
}

/* 13. Footer */
.footer {

    padding: 8rem 3rem 3rem 3rem;
    background-color: var(--color-text-white);
    color: var(--color-obsidian);
    text-align: center;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-handle {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6.5vw, 6.5rem);
    letter-spacing: -0.05em;
    line-height: 0.8;
    margin: 2rem 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
}

.footer-socials a {
    color: var(--color-obsidian);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: #555;
}

.separator {
    color: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   14. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    .manifesto-grid, .grid-2 {
        gap: 4rem;
    }
    .manifesto-heading {
        font-size: 2.8rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .grid-2, .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .header {
        padding: 1.5rem 2rem;
    }
    .hero-wrapper, .hero-info-grid {
        padding: 0 2rem 3rem 2rem;
    }
    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .text-center-desktop, .text-right-desktop {
        text-align: left;
    }
    .hero-title {
        font-size: 3.5rem;
        max-width: 100%;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-info-grid {
        border-bottom: none;
    }
    .marquee-item {
        font-size: 2.6rem;
    }
    .section-heading {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }
    .about-description, .contact-title {
        font-size: 2.5rem;
        max-width: 100%;
    }
    .contact-form {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-step {
        gap: 2rem;
    }
    .step-content-col {
        padding-bottom: 4rem;
    }
    .step-title {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1.25rem;
    }
    .footer-container {
        flex-direction: column;
    }
}

/* ==========================================================================
   Summoner-inspired polish: responsive clamps + motion accessibility
   ========================================================================== */

.section-container,
.footer-container {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.section-heading,
.contact-title,
.footer-handle,
.gs-line,
.card-title,
.step-title,
.metric-title,
.faq-question,
.contact-email {
    overflow-wrap: anywhere;
}

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

    .header-menu-block {
        justify-self: end;
    }

    .header-audit-link {
        display: none;
    }

    .hero-cta-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-cta-row {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    body {
        background: var(--color-obsidian);
    }

    .header {
        top: 2.2rem;
        padding: 1.25rem 1rem;
    }

    .header.scrolled {
        padding: 1rem;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .menu-toggle-btn {
        min-width: 58px;
        min-height: 44px;
        padding: 0.58rem 0.78rem;
        font-size: 0.68rem;
    }

    .overlay-nav ul li {
        margin: 1.4rem 0;
    }

    .menu-link {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

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

    .hero-marquee-ribbon {
        top: 0;
    }

    .hero-marquee-track {
        height: 2.1rem;
        padding: 0;
        font-size: 0.82rem;
    }

    .hero-marquee-set {
        gap: 1.6rem;
        padding-right: 1.6rem;
    }

    .hero-sigil {
        width: 86vw;
        opacity: 0.22;
    }

    .sigil-ring-outer {
        border-width: 8px;
    }

    .hero-giant-title {
        font-size: clamp(3.2rem, 16vw, 4.8rem);
        width: 100vw;
        letter-spacing: -0.055em;
    }

    .hero-verb-stack {
        top: calc(50% + 4.6rem);
        height: 4rem;
        width: 96vw;
    }

    .verb-item {
        height: 4rem;
        line-height: 4rem;
    }

    .verb-item.font-gothic,
    .verb-item.font-script {
        font-size: clamp(3rem, 17vw, 4.2rem);
    }

    .verb-item.font-tech {
        font-size: clamp(2.2rem, 13vw, 3.4rem);
    }

    .hero-cta-panel {
        left: 1rem;
        bottom: 4.5rem;
        width: calc(100vw - 2rem);
    }

    .hero-kicker {
        max-width: 19rem;
        font-size: 1.28rem;
        line-height: 1.08;
    }

    .hero-cta-row {
        gap: 0.85rem;
    }

    .hero-primary-cta {
        padding: 0.95rem 1.25rem;
        font-size: 0.78rem;
    }

    .hero-secondary-cta {
        font-size: 0.68rem;
    }

    .services-section,
    .process-section,
    .diff-section,
    .metrics-section,
    .faq-section,
    .contact-section {
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }

    .section-heading,
    .contact-title {
        max-width: 100%;
        font-size: clamp(2.2rem, 11.8vw, 3.6rem);
        line-height: 0.95;
        letter-spacing: -0.055em;
    }

    .section-heading {
        font-size: clamp(2.1rem, 9.1vw, 3rem);
        line-height: 0.98;
        overflow-wrap: normal;
        word-break: normal;
    }

    .contact-title {
        font-size: clamp(2.55rem, 11.8vw, 3.65rem);
    }

    .section-description,
    .contact-description {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .service-card {
        height: auto;
        min-height: 380px;
    }

    .card-inner {
        padding: 3rem 2rem;
    }

    .metric-card,
    .contact-form {
        padding: 3rem 1.6rem;
    }

    .contact-email {
        font-size: clamp(1.35rem, 7.8vw, 2rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .whatsapp-link {
        display: inline;
        overflow-wrap: anywhere;
    }

    .project-follower {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero-corner-left {
        left: 1.3rem;
    }

    .hero-corner-right {
        right: 1.3rem;
    }

    .contact-meta-group {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero-sigil,
    .project-follower,
    .rain-canvas {
        display: none !important;
    }
}

html, body {
  scroll-behavior: auto !important;
}

/* 11. Performance Counter Widget (Capabilities Section) */
.counter-island-wrapper {
    margin-top: 3.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.performance-counter-widget {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-text-faded);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.performance-counter-widget:hover {
    border-color: var(--color-limeglow);
    box-shadow: 0 0 20px rgba(179, 255, 0, 0.06);
}

.counter-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    gap: 1.2rem;
}

.counter-btn {
    background: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-text-faded);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.counter-btn:hover {
    color: var(--color-limeglow);
    border-color: var(--color-limeglow);
    box-shadow: 0 0 10px rgba(179, 255, 0, 0.2);
}

.counter-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.counter-val {
    font-family: var(--font-condensed);
    font-size: clamp(2.2rem, 3.2vw, 3.5rem);
    font-weight: 800;
    color: var(--color-limeglow);
    text-shadow: 0 0 10px rgba(179, 255, 0, 0.25);
    line-height: 1;
}

.counter-val-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
    text-transform: uppercase;
}

.counter-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    border-top: 1px solid var(--color-text-faded);
    padding-top: 1.25rem;
    gap: 0.8rem;
}

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

.metric-name {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Ambient WebGL Shader Background (Section 3) */
.services-shader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
    overflow: hidden;
}

/* Ensure section content sits on top of WebGL background */
.services-section .section-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Make bloodline component look premium, green, and cohesive with the site */
.counter-island-wrapper > div {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-text-faded);
    border-radius: 4px;
    padding: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-island-wrapper > div:hover {
    border-color: var(--color-limeglow);
    box-shadow: 0 0 20px rgba(179, 255, 0, 0.06);
}

.counter-island-wrapper h1 {
    font-family: var(--font-mono);
    font-size: 0.65rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-align: center;
}

.counter-island-wrapper h2 {
    font-family: var(--font-condensed);
    font-size: clamp(2.2rem, 3vw, 3.2rem) !important;
    font-weight: 800;
    color: var(--color-limeglow);
    text-shadow: 0 0 10px rgba(179, 255, 0, 0.25);
    line-height: 1;
    margin: 0.5rem 0;
    text-align: center;
}

.counter-island-wrapper button {
    background: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-text-faded);
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.counter-island-wrapper button:hover {
    color: var(--color-limeglow);
    border-color: var(--color-limeglow);
    box-shadow: 0 0 10px rgba(179, 255, 0, 0.2);
}

/* ==========================================================================
   Android / touch presentation pass
   ========================================================================== */

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    :root {
        --hero-title-scale: 1;
        --hero-title-shift: 0px;
    }

    html {
        scroll-padding-top: 4.5rem;
        overflow-y: auto;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    body {
        background: #000;
        overflow-y: auto;
        overscroll-behavior-y: auto;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    main,
    .hero-section,
    .giant-statement-section,
    .services-section,
    .work-section,
    .cta-final-section,
    .footer {
        touch-action: pan-y;
    }

    .btn-slanted,
    .menu-toggle-btn,
    .overlay-close,
    .work-cta-btn,
    .cta-btn-primary,
    .footer-socials a {
        min-height: 44px;
        min-width: 44px;
    }

    .hero-marquee-ribbon {
        height: 1.85rem;
        overflow: hidden;
    }

    .hero-marquee-track {
        height: 1.85rem;
        padding: 0;
        font-size: 0.74rem;
        animation-duration: 32s;
    }

    .hero-marquee-set {
        gap: 1.35rem;
        padding-right: 1.35rem;
    }

    .marquee-word {
        line-height: 1.85rem;
        padding: 0 0.02em 0.1em;
    }

    .header {
        top: 1.85rem;
        padding: 0.95rem 0.95rem 0;
    }

    .header.scrolled {
        padding: 0.75rem 0.95rem;
        background: rgba(0, 0, 0, 0.72);
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 0.85rem;
    }

    .logo-brand,
    .header-meta-block,
    .hero-corner-left,
    .hero-corner-right,
    .hero-bottom-center {
        text-rendering: optimizeLegibility;
    }

    .logo-brand {
        font-size: 1.05rem;
        line-height: 0.92;
    }

    .header-meta-block {
        display: none;
    }

    .menu-toggle-btn {
        padding: 0.72rem 1.05rem;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .overlay-menu {
        padding: 2rem 1.1rem;
    }

    .overlay-nav {
        width: 100%;
    }

    .overlay-nav ul li {
        margin: 1.05rem 0;
    }

    .menu-link {
        font-size: clamp(2.35rem, 15vw, 4.25rem);
        letter-spacing: -0.055em;
        line-height: 0.9;
    }

    .overlay-close {
        top: 1rem;
        right: 1rem;
        padding: 0.65rem 0.82rem;
    }

    .hero-section {
        height: 100svh;
        min-height: 640px;
        padding: 0 1rem;
        overflow: hidden;
    }

    .hero-giant-title {
        left: 50%;
        width: calc(100vw - 1.6rem);
        max-width: calc(100vw - 1.6rem);
        transform: translate(-50%, calc(-50% + var(--hero-title-shift))) scale(var(--hero-title-scale));
        font-size: clamp(2.2rem, 10.2vw, 3.24rem);
        line-height: 0.86;
        letter-spacing: -0.082em;
        white-space: nowrap;
        overflow: visible;
    }

    .hero-active .hero-giant-title {
        animation-duration: 12s;
    }

    .hero-corner-left,
    .hero-corner-right {
        bottom: 1.05rem;
        font-size: 1.02rem;
        line-height: 0.92;
        opacity: 0.78;
    }

    .hero-corner-left {
        left: 1rem;
    }

    .hero-corner-right {
        right: 1rem;
    }

    .hero-bottom-center {
        bottom: 2.35rem;
        width: calc(100vw - 2.4rem);
        font-size: 1.05rem;
        line-height: 0.98;
        text-align: center;
    }

    .hero-bottom-center .motion-cycle-word,
    .hero-bottom-center .motion-cycle-fallback {
        font-size: 1.05rem;
        line-height: 0.98;
        padding-bottom: 0.12em;
    }

    .giant-statement-section {
        min-height: 100svh;
        padding: 5.6rem 0.95rem 6.4rem;
        align-items: center;
        overflow: hidden;
    }

    .giant-statement {
        width: 100%;
        max-width: 25.5rem;
        line-height: 0.9;
    }

    .gs-line {
        font-family: var(--font-condensed);
        font-weight: 400;
        font-size: clamp(2.3rem, 12.9vw, 3.72rem);
        line-height: 0.82;
        letter-spacing: 0.012em;
        white-space: nowrap;
        word-break: keep-all;
        padding-bottom: 0.13em;
    }

    .gs-line.font-gothic {
        font-size: clamp(2.95rem, 12vw, 4.35rem);
        line-height: 0.8;
        margin: 0.62rem 0 0.82rem;
        max-width: 9ch;
        white-space: normal;
        text-wrap: balance;
    }

    .services-section {
        padding: 5.8rem 1.15rem 4.5rem;
        overflow: hidden;
    }

    .services-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-left-col .section-heading {
        font-size: clamp(3.2rem, 16vw, 4.7rem);
        line-height: 0.88;
        letter-spacing: 0.005em;
        margin: 1.25rem 0 2rem;
        max-width: 10.5ch;
    }

    .services-left-col .services-intro-copy {
        gap: 1.15rem;
    }

    .services-large-para {
        font-size: clamp(1rem, 4.15vw, 1.14rem);
        line-height: 1.58;
        opacity: 0.76;
    }

    .disciplines-list {
        margin-top: 0.85rem;
    }

    .discipline-item {
        min-height: 4.25rem;
        padding: 0.88rem 0;
        overflow: visible;
    }

    .discipline-name {
        font-size: clamp(1.9rem, 9.4vw, 2.8rem);
        line-height: 0.98;
        letter-spacing: 0.035em;
        padding-bottom: 0.1em;
    }

    .work-section {
        min-height: 100svh;
        padding: 4.7rem 0 4.8rem;
    }

    .work-intro {
        padding: 0 1.15rem 2.35rem;
        gap: 1.1rem;
    }

    .work-intro-row {
        gap: 1rem;
    }

    .work-title {
        font-size: clamp(3.55rem, 16.5vw, 5.2rem);
        line-height: 0.88;
        letter-spacing: 0.004em;
        max-width: 8.5ch;
    }

    .work-subtitle {
        max-width: 20rem;
        font-size: 1rem;
        line-height: 1.5;
        opacity: 0.58;
    }

    .work-marquee-row {
        margin-bottom: 0.85rem;
    }

    .work-marquee-track {
        gap: 0.8rem;
    }

    .work-card {
        border-radius: 5px;
    }

    .work-card--wide {
        width: min(78vw, 320px);
    }

    .work-card--square {
        width: min(58vw, 238px);
    }

    .work-card--portrait {
        width: min(46vw, 186px);
    }

    .work-card-img {
        flex: 0 0 auto;
        height: 178px;
        min-height: 178px;
    }

    .work-card::after {
        top: 0.7rem;
        left: 0.7rem;
        font-size: 0.52rem;
    }

    .work-card-meta {
        min-height: 3.2rem;
        padding: 0.62rem 0.68rem;
        gap: 0.7rem;
    }

    .work-card-meta span {
        font-size: 0.58rem;
        line-height: 1.1;
    }

    .work-card-meta span:first-child {
        max-width: 12rem;
    }

    .work-footer {
        padding: 2.4rem 1.15rem 0;
    }

    .work-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.1rem;
        font-size: 0.72rem;
        letter-spacing: 0.11em;
    }

    .cta-final-section {
        min-height: 100svh;
        padding: 5.2rem 1.1rem 3.4rem;
        overflow: hidden;
    }

    .cta-final-inner {
        min-height: calc(100svh - 8.6rem);
        justify-content: center;
    }

    .cta-final-label {
        margin-bottom: 2.35rem;
        font-size: 0.68rem;
    }

    .cta-final-heading {
        margin-bottom: 2.5rem;
        width: 100%;
        max-width: 100%;
    }

    .cta-gothic {
        font-size: clamp(3.8rem, 16.4vw, 5.7rem);
        line-height: 0.8;
        margin-bottom: 0.86rem;
    }

    .cta-impact {
        font-size: clamp(4.65rem, 21.6vw, 7.2rem);
        line-height: 0.76;
        letter-spacing: 0.004em;
        max-width: 100%;
    }

    .cta-final-sub {
        max-width: 21rem;
        margin-bottom: 2.55rem;
        font-size: 0.76rem;
        line-height: 1.72;
        letter-spacing: 0.11em;
    }

    .cta-btn-primary {
        width: 100%;
        max-width: 22rem;
        padding: 1.05rem 1.15rem;
    }

    .cta-final-corner {
        position: static;
        margin-top: 3.25rem;
        font-size: 0.62rem;
        line-height: 1.3;
        text-align: center;
    }

    .footer {
        padding: 4.5rem 1.1rem 2.4rem;
    }

    .footer-handle {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.48rem, 13.4vw, 4.2rem);
        line-height: 0.82;
        letter-spacing: -0.07em;
        margin: 1.35rem 0;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 380px) {
    .hero-giant-title {
        font-size: clamp(1.94rem, 9.45vw, 2.72rem);
    }

    .hero-bottom-center {
        bottom: 2.2rem;
        font-size: 0.96rem;
    }

    .hero-bottom-center .motion-cycle-word,
    .hero-bottom-center .motion-cycle-fallback {
        font-size: 0.96rem;
    }

    .gs-line {
        font-size: clamp(2.08rem, 12.1vw, 3.15rem);
    }

    .gs-line.font-gothic {
        font-size: clamp(2.6rem, 11.4vw, 3.75rem);
    }

    .services-left-col .section-heading {
        font-size: clamp(2.95rem, 15.2vw, 4rem);
    }

    .discipline-name {
        font-size: clamp(1.66rem, 8.7vw, 2.35rem);
    }

    .work-title {
        font-size: clamp(3rem, 15.6vw, 4.4rem);
    }

    .cta-gothic {
        font-size: clamp(3.35rem, 15.2vw, 4.85rem);
    }

    .cta-impact {
        font-size: clamp(4.05rem, 20vw, 6.2rem);
    }

    .cta-final-sub {
        font-size: 0.68rem;
    }

    .footer-handle {
        font-size: clamp(2.18rem, 12.3vw, 3.62rem);
        letter-spacing: -0.07em;
    }
}

@media (max-width: 340px) {
    .hero-giant-title {
        font-size: clamp(1.82rem, 8.9vw, 2.45rem);
    }

    .cta-impact {
        font-size: clamp(3.7rem, 18.8vw, 5.5rem);
    }

    .footer-handle {
        font-size: clamp(2rem, 11.6vw, 3.25rem);
    }
}
