﻿@font-face {
    font-family: gallerym;
    src: url(./assets/gallery-modern-regular.woff2);
}

@font-face {
    font-family: matterlight;
    src: url(./assets/matter-light.woff2);
}

@font-face {
    font-family: matterregular;
    src: url(./assets/matter-regular.woff2);
}

:root {
    --bg: #f3f5f8;
    --bg-soft: #e7edf5;
    --surface: #ffffff;
    --ink: #0c0e12;
    --muted: #66707d;
    --line: rgba(12, 14, 18, 0.08);
    --blue: #155eef;
    --blue-hot: #2f7bff;
    --radius: 1.35rem;
    --space-section: clamp(4rem, 9vh, 6.5rem);
    --space-x: clamp(1.25rem, 4.2vw, 3.25rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: matterregular, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* clip (not hidden) so position:sticky card stack works */
    overflow-x: clip;
}

::selection {
    background: rgba(21, 94, 239, 0.18);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

img,
video {
    max-width: 100%;
}

#main {
    background: var(--bg);
}

#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
}

/* Intro video loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #000;
    display: grid;
    place-items: center;
    overflow: hidden;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

#loader.is-done {
    pointer-events: none;
    visibility: hidden;
}

/* ========== HERO — COMBINED (all references) ========== */
.hero {
    position: relative;
    min-height: 100dvh;
    padding: 0.7rem clamp(1rem, 3vw, 2rem) 0.85rem;
    background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(21, 94, 239, 0.05), transparent 55%),
        #f5f7fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Slide 01 — pack content tight under nav (no phantom height from other slides) */
.hero:not(.is-nexa):not(.is-market) {
    justify-content: flex-start;
}

.hero:not(.is-nexa):not(.is-market) .hero-mid {
    flex: 0 1 auto;
    align-items: start;
    padding: clamp(2.5rem, 6vh, 4rem) 0 0 0.35rem;
}

.hero:not(.is-nexa):not(.is-market) .hero-slides {
    flex: 0 1 auto;
}

.hero:not(.is-nexa):not(.is-market) .hero-slide.is-active {
    align-items: start;
    padding-left: clamp(0.35rem, 1.2vw, 1rem);
}

.hero:not(.is-nexa):not(.is-market) .hero-copy {
    padding-top: clamp(0.75rem, 2vh, 1.5rem);
    padding-left: clamp(0.25rem, 1vw, 0.75rem);
}

.hero:not(.is-nexa):not(.is-market) .hero-strip {
    margin-top: 0.85rem;
    padding-top: 0;
}

.hero:not(.is-nexa):not(.is-market) .hero-title {
    margin-bottom: 0.65rem;
}

.hero:not(.is-nexa):not(.is-market) .hero-sub {
    margin-bottom: 1rem;
}

.hero:not(.is-nexa):not(.is-market) .hero-side {
    align-self: start;
    padding-top: 0.15rem;
}

.hero-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.15rem;
}

.nav-brand img {
    height: 54px;
    width: auto;
    max-width: min(230px, 46vw);
    object-fit: contain;
    object-position: left center;
    display: block;
    border-radius: 0.55rem;
    background: #000;
}

.nav-pill {
    display: flex;
    gap: 0.2rem;
    padding: 0.3rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--line);
}

.nav-pill a {
    padding: 0.52rem 1rem;
    border-radius: 999px;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    color: var(--muted);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-pill a.active,
.nav-pill a:hover {
    background: #111;
    color: #fff;
}

.nav-cta {
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid #111;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    color: #111;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-cta:hover {
    background: #111;
    color: #fff;
}

.nav-menu {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 1.25rem;
    place-items: center;
}

.hero-watermark {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: min(72vw, 820px);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-watermark img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.hero-slides {
    position: relative;
    flex: 1;
    min-width: 0;
    display: block;
}

/* Only the active slide sets height — inactive slides must not stretch the hero */
.hero-slide {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

/* Slide 03 — marketing desk: banner + live updates + projects */
.hero.is-market {
    background:
        radial-gradient(ellipse 50% 55% at 70% 30%, rgba(21, 94, 239, 0.18), transparent 60%),
        #0f1218;
}

.hero.is-market .hero-watermark,
.hero.is-market .hero-strip {
    display: none !important;
}

.hero.is-market .hero-nav .nav-pill a,
.hero.is-market .nav-cta,
.hero.is-market .nav-menu {
    color: #fff;
}

.hero.is-market .nav-pill {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero.is-market .nav-pill a.active,
.hero.is-market .nav-pill a:hover {
    background: var(--blue);
    color: #fff;
}

.hero.is-market .nav-cta {
    border-color: rgba(255, 255, 255, 0.28);
}

.hero.is-market .nav-cta:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.hero.is-market .step {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.65);
}

.hero.is-market .step.is-on,
.hero.is-market .step:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.hero.is-market .hero-mid {
    flex: 1;
    align-items: stretch;
    padding: 0.4rem 0 0.6rem;
}

.hero.is-market .hero-slides {
    flex: 1;
}

.hero-slide.slide-market {
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 0;
}

.market-desk {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
    grid-template-rows: minmax(180px, 1fr) auto;
    gap: 0.85rem;
    width: 100%;
    min-height: min(58vh, 480px);
    max-height: min(62vh, 520px);
}

.market-banner {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 0;
    height: 100%;
    background: #111;
}

.market-banner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.market-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 12, 22, 0.88) 8%, rgba(8, 12, 22, 0.45) 55%, rgba(8, 12, 22, 0.25) 100%);
    z-index: 1;
}

.market-banner-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #fff;
    max-width: 34rem;
}

.market-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ec0ff;
    margin-bottom: 0.55rem;
}

.market-banner-body h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.market-banner-body > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.market-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.market-btn-fill,
.market-btn-line {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.market-btn-fill {
    background: var(--blue);
    color: #fff;
}

.market-btn-fill:hover {
    background: var(--blue-hot);
}

.market-btn-line {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.market-btn-line:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.market-updates {
    grid-column: 2;
    grid-row: 1;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.market-updates-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.market-live {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--blue-hot);
    box-shadow: 0 0 0 0 rgba(47, 123, 255, 0.55);
    animation: market-live-pulse 1.6s ease-out infinite;
}

@keyframes market-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 123, 255, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(47, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 123, 255, 0); }
}

.market-updates:hover .market-updates-track {
    animation-play-state: paused;
}

.market-updates-window {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}

.market-updates-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.market-updates-set {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-bottom: 0.65rem;
}

.market-updates-track article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    padding: 0.75rem 0.7rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.market-updates-track span {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ec0ff;
    padding-top: 0.15rem;
}

.market-updates-track p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    line-height: 1.35;
}

.market-row {
    grid-column: 1 / -1;
    grid-row: 2;
}

.market-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
}

.market-row-head p {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.market-row-head a {
    font-size: 0.78rem;
    color: #9ec0ff;
}

.market-row-head a:hover {
    color: #fff;
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.market-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 110px;
    color: #fff;
    background: #1a1f28;
}

.market-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.market-card:hover video {
    transform: scale(1.06);
    filter: brightness(0.85);
}

.market-card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.8rem;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
}

.market-card-body strong {
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.market-card-body span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ec0ff;
    margin-top: 0.2rem;
}

/* ========== SLIDE 02 — NEXA structure, FivePS colors ========== */
.hero.is-nexa {
    background: #0a0a0a;
    padding-top: 0.75rem;
}

.hero.is-nexa .hero-nav,
.hero.is-nexa .hero-watermark,
.hero.is-nexa .hero-strip {
    display: none !important;
}

.hero.is-nexa .step {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.65);
}

.hero.is-nexa .step.is-on,
.hero.is-nexa .step:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.hero.is-nexa .hero-mid {
    flex: 1;
    padding: 0.35rem 0 0.5rem;
    align-items: stretch;
}

.hero.is-nexa .hero-slides {
    flex: 1;
}

.hero-slide.slide-nexa {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.nexa-frame {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.85rem 0.75rem;
    width: 100%;
    min-height: calc(100dvh - 2rem);
    color: #fff;
}

.nexa-rail {
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0 0.5rem;
}

.nexa-brand {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-family: matterlight, sans-serif;
    white-space: nowrap;
}

.nexa-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.nexa-follow-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.nexa-follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.68rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.38);
    max-height: 140px;
}

.nexa-social {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.nexa-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.nexa-social a:hover {
    color: var(--blue-hot);
}

.nexa-panel {
    position: relative;
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 2.4rem;
    overflow: hidden;
    min-height: calc(100dvh - 2rem);
    background: #111;
    color: #fff;
}

.nexa-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.nexa-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.nexa-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem 0.5rem;
}

.nexa-nav nav {
    display: flex;
    gap: 0.25rem;
    padding: 0.28rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.nexa-nav nav a {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.nexa-nav nav a.active,
.nexa-nav nav a:hover {
    background: var(--blue);
    color: #fff;
}

.nexa-contact {
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    color: #fff;
}

.nexa-contact:hover {
    background: #fff;
    color: #111;
}

.nexa-content {
    position: relative;
    z-index: 2;
    height: calc(100% - 5rem);
    min-height: 520px;
    padding: 1.5rem 1.6rem 1.6rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
}

.nexa-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    max-width: 28rem;
}

.nexa-copy h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(3rem, 6.5vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.nexa-copy p {
    max-width: 22rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.55;
}

.nexa-orb {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    justify-self: start;
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #0b0b0b;
    display: grid;
    place-items: center;
    color: #fff;
}

.nexa-orb svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 11s linear infinite;
}

.nexa-orb text {
    fill: rgba(255, 255, 255, 0.88);
    font-size: 11.5px;
    letter-spacing: 2px;
    font-family: matterlight, sans-serif;
}

.nexa-orb i {
    font-size: 1.35rem;
    z-index: 1;
}

.nexa-what {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: min(100%, 340px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1.35rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.nexa-what-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.45rem;
}

.nexa-what > div:first-child p:last-child {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.45;
}

.nexa-team {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nexa-team span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b8dff, #155eef);
    border: 2px solid rgba(255, 255, 255, 0.35);
    margin-left: -8px;
}

.nexa-team span:first-child {
    margin-left: 0;
}

.nexa-team a {
    margin-left: 0.45rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    color: #fff;
}

.nexa-cta {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.55rem 0.55rem 0.55rem 0.95rem;
    border-radius: 999px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    z-index: 3;
}

.nexa-cta-text,
.footer-cta .nexa-cta-text {
    font-size: clamp(0.62rem, 1.1vw, 0.72rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
}

.nexa-cta-icon,
.footer-cta .nexa-cta-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.nexa-cta span:not(.nexa-cta-text):not(.nexa-cta-icon) {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.hero-mid {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(0.75rem, 2.5vw, 2rem);
    align-items: center;
    padding: 0.75rem 0 0.5rem;
    min-height: 0;
}

.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    z-index: 3;
}

.hero-steps .step {
    cursor: pointer;
}

.step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.step.is-on,
.step:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.hero-copy {
    max-width: 42rem;
}

.hero-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
    margin: 0 0 1.1rem;
    font-family: matterregular, sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.hero-title > span,
.hero-title > em {
    display: inline-block;
}

.hero-title em {
    font-style: normal;
    color: var(--blue);
}

.inline-media {
    display: inline-flex;
    overflow: hidden;
    vertical-align: middle;
    background: #111;
    flex-shrink: 0;
}

.inline-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inline-media.circle {
    width: clamp(3.2rem, 6vw, 4.8rem);
    height: clamp(3.2rem, 6vw, 4.8rem);
    border-radius: 50%;
}

.inline-media.capsule {
    width: clamp(5.5rem, 11vw, 8.5rem);
    height: clamp(2.6rem, 5vw, 3.8rem);
    border-radius: 999px;
}

.hero-sub {
    max-width: 28rem;
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
    letter-spacing: -0.005em;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.65rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 0.98rem;
    box-shadow: 0 10px 28px rgba(21, 94, 239, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    background: var(--blue-hot);
    box-shadow: 0 14px 32px rgba(21, 94, 239, 0.4);
}

.text-link {
    font-size: 0.95rem;
    color: #111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.text-link:hover {
    border-color: #111;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(240px, 28vw);
}

.float-card {
    background: #fff;
    border-radius: 1.35rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.float-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #111;
}

.float-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.float-card p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.float-card small {
    color: var(--muted);
    font-size: 0.78rem;
}

.what-card {
    background: #111;
    color: #fff;
    border-radius: 1.35rem;
    padding: 1.15rem 1.2rem;
}

.what-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8eb4ff;
    margin-bottom: 0.55rem;
}

.what-card > p:nth-child(2) {
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.1rem;
}

.what-team {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.what-team span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b8dff, #155eef);
    border: 2px solid rgba(255, 255, 255, 0.35);
    margin-left: -8px;
}

.what-team span:first-child {
    margin-left: 0;
}

.what-team a {
    margin-left: 0.45rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.hero-strip {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 0.5rem;
}

.strip-track {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.strip-item {
    flex: 0 0 auto;
    width: clamp(110px, 14vw, 170px);
    height: clamp(72px, 10vw, 110px);
    border-radius: 1.1rem;
    overflow: hidden;
    background: #111;
}

.strip-item.tall {
    height: clamp(100px, 14vw, 150px);
    border-radius: 1.35rem;
}

.strip-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spin-badge {
    position: absolute;
    right: clamp(0.5rem, 3vw, 2rem);
    bottom: clamp(0.5rem, 2vw, 1.5rem);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #0c0c0c;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.spin-badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 12s linear infinite;
}

.spin-badge text {
    fill: rgba(255, 255, 255, 0.88);
    font-size: 11.5px;
    letter-spacing: 2.2px;
    font-family: matterlight, sans-serif;
}

.spin-badge i {
    font-size: 1.35rem;
    z-index: 1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* About strip — tight under hero, no blank gap */
.about-strip {
    padding: clamp(2.75rem, 6vh, 4rem) var(--space-x);
    background: var(--bg);
}

.about-line {
    max-width: 54rem;
    margin: 0 auto;
    text-align: center;
    font-family: matterlight, sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    line-height: 1.5;
    letter-spacing: -0.025em;
    color: #9aa3ad;
}

.about-line strong {
    color: var(--ink);
    font-family: matterregular, sans-serif;
    font-weight: 600;
}

.about-line em {
    font-style: normal;
    color: var(--ink);
    font-family: matterregular, sans-serif;
    font-weight: 600;
}

.pill-img {
    display: inline-block;
    width: 3.2rem;
    height: 1.55rem;
    border-radius: 999px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 0.25rem;
    background: var(--blue);
}

.pill-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 0.25rem var(--space-x) var(--space-section);
    background: var(--bg);
}

.feature {
    position: relative;
    min-height: 270px;
    border-radius: var(--radius);
    padding: 1.35rem 1.3rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature .tag {
    align-self: flex-start;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    font-family: matterlight, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: auto;
}

.feature h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.28rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin: 1rem 0 0.85rem;
}

.feature i {
    color: var(--blue);
    font-size: 1.05rem;
}

.feature.dark {
    background: #111;
    color: #fff;
}

.feature.dark .tag {
    background: rgba(255, 255, 255, 0.1);
}

.feature.soft {
    background: #e4e4e4;
    color: #111;
}

.feature.soft .tag {
    background: rgba(0, 0, 0, 0.06);
}

.feature.motion {
    color: #fff;
}

.feature.motion video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature.motion::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
}

.feature.motion .tag,
.feature.motion h3,
.feature.motion i {
    position: relative;
    z-index: 1;
}

/* Shared sections */
.eyebrow {
    font-family: matterlight, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.section {
    padding: var(--space-section) var(--space-x);
}

.section-head {
    max-width: 38rem;
    margin-bottom: clamp(2rem, 4vh, 2.85rem);
}

.section-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.lead {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    line-height: 1.55;
    max-width: 34rem;
    margin-top: 0.9rem;
    letter-spacing: -0.005em;
}

/* Services — Apple / CodePen sticky card stack */
.services {
    background: #e6ebf2;
    color: var(--ink);
}

.services-intro {
    max-width: 40rem;
    padding-bottom: 0.5rem;
}

.services-intro h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.cards {
    position: relative;
    width: 100%;
}

/* Each panel = 100vh sticky layer (classic stack) */
.card {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    z-index: calc(1 + var(--i, 0));
}

.card-inner {
    width: min(980px, 100%);
    height: min(72vh, 560px);
    border-radius: 1.75rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    transform-origin: 50% 0%;
    will-change: transform;
}

.card-media {
    min-height: 100%;
    background: #111;
    overflow: hidden;
}

.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.4rem, 3.5vw, 2.75rem);
    gap: 0.7rem;
}

.card-body span {
    font-family: matterlight, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
}

.card-body h3 {
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.card-body p {
    font-family: matterlight, sans-serif;
    font-size: 1.02rem;
    line-height: 1.5;
    max-width: 26rem;
    opacity: 0.85;
    letter-spacing: -0.005em;
}

.card-body a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.card-body a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.card-inner.tone-dark {
    background: #111;
    color: #fff;
}

.card-inner.tone-blue {
    background: var(--blue);
    color: #fff;
}

.card-inner.tone-soft {
    background: #dfe5ee;
    color: #111;
}

.card-inner.tone-soft a {
    background: #111;
    color: #fff;
    border-color: #111;
}

.card-inner.tone-ink {
    background: #1a2740;
    color: #fff;
}

/* Selected work — expanding columns (selected work.mp4 ref) */
.work.section {
    background: #eceef1;
    color: #111;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.work .eyebrow {
    color: var(--blue);
}

.work-top {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto clamp(1.5rem, 3vh, 2.1rem);
    padding: 0 var(--space-x);
}

.work-top h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0.45rem 0 0;
}

.work-panels {
    display: flex;
    width: 100%;
    height: min(82vh, 680px);
    min-height: 460px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.work-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    transition: flex 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-panel:last-child {
    border-right: 0;
}

.work-panel.is-open {
    flex: 3.6 1 0;
}

.work-panel video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.55) brightness(0.78);
    transform: scale(1.06);
    transition: filter 0.55s ease, transform 0.85s ease;
}

.work-panel.is-open video {
    filter: grayscale(0.1) brightness(0.92);
    transform: scale(1);
}

.work-panel-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.28) 0%, rgba(20, 20, 20, 0.55) 100%);
    transition: background 0.55s ease;
    z-index: 1;
}

.work-panel.is-open .work-panel-shade {
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.18) 8%, rgba(8, 12, 24, 0.22) 45%, rgba(8, 12, 24, 0.62) 100%);
}

.work-panel-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.6rem);
}

.work-panel-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-panel.is-open .work-panel-meta {
    opacity: 1;
    transform: translateY(0);
}

.work-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.25);
    flex-shrink: 0;
}

.work-panel-reveal {
    margin-top: 1.1rem;
    max-width: 22rem;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s ease;
}

.work-panel.is-open .work-panel-reveal {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.12s;
}

.work-panel-reveal h3 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-panel-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.work-panel.is-open:hover .work-panel-cta {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.work-panel-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.work-panel-foot span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.work-panel-foot strong {
    font-family: matterregular, sans-serif;
    font-size: clamp(0.95rem, 1.45vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 100%;
}

.work-panel.is-open .work-panel-foot strong {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-step {
    padding-top: 1.15rem;
    border-top: 1.5px solid rgba(12, 14, 18, 0.12);
}

.process-step span {
    font-family: matterlight, sans-serif;
    color: var(--blue);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 0.95rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: -0.005em;
}

/* Marquee */
.marquee-band {
    background: #0d0d0d;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    animation: marquee-move 28s linear infinite;
}

.marquee-track span {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.72);
}

.marquee-track span::after {
    content: "•";
    margin-left: 2.5rem;
    color: var(--blue);
}

@keyframes marquee-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Results */
.results {
    background: #0d0d0d;
    color: #fff;
}

.results .eyebrow {
    color: #9ec0ff;
}

.results .lead {
    color: rgba(255, 255, 255, 0.62);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.result-card {
    background: #0d0d0d;
    padding: clamp(1.6rem, 3vw, 2.5rem);
    min-height: 11.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.85rem;
}

.result-card strong {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.35rem, 4.8vw, 3.45rem);
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: #fff;
    font-weight: 700;
}

.result-card span {
    font-family: matterlight, sans-serif;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.94rem;
    line-height: 1.45;
    max-width: 16rem;
}

/* Industries */
.industries {
    background: #f0f3f7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.industry-card {
    position: relative;
    min-height: min(42vh, 320px);
    overflow: hidden;
    color: #fff;
}

.industry-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25) brightness(0.7);
    transition: transform 0.7s ease, filter 0.5s ease;
}

.industry-card:hover video {
    transform: scale(1.05);
    filter: grayscale(0) brightness(0.8);
}

.industry-body {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
}

.industry-body span {
    color: #9ec0ff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
}

.industry-body h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.industry-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 26rem;
}

/* Why FivePS */
.why {
    background: #fff;
}

.why-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.why-copy h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s var(--ease);
}

.why-cta:hover {
    background: var(--blue-hot);
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
}

.why-item:last-child {
    border-bottom: 1px solid var(--line);
}

.why-item span {
    font-family: matterlight, sans-serif;
    color: var(--blue);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-top: 0.2rem;
}

.why-item h3 {
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.why-item p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Voices */
.voices {
    background: #e8ecf1;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.voice-card {
    background: #fff;
    padding: clamp(1.45rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 15.5rem;
    border-left: 3px solid var(--blue);
}

.voice-card p {
    font-family: matterlight, sans-serif;
    font-size: clamp(1.02rem, 1.5vw, 1.15rem);
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.voice-card footer {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.voice-card strong {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.voice-card span {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.82rem;
}

/* FAQ */
.faq {
    background: #f5f7fa;
    position: relative;
    z-index: 2;
    padding-bottom: clamp(4.5rem, 10vh, 7rem);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    padding: 0 1.25rem;
    border-radius: 0.35rem;
    position: relative;
    z-index: 1;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 0;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
    padding: 0 0 1.2rem;
    max-width: 38rem;
}

/* CTA band */
.cta-band {
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(21, 94, 239, 0.22), transparent 55%),
        #0d0d0d;
    color: #fff;
    padding: clamp(4.25rem, 10vh, 6.75rem) var(--space-x);
    text-align: center;
}

.cta-band .eyebrow {
    color: #9ec0ff;
}

.cta-band-inner {
    max-width: 40rem;
    margin: 0 auto;
}

.cta-band h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    font-weight: 700;
    margin: 0.55rem 0 1rem;
}

.cta-band p {
    font-family: matterlight, sans-serif;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.5;
}

.cta-band-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-band .text-link {
    color: rgba(255, 255, 255, 0.8);
}

.cta-band .text-link:hover {
    color: #fff;
}

/* ========== FOOTER — NEXA image style ========== */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 1.25rem clamp(1rem, 3vw, 2rem) 1.25rem;
}

.footer-frame {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.85rem 0.75rem;
}

.footer-rail {
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0 0.5rem;
}

.footer-rail-brand {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    font-family: matterlight, sans-serif;
    white-space: nowrap;
}

.footer-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-follow-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.footer-social a:hover {
    color: var(--blue-hot);
}

.footer-panel {
    position: relative;
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 2.4rem;
    overflow: hidden;
    min-height: 560px;
    background: #0d0d0d;
}

.footer-panel-inner {
    position: relative;
    z-index: 2;
    padding: clamp(1.6rem, 4vw, 2.75rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 1.25rem;
    min-height: 560px;
}

.footer-links-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 1.35rem;
    padding-bottom: 0.35rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 3;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.footer-col a[href="#faq"] {
    position: relative;
    z-index: 4;
    padding-bottom: 0.15rem;
}

.footer-watermark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(1);
}

.footer-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(120, 120, 120, 0.45);
    pointer-events: none;
}

.footer-cta-block {
    grid-column: 1;
    align-self: center;
}

.footer-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-hot);
    margin-bottom: 0.85rem;
}

.footer-cta-block h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-cta-block h2 span {
    color: var(--blue-hot);
}

.footer-lead {
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-btn-mint {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 0.95rem;
}

.footer-btn-mint:hover {
    background: var(--blue-hot);
}

.footer-btn-line {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.95rem;
}

.footer-btn-line:hover {
    background: #fff;
    color: #111;
}

.footer-glass {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 320px);
    padding: 1.2rem 1.25rem;
    border-radius: 1.35rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.footer-glass-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-glass > p:nth-child(2) {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1.1rem;
}

.footer-team {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-team span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b8dff, #155eef);
    border: 2px solid rgba(255, 255, 255, 0.35);
    margin-left: -8px;
}

.footer-team span:first-child {
    margin-left: 0;
}

.footer-team a {
    margin-left: 0.45rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    color: #fff;
}

.footer-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-hot);
    margin-bottom: 0.25rem;
}

.footer-col a,
.footer-col p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-brand-col {
    min-width: 0;
    overflow: visible;
}

.footer-brand-col .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 0;
    border-radius: 0.9rem;
    background: #000;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
    height: clamp(48px, 5vw, 64px);
    width: auto;
    max-width: min(240px, 100%);
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.footer-brand-col > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 16rem;
}

.footer-cta {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.55rem 0.55rem 0.55rem 0.95rem;
    border-radius: 999px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    z-index: 3;
}

.footer-cta .nexa-cta-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 0.25rem 0.35rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}

.footer-top {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-top:hover {
    color: var(--blue-hot);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-slide:not(.slide-nexa) {
        grid-template-columns: 1fr;
    }

    .hero-side {
        flex-direction: row;
        width: 100%;
    }

    .float-card,
    .what-card {
        flex: 1;
    }

    .nexa-content {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .nexa-what {
        grid-column: 1;
        width: 100%;
        justify-self: stretch;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .card-inner {
        grid-template-columns: 1fr;
        height: min(78vh, 620px);
    }

    .card-media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
        padding: 0.65rem 1rem 0.9rem;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-mid {
        padding: 2rem 0 0 0.15rem;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-strip {
        margin-top: 0.55rem;
    }

    .nav-pill {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        flex-direction: column;
        gap: 0;
        min-width: 180px;
        padding: 0.45rem;
        border-radius: 1rem;
        z-index: 10;
    }

    .nav-pill.open {
        display: flex;
    }

    .nav-pill a {
        border-radius: 0.7rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        display: grid;
    }

    .hero-mid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0.5rem 0;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-mid {
        padding: 1rem 0 0 0.15rem;
        align-items: start;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-slide.is-active {
        padding-left: 0.15rem;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-copy {
        padding-top: 1rem;
        padding-left: 0.15rem;
    }

    .hero-steps {
        flex-direction: row;
    }

    .hero-slide:not(.slide-nexa) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero:not(.is-nexa):not(.is-market) .hero-slide.is-active {
        align-items: start;
    }

    .market-desk {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: 0;
    }

    .market-banner,
    .market-updates,
    .market-row {
        grid-column: 1;
        grid-row: auto;
    }

    .market-banner {
        min-height: 260px;
    }

    .market-updates {
        max-height: 220px;
    }

    .market-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-side {
        flex-direction: column;
    }

    .hero-watermark {
        width: min(88vw, 520px);
        opacity: 0.06;
    }

    .nav-brand img {
        height: 44px;
        max-width: min(180px, 52vw);
    }

    .nexa-frame {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        min-height: auto;
        gap: 0.65rem;
    }

    .nexa-rail {
        grid-row: 1;
        flex-direction: row;
        justify-content: space-between;
        padding: 0.2rem 0;
    }

    .nexa-brand,
    .nexa-follow-label,
    .nexa-follow-text {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .nexa-follow-text {
        display: none;
    }

    .nexa-follow {
        flex-direction: row;
        gap: 0.65rem;
    }

    .nexa-social {
        flex-direction: row;
    }

    .nexa-panel {
        grid-column: 1;
        grid-row: 2;
        min-height: 72vh;
        border-radius: 1.6rem;
    }

    .nexa-nav {
        padding: 1rem 1rem 0.25rem;
    }

    .nexa-nav nav {
        display: none;
    }

    .nexa-content {
        padding: 1rem;
        min-height: 420px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }

    .nexa-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
    }

    .nexa-orb {
        grid-row: 3;
    }

    .nexa-what {
        grid-row: 2;
        align-self: end;
    }

    .nexa-cta {
        grid-column: 1;
        grid-row: 3;
        white-space: normal;
        font-size: 0.68rem;
    }

    .spin-badge {
        width: 90px;
        height: 90px;
    }

    .process-grid,
    .results-grid,
    .voices-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-grid,
    .why-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .work-panels {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .work-panel {
        flex: none !important;
        height: 170px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .work-panel:last-child {
        border-bottom: 0;
    }

    .work-panel.is-open {
        height: 340px;
    }

    .work-panel-foot strong {
        white-space: normal;
    }

    .work-panel-reveal h3 {
        font-size: 1.35rem;
    }

    .footer-panel-inner {
        grid-template-columns: 1fr;
    }

    .footer-glass {
        justify-self: stretch;
        width: 100%;
    }

    .footer-links-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .card {
        height: 100svh;
    }

    .card-inner {
        height: auto;
        max-height: 85svh;
        border-radius: 1.35rem;
    }

    .card-body {
        padding: 1.25rem 1.2rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .features,
    .results-grid,
    .voices-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 240px;
    }

    .hero-side {
        width: 100%;
    }

    .strip-item {
        width: 100px;
        height: 68px;
    }

    .strip-item.tall {
        height: 92px;
    }

    .footer-frame {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }

    .footer-rail {
        grid-row: 1;
        flex-direction: row;
        justify-content: space-between;
        padding: 0.25rem 0;
    }

    .footer-rail-brand,
    .footer-follow-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .footer-follow {
        flex-direction: row;
    }

    .footer-social {
        flex-direction: row;
    }

    .footer-panel {
        grid-column: 1;
        grid-row: 2;
        min-height: auto;
        border-radius: 1.6rem;
    }

    .footer-panel-inner {
        min-height: 0;
        padding: 1.35rem 1.2rem;
    }

    .footer-links-row {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        grid-column: 1;
        grid-row: 3;
        white-space: normal;
    }
}

/* ========== MULTI-PAGE LAYOUT ========== */
body.page-inner {
    background: var(--bg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem var(--space-x);
    background: rgba(243, 245, 248, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header .nav-brand img {
    height: 48px;
    width: auto;
    max-width: min(210px, 48vw);
    object-fit: contain;
    display: block;
    border-radius: 0.5rem;
    background: #000;
}

.site-header .nav-menu {
    display: none;
}

.page-hero {
    padding: clamp(3.5rem, 10vh, 6rem) var(--space-x) clamp(2.5rem, 6vh, 4rem);
    background:
        radial-gradient(ellipse 55% 60% at 85% 20%, rgba(21, 94, 239, 0.12), transparent 55%),
        var(--bg);
}

.page-hero .eyebrow {
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
    max-width: 16ch;
    margin-bottom: 1rem;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--blue);
}

.page-hero p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.15rem);
    line-height: 1.55;
    max-width: 36rem;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    align-items: center;
    margin-top: 1.5rem;
}

.site-footer {
    background: #0d0d0d;
    color: #fff;
    padding: clamp(2.5rem, 6vh, 3.5rem) var(--space-x) 1.5rem;
}

.sf-top {
    display: grid;
    grid-template-columns: 1.35fr 1.65fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sf-brand {
    min-width: 0;
}

.sf-logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 1rem;
}

.sf-logo-plate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 1.1rem;
    background: #000;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    line-height: 0;
}

.sf-logo-plate img {
    height: clamp(64px, 7vw, 88px);
    width: auto;
    max-width: min(300px, 82vw);
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.sf-brand > p {
    font-family: matterlight, sans-serif;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 28ch;
}

.sf-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.sf-cols h4 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ec0ff;
    margin-bottom: 0.85rem;
}

.sf-cols a,
.sf-cols p {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.35rem;
}

.sf-cols a:hover {
    color: #fff;
}

.sf-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.sf-social {
    display: flex;
    gap: 0.55rem;
}

.sf-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sf-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

@media (max-width: 900px) {
    .sf-top {
        grid-template-columns: 1fr;
    }

    .sf-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .sf-cols {
        grid-template-columns: 1fr;
    }
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ec0ff;
    margin-bottom: 0.85rem;
}

.site-footer a,
.site-footer p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer-brand img {
    height: 48px;
    width: auto;
    background: #fff;
    padding: 0.4rem 0.55rem;
    border-radius: 0.7rem;
    margin-bottom: 0.85rem;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 100%;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 14, 18, 0.08);
}

.blog-card-media {
    aspect-ratio: 16 / 10;
    background: #111;
    overflow: hidden;
}

.blog-card-media video,
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1.25rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.blog-card-body .tag {
    font-family: matterlight, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
}

.blog-card-body h3 {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    font-weight: 700;
}

.blog-card-body p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    flex: 1;
}

.blog-card-body span {
    font-size: 0.78rem;
    color: #9aa3ad;
    margin-top: 0.35rem;
}

/* Contact form */
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.contact-detail span {
    display: block;
    font-family: matterlight, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.contact-detail a,
.contact-detail p {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem);
    display: grid;
    gap: 0.95rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font: inherit;
    color: var(--ink);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(21, 94, 239, 0.45);
    box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.12);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    justify-self: start;
    margin-top: 0.25rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
}

.service-block span {
    display: block;
    color: var(--blue);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
}

.service-block h3 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.service-block p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-block ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.service-block li {
    font-size: 0.9rem;
    color: #3a4250;
    padding-left: 1rem;
    position: relative;
}

.service-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

@media (max-width: 900px) {
    .site-footer-grid,
    .blog-grid,
    .contact-layout,
    .service-list,
    .ip-hero,
    .ip-story-grid,
    .ip-service-row,
    .ip-blog-featured {
        grid-template-columns: 1fr;
    }

    .site-header .nav-pill {
        display: none;
        position: absolute;
        top: calc(100% + 0.4rem);
        right: var(--space-x);
        flex-direction: column;
        min-width: 180px;
        padding: 0.45rem;
        border-radius: 1rem;
        z-index: 20;
    }

    .site-header .nav-pill.open {
        display: flex;
    }

    .site-header .nav-cta {
        display: none;
    }

    .site-header .nav-menu {
        display: grid;
    }

    .ip-hero-media {
        order: -1;
        max-width: 100%;
    }

    .ip-hero-media.tall {
        max-height: 360px;
    }

    .ip-service-media {
        min-height: 200px;
    }

    .ip-story-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== INNER PAGES — creative layouts (home untouched) ========== */
.ip-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(3rem, 8vh, 5rem) var(--space-x) clamp(2.5rem, 6vh, 4rem);
    background:
        radial-gradient(ellipse 50% 55% at 90% 30%, rgba(21, 94, 239, 0.14), transparent 58%),
        var(--bg);
}

.ip-hero-dark {
    background:
        radial-gradient(ellipse 50% 55% at 80% 25%, rgba(21, 94, 239, 0.28), transparent 55%),
        #0f1218;
    color: #fff;
}

.ip-hero-dark .eyebrow {
    color: #9ec0ff;
}

.ip-hero-dark p {
    color: rgba(255, 255, 255, 0.68);
}

.ip-hero-dark .text-link {
    color: rgba(255, 255, 255, 0.8);
}

.ip-hero-copy h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin: 0.75rem 0 1rem;
    max-width: 14ch;
}

.ip-hero-copy h1 em {
    font-style: normal;
    color: var(--blue);
}

.ip-hero-copy > p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.4vw, 1.12rem);
    line-height: 1.55;
    max-width: 32rem;
}

.ip-hero-media {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    min-height: min(52vh, 420px);
    background: #111;
    box-shadow: 0 24px 50px rgba(12, 40, 90, 0.12);
}

.ip-hero-media.tall {
    min-height: min(62vh, 520px);
    max-width: 380px;
    justify-self: end;
    aspect-ratio: 3 / 4;
}

.ip-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ip-hero-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: #fff;
    color: #111;
    padding: 0.75rem 0.95rem;
    border-radius: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.ip-hero-chip strong {
    font-size: 0.95rem;
    color: var(--blue);
}

.ip-hero-chip span {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.ip-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.ip-contact-quick a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: var(--ink);
}

.ip-contact-quick i {
    color: var(--blue);
    font-size: 1.15rem;
}

.ip-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.ip-story-copy h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ip-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.ip-story-stats article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    padding: 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ip-story-stats strong {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
}

.ip-story-stats span {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 0.88rem;
}

.ip-services {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1rem;
}

.ip-service-row {
    display: grid;
    grid-template-columns: 4rem 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    padding: 1.25rem;
    overflow: hidden;
}

.ip-service-num {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--blue);
    font-weight: 700;
}

.ip-service-body h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.45rem;
}

.ip-service-body > p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.ip-service-body ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
}

.ip-service-body li {
    font-size: 0.88rem;
    padding-left: 0.9rem;
    position: relative;
    color: #3a4250;
}

.ip-service-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.ip-service-media {
    border-radius: 1.1rem;
    overflow: hidden;
    min-height: 180px;
    background: #111;
}

.ip-service-media video {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.ip-blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #0d0d0d;
    color: #fff;
    min-height: 320px;
}

.ip-blog-featured video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.ip-blog-featured-body {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
}

.ip-blog-featured-body .tag {
    color: #9ec0ff;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ip-blog-featured-body h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ip-blog-featured-body p {
    font-family: matterlight, sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.ip-blog-featured-body span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.page-inner .work.section {
    padding-top: 1rem;
}

/* ========== ABOUT PAGE — unique animated layout (home untouched) ========== */
.page-about {
    overflow-x: clip;
}

.ab-cascade {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 6rem var(--space-x) 4rem;
    overflow: hidden;
    color: #fff;
}

.ab-cascade-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ab-cascade-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-cascade-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 14, 18, 0.55) 0%, rgba(12, 14, 18, 0.72) 45%, rgba(12, 14, 18, 0.88) 100%),
        radial-gradient(ellipse 70% 50% at 70% 30%, rgba(21, 94, 239, 0.35), transparent 60%);
}

.ab-cascade-words {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15em;
    max-width: min(920px, 100%);
    width: 100%;
    perspective: 800px;
}

.ab-word {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    will-change: transform, opacity;
}

.ab-word-accent {
    color: var(--blue-hot);
    font-family: gallerym, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.ab-word-line {
    font-size: clamp(1.85rem, 5.2vw, 3.4rem);
    margin-top: 0.35em;
    max-width: 18ch;
    color: rgba(255, 255, 255, 0.92);
    white-space: normal;
}

.ab-cascade-sub {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    font-family: matterlight, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.ab-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-family: matterlight, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: ab-bounce 2.2s ease-in-out infinite;
}

.ab-scroll-hint i {
    font-size: 1.1rem;
}

@keyframes ab-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.ab-manifesto {
    background: var(--ink);
    color: #fff;
}

.ab-manifesto-pin {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.ab-manifesto-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
}

.ab-m-panel {
    width: 85vw;
    max-width: 720px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem clamp(1.5rem, 5vw, 4rem);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(21, 94, 239, 0.18), transparent 55%),
        #0c0e12;
}

.ab-m-panel.ab-m-dark {
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(47, 123, 255, 0.2), transparent 50%),
        #11141a;
}

.ab-m-panel.ab-m-blue {
    background: linear-gradient(145deg, #155eef 0%, #0c2d8a 100%);
}

.ab-m-num {
    font-family: matterlight, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.ab-m-panel h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    max-width: 12ch;
}

.ab-m-panel p:last-child {
    font-family: matterlight, sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36ch;
}

.ab-origin {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: min(88vh, 820px);
    background: var(--bg);
}

.ab-origin-media {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.ab-origin-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.08;
}

.ab-origin-stamp {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-family: matterlight, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
}

.ab-origin-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem) var(--space-x) clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.ab-origin-copy h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0.65rem 0 1.15rem;
}

.ab-origin-copy > p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    line-height: 1.6;
    max-width: 42ch;
    margin-bottom: 1.5rem;
}

.ab-origin-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ab-origin-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: matterregular, sans-serif;
    font-size: 0.98rem;
}

.ab-origin-list i {
    color: var(--blue);
    font-size: 1.15rem;
}

.ab-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.ab-stat {
    background: var(--surface);
    padding: clamp(2rem, 5vh, 3.25rem) var(--space-x);
    text-align: center;
}

.ab-stat-num {
    display: block;
    font-family: matterregular, sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.55rem;
}

.ab-stat-label {
    font-family: matterlight, sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
}

.ab-journey {
    padding: var(--space-section) var(--space-x);
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(21, 94, 239, 0.08), transparent 55%),
        var(--bg);
}

.ab-journey-head {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.ab-journey-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.ab-journey-rail {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-left: 2rem;
}

.ab-rail-line {
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: rgba(12, 14, 18, 0.1);
    transform-origin: top;
}

.ab-rail-fill {
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--blue);
    transform-origin: top;
    scale: 1 0;
}

.ab-j-step {
    position: relative;
    display: block;
}

.ab-j-dot {
    position: absolute;
    left: -1.72rem;
    top: 1.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.2);
    z-index: 1;
}

.ab-j-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.ab-j-card:hover {
    border-color: rgba(21, 94, 239, 0.35);
    transform: translateX(6px);
}

.ab-j-card h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.ab-j-card p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

.ab-beliefs {
    padding: var(--space-section) var(--space-x);
    background: var(--ink);
    color: #fff;
}

.ab-beliefs .eyebrow {
    color: var(--blue-hot);
}

.ab-beliefs-title {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    margin: 0.5rem 0 2.5rem;
}

.ab-belief-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ab-belief {
    position: relative;
    min-height: 220px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.ab-belief::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.ab-belief:hover::before {
    transform: scaleX(1);
}

.ab-belief span {
    font-family: matterlight, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
}

.ab-belief h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.35rem;
    margin: 1.5rem 0 0.65rem;
    letter-spacing: -0.02em;
}

.ab-belief p {
    font-family: matterlight, sans-serif;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
    font-size: 0.95rem;
}

.ab-presence {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: min(72vh, 680px);
    background: var(--bg-soft);
}

.ab-presence-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--space-x);
}

.ab-presence-copy h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 0.55rem 0 1rem;
}

.ab-office-address {
    font-family: matterregular, sans-serif;
    font-style: normal;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 0.85rem;
    padding-left: 0.9rem;
    border-left: 3px solid var(--blue);
}

.ab-presence-copy > p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    max-width: 36ch;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.ab-presence-map {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #dce4f0;
    isolation: isolate;
}

.ab-map-frame {
    position: absolute;
    inset: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 0;
    pointer-events: none;
    filter: grayscale(0.15) contrast(1.05);
}

.ab-map-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 45%, rgba(12, 14, 18, 0.45) 100%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(21, 94, 239, 0.12), transparent 60%);
    pointer-events: none;
    transition: background 0.35s var(--ease);
}

.ab-presence-map:hover .ab-map-shade {
    background:
        linear-gradient(180deg, transparent 35%, rgba(12, 14, 18, 0.55) 100%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(21, 94, 239, 0.22), transparent 60%);
}

.ab-map-card {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 14, 18, 0.06);
    box-shadow: 0 16px 40px rgba(12, 14, 18, 0.18);
    transition: transform 0.35s var(--ease);
}

.ab-presence-map:hover .ab-map-card {
    transform: translateY(-4px);
}

.ab-map-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(21, 94, 239, 0.2);
    flex-shrink: 0;
    animation: ab-pulse-ring 2.4s ease-out infinite;
}

.ab-map-card strong {
    display: block;
    font-family: matterregular, sans-serif;
    font-size: 0.98rem;
    color: var(--ink);
}

.ab-map-card span {
    display: block;
    font-family: matterlight, sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.ab-map-card i {
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--blue);
    flex-shrink: 0;
}

@keyframes ab-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(21, 94, 239, 0.5); }
    70% { box-shadow: 0 0 0 22px rgba(21, 94, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 94, 239, 0); }
}

.ab-close {
    position: relative;
    min-height: min(72vh, 680px);
    display: grid;
    place-items: center;
    padding: 4rem var(--space-x);
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.ab-close-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ab-close-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 14, 18, 0.65), rgba(12, 14, 18, 0.82));
}

.ab-close-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.ab-close-inner h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.text-link-light {
    color: rgba(255, 255, 255, 0.85);
}

.text-link-light:hover {
    color: #fff;
}

.ab-close .page-actions {
    justify-content: center;
}

@media (max-width: 980px) {
    .ab-origin {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ab-origin-media {
        min-height: 42vh;
        clip-path: none;
    }

    .ab-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ab-belief-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ab-presence {
        grid-template-columns: 1fr;
    }

    .ab-presence-map {
        min-height: 320px;
    }

    .ab-m-panel {
        width: 88vw;
    }
}

@media (max-width: 640px) {
    .ab-stats {
        grid-template-columns: 1fr;
    }

    .ab-belief-grid {
        grid-template-columns: 1fr;
    }

    .ab-manifesto-pin {
        height: auto;
        overflow: visible;
    }

    .ab-manifesto-track {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .ab-m-panel {
        width: 100%;
        max-width: none;
        min-height: 70vh;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* ========== SERVICES PAGE — semicircle orbit (unique) ========== */
.page-services {
    overflow-x: clip;
}

.sv-intro {
    padding: clamp(3rem, 8vh, 5rem) var(--space-x) 1.5rem;
    background:
        radial-gradient(ellipse 55% 50% at 80% 0%, rgba(21, 94, 239, 0.14), transparent 55%),
        var(--bg);
    text-align: center;
}

.sv-intro-title {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0.55rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
}

.sv-intro-accent {
    color: var(--blue);
    font-family: gallerym, serif;
    font-style: italic;
    font-weight: 400;
}

.sv-intro-sub {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    font-size: 1.05rem;
}

.sv-orbit-section {
    padding: 0.5rem var(--space-x) 2.5rem;
    background: var(--bg);
}

.sv-pick-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto 0.85rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(21, 94, 239, 0.08);
    color: var(--blue);
    font-family: matterregular, sans-serif;
    font-size: 0.82rem;
    width: fit-content;
}

.sv-orbit-section > .sv-pick-hint {
    display: flex;
    width: fit-content;
}

.sv-pick-hint-soft {
    background: transparent;
    color: var(--muted);
    padding: 0;
    margin-bottom: 0.85rem;
}

.sv-pick-hint i {
    font-size: 1.05rem;
}

.sv-orbit-stage {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: minmax(280px, 42vh) auto;
    gap: 1.25rem;
}

.sv-orbit-stage-flip .sv-orbit {
    order: 1;
}

.sv-orbit-stage-flip .sv-detail {
    order: 2;
    border-top: 1px solid var(--line);
    padding-top: 1.75rem;
    min-height: auto;
}

.sv-orbit-controls {
    bottom: 0.5rem;
}

.sv-detail {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0.5rem 0 1rem;
    min-height: auto;
}

.sv-detail-label {
    font-family: matterregular, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.55rem;
}

.sv-detail h2 {
    font-family: matterregular, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.7rem;
}

.sv-detail > p#sv-desc {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.6;
    margin-bottom: 1.35rem;
    max-width: 54ch;
    margin-inline: auto;
}

.sv-included-label {
    font-family: matterregular, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.sv-included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.25rem;
    text-align: left;
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.sv-included-list li {
    position: relative;
    padding-left: 1.2rem;
    font-family: matterregular, sans-serif;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #1a1f28;
}

.sv-included-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.sv-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

.sv-hi {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: var(--surface);
}

.sv-hi strong {
    display: block;
    font-family: matterregular, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.sv-hi span {
    font-family: matterregular, sans-serif;
    font-size: 0.88rem;
    color: #4a5563;
    line-height: 1.45;
}

.sv-detail .btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sv-node {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
}

.sv-node-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 78px;
    height: 96px;
    padding: 0.65rem 0.4rem;
    border-radius: 1.1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(12, 14, 18, 0.08);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sv-node-card i {
    font-size: 1.35rem;
    color: var(--blue);
}

.sv-node-card em {
    font-family: matterregular, sans-serif;
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.15;
    opacity: 0.75;
}

.sv-node.is-active {
    z-index: 5;
}

.sv-node.is-active .sv-node-card {
    width: 88px;
    height: 108px;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 16px 40px rgba(21, 94, 239, 0.35);
}

.sv-node.is-active .sv-node-card i,
.sv-node.is-active .sv-node-card em {
    color: #fff;
    opacity: 1;
}

.sv-catalog {
    padding: var(--space-section) var(--space-x);
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.sv-catalog-head {
    max-width: 640px;
    margin-bottom: 2.25rem;
}

.sv-catalog-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    letter-spacing: -0.03em;
    margin: 0.45rem 0 0.65rem;
}

.sv-catalog-head > p:last-child {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    line-height: 1.5;
}

.sv-catalog-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 920px;
}

.sv-cat-item {
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
}

.sv-cat-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.sv-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.85rem;
    background: rgba(21, 94, 239, 0.1);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.sv-cat-item h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.sv-cat-item .sv-cat-top p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    line-height: 1.55;
    font-size: 1rem;
}

.sv-cat-item .sv-included-list {
    margin-bottom: 0;
    max-width: none;
}

.sv-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: visible;
}

.sv-arc {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sv-arc svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sv-arc-track {
    stroke: rgba(12, 14, 18, 0.1);
    stroke-width: 2;
}

.sv-arc-glow {
    stroke: url(#none);
    stroke: var(--blue);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 180 1200;
    opacity: 0.55;
    animation: sv-arc-dash 6s linear infinite;
}

@keyframes sv-arc-dash {
    to { stroke-dashoffset: -1380; }
}

.sv-nodes {
    position: absolute;
    inset: 0;
}

.sv-orbit-controls {
    position: absolute;
    left: 50%;
    bottom: 0.25rem;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 0.65rem;
}

.sv-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.sv-nav-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.sv-chips {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
}

.sv-chip {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-family: matterregular, sans-serif;
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.sv-chip.is-active,
.sv-chip:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.sv-strip {
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 1rem 0;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-strip-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: sv-marquee 28s linear infinite;
    font-family: matterlight, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.sv-strip-track span:nth-child(odd) {
    color: var(--blue-hot);
}

@keyframes sv-marquee {
    to { transform: translateX(-50%); }
}

.sv-engage {
    padding: var(--space-section) var(--space-x);
    background: var(--bg-soft);
}

.sv-engage h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    margin: 0.45rem 0 2rem;
    max-width: 16ch;
}

.sv-engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sv-engage article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
}

.sv-engage article span {
    font-family: matterlight, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--blue);
}

.sv-engage article h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.25rem;
    margin: 0.75rem 0 0.5rem;
}

.sv-engage article p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.sv-cta {
    padding: clamp(3.5rem, 8vh, 5.5rem) var(--space-x);
    text-align: center;
    background:
        radial-gradient(ellipse 50% 60% at 50% 100%, rgba(21, 94, 239, 0.12), transparent 60%),
        var(--bg);
}

.sv-cta h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.9rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.sv-cta p {
    font-family: matterlight, sans-serif;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.sv-cta .page-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    .sv-orbit-stage,
    .sv-orbit-stage-flip {
        grid-template-rows: minmax(240px, 36vh) auto;
    }

    .sv-detail ul,
    .sv-included-list {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .sv-highlights {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .sv-engage-grid {
        grid-template-columns: 1fr;
    }

    .sv-node-card em {
        font-size: 0.55rem;
    }

    .sv-chips {
        display: flex;
    }
}

@media (max-width: 640px) {
    .sv-orbit {
        min-height: 260px;
    }

    .sv-detail {
        min-height: auto;
    }

    .sv-node-card {
        width: 62px;
        height: 78px;
    }

    .sv-node.is-active .sv-node-card {
        width: 70px;
        height: 88px;
    }

    .sv-orbit-stage {
        grid-template-rows: minmax(220px, 34vh) auto;
    }
}

/* ========== PORTFOLIO — sectioned work (graphics / leads / accounts / video / ugc / web) ========== */
.page-portfolio { overflow-x: clip; }

.pf-hero {
    padding: clamp(3rem, 9vh, 5.5rem) var(--space-x) 2.5rem;
    text-align: center;
    background:
        radial-gradient(ellipse 55% 40% at 50% 0%, rgba(21, 94, 239, 0.12), transparent 60%),
        var(--bg);
}

.pf-hero h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.5rem, 6.5vw, 4.6rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin: 0.45rem 0 0.85rem;
}

.pf-hero h1 em {
    font-family: gallerym, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

.pf-hero-sub {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    max-width: 46ch;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.pf-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
}

.pf-jump a {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-family: matterregular, sans-serif;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pf-jump a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.pf-block {
    padding: clamp(3rem, 7vh, 5rem) var(--space-x);
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.pf-block-alt { background: var(--bg-soft); }

.pf-block-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    max-width: 820px;
    margin-bottom: 2rem;
}

.pf-num {
    font-family: matterregular, sans-serif;
    font-size: 1rem;
    color: var(--blue);
    letter-spacing: 0.04em;
    padding-top: 0.35rem;
}

.pf-block-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    letter-spacing: -0.035em;
    margin: 0.25rem 0 0.65rem;
}

.pf-block-head p:last-child {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    line-height: 1.55;
    max-width: 48ch;
}

.pf-media-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pf-media-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pf-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pf-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.pf-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
}

.pf-carousel-track .pf-shot {
    flex: 0 0 auto;
    min-width: 0;
}

.pf-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s;
}

.pf-carousel-btn i { font-size: 1.35rem; line-height: 1; }

.pf-carousel-btn:hover:not(:disabled) {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.pf-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.pf-shot {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pf-shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 14, 18, 0.08);
}

.pf-shot img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #f2f4f8;
}

.pf-shot figcaption {
    font-family: matterregular, sans-serif;
    font-size: 0.9rem;
    padding: 0.85rem 1rem 1rem;
    color: #1a1f28;
}

.pf-includes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 900px;
}

.pf-includes li {
    font-family: matterregular, sans-serif;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: #1a1f28;
}

.pf-block-alt .pf-includes li { background: #fff; }

.pf-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pf-data-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
}

.pf-data-wide { grid-column: 1 / -1; }

.pf-data-chart {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: center;
}

.pf-data-chart img {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid var(--line);
    display: block;
    background: #f7f8fb;
}

.pf-data-label {
    font-family: matterregular, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.45rem;
}

.pf-data-card strong {
    display: block;
    font-family: matterregular, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pf-data-card > span,
.pf-chart-copy p:last-child {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pf-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 48px;
    margin-top: 1rem;
}

.pf-bars i {
    flex: 1;
    display: block;
    border-radius: 4px 4px 0 0;
    background: rgba(21, 94, 239, 0.25);
    height: 40%;
}

.pf-bars i:nth-child(2) { height: 55%; }
.pf-bars i:nth-child(3) { height: 48%; }
.pf-bars i:nth-child(4) { height: 70%; background: rgba(21, 94, 239, 0.55); }
.pf-bars i:nth-child(5) { height: 88%; background: var(--blue); }

.pf-bars-up i:nth-child(1) { height: 30%; }
.pf-bars-up i:nth-child(2) { height: 45%; }
.pf-bars-up i:nth-child(3) { height: 60%; }
.pf-bars-up i:nth-child(4) { height: 75%; }
.pf-bars-up i:nth-child(5) { height: 95%; background: var(--blue); }

.pf-account-layout {
    display: grid;
    gap: 1.25rem;
}

.pf-dash-frame {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.pf-dash-frame img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
    background: #f2f4f8;
}

.pf-account-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pf-account-row article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.25rem;
}

.pf-account-row i {
    font-size: 1.6rem;
    color: var(--blue);
}

.pf-account-row h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.2rem;
    margin: 0.7rem 0 0.4rem;
}

.pf-account-row article > p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.pf-account-row ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pf-account-row li {
    position: relative;
    padding-left: 1rem;
    font-family: matterregular, sans-serif;
    font-size: 0.88rem;
    color: #1a1f28;
}

.pf-account-row li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.pf-video-stage {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pf-video-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    min-height: 320px;
    border: 1px solid var(--line);
}

.pf-video-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.pf-video-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pf-video-thumb {
    position: relative;
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 100px;
    border: 1px solid var(--line);
    background: #111;
}

.pf-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-video-thumb span {
    position: absolute;
    left: 0.65rem;
    bottom: 0.55rem;
    color: #fff;
    font-family: matterregular, sans-serif;
    font-size: 0.78rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.pf-ugc {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pf-ugc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.pf-ugc-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 9 / 12;
    background: #111;
}

.pf-ugc-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-ugc-card span {
    position: absolute;
    left: 0.55rem;
    bottom: 0.55rem;
    color: #fff;
    font-family: matterregular, sans-serif;
    font-size: 0.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.pf-phone {
    width: min(240px, 55vw);
    padding: 0.55rem;
    border-radius: 2rem;
    background: #0c0e12;
    box-shadow: 0 24px 60px rgba(12, 14, 18, 0.22);
    justify-self: center;
}

.pf-phone-screen {
    border-radius: 1.55rem;
    overflow: hidden;
    aspect-ratio: 9 / 17;
    background: #111;
}

.pf-phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-web-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pf-web-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pf-web-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(12, 14, 18, 0.1);
}

.pf-browser {
    display: flex;
    gap: 0.35rem;
    padding: 0.65rem 0.85rem;
    background: #eef1f6;
    border-bottom: 1px solid var(--line);
}

.pf-browser span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5ccd8;
}

.pf-web-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
    display: block;
    background: #f2f4f8;
}

.pf-web-card > div { padding: 1.1rem 1.15rem 1.25rem; }

.pf-web-card h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.pf-web-card p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.9rem;
}

.pf-cta {
    padding: clamp(3.5rem, 8vh, 5.5rem) var(--space-x);
    text-align: center;
    background:
        radial-gradient(ellipse 50% 55% at 50% 100%, rgba(21, 94, 239, 0.12), transparent 60%),
        var(--bg);
}

.pf-cta h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    max-width: 18ch;
    margin-inline: auto;
}

.pf-cta p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    margin-bottom: 1.5rem;
}

.pf-cta .page-actions { justify-content: center; }

@media (max-width: 980px) {
    .pf-media-grid-3,
    .pf-data-grid,
    .pf-account-row,
    .pf-web-grid,
    .pf-video-stage,
    .pf-ugc,
    .pf-data-chart {
        grid-template-columns: 1fr;
    }

    .pf-ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-block-head {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .pf-phone {
        width: min(220px, 60vw);
    }
}

@media (max-width: 640px) {
    .pf-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 560px) {
    .pf-ugc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   BLOG PAGE
   ========================================================= */
.page-blog { overflow-x: clip; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bl-hero {
    padding: clamp(3rem, 9vh, 5.5rem) var(--space-x) 2rem;
    text-align: center;
    background:
        radial-gradient(ellipse 55% 40% at 50% 0%, rgba(21, 94, 239, 0.12), transparent 60%),
        var(--bg);
}

.bl-hero h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.5rem, 6.5vw, 4.6rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin: 0.45rem 0 0.85rem;
}

.bl-hero h1 em {
    font-family: gallerym, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

.bl-hero-sub {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    max-width: 48ch;
    margin: 0 auto;
    line-height: 1.55;
}

.bl-featured {
    padding: 0 var(--space-x) 2rem;
}

.bl-featured-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.bl-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(12, 14, 18, 0.1);
}

.bl-featured-media {
    min-height: 280px;
    background: #eef1f6;
}

.bl-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bl-featured-body {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bl-featured-body h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0.75rem 0 0.85rem;
}

.bl-featured-body > p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.bl-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bl-tag {
    display: inline-block;
    font-family: matterregular, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
}

.bl-tag-soft {
    background: rgba(21, 94, 239, 0.1);
    color: var(--blue);
}

.bl-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-family: matterregular, sans-serif;
    font-size: 0.85rem;
    color: #6b7380;
}

.bl-feed {
    padding: clamp(2rem, 5vh, 3.5rem) var(--space-x) clamp(3rem, 7vh, 5rem);
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
}

.bl-feed-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.bl-feed-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.bl-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bl-filters button {
    font-family: matterregular, sans-serif;
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.bl-filters button:hover,
.bl-filters button.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.bl-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 1;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.3s;
}

.bl-card.is-hidden {
    display: none;
}

.bl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 14, 18, 0.08);
}

.bl-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.bl-card-media {
    aspect-ratio: 16 / 10;
    background: #eef1f6;
    overflow: hidden;
}

.bl-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.bl-card:hover .bl-card-media img {
    transform: scale(1.04);
}

.bl-card-body {
    padding: 1.15rem 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.bl-card-body h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bl-card-body > p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
}

.bl-newsletter {
    padding: clamp(3rem, 7vh, 4.5rem) var(--space-x);
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.bl-newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.bl-newsletter-inner h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0.7rem;
}

.bl-newsletter-inner > p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    margin-bottom: 1.35rem;
    line-height: 1.5;
}

.bl-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.bl-newsletter-form input {
    flex: 1 1 240px;
    max-width: 360px;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-family: matterregular, sans-serif;
    font-size: 0.95rem;
    background: #fff;
    color: var(--ink);
}

.bl-newsletter-form input:focus {
    outline: none;
    border-color: var(--blue);
}

.bl-cta {
    padding: clamp(3.5rem, 8vh, 5.5rem) var(--space-x);
    text-align: center;
    background:
        radial-gradient(ellipse 50% 55% at 50% 100%, rgba(21, 94, 239, 0.12), transparent 60%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
}

.bl-cta h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.bl-cta p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    margin-bottom: 1.5rem;
}

.bl-cta .page-actions { justify-content: center; }

@media (max-width: 980px) {
    .bl-featured-card {
        grid-template-columns: 1fr;
    }

    .bl-featured-media {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .bl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bl-grid {
        grid-template-columns: 1fr;
    }

    .bl-newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .bl-newsletter-form input {
        max-width: none;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.page-contact { overflow-x: clip; }

.ct-stage {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    padding: clamp(2.75rem, 8vh, 5rem) var(--space-x) clamp(3rem, 7vh, 4.5rem);
    background:
        radial-gradient(ellipse 45% 50% at 0% 0%, rgba(21, 94, 239, 0.14), transparent 55%),
        radial-gradient(ellipse 40% 45% at 100% 20%, rgba(21, 94, 239, 0.08), transparent 50%),
        var(--bg);
}

.ct-stage-copy {
    position: sticky;
    top: 6.5rem;
    padding-top: 0.35rem;
}

.ct-stage-copy h1 {
    font-family: matterregular, sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0.5rem 0 1rem;
}

.ct-stage-copy h1 em {
    font-family: gallerym, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

.ct-stage-sub {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    max-width: 38ch;
    line-height: 1.55;
    margin-bottom: 1.35rem;
}

.ct-promises {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.ct-promises li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(21, 94, 239, 0.08);
    color: #1a1f28;
    font-family: matterregular, sans-serif;
    font-size: 0.82rem;
}

.ct-promises i { color: var(--blue); font-size: 1rem; }

.ct-channels {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.ct-channel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.05rem;
    border-radius: 1.1rem;
    border: 1px solid var(--line);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ct-channel:hover {
    transform: translateY(-2px);
    border-color: rgba(21, 94, 239, 0.35);
    box-shadow: 0 14px 36px rgba(12, 14, 18, 0.08);
}

.ct-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(21, 94, 239, 0.1);
    color: var(--blue);
    font-size: 1.2rem;
}

.ct-channel-wa .ct-channel-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
}

.ct-channel strong {
    display: block;
    font-family: matterregular, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7380;
    margin-bottom: 0.15rem;
}

.ct-channel em {
    font-family: matterregular, sans-serif;
    font-style: normal;
    font-size: 1.02rem;
    color: var(--ink);
}

.ct-channel > i {
    color: #9aa3b2;
    font-size: 1.15rem;
}

.ct-office {
    padding: 1.15rem 1.2rem;
    border-radius: 1.1rem;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, #0c1220 0%, #152238 100%);
    color: #fff;
}

.ct-office-label {
    font-family: matterregular, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.45rem;
}

.ct-office > p {
    font-family: matterregular, sans-serif;
    line-height: 1.5;
    font-size: 0.98rem;
}

.ct-office-hours {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem !important;
}

.ct-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.9rem;
    color: #8eb6ff;
    text-decoration: none;
    font-family: matterregular, sans-serif;
    font-size: 0.9rem;
}

.ct-map-link:hover { color: #fff; }

.ct-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 0.35rem);
    padding: clamp(1.5rem, 3.5vw, 2.35rem);
    box-shadow: 0 24px 60px rgba(12, 14, 18, 0.07);
}

.ct-form {
    display: grid;
    gap: 1rem;
}

.ct-form-head {
    margin-bottom: 0.35rem;
}

.ct-form-head h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    letter-spacing: -0.03em;
    margin: 0.35rem 0 0.45rem;
}

.ct-form-head > p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.95rem;
    line-height: 1.45;
}

.ct-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ct-form label > span {
    font-family: matterregular, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7380;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
    padding: 0.95rem 1.05rem;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
    font-family: matterregular, sans-serif;
    font-size: 0.98rem;
    background: var(--bg-soft);
    color: var(--ink);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

.ct-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ct-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
}

.ct-form-note {
    font-family: matterregular, sans-serif;
    font-size: 0.88rem;
    color: #6b7380;
    text-align: center;
}

.ct-form-note a {
    color: var(--blue);
    text-decoration: none;
}

.ct-form-note a:hover { text-decoration: underline; }

.ct-map-band {
    padding: 0 var(--space-x) clamp(3rem, 7vh, 4.5rem);
}

.ct-map-frame {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #eef1f6;
    box-shadow: 0 16px 40px rgba(12, 14, 18, 0.06);
}

.ct-map-frame iframe {
    display: block;
    width: 100%;
    height: min(360px, 50vh);
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}

@media (max-width: 980px) {
    .ct-stage {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ct-stage-copy {
        position: static;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }
}

.ct-steps {
    padding: clamp(3rem, 7vh, 4.5rem) var(--space-x);
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.ct-steps-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ct-steps-inner h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    letter-spacing: -0.03em;
    margin: 0.4rem 0 1.75rem;
}

.ct-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ct-steps-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.2rem;
}

.ct-steps-grid span {
    display: block;
    font-family: matterregular, sans-serif;
    color: var(--blue);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.ct-steps-grid h3 {
    font-family: matterregular, sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.ct-steps-grid p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.92rem;
    line-height: 1.5;
}

.ct-social-band {
    padding: clamp(2.75rem, 6vh, 4rem) var(--space-x);
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.ct-social-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: center;
}

.ct-social-inner h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: -0.03em;
    margin: 0.35rem 0 0.55rem;
}

.ct-social-inner > div > p:last-child {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    line-height: 1.5;
}

.ct-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ct-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    font-family: matterregular, sans-serif;
    font-size: 0.88rem;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.ct-social-links a i { color: var(--blue); }

.ct-social-links a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.ct-social-links a:hover i { color: #fff; }

.ct-faq {
    padding: clamp(2.75rem, 6vh, 4rem) var(--space-x);
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.ct-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
}

.ct-faq-inner h2 {
    font-family: matterregular, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: -0.03em;
    margin-top: 0.35rem;
}

.ct-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ct-faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
}

.ct-faq-list summary {
    font-family: matterregular, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
}

.ct-faq-list summary::-webkit-details-marker { display: none; }

.ct-faq-list details p {
    font-family: matterregular, sans-serif;
    color: #3d4654;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-top: 0.7rem;
}

@media (max-width: 980px) {
    .ct-steps-grid,
    .ct-social-inner,
    .ct-faq-inner {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   WHATSAPP FLOAT — sitewide side widget
   ========================================================= */
.wa-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.35rem;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    font-family: matterregular, sans-serif;
}

.wa-float-panel {
    width: min(300px, calc(100vw - 2.5rem));
    background: #fff;
    border: 1px solid rgba(12, 14, 18, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 18px 50px rgba(12, 14, 18, 0.16);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.wa-float.is-open .wa-float-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-float-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    background: #128c7e;
    color: #fff;
}

.wa-float-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.wa-float-head strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.2;
}

.wa-float-head span {
    display: block;
    font-size: 0.78rem;
    opacity: 0.85;
    margin-top: 0.15rem;
}

.wa-float-body {
    padding: 1rem;
    background: #f4f7f5;
}

.wa-float-bubble {
    background: #fff;
    border-radius: 0.85rem 0.85rem 0.85rem 0.25rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #1a1f28;
    box-shadow: 0 4px 14px rgba(12, 14, 18, 0.06);
    margin-bottom: 0.85rem;
}

.wa-float-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.25s ease;
}

.wa-float-cta:hover {
    background: #1ebe57;
    transform: translateY(-1px);
}

.wa-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    position: relative;
    transition: transform 0.25s ease, background 0.25s ease;
}

.wa-float-btn i {
    font-size: 1.75rem;
    line-height: 1;
}

.wa-float-btn:hover {
    transform: scale(1.06);
    background: #1ebe57;
}

.wa-float-btn::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 640px) {
    .wa-float {
        right: 0.85rem;
        bottom: 0.95rem;
    }

    .wa-float-btn {
        width: 52px;
        height: 52px;
    }
}
