:root {
    --ink: #231f20;
    --muted: #6b6466;
    --line: #ece4dd;
    --paper: #fffaf2;
    --surface: #ffffff;
    --gold: #ffcf18;
    --orange: #f47b32;
    --deep-orange: #e7502f;
    --teal: #138f94;
    --shadow: 0 18px 44px rgba(35, 31, 32, 0.12);
    --future-bg: #0a1118;
    --future-bg-soft: #0f1822;
    --future-panel: rgba(16, 28, 40, 0.62);
    --future-line: rgba(116, 204, 255, 0.22);
    --future-cyan: #7dd7ff;
    --future-mint: #92ffd8;
    --future-purple: #9d7cff;
    --future-pink: #ff73c5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    overflow-x: hidden;
}

body.site-future {
    color: rgba(239, 247, 255, 0.94);
    background:
        radial-gradient(circle at 12% 8%, rgba(101, 222, 255, 0.13), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 102, 205, 0.13), transparent 30%),
        linear-gradient(180deg, #050c15 0%, #07111d 46%, #030812 100%);
}

body.site-future::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(178, 231, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(178, 231, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 86%);
}

body.nav-open,
body.modal-open {
    overflow: hidden;
}

.scroll-progress {
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--deep-orange));
    box-shadow: 0 0 18px rgba(244, 123, 50, 0.35);
    pointer-events: none;
}

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

[hidden] {
    display: none !important;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.sr-only,
.skip-link:not(:focus),
.spam-field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 242, 0.94);
    border-bottom: 1px solid rgba(35, 31, 32, 0.08);
    backdrop-filter: blur(12px);
}

body.site-future .site-header {
    background: rgba(8, 12, 18, 0.82);
    border-bottom-color: rgba(125, 215, 255, 0.2);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

body.home-future .site-header {
    background: rgba(8, 12, 18, 0.74);
    border-bottom-color: rgba(125, 215, 255, 0.2);
}

body.site-future .primary-nav a {
    color: rgba(232, 239, 249, 0.9);
}

body.home-future .primary-nav a {
    color: rgba(232, 239, 249, 0.9);
}

body.site-future .primary-nav a:hover,
body.site-future .primary-nav a.active,
body.site-future .primary-nav a[aria-current="page"] {
    background: rgba(125, 215, 255, 0.18);
    color: #fff;
}

body.home-future .primary-nav a:hover,
body.home-future .primary-nav a.active,
body.home-future .primary-nav a[aria-current="page"] {
    background: rgba(125, 215, 255, 0.2);
    color: #fff;
}

body.site-future .nav-toggle {
    background: rgba(9, 15, 23, 0.84);
    border-color: rgba(125, 215, 255, 0.28);
}

body.home-future .nav-toggle {
    background: rgba(9, 15, 23, 0.84);
    border-color: rgba(125, 215, 255, 0.28);
}

body.site-future .nav-toggle span:not(.sr-only) {
    background: rgba(236, 246, 255, 0.92);
}

body.site-future .btn-ghost-dark {
    color: rgba(239, 247, 255, 0.94);
    border-color: rgba(178, 231, 255, 0.34);
    background: rgba(4, 12, 24, 0.34);
}

body.site-future .btn-secondary {
    background: rgba(4, 12, 24, 0.72);
    border-color: rgba(178, 231, 255, 0.28);
    color: rgba(239, 247, 255, 0.94);
}

body.home-future .nav-toggle span:not(.sr-only) {
    background: rgba(236, 246, 255, 0.92);
}

body.home-future {
    --future-scroll-progress: 0;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 82px;
}

.brand img {
    width: 210px;
}

.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.primary-nav a {
    text-decoration: none;
    padding: 10px 9px;
    border-radius: 6px;
    color: #3b3436;
    font-weight: 700;
    font-size: 15px;
}

.primary-nav a:hover,
.primary-nav a.active,
.primary-nav a[aria-current="page"] {
    background: #fff0cf;
    color: #111;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    place-items: center;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
    display: block;
    margin: 3px auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 7px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--orange) 70%, var(--deep-orange));
    color: #1d1718;
    box-shadow: 0 12px 28px rgba(244, 123, 50, 0.28);
}

.btn-secondary {
    background: var(--ink);
    color: #fff;
}

.btn-ghost,
.btn-ghost-dark {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.btn-ghost-dark {
    color: var(--ink);
    border-color: rgba(35, 31, 32, 0.2);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #1b1718;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 31, 32, 0.9), rgba(35, 31, 32, 0.72) 48%, rgba(35, 31, 32, 0.3));
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("../images/generated/home-localization-quality.png");
    background-size: cover;
    background-position: center;
    opacity: 0.72;
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04);
    transition: transform 0.08s linear;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 84px 0 118px;
}

.hero-future {
    background:
        radial-gradient(circle at 84% 16%, rgba(255, 181, 94, 0.2), transparent 38%),
        radial-gradient(circle at 16% 78%, rgba(129, 245, 225, 0.22), transparent 42%),
        linear-gradient(132deg, #070f16, #0e1823 52%, #09121a);
}

.hero-future::after {
    background:
        linear-gradient(90deg, rgba(7, 14, 23, 0.92), rgba(7, 14, 23, 0.72) 54%, rgba(7, 14, 23, 0.34)),
        linear-gradient(180deg, rgba(125, 215, 255, 0.08), rgba(0, 0, 0, 0));
}

.hero-future .hero-media {
    opacity: 0.24;
    filter: saturate(1.2) contrast(1.08) brightness(0.72);
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.72;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 56px, rgba(125, 215, 255, 0.04) 56px 57px),
        repeating-linear-gradient(90deg, transparent 0 56px, rgba(125, 215, 255, 0.04) 56px 57px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.4));
    opacity: 0.26;
    z-index: 0;
    pointer-events: none;
}

.hero-content-future {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 36px;
    align-items: end;
    padding-top: 108px;
    padding-bottom: 138px;
}

.hero-copy {
    display: grid;
    gap: 20px;
}

.hero-copy .hero-lead {
    width: min(760px, 100%);
    color: rgba(224, 239, 251, 0.92);
}

body.home-future .hero p {
    width: 100%;
}

body.home-future .hero h1 {
    font-size: clamp(46px, 6vw, 68px);
    line-height: 1;
    max-width: 820px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-shadow: 0 0 14px rgba(153, 229, 255, 0.14);
}

.hero-title-glitch {
    position: relative;
}

.hero-title-glitch::before,
.hero-title-glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    white-space: normal;
    line-height: inherit;
    opacity: 0;
}

.hero-title-glitch::before {
    color: rgba(157, 124, 255, 0.28);
    transform: translateX(-2px);
    animation: titleGlitchA 4.2s steps(1, end) infinite;
}

.hero-title-glitch::after {
    color: rgba(146, 255, 216, 0.28);
    transform: translateX(2px);
    animation: titleGlitchB 4.2s steps(1, end) infinite;
}

body.home-future .hero-title-glitch::before,
body.home-future .hero-title-glitch::after {
    animation: none;
    opacity: 0;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(125, 215, 255, 0.3);
    background: rgba(7, 14, 24, 0.52);
    color: rgba(231, 244, 255, 0.95);
    font-weight: 700;
    font-size: 12px;
}

.hero-scene {
    position: relative;
    min-height: clamp(340px, 48vw, 540px);
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(125, 215, 255, 0.16);
    background:
        radial-gradient(circle at 24% 82%, rgba(157, 124, 255, 0.18), transparent 38%),
        radial-gradient(circle at 82% 26%, rgba(255, 115, 197, 0.16), transparent 42%),
        radial-gradient(circle at 50% 52%, rgba(146, 255, 216, 0.12), transparent 45%),
        linear-gradient(140deg, rgba(7, 15, 28, 0.88), rgba(5, 11, 22, 0.9));
    box-shadow:
        inset 0 0 44px rgba(17, 36, 59, 0.3),
        0 24px 52px rgba(4, 10, 22, 0.5);
    isolation: isolate;
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-ambient-shift: 0;
    transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    transition: transform 220ms ease-out, box-shadow 260ms ease;
}

.hero-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(125, 215, 255, 0.03) 28px 29px),
        repeating-linear-gradient(0deg, transparent 0 28px, rgba(125, 215, 255, 0.03) 28px 29px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    opacity: 0.34;
    z-index: 1;
}

.hero-scene::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    height: 22%;
    top: -24%;
    background: linear-gradient(
        180deg,
        rgba(146, 255, 216, 0) 0%,
        rgba(146, 255, 216, 0.12) 46%,
        rgba(125, 215, 255, 0.22) 50%,
        rgba(157, 124, 255, 0.1) 54%,
        rgba(146, 255, 216, 0) 100%
    );
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
    animation: sceneScan 4.2s linear infinite;
    z-index: 1;
}

.hero-webgl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.86;
    filter: saturate(1.08) contrast(1.04);
}

.hero-scene > :not(.hero-webgl-canvas) {
    z-index: 2;
}

body.future-webgl-ready .hero-particle-canvas {
    opacity: 0.16;
}

body.future-static-mode .hero-webgl-canvas {
    display: none;
}

body.future-static-mode .hero-scene {
    transform: none !important;
}

.scene-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 114px;
    height: 398px;
    transform: translate3d(-50%, -50%, 12px);
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, rgba(146, 255, 216, 0.58), transparent 48%),
        radial-gradient(circle at 65% 70%, rgba(157, 124, 255, 0.54), transparent 56%),
        linear-gradient(180deg, rgba(139, 243, 255, 0.34), rgba(23, 35, 58, 0.08) 46%, rgba(255, 115, 197, 0.26));
    filter: blur(0.4px);
    box-shadow:
        0 0 44px rgba(146, 255, 216, 0.42),
        0 0 70px rgba(157, 124, 255, 0.34);
    animation: corePulse 3.8s ease-in-out infinite;
}

.scene-core::before {
    content: "";
    position: absolute;
    inset: -8% -16%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 48% 22%, rgba(232, 251, 255, 0.46), transparent 44%),
        radial-gradient(circle at 50% 75%, rgba(125, 215, 255, 0.28), transparent 58%);
    filter: blur(10px);
    opacity: 0.62;
    pointer-events: none;
}

.scene-core-ring {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 38px;
    height: 214px;
    border-radius: 999px;
    transform: translateX(-50%);
    border: 1px solid rgba(236, 252, 255, 0.44);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(125, 215, 255, 0.05));
    animation: coreRingSpin 9.2s linear infinite;
}

.scene-core-ring--alt {
    width: 58px;
    height: 238px;
    border-color: rgba(146, 255, 216, 0.36);
    opacity: 0.56;
    transform: translateX(-50%) rotateY(48deg);
    animation-direction: reverse;
    animation-duration: 10.4s;
}

.scene-panel {
    position: absolute;
    width: clamp(188px, 22vw, 264px);
    min-height: 148px;
    padding: 18px 17px 15px;
    border-radius: 20px;
    border: 1px solid rgba(171, 231, 255, 0.22);
    background:
        linear-gradient(140deg, rgba(121, 214, 255, 0.16), rgba(121, 214, 255, 0.04)),
        rgba(7, 17, 32, 0.42);
    backdrop-filter: blur(11px);
    box-shadow: 0 18px 46px rgba(4, 10, 20, 0.48);
    transform-style: preserve-3d;
}

.scene-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(108deg, transparent 0 30%, rgba(255, 255, 255, 0.18) 42%, transparent 55%);
    opacity: 0.34;
    pointer-events: none;
    animation: panelShimmer 4.6s linear infinite;
}

.scene-panel h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 2.1vw, 32px);
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(231, 246, 255, 0.97);
    text-shadow: 0 0 10px rgba(145, 229, 255, 0.26);
}

.scene-panel p {
    margin: 0;
    color: rgba(219, 236, 248, 0.8);
    font-size: 12.5px;
    line-height: 1.45;
}

.scene-panel-left {
    left: 3%;
    top: 16%;
    transform: rotateY(24deg) rotateX(-5deg) translateZ(22px);
    animation: panelFloatLeft 9s ease-in-out infinite;
}

.scene-panel-center {
    width: clamp(220px, 28vw, 320px);
    left: 50%;
    top: 55%;
    transform: translate3d(-50%, -50%, 32px);
    animation: panelFloatCenter 8.2s ease-in-out infinite;
}

.scene-panel-right {
    right: 2%;
    top: 24%;
    transform: rotateY(-24deg) rotateX(4deg) translateZ(22px);
    border-color: rgba(255, 148, 214, 0.3);
    background:
        linear-gradient(140deg, rgba(255, 115, 197, 0.16), rgba(255, 115, 197, 0.04)),
        rgba(11, 16, 31, 0.44);
    animation: panelFloatRight 9.6s ease-in-out infinite;
}

.scene-panel-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.scene-panel-center li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 9px;
    color: rgba(226, 239, 249, 0.9);
    font-weight: 700;
    font-size: 11.5px;
}

.scene-panel-center li::before {
    content: ">";
    display: inline-grid;
    width: 32px;
    height: 22px;
    place-items: center;
    border-radius: 6px;
    border: 1px solid rgba(146, 255, 216, 0.32);
    background: rgba(11, 27, 41, 0.56);
    color: rgba(153, 246, 222, 0.9);
    font-size: 11px;
    font-weight: 900;
}

.scene-panel.is-glitch h3 {
    text-shadow:
        -3px 0 rgba(157, 124, 255, 0.9),
        3px 0 rgba(146, 255, 216, 0.9),
        0 0 20px rgba(125, 215, 255, 0.64);
    transform: skewX(2deg);
}

.scene-particles {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(0.2px);
    opacity: 0.34;
    pointer-events: none;
}

body.home-future .scene-particles {
    display: block;
    opacity: 0.32;
    filter: none;
}

body.home-future .scene-panel {
    will-change: transform;
}

body.home-future.future-motion-ready .scene-panel-left,
body.home-future.future-motion-ready .scene-panel-center,
body.home-future.future-motion-ready .scene-panel-right {
    animation: none;
}

body.home-future.future-motion-ready .scene-panel-left {
    transform: rotateY(24deg) rotateX(-7deg) translate3d(0, 0, 26px);
}

body.home-future.future-motion-ready .scene-panel-center {
    transform: translate3d(-50%, -50%, 34px);
}

body.home-future.future-motion-ready .scene-panel-right {
    transform: rotateY(-24deg) rotateX(7deg) translate3d(0, 0, 26px);
}

body.home-future.future-motion-ready .scene-core {
    animation-duration: 3.6s;
}

.scene-particles::before,
.scene-particles::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.scene-particles::before {
    background:
        radial-gradient(circle at 25% 25%, rgba(146, 255, 216, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle at 50% 60%, rgba(157, 124, 255, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 35%, rgba(255, 115, 197, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle at 35% 75%, rgba(125, 215, 255, 0.95) 0 2px, transparent 3px);
    background-size: 100% 100%;
    animation: sparkleDrift 6.4s linear infinite;
}

.scene-particles::after {
    inset: 14%;
    background:
        radial-gradient(circle at 30% 34%, rgba(146, 255, 216, 0.82) 0 1.6px, transparent 2.6px),
        radial-gradient(circle at 68% 58%, rgba(255, 115, 197, 0.82) 0 1.6px, transparent 2.6px),
        radial-gradient(circle at 52% 72%, rgba(157, 124, 255, 0.82) 0 1.6px, transparent 2.6px);
    animation: sparkleDrift 5.8s linear infinite reverse;
}

.scene-particles-left {
    left: 20%;
    bottom: 8%;
}

.scene-particles-right {
    right: 14%;
    top: 14%;
}

@keyframes panelFloatLeft {
    0%, 100% { transform: rotateY(24deg) rotateX(-5deg) translate3d(0, 0, 22px); }
    50% { transform: rotateY(22deg) rotateX(-6deg) translate3d(0, -10px, 26px); }
}

@keyframes panelFloatCenter {
    0%, 100% { transform: translate3d(-50%, -50%, 32px); }
    50% { transform: translate3d(-50%, -53%, 38px); }
}

@keyframes panelFloatRight {
    0%, 100% { transform: rotateY(-24deg) rotateX(4deg) translate3d(0, 0, 22px); }
    50% { transform: rotateY(-22deg) rotateX(6deg) translate3d(0, -11px, 26px); }
}

@keyframes corePulse {
    0%, 100% { opacity: 0.84; transform: translate3d(-50%, -50%, 12px) scale(1); }
    50% { opacity: 1; transform: translate3d(-50%, -50%, 15px) scale(1.04); }
}

@keyframes coreRingSpin {
    0% { transform: translateX(-50%) rotateY(0deg); opacity: 0.76; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) rotateY(360deg); opacity: 0.76; }
}

@keyframes panelShimmer {
    0% { transform: translateX(-40%); opacity: 0; }
    20% { opacity: 0.24; }
    60% { opacity: 0.08; }
    100% { transform: translateX(42%); opacity: 0; }
}

@keyframes sparkleDrift {
    0% { transform: rotate(0deg) scale(1); opacity: 0.76; }
    50% { transform: rotate(180deg) scale(1.04); opacity: 0.92; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.76; }
}

@keyframes digitalFlicker {
    0%, 14%, 16%, 43%, 45%, 70%, 72%, 100% { opacity: 1; }
    15%, 44%, 71% { opacity: 0.82; }
}

@keyframes titleGlitchA {
    0%, 88%, 100% { opacity: 0; }
    89%, 91% { opacity: 0.82; }
}

@keyframes titleGlitchB {
    0%, 61%, 100% { opacity: 0; }
    62%, 64% { opacity: 0.88; }
}

@keyframes sceneScan {
    0% {
        top: -24%;
        opacity: 0.2;
    }
    42% {
        opacity: 0.48;
    }
    100% {
        top: 102%;
        opacity: 0.18;
    }
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero p {
    width: min(760px, 100%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
}

.hero-actions,
.footer-actions,
.cta-actions,
.contact-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.section {
    padding: 84px 0;
}

.service-strip {
    padding: 0;
    background: var(--paper);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.strip-grid a {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    background: #fff;
    text-decoration: none;
    font-weight: 800;
}

.strip-grid a:hover {
    background: #fff2d4;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.visual-band h2,
.dark-cta h2,
.mission-grid h2,
.contact-details h2,
.tool-panel h2,
.narrow-content h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading p {
    width: min(720px, 100%);
    color: var(--muted);
    margin: 0;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

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

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.mini-card,
.feature-panel,
.form-panel,
.contact-details,
.tool-panel,
.service-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.06);
}

.service-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 288px;
}

.service-track-section {
    position: relative;
    background:
        linear-gradient(180deg, #0c131d, #111b28 56%, #0f1925);
    color: #edf4ff;
    overflow: hidden;
}

.service-track-section .section-heading h2 {
    color: #f5fbff;
}

.service-track-section .section-heading p {
    color: rgba(223, 237, 250, 0.84);
}

.service-track-section .eyebrow {
    color: var(--future-cyan);
}

.service-track-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.service-track-tabs span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(125, 215, 255, 0.22);
    background: rgba(10, 22, 34, 0.86);
    color: rgba(223, 245, 255, 0.94);
    font-weight: 800;
    font-size: 12px;
}

.service-card--future {
    padding: 0;
    min-height: auto;
    overflow: hidden;
    background: rgba(10, 18, 28, 0.78);
    border-color: rgba(125, 215, 255, 0.28);
    box-shadow: 0 16px 34px rgba(1, 6, 12, 0.44);
    display: block;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: 1px solid rgba(125, 215, 255, 0.2);
    transition: transform 320ms ease, filter 320ms ease;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    min-height: 246px;
    padding: 20px;
}

.service-card--future span {
    background: rgba(125, 215, 255, 0.18);
    color: #d9f2ff;
}

.service-card--future h3 {
    color: #f0f8ff;
}

.service-card--future p {
    color: rgba(223, 236, 247, 0.84);
}

.service-track-section .card-actions a,
.service-track-section .card-actions button {
    color: var(--future-mint);
}

.service-track-section .section-cta .btn-secondary {
    background: rgba(7, 15, 24, 0.84);
    border-color: rgba(125, 215, 255, 0.34);
}

.service-card--future:hover {
    --future-card-lift: -3px;
    border-color: rgba(146, 255, 216, 0.42);
    box-shadow: 0 14px 24px rgba(2, 10, 18, 0.34);
}

.service-card--future:hover .service-card-image {
    transform: scale(1.04);
    filter: saturate(1.06);
}

body.home-future .fx-card {
    --fx-tilt-x: 0deg;
    --fx-tilt-y: 0deg;
    --fx-glow-opacity: 0;
    --future-card-lift: 0px;
    position: relative;
    overflow: hidden;
    transform: perspective(980px) translate3d(0, var(--future-card-lift, 0px), 0) rotateX(var(--fx-tilt-x)) rotateY(var(--fx-tilt-y));
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 260ms ease, border-color 220ms ease;
}

body.home-future .fx-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 25% 22%, rgba(146, 255, 216, 0.34), transparent 44%);
    opacity: var(--fx-glow-opacity);
    pointer-events: none;
    transition: opacity 180ms ease;
}

.service-card:not(.service-card--future) span,
.pill {
    width: fit-content;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff1d2;
    color: #7c3b08;
    font-weight: 800;
    font-size: 12px;
}

.service-card:not(.service-card--future) h3,
.service-detail h2 {
    margin: 18px 0 10px;
    font-size: 24px;
    line-height: 1.16;
}

.service-card:not(.service-card--future) p,
.service-detail p,
.feature-panel p,
.tool-panel p,
.narrow-content p {
    color: var(--muted);
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.card-actions a,
.card-actions button {
    border: 0;
    background: transparent;
    color: #b94716;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.warm {
    background: var(--paper);
}

body.home-future .section,
body.home-future .warm,
body.home-future .trust-section,
body.home-future .service-track-section,
body.home-future .testimonial-section {
    background: linear-gradient(180deg, #0c141e, #0b131d);
    color: #eaf4ff;
}

body.home-future .section-heading p,
body.home-future .split-grid p,
body.home-future .service-main > p,
body.home-future .case-card p,
body.home-future .blog-card p,
body.home-future .testimonial-card p,
body.home-future .quote-card p,
body.home-future .language-panel p,
body.home-future .mini-card span,
body.home-future .process-list li,
body.home-future .client-proof p {
    color: rgba(220, 236, 250, 0.82);
}

body.home-future .section-heading h2,
body.home-future .client-proof h2,
body.home-future .case-card h3,
body.home-future .blog-card h2,
body.home-future .testimonial-card footer,
body.home-future .split-section h2,
body.home-future .visual-band h2 {
    color: #f2f8ff;
}

body.home-future .proof-grid article,
body.home-future .case-card,
body.home-future .testimonial-card,
body.home-future .process-list li,
body.home-future .visual-band,
body.home-future .client-segments span,
body.home-future .language-cloud span {
    background: rgba(11, 22, 34, 0.88);
    border: 1px solid rgba(125, 215, 255, 0.2);
    box-shadow: 0 10px 22px rgba(2, 8, 15, 0.24);
    backdrop-filter: blur(4px);
}

body.home-future .proof-grid strong {
    color: #9ce7ff;
}

body.home-future .proof-grid span,
body.home-future .client-segments span,
body.home-future .language-cloud span {
    color: rgba(232, 244, 255, 0.9);
}

body.home-future .case-card a,
body.home-future .blog-card-footer a,
body.home-future .blog-meta a {
    color: #99f6de;
}

body.home-future .service-card--future,
body.home-future .case-card,
body.home-future .blog-card,
body.home-future .testimonial-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(196, 140, 255, 0.38);
    background:
        linear-gradient(162deg, rgba(120, 211, 255, 0.18), rgba(157, 124, 255, 0.14) 48%, rgba(255, 115, 197, 0.1) 92%),
        rgba(8, 16, 30, 0.34);
    box-shadow:
        0 26px 58px rgba(2, 10, 20, 0.56),
        inset 0 1px 0 rgba(232, 247, 255, 0.16);
    backdrop-filter: blur(16px) saturate(1.22);
    -webkit-backdrop-filter: blur(16px) saturate(1.22);
    isolation: isolate;
}

body.home-future .service-card--future::before,
body.home-future .case-card::before,
body.home-future .blog-card::before,
body.home-future .testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(112deg, transparent 0 30%, rgba(255, 255, 255, 0.22) 43%, transparent 58%);
    opacity: 0.42;
    pointer-events: none;
    z-index: 1;
}

body.home-future .service-card--future::after,
body.home-future .case-card::after,
body.home-future .blog-card::after,
body.home-future .testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 219, 0.84), rgba(146, 255, 216, 0.88), rgba(125, 215, 255, 0.86), transparent);
    opacity: 0.9;
    pointer-events: none;
    z-index: 2;
}

body.home-future .case-card img {
    position: relative;
    z-index: 0;
    filter: saturate(1.08) contrast(1.04);
    opacity: 0.93;
    border-bottom: 1px solid rgba(125, 215, 255, 0.2);
}

body.home-future .service-card-image,
body.home-future .blog-card img {
    border-bottom: 1px solid rgba(125, 215, 255, 0.2);
    filter: saturate(1.2) contrast(1.12) brightness(0.88);
    opacity: 0.82;
}

body.home-future .case-card > div {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.3), rgba(8, 16, 28, 0.56)),
        rgba(6, 15, 26, 0.26);
    border-top: 1px solid rgba(125, 215, 255, 0.14);
    backdrop-filter: blur(12px) saturate(1.18);
    -webkit-backdrop-filter: blur(12px) saturate(1.18);
}

body.home-future .service-card-body,
body.home-future .blog-card > div {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.2), rgba(8, 16, 28, 0.44) 44%, rgba(7, 14, 28, 0.8) 72%, rgba(7, 14, 28, 0.9) 100%),
        rgba(6, 15, 26, 0.2);
    border-top: 1px solid rgba(125, 215, 255, 0.12);
    backdrop-filter: blur(14px) saturate(1.22);
    -webkit-backdrop-filter: blur(14px) saturate(1.22);
}

body.home-future .testimonial-card > *,
body.home-future .proof-grid article > *,
body.home-future .process-list li > * {
    position: relative;
    z-index: 2;
}

body.home-future .case-card .pill {
    background: rgba(7, 21, 34, 0.68);
    border: 1px solid rgba(146, 255, 216, 0.34);
    color: #d6f1ff;
}

body.home-future .service-card--future span,
body.home-future .blog-card .pill {
    background: transparent;
    border: 0;
    padding: 0;
    min-height: auto;
    color: rgba(201, 231, 255, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
}

body.home-future .case-card h3 {
    text-shadow: 0 0 12px rgba(125, 215, 255, 0.16);
}

body.home-future .service-card--future h3,
body.home-future .blog-card h2,
body.home-future .testimonial-card footer {
    text-shadow: 0 0 14px rgba(125, 215, 255, 0.22);
}

body.home-future .service-card--future {
    min-height: 560px;
}

body.home-future .service-card--future .service-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    z-index: 0;
}

body.home-future .service-card--future .service-card-body {
    min-height: 560px;
    padding: 26px 20px 22px;
}

body.home-future .service-card--future .service-card-body::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.16), transparent 36%);
    pointer-events: none;
    z-index: 1;
}

body.home-future .service-card--future .service-card-body::after {
    content: "";
    position: absolute;
    top: 12%;
    right: 0;
    width: 1px;
    height: 68%;
    background: linear-gradient(180deg, rgba(255, 138, 211, 0.72), rgba(125, 215, 255, 0.46), rgba(146, 255, 216, 0.2));
    box-shadow: 0 0 10px rgba(157, 124, 255, 0.5);
    pointer-events: none;
    z-index: 1;
}

body.home-future .service-card--future .service-card-body > * {
    position: relative;
    z-index: 2;
}

body.home-future .visual-band::before {
    background: linear-gradient(90deg, transparent, rgba(146, 255, 216, 0.78), rgba(125, 215, 255, 0.76), transparent);
}

body.home-future .visual-band img {
    border: 1px solid rgba(125, 215, 255, 0.24);
    box-shadow: 0 10px 24px rgba(2, 10, 18, 0.3);
}

body.home-future .hero-copy {
    gap: 16px;
    min-width: 0;
}

body.home-future .hero-actions {
    gap: 10px;
}

body.home-future .hero-chip-row {
    gap: 8px;
}

body.home-future .hero-chip-row span {
    min-height: 34px;
    padding: 6px 10px;
}

body.home-future .section {
    padding: 72px 0;
}

body.home-future .section-heading {
    margin-bottom: 26px;
}

body.home-future .card-grid,
body.home-future .case-grid,
body.home-future .testimonial-grid {
    gap: 14px;
}

body.home-future .section::after,
body.home-future .trust-section::after,
body.home-future .service-track-section::after,
body.home-future .dark-cta::after {
    display: none;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 38px;
    align-items: start;
}

.split-grid p {
    color: var(--muted);
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.process-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
}

.process-list span,
.timeline span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    font-weight: 900;
}

.visual-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: center;
}

.visual-band::before {
    content: "";
    position: absolute;
    inset: auto 8% -28px 18%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(244, 123, 50, 0.85), rgba(255, 207, 24, 0.8), transparent);
    transform: scaleX(var(--motion-line, 0.22));
    transform-origin: left;
    opacity: 0.7;
}

.visual-band img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

body.home-future .section,
body.home-future .trust-section,
body.home-future .service-track-section,
body.home-future .dark-cta {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.dark-cta,
.site-footer {
    background: var(--ink);
    color: #fff;
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.cta-grid h2 {
    max-width: 780px;
}

.page-hero {
    background: linear-gradient(135deg, #fff8e8, #ffffff);
    border-bottom: 1px solid var(--line);
}

body.site-future .page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 8%, rgba(101, 222, 255, 0.18), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(255, 102, 205, 0.15), transparent 32%),
        linear-gradient(135deg, rgba(7, 18, 32, 0.94), rgba(9, 14, 28, 0.92));
    border-bottom: 1px solid rgba(178, 231, 255, 0.16);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.site-future .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%),
        radial-gradient(circle at 50% 100%, rgba(255, 181, 94, 0.12), transparent 34%);
    opacity: 0.72;
}

body.site-future .page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero.compact .container {
    padding: 82px 0 70px;
}

body.site-future .page-hero h1,
body.site-future .page-hero h2 {
    color: rgba(246, 250, 255, 0.98);
    text-shadow: 0 0 22px rgba(101, 222, 255, 0.16);
}

body.site-future .page-hero p:last-child,
body.site-future .section-heading p,
body.site-future .split-grid p,
body.site-future .service-main > p,
body.site-future .blog-article-body p,
body.site-future .narrow-content p {
    color: rgba(220, 236, 250, 0.84);
}

.page-hero p:last-child {
    max-width: 820px;
    color: var(--muted);
    font-size: 19px;
}

.service-hero .service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
    gap: 34px;
    align-items: center;
    padding: 74px 0;
}

.service-hero h1 {
    font-size: clamp(42px, 6vw, 82px);
}

.service-hero img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.feature-panel {
    padding: 28px;
}

.feature-panel h3,
.tool-panel h3 {
    margin-top: 0;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.check-list li::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-top: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-grid article {
    border-left: 5px solid var(--orange);
    padding: 18px 0 18px 24px;
}

.mini-card {
    min-height: 160px;
    padding: 22px;
}

.mini-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.mini-card span {
    color: var(--muted);
}

.language-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-cloud span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud.compact {
    margin-top: 18px;
}

.tag-cloud.compact span {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 13px;
}

.trust-section {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.proof-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.05);
}

.proof-grid strong {
    display: block;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    color: #b94716;
}

.proof-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.client-proof {
    margin-top: 46px;
}

.client-proof h2 {
    max-width: 860px;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
}

.client-segments,
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-segments span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-weight: 800;
}

.case-grid,
.blog-grid,
.testimonial-grid,
.process-card-grid,
.language-page-grid {
    display: grid;
    gap: 18px;
}

.case-grid {
    grid-template-columns: repeat(3, 1fr);
}

.case-card,
.blog-card,
.testimonial-card,
.language-panel,
.quote-card,
.case-study-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.06);
}

.case-card {
    overflow: hidden;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(2, 10, 18, 0.36);
}

.case-card img,
.blog-card img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
}

.case-card > div,
.blog-card > div {
    padding: 22px;
}

.blog-card > div {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.case-card h3,
.blog-card h2,
.case-study-detail h2 {
    margin: 16px 0 10px;
    font-size: 24px;
    line-height: 1.16;
}

.case-card p,
.blog-card p,
.case-study-detail p,
.testimonial-card p,
.quote-card p,
.language-panel p {
    color: var(--muted);
}

.case-card a {
    color: #b94716;
    font-weight: 900;
    text-decoration: none;
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(2, 10, 18, 0.32);
}

.blog-card-footer,
.blog-meta,
.blog-article-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.blog-card-footer {
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    font-weight: 900;
}

.blog-card-footer time,
.blog-meta span {
    color: var(--muted);
    font-weight: 800;
}

.blog-card-footer a,
.blog-meta a {
    color: #b94716;
    text-decoration: none;
    font-weight: 900;
}

.blog-article-body {
    max-width: 820px;
}

.blog-article-body p {
    color: #3b3436;
    font-size: 20px;
    line-height: 1.75;
}

.blog-article-cta {
    margin-top: 28px;
}

.testimonial-section {
    background: #fff;
}

body.site-future .section,
body.site-future .testimonial-section,
body.site-future .service-proof-strip {
    background: transparent;
}

body.site-future .section.warm {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 181, 94, 0.1), transparent 30%),
        radial-gradient(circle at 92% 22%, rgba(101, 222, 255, 0.1), transparent 32%),
        rgba(6, 13, 24, 0.42);
    border-block: 1px solid rgba(178, 231, 255, 0.1);
}

body.site-future .section-heading h2,
body.site-future .split-section h2,
body.site-future .visual-band h2,
body.site-future .dark-cta h2,
body.site-future .mission-grid h2,
body.site-future .contact-details h2,
body.site-future .tool-panel h2,
body.site-future .narrow-content h2,
body.site-future .client-proof h2,
body.site-future .service-main h2,
body.site-future .quote-card h2 {
    color: rgba(246, 250, 255, 0.98);
}

body.site-future .eyebrow {
    color: var(--orange);
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    margin: 0;
    padding: 24px;
}

.testimonial-card p {
    margin-top: 0;
    font-size: 18px;
}

.testimonial-card footer {
    font-weight: 900;
}

.testimonial-card footer span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
}

/* Global holographic card surface (applies even when home-future class is absent) */
.service-card,
.service-card--future,
.case-card,
.blog-card,
.testimonial-card,
.case-study-detail,
.industry-service-card,
.narrow-content,
.proof-grid article,
.process-list li,
.mini-card,
.feature-panel,
.form-panel,
.contact-details,
.tool-panel,
.service-detail,
.language-panel,
.quote-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(214, 234, 255, 0.3);
    background:
        linear-gradient(165deg, rgba(118, 205, 244, 0.26), rgba(71, 121, 166, 0.18) 36%, rgba(122, 84, 180, 0.22) 68%, rgba(210, 79, 148, 0.16) 100%),
        rgba(5, 13, 26, 0.76);
    box-shadow:
        0 24px 56px rgba(2, 10, 20, 0.52),
        0 0 0 1px rgba(133, 203, 255, 0.08),
        inset 0 1px 0 rgba(246, 252, 255, 0.26),
        inset 0 -22px 48px rgba(3, 8, 18, 0.38);
    backdrop-filter: blur(18px) saturate(1.18) contrast(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.18) contrast(1.05);
    isolation: isolate;
}

.service-card::before,
.service-card--future::before,
.case-card::before,
.blog-card::before,
.testimonial-card::before,
.case-study-detail::before,
.industry-service-card::before,
.narrow-content::before,
.proof-grid article::before,
.process-list li::before,
.mini-card::before,
.feature-panel::before,
.form-panel::before,
.contact-details::before,
.tool-panel::before,
.service-detail::before,
.language-panel::before,
.quote-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(112deg, transparent 0 28%, rgba(255, 255, 255, 0.22) 42%, rgba(255, 255, 255, 0.07) 52%, transparent 62%),
        radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.16), transparent 34%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.service-card::after,
.service-card--future::after,
.case-card::after,
.blog-card::after,
.testimonial-card::after,
.case-study-detail::after,
.industry-service-card::after,
.narrow-content::after,
.proof-grid article::after,
.process-list li::after,
.mini-card::after,
.feature-panel::after,
.form-panel::after,
.contact-details::after,
.tool-panel::after,
.service-detail::after,
.language-panel::after,
.quote-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 163, 224, 0.88), rgba(195, 255, 244, 0.92), rgba(160, 225, 255, 0.9), transparent);
    opacity: 0.94;
    pointer-events: none;
    z-index: 2;
}

.service-card-image,
.case-card img,
.blog-card img {
    border-bottom: 1px solid rgba(125, 215, 255, 0.16);
    filter: saturate(1.16) contrast(1.08) brightness(0.84);
    opacity: 0.8;
}

.service-card-body,
.case-card > div,
.blog-card > div {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.28) 0%, rgba(8, 16, 28, 0.56) 36%, rgba(7, 14, 28, 0.82) 72%, rgba(5, 10, 22, 0.96) 100%),
        rgba(6, 15, 26, 0.42);
    border-top: 1px solid rgba(125, 215, 255, 0.1);
    backdrop-filter: blur(14px) saturate(1.2) brightness(1.03);
    -webkit-backdrop-filter: blur(14px) saturate(1.2) brightness(1.03);
}

.service-card > *:not(img),
.proof-grid article > *,
.process-list li > *,
.mini-card > *,
.feature-panel > *,
.case-study-detail > *,
.industry-service-card > *,
.narrow-content > *,
.form-panel > *,
.contact-details > *,
.tool-panel > *,
.service-detail > *,
.language-panel > *,
.quote-card > *,
.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.service-card:not(.service-card--future) {
    min-height: 300px;
}

.service-card--future span,
.service-card:not(.service-card--future) span,
.case-card .pill,
.blog-card .pill {
    background: rgba(7, 19, 34, 0.36);
    border: 1px solid rgba(165, 226, 255, 0.26);
    padding: 5px 10px;
    min-height: 28px;
    border-radius: 999px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    color: rgba(201, 231, 255, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card--future h3,
.service-card:not(.service-card--future) h3,
.case-card h3,
.blog-card h2,
.testimonial-card footer {
    text-shadow: 0 0 16px rgba(125, 215, 255, 0.24);
}

.service-card:not(.service-card--future) h3,
.case-card h3,
.blog-card h2,
.testimonial-card footer,
.case-study-detail h2,
.industry-service-card h3,
.mini-card strong,
.feature-panel h3,
.tool-panel h3,
.service-detail h2,
.language-panel h2,
.quote-card h2 {
    color: #f2f8ff;
}

.service-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 9px;
    color: var(--future-cyan, #7dd7ff);
    flex-shrink: 0;
    position: relative;
    top: -1px;
    opacity: 0.85;
    transition: opacity 200ms ease, color 200ms ease;
}
/* Headings that contain a .service-icon need flex so icon stays baseline-aligned */
.service-detail h2,
.industry-service-card h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.service-detail:hover .service-icon,
.industry-service-card:hover .service-icon {
    opacity: 1;
    color: var(--future-mint, #92ffd8);
}

/* ─── Rate hint widget inside quote modal ───────────────────────── */
.rate-hint {
    grid-column: 1 / -1;
    background: rgba(5, 13, 26, 0.72);
    border: 1px solid rgba(125, 215, 255, 0.22);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 13px;
    color: rgba(200, 230, 255, 0.88);
    line-height: 1.5;
    display: none;
}
.rate-hint.is-visible {
    display: block;
}
.rate-hint strong {
    color: var(--future-cyan, #7dd7ff);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.rate-hint em {
    font-style: normal;
    color: rgba(220, 240, 255, 0.6);
    font-size: 11.5px;
    display: block;
    margin-top: 6px;
}

/* ─── Client proof upgrade: industry chips with icons ───────────── */
.client-segments span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.client-segments span svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ─── Expertise panel: SVG illustration holder ──────────────────── */
.expertise-svg-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(5, 13, 26, 0.85);
    border: 1px solid rgba(125, 215, 255, 0.16);
    display: flex;
    align-items: stretch;
}
.expertise-svg-wrap svg {
    width: 100%;
    height: 100%;
}

/* ─── Media pillar SVG tile images ──────────────────────────────── */
.media-tile-icon svg {
    width: 34px;
    height: 34px;
    color: var(--future-cyan, #7dd7ff);
}

.service-card:not(.service-card--future) p,
.case-card p,
.blog-card p,
.testimonial-card p,
.case-study-detail p,
.industry-service-card p,
.mini-card span,
.feature-panel p,
.tool-panel p,
.service-detail p,
.language-panel p,
.quote-card p,
.proof-grid span,
.process-list li {
    color: rgba(220, 236, 250, 0.86);
}

.proof-grid strong {
    color: #9ce7ff;
}

.case-card a,
.case-study-detail a,
.industry-service-card a,
.blog-card-footer a,
.blog-meta a,
.card-actions a,
.card-actions button {
    color: #99f6de;
}

.blog-card-footer time,
.blog-meta span,
.testimonial-card footer span {
    color: rgba(201, 225, 242, 0.78);
}

.service-card,
.case-card,
.blog-card,
.testimonial-card,
.case-study-detail,
.industry-service-card,
.proof-grid article,
.process-list li,
.mini-card {
    overflow-wrap: anywhere;
    word-break: normal;
}

.service-grid,
.case-grid,
.blog-grid,
.testimonial-grid,
.proof-grid {
    align-items: stretch;
}

.service-grid > *,
.case-grid > *,
.blog-grid > *,
.testimonial-grid > *,
.proof-grid > * {
    height: 100%;
    min-width: 0;
}

.service-card-body,
.case-card > div,
.blog-card > div,
.testimonial-card,
.proof-grid article,
.process-list li,
.mini-card {
    min-width: 0;
}

.service-card h3,
.case-card h3,
.blog-card h2,
.testimonial-card footer,
.case-study-detail h2,
.industry-service-card h3,
.mini-card strong,
.feature-panel h3,
.tool-panel h3,
.service-detail h2,
.language-panel h2,
.quote-card h2 {
    max-width: 100%;
    line-height: 1.14;
    text-wrap: balance;
}

.service-card p,
.case-card p,
.blog-card p,
.testimonial-card p,
.case-study-detail p,
.industry-service-card p,
.feature-panel p,
.tool-panel p,
.service-detail p,
.language-panel p,
.quote-card p,
.process-list li {
    max-width: 100%;
    line-height: 1.58;
}

.card-actions {
    flex-wrap: wrap;
}

.card-actions a,
.card-actions button {
    max-width: 100%;
    white-space: normal;
}

.service-card--future .service-card-body::after,
.case-card > div::after,
.blog-card > div::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, rgba(255, 149, 219, 0.7), rgba(125, 215, 255, 0.44), rgba(146, 255, 216, 0.14));
    box-shadow: 0 0 10px rgba(157, 124, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.service-card--future .service-card-body > *,
.case-card > div > *,
.blog-card > div > * {
    position: relative;
    z-index: 2;
}

/* Ensure realistic glass settings also win on home-future selectors */
body.home-future .service-card--future,
body.home-future .service-card,
body.home-future .case-card,
body.home-future .blog-card,
body.home-future .testimonial-card,
body.home-future .proof-grid article,
body.home-future .process-list li,
body.home-future .mini-card,
body.home-future .feature-panel,
body.home-future .form-panel,
body.home-future .contact-details,
body.home-future .tool-panel,
body.home-future .service-detail,
body.home-future .language-panel,
body.home-future .quote-card {
    border: 1px solid rgba(214, 234, 255, 0.3);
    border-radius: 26px;
    background:
        linear-gradient(165deg, rgba(118, 205, 244, 0.26), rgba(71, 121, 166, 0.18) 36%, rgba(122, 84, 180, 0.22) 68%, rgba(210, 79, 148, 0.16) 100%),
        rgba(5, 13, 26, 0.76);
    box-shadow:
        0 24px 56px rgba(2, 10, 20, 0.52),
        0 0 0 1px rgba(133, 203, 255, 0.08),
        inset 0 1px 0 rgba(246, 252, 255, 0.26),
        inset 0 -22px 48px rgba(3, 8, 18, 0.38);
}

body.home-future .service-card-body,
body.home-future .case-card > div,
body.home-future .blog-card > div {
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.28) 0%, rgba(8, 16, 28, 0.56) 36%, rgba(7, 14, 28, 0.82) 72%, rgba(5, 10, 22, 0.96) 100%),
        rgba(6, 15, 26, 0.42);
    border-top: 1px solid rgba(125, 215, 255, 0.1);
    backdrop-filter: blur(14px) saturate(1.2) brightness(1.03);
    -webkit-backdrop-filter: blur(14px) saturate(1.2) brightness(1.03);
}

body.home-future .service-card--future span,
body.home-future .service-card:not(.service-card--future) span,
body.home-future .case-card .pill,
body.home-future .blog-card .pill {
    background: rgba(7, 19, 34, 0.36);
    border: 1px solid rgba(165, 226, 255, 0.26);
    padding: 5px 10px;
    min-height: 28px;
    border-radius: 999px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
}

.language-page-grid {
    grid-template-columns: 1fr;
}

.language-panel {
    padding: 26px;
}

.language-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 42px);
}

.service-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.service-main h2,
.quote-card h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
}

.service-main > p {
    color: var(--muted);
    max-width: 760px;
}

.compact-list-grid {
    margin-top: 28px;
}

.compact-list-grid .mini-card {
    min-height: auto;
}

.service-subheading {
    margin: 44px 0 16px;
}

.quote-card {
    position: sticky;
    top: 110px;
    padding: 24px;
}

.quote-card .btn.full {
    width: 100%;
    margin-top: 18px;
}

.service-proof-strip {
    padding: 28px 0;
    background: var(--paper);
}

.service-proof-strip .proof-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-proof-strip .proof-grid strong {
    font-size: 20px;
    color: var(--ink);
}

.process-card-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-badge {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    font-weight: 900;
    margin-bottom: 16px;
}

.case-study-list {
    display: grid;
    gap: 24px;
}

.case-study-detail {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: 26px;
    padding: 24px;
    scroll-margin-top: 110px;
}

.case-study-detail img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-bar button {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
    background: var(--ink);
    color: #fff;
}

.service-detail-list {
    display: grid;
    gap: 18px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    gap: 24px;
    padding: 28px;
    scroll-margin-top: 110px;
}

.service-detail.anchor-highlight {
    outline: 3px solid rgba(244, 123, 50, 0.45);
}

.contact-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.process-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.contact-details,
.tool-panel,
.form-panel {
    padding: 24px;
}

.industry-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.industry-service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.06);
}

.industry-service-card h3 {
    margin: 18px 0 14px;
    font-size: 24px;
    line-height: 1.18;
}

.industry-service-card a {
    display: inline-flex;
    margin-top: 18px;
    color: #b94716;
    font-weight: 900;
    text-decoration: none;
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-details a:not(.btn),
.site-footer a:not(.btn) {
    text-decoration: none;
}

.footer-link-button {
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.78);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.contact-details a:not(.btn):hover,
.site-footer a:not(.btn):hover {
    text-decoration: underline;
}

.footer-link-button:hover {
    text-decoration: underline;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ddd2c9;
    border-radius: 7px;
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(244, 123, 50, 0.38);
    outline-offset: 2px;
}

.alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.alert.success {
    background: #eaf8ee;
    border: 1px solid #b7dec2;
}

.alert.error {
    background: #fff0ec;
    border: 1px solid #f4b4a2;
}

.alert ul {
    margin: 8px 0 0;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline article {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
        "step title"
        "step text";
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.timeline span {
    grid-area: step;
}

.timeline h2 {
    grid-area: title;
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.timeline p {
    grid-area: text;
    margin: 0;
    color: var(--muted);
}

.process-page-grid .tool-panel h2 {
    font-size: clamp(32px, 3vw, 48px);
    overflow-wrap: anywhere;
}

.tool-panel section {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 18px;
}

.faq-section {
    background: var(--paper);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-item > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    text-align: left;
}

.faq-item > div {
    padding: 0 18px 18px;
    color: var(--muted);
}

.narrow-content {
    max-width: 780px;
}

body.site-future .narrow-content {
    padding: 30px;
}

body.site-future .narrow-content a {
    color: #99f6de;
    font-weight: 800;
}

body.site-future input,
body.site-future select,
body.site-future textarea {
    border-color: rgba(178, 231, 255, 0.24);
    background: rgba(4, 12, 24, 0.72);
    color: rgba(246, 250, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.site-future input::placeholder,
body.site-future textarea::placeholder {
    color: rgba(220, 236, 250, 0.54);
}

body.site-future label {
    color: rgba(239, 247, 255, 0.92);
}

.site-footer {
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 0.9fr;
    gap: 36px;
}

.footer-brand img {
    width: 220px;
    margin-bottom: 18px;
}

.site-footer h2 {
    font-size: 18px;
    margin: 0 0 14px;
}

.site-footer a:not(.btn),
.site-footer p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 34px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.68);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 160;
    left: 18px;
    right: 18px;
    bottom: 18px;
}

.cookie-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 16px;
    background: rgba(20, 18, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
    display: grid;
    gap: 14px;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.cookie-banner-open {
    padding-bottom: 120px;
}

.quote-modal[hidden] {
    display: none;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(35, 31, 32, 0.72);
}

.quote-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: min(92vh, 880px);
    overflow: auto;
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.quote-dialog h2 {
    margin: 0 0 18px;
    font-size: 32px;
}

.quote-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-weight: 900;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 1280px) {
    body {
        font-size: 17px;
        line-height: 1.65;
    }

    .primary-nav a {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
    }

    .hero p,
    .page-hero p:last-child {
        font-size: 21px;
    }
}

@media (min-width: 1600px) {
    body {
        font-size: 18px;
        line-height: 1.68;
    }

    .primary-nav a {
        font-size: 17px;
    }

    .btn {
        font-size: 17px;
    }

    .hero p,
    .page-hero p:last-child {
        font-size: 22px;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fffaf2;
        padding: 18px 20px 26px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    body.home-future .primary-nav {
        background: rgba(8, 13, 20, 0.98);
        border-bottom-color: rgba(125, 215, 255, 0.24);
    }

    .primary-nav.open {
        display: flex;
    }

    .header-quote {
        display: none;
    }

    .strip-grid,
    .proof-grid,
    .card-grid.three,
    .card-grid.two,
    .card-grid.four,
    .case-grid,
    .blog-grid,
    .industry-service-grid,
    .testimonial-grid,
    .process-card-grid,
    .mission-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid,
    .visual-band,
    .service-hero .service-hero-grid,
    .service-page-grid,
    .service-detail,
    .case-study-detail,
    .contact-layout,
    .process-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-details,
    .tool-panel,
    .quote-card {
        position: static;
    }

    .hero-content-future {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
        padding-top: 96px;
        padding-bottom: 108px;
    }

    .hero-scene {
        width: min(620px, 100%);
        min-height: 360px;
    }

    .scene-panel-center {
        width: clamp(220px, 42vw, 320px);
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
        line-height: 1.55;
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    .brand img {
        width: 176px;
    }

    .header-inner {
        justify-content: flex-start;
        gap: 14px;
    }

    .nav-toggle {
        flex: 0 0 44px;
    }

    .primary-nav a {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        min-height: 42px;
        padding: 10px 14px;
    }

    .hero .eyebrow {
        font-size: 12px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        max-width: 360px;
        margin-left: 14px;
        margin-right: auto;
        padding: 66px 0 86px;
    }

    body.home-future .hero-content {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content-future {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 72px;
        padding-bottom: 96px;
    }

    body.home-future .hero h1 {
        font-size: 42px;
        line-height: 1;
    }

    .hero-chip-row span {
        font-size: 12px;
    }

    .hero-scene {
        min-height: 320px;
    }

    .hero-webgl-canvas {
        opacity: 0.64;
        filter: saturate(1.02);
    }

    .scene-panel {
        width: clamp(150px, 38vw, 230px);
        min-height: 126px;
        padding: 14px 12px;
        border-radius: 14px;
    }

    .scene-panel h3 {
        font-size: clamp(15px, 4.8vw, 26px);
    }

    .scene-panel p,
    .scene-panel-center li {
        font-size: 11px;
    }

    .scene-panel-center {
        width: clamp(186px, 46vw, 270px);
    }

    .scene-panel-left,
    .scene-panel-right {
        display: none;
    }

    .scene-panel-center {
        left: 50%;
        top: 54%;
        width: min(88%, 286px);
        transform: translate3d(-50%, -50%, 28px);
    }

    .scene-core {
        width: 92px;
        height: 300px;
    }

    .scene-core-ring {
        width: 34px;
        height: 164px;
    }

    .scene-core-ring--alt {
        width: 52px;
        height: 184px;
    }

    .scene-particles {
        width: 130px;
        height: 130px;
    }

    body.home-future .service-card--future,
    body.home-future .service-card--future .service-card-body {
        min-height: 480px;
    }

    body.home-future .service-card--future .service-card-body {
        padding: 20px 16px 18px;
    }

    .service-card:not(.service-card--future) h3,
    .service-card--future h3,
    .case-card h3,
    .blog-card h2 {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.14;
    }

    .service-card p,
    .case-card p,
    .blog-card p,
    .testimonial-card p,
    .process-list li {
        font-size: 15px;
        line-height: 1.56;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
        line-height: 1.02;
    }

    .hero p {
        width: min(100%, 360px);
    }

    .hero p,
    .page-hero p:last-child {
        font-size: 17px;
    }

    .section-heading h2,
    .split-section h2,
    .visual-band h2,
    .dark-cta h2,
    .mission-grid h2,
    .contact-details h2,
    .tool-panel h2,
    .narrow-content h2,
    .client-proof h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .proof-grid strong {
        font-size: 32px;
    }

    .section {
        padding: 58px 0;
    }

    .strip-grid,
    .proof-grid,
    .card-grid.three,
    .card-grid.two,
    .card-grid.four,
    .case-grid,
    .blog-grid,
    .industry-service-grid,
    .testimonial-grid,
    .process-card-grid,
    .service-proof-strip .proof-grid,
    .mission-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1 1 220px;
    }

    .quote-dialog {
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .container {
        width: min(360px, calc(100% - 28px));
        margin-left: 14px;
        margin-right: auto;
    }

    .primary-nav a {
        font-size: 13px;
    }

    .btn {
        font-size: 13px;
        min-height: 40px;
        padding: 9px 12px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 34px;
    }

    body.home-future .hero h1 {
        font-size: 34px;
    }

    body.home-future .hero-chip-row {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body.home-future .hero-chip-row span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-heading h2,
    .split-section h2,
    .visual-band h2,
    .dark-cta h2,
    .mission-grid h2,
    .contact-details h2,
    .tool-panel h2,
    .narrow-content h2,
    .client-proof h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .page-hero p:last-child {
        font-size: 16px;
    }

    .hero-chip-row span {
        min-height: 34px;
        padding: 6px 10px;
    }

    .hero-scene {
        min-height: 280px;
    }

    .hero-webgl-canvas {
        opacity: 0.52;
    }

    .scene-panel {
        padding: 10px 10px 9px;
    }

    .scene-panel-center {
        top: 58%;
    }

    .scene-panel-center li {
        grid-template-columns: 24px 1fr;
        gap: 7px;
    }

    .scene-panel-center li::before {
        width: 24px;
        height: 18px;
        font-size: 10px;
    }

    body.home-future .service-card--future,
    body.home-future .service-card--future .service-card-body {
        min-height: 430px;
    }

    .service-card:not(.service-card--future) h3,
    .service-card--future h3,
    .case-card h3,
    .blog-card h2 {
        font-size: clamp(20px, 7vw, 27px);
    }

    .service-card p,
    .case-card p,
    .blog-card p,
    .testimonial-card p,
    .process-list li {
        font-size: 14px;
        line-height: 1.55;
    }

}

/* High-motion sci-fi pass */
body.home-future {
    background:
        radial-gradient(circle at 78% 12%, rgba(106, 88, 255, 0.18), transparent 34%),
        radial-gradient(circle at 12% 34%, rgba(0, 229, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #040912, #06111d 42%, #030811);
}

body.home-future main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(142, 111, 255, 0.2), transparent 34%),
        radial-gradient(circle at 18% 58%, rgba(0, 228, 255, 0.12), transparent 38%),
        linear-gradient(180deg, #050b14 0%, #07121f 48%, #030811 100%);
}

body.home-future main::before {
    content: "";
    position: fixed;
    inset: -18%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 105, 196, 0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 68% 24%, rgba(125, 215, 255, 0.2) 0 1px, transparent 2px),
        radial-gradient(circle at 45% 72%, rgba(146, 255, 216, 0.16) 0 1px, transparent 2px),
        conic-gradient(from 120deg at 50% 48%, transparent, rgba(125, 215, 255, 0.08), transparent, rgba(255, 115, 197, 0.07), transparent);
    background-size: 180px 180px, 220px 220px, 260px 260px, 100% 100%;
    opacity: 0.64;
    transform: translate3d(0, 0, 0);
    animation: cosmicStarfield 22s linear infinite;
}

body.home-future .site-header {
    background:
        linear-gradient(180deg, rgba(4, 9, 18, 0.88), rgba(4, 9, 18, 0.7)),
        rgba(4, 9, 18, 0.64);
    border-bottom: 1px solid rgba(125, 215, 255, 0.18);
    box-shadow: 0 14px 44px rgba(2, 8, 18, 0.32);
    backdrop-filter: blur(18px) saturate(1.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

body.home-future .hero-future {
    min-height: calc(100svh - 82px);
    background:
        radial-gradient(circle at 80% 18%, rgba(125, 215, 255, 0.26), transparent 34%),
        radial-gradient(circle at 68% 72%, rgba(255, 115, 197, 0.18), transparent 38%),
        radial-gradient(circle at 18% 78%, rgba(146, 255, 216, 0.18), transparent 40%),
        linear-gradient(135deg, #030813 0%, #071421 50%, #030710 100%);
}

body.home-future .hero-content-future {
    min-height: calc(100svh - 82px);
    align-items: center;
    padding-top: 70px;
    padding-bottom: 86px;
}

body.home-future .hero-copy {
    gap: 16px;
}

body.home-future .hero-copy .hero-lead {
    max-width: 690px;
    font-size: clamp(16px, 1.28vw, 20px);
    line-height: 1.55;
}

body.home-future .hero-future::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 20%, rgba(125, 215, 255, 0.14) 22%, transparent 29% 58%, rgba(255, 115, 197, 0.1) 61%, transparent 67%),
        radial-gradient(circle at 75% 48%, rgba(157, 124, 255, 0.28), transparent 36%),
        radial-gradient(circle at 35% 78%, rgba(0, 222, 255, 0.16), transparent 34%);
    mix-blend-mode: screen;
    opacity: 0.82;
    animation: heroEnergySweep 9s ease-in-out infinite alternate;
}

body.home-future .hero-future::after {
    background:
        linear-gradient(90deg, rgba(3, 8, 16, 0.92), rgba(3, 8, 16, 0.68) 48%, rgba(3, 8, 16, 0.16)),
        radial-gradient(circle at 74% 40%, rgba(125, 215, 255, 0.16), transparent 42%);
}

body.home-future .hero-grid-overlay {
    opacity: 0.44;
    background:
        repeating-linear-gradient(0deg, transparent 0 42px, rgba(125, 215, 255, 0.065) 42px 43px),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 115, 197, 0.04) 42px 43px);
    animation: gridCurrent 18s linear infinite;
}

body.home-future .hero-particle-canvas {
    opacity: 0.96;
}

body.home-future .hero-future .hero-media {
    opacity: 0.08;
    filter: saturate(1.1) contrast(1.1) brightness(0.46);
}

body.home-future .hero h1 {
    font-size: clamp(40px, 5.25vw, 64px);
    line-height: 0.96;
    max-width: 780px;
    overflow-wrap: anywhere;
}

body.home-future .hero-title-glitch {
    text-shadow:
        0 0 22px rgba(125, 215, 255, 0.28),
        0 0 52px rgba(157, 124, 255, 0.18);
    animation: digitalFlicker 5.6s linear infinite;
}

body.home-future .hero-title-glitch::before,
body.home-future .hero-title-glitch::after {
    opacity: 0;
    animation-duration: 3.6s;
    animation-timing-function: steps(1, end);
    animation-iteration-count: infinite;
}

body.home-future .hero-title-glitch::before {
    animation-name: titleGlitchA;
    color: rgba(255, 115, 197, 0.34);
    transform: translate3d(-3px, 0, 0);
}

body.home-future .hero-title-glitch::after {
    animation-name: titleGlitchB;
    color: rgba(125, 215, 255, 0.34);
    transform: translate3d(3px, 0, 0);
}

body.home-future .hero-lead,
body.home-future .hero-chip-row span {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

body.home-future .hero-scene {
    min-height: clamp(360px, 42vw, 520px);
    border-radius: 30px;
    border-color: rgba(165, 231, 255, 0.28);
    background:
        radial-gradient(circle at 28% 74%, rgba(157, 124, 255, 0.26), transparent 38%),
        radial-gradient(circle at 78% 26%, rgba(255, 115, 197, 0.22), transparent 42%),
        radial-gradient(circle at 50% 52%, rgba(146, 255, 216, 0.18), transparent 46%),
        linear-gradient(140deg, rgba(6, 16, 30, 0.9), rgba(3, 8, 18, 0.94));
    box-shadow:
        inset 0 0 80px rgba(125, 215, 255, 0.12),
        inset 0 0 140px rgba(255, 115, 197, 0.08),
        0 36px 96px rgba(0, 0, 0, 0.58),
        0 0 70px rgba(125, 215, 255, 0.14);
}

body.home-future .hero-webgl-canvas {
    opacity: 0.6;
    filter: saturate(1.28) contrast(1.12);
}

body.home-future .scene-core {
    z-index: 3;
}

body.home-future .scene-panel {
    z-index: 5;
    opacity: 0.96;
}

body.home-future .scene-panel h3 {
    font-size: clamp(18px, 1.82vw, 27px);
}

body.home-future .scene-panel-left {
    top: 18%;
}

body.home-future .scene-panel-center {
    top: 72%;
    width: clamp(210px, 24vw, 292px);
}

body.home-future .scene-panel-right {
    top: 17%;
}

body.home-future .hero-scene::before {
    opacity: 0.5;
    animation: gridCurrent 14s linear infinite reverse;
}

body.home-future .scene-core {
    width: 132px;
    box-shadow:
        0 0 58px rgba(146, 255, 216, 0.58),
        0 0 112px rgba(157, 124, 255, 0.44),
        0 0 150px rgba(255, 115, 197, 0.22);
    animation-duration: 2.8s;
}

body.home-future .scene-core-ring {
    border-width: 2px;
    box-shadow: 0 0 18px rgba(125, 215, 255, 0.42);
    animation-duration: 5.6s;
}

body.home-future .scene-core-ring--alt {
    animation-duration: 6.4s;
}

body.home-future .scene-panel {
    border-color: rgba(190, 236, 255, 0.34);
    background:
        linear-gradient(145deg, rgba(129, 218, 255, 0.22), rgba(148, 102, 255, 0.16) 46%, rgba(255, 115, 197, 0.13)),
        rgba(5, 14, 28, 0.48);
    backdrop-filter: blur(18px) saturate(1.26);
    -webkit-backdrop-filter: blur(18px) saturate(1.26);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 34px rgba(125, 215, 255, 0.12);
}

body.home-future .scene-panel::before {
    animation-duration: 2.9s;
}

body.home-future .scene-panel h3 {
    text-shadow:
        0 0 18px rgba(125, 215, 255, 0.36),
        0 0 34px rgba(255, 115, 197, 0.16);
}

body.home-future .section,
body.home-future .warm,
body.home-future .trust-section,
body.home-future .service-track-section,
body.home-future .testimonial-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 0%, rgba(125, 215, 255, 0.14), transparent 34%),
        radial-gradient(circle at 86% 72%, rgba(255, 115, 197, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(7, 15, 27, 0.98), rgba(3, 9, 17, 0.98));
}

body.home-future .section::before,
body.home-future .trust-section::before,
body.home-future .service-track-section::before,
body.home-future .testimonial-section::before {
    content: "";
    position: absolute;
    inset: -28%;
    z-index: 0;
    pointer-events: none;
    background:
        conic-gradient(from 180deg at 50% 50%, transparent, rgba(125, 215, 255, 0.08), transparent, rgba(255, 115, 197, 0.08), transparent),
        radial-gradient(circle at 50% 50%, rgba(146, 255, 216, 0.08), transparent 34%);
    opacity: 0.8;
    transform: translate3d(20px, 0, 0) rotate(0deg);
    animation: sectionNebula 18s linear infinite;
}

body.home-future .section::after,
body.home-future .trust-section::after,
body.home-future .service-track-section::after,
body.home-future .dark-cta::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 115, 197, 0.5), rgba(125, 215, 255, 0.72), rgba(146, 255, 216, 0.54), transparent);
    opacity: 0.76;
    pointer-events: none;
    z-index: 1;
}

body.home-future .section > .container,
body.home-future .trust-section > .container,
body.home-future .service-track-section > .container,
body.home-future .testimonial-section > .container,
body.home-future .dark-cta > .container {
    position: relative;
    z-index: 2;
}

body.home-future .section-heading,
body.home-future .client-proof,
body.home-future .split-grid > div,
body.home-future .cta-grid > div {
    text-shadow: 0 0 24px rgba(125, 215, 255, 0.1);
}

body.home-future .service-card,
body.home-future .service-card--future,
body.home-future .case-card,
body.home-future .blog-card,
body.home-future .testimonial-card,
body.home-future .proof-grid article,
body.home-future .process-list li,
body.home-future .visual-band,
body.home-future .mini-card,
body.home-future .feature-panel,
body.home-future .form-panel,
body.home-future .contact-details,
body.home-future .tool-panel,
body.home-future .service-detail,
body.home-future .language-panel,
body.home-future .quote-card {
    --fx-pointer-x: 50%;
    --fx-pointer-y: 50%;
    border-color: rgba(190, 236, 255, 0.34);
    background:
        radial-gradient(circle at var(--fx-pointer-x) var(--fx-pointer-y), rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(158deg, rgba(125, 215, 255, 0.24), rgba(157, 124, 255, 0.2) 48%, rgba(255, 115, 197, 0.16)),
        rgba(4, 12, 24, 0.82);
    box-shadow:
        0 28px 74px rgba(0, 0, 0, 0.58),
        0 0 44px rgba(125, 215, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -26px 58px rgba(0, 0, 0, 0.4);
    transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 360ms ease, border-color 360ms ease, filter 360ms ease;
}

body.home-future .service-card::before,
body.home-future .service-card--future::before,
body.home-future .case-card::before,
body.home-future .blog-card::before,
body.home-future .testimonial-card::before,
body.home-future .proof-grid article::before,
body.home-future .process-list li::before,
body.home-future .visual-band::before,
body.home-future .mini-card::before,
body.home-future .feature-panel::before,
body.home-future .form-panel::before,
body.home-future .contact-details::before,
body.home-future .tool-panel::before,
body.home-future .service-detail::before,
body.home-future .language-panel::before,
body.home-future .quote-card::before {
    background:
        linear-gradient(112deg, transparent 0 20%, rgba(255, 255, 255, 0.26) 38%, rgba(125, 215, 255, 0.14) 48%, transparent 62%),
        radial-gradient(circle at var(--fx-pointer-x) var(--fx-pointer-y), rgba(146, 255, 216, 0.28), transparent 34%);
    opacity: 0.42;
    animation: hologramSweep 4.8s linear infinite;
}

body.home-future .fx-card {
    transform: perspective(1100px) translate3d(0, var(--future-card-lift, 0px), 0) rotateX(var(--fx-tilt-x, 0deg)) rotateY(var(--fx-tilt-y, 0deg));
}

body.home-future .fx-card:hover {
    border-color: rgba(146, 255, 216, 0.58);
    box-shadow:
        0 34px 86px rgba(0, 0, 0, 0.66),
        0 0 58px rgba(125, 215, 255, 0.22),
        0 0 34px rgba(255, 115, 197, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    filter: saturate(1.08);
}

body.home-future .service-card-image,
body.home-future .case-card img,
body.home-future .blog-card img,
body.home-future .visual-band img {
    filter: saturate(1.36) contrast(1.18) brightness(0.78);
    opacity: 0.92;
}

body.home-future .service-card-body,
body.home-future .case-card > div,
body.home-future .blog-card > div {
    background:
        linear-gradient(180deg, rgba(5, 13, 26, 0.22), rgba(5, 13, 26, 0.72) 38%, rgba(3, 8, 18, 0.97) 100%),
        rgba(3, 9, 18, 0.56);
}

body.home-future .client-segments span,
body.home-future .language-cloud span,
body.home-future .service-track-tabs span {
    border: 1px solid rgba(190, 236, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(125, 215, 255, 0.12), rgba(255, 115, 197, 0.08)),
        rgba(5, 13, 26, 0.58);
    color: rgba(236, 248, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.home-future .reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.988);
    filter: blur(3px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.72s ease;
}

body.home-future .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* Shared futuristic page system for all public pages */
body.site-future .page-hero p:last-child,
body.site-future .section-heading p,
body.site-future .split-grid p,
body.site-future .service-main > p,
body.site-future .blog-article-body p,
body.site-future .narrow-content p,
body.site-future .timeline p {
    color: rgba(220, 236, 250, 0.84);
}

body.site-future .service-card,
body.site-future .case-card,
body.site-future .blog-card,
body.site-future .testimonial-card,
body.site-future .case-study-detail,
body.site-future .industry-service-card,
body.site-future .proof-grid article,
body.site-future .process-list li,
body.site-future .timeline article,
body.site-future .mini-card,
body.site-future .feature-panel,
body.site-future .form-panel,
body.site-future .contact-details,
body.site-future .tool-panel,
body.site-future .service-detail,
body.site-future .language-panel,
body.site-future .quote-card,
body.site-future .narrow-content {
    border-color: rgba(214, 234, 255, 0.3);
    background:
        linear-gradient(165deg, rgba(118, 205, 244, 0.24), rgba(71, 121, 166, 0.16) 36%, rgba(122, 84, 180, 0.2) 68%, rgba(210, 79, 148, 0.14) 100%),
        rgba(5, 13, 26, 0.76);
    box-shadow:
        0 24px 56px rgba(2, 10, 20, 0.52),
        0 0 0 1px rgba(133, 203, 255, 0.08),
        inset 0 1px 0 rgba(246, 252, 255, 0.2),
        inset 0 -22px 48px rgba(3, 8, 18, 0.38);
}

body.site-future .timeline article {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border-bottom: 0;
    padding: 20px;
}

body.site-future .case-study-detail img {
    border-radius: 18px;
    border: 1px solid rgba(178, 231, 255, 0.18);
    filter: saturate(1.24) contrast(1.1) brightness(0.72) hue-rotate(150deg);
}

body.site-future .filter-bar button {
    border-color: rgba(178, 231, 255, 0.22);
    background: rgba(6, 18, 31, 0.72);
    color: rgba(232, 239, 249, 0.9);
}

body.site-future .filter-bar button:hover,
body.site-future .filter-bar button.active {
    border-color: rgba(255, 181, 94, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #15100d;
}

body.site-future .tag-cloud span {
    border-color: rgba(178, 231, 255, 0.22);
    background: rgba(5, 18, 32, 0.56);
    color: rgba(220, 236, 250, 0.88);
}

body.site-future .service-proof-strip .proof-grid strong,
body.site-future .proof-grid strong,
body.site-future .timeline h2,
body.site-future .industry-service-card h3,
body.site-future .case-study-detail h2 {
    color: rgba(246, 250, 255, 0.98);
}

body.site-future .alert.success {
    background: rgba(55, 171, 103, 0.14);
    border-color: rgba(107, 230, 156, 0.34);
    color: rgba(235, 255, 242, 0.95);
}

body.site-future .alert.error {
    background: rgba(255, 95, 95, 0.12);
    border-color: rgba(255, 154, 154, 0.34);
    color: rgba(255, 238, 238, 0.95);
}

/* Reference-aligned cinematic homepage pass */
body.home-future {
    --cinema-bg: #050c15;
    --cinema-panel: rgba(5, 16, 28, 0.68);
    --cinema-line: rgba(178, 231, 255, 0.28);
    --cinema-soft-line: rgba(178, 231, 255, 0.16);
    --cinema-glow-cyan: rgba(101, 222, 255, 0.34);
    --cinema-glow-pink: rgba(255, 102, 205, 0.26);
    --cinema-glow-violet: rgba(152, 118, 255, 0.3);
    background: #030812;
}

body.home-future .container {
    width: min(1220px, calc(100% - 64px));
}

body.home-future .header-inner {
    min-height: 70px;
    align-items: center;
}

body.home-future .brand img {
    width: 188px;
}

body.home-future .primary-nav {
    gap: 2px;
}

body.home-future .primary-nav a {
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0;
    color: rgba(238, 245, 255, 0.88);
}

body.home-future .primary-nav a:hover,
body.home-future .primary-nav a.active,
body.home-future .primary-nav a[aria-current="page"] {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(255, 181, 94, 0.9);
}

body.home-future .header-quote {
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 6px;
}

body.home-future .hero-future {
    min-height: min(700px, calc(100svh - 70px));
    background:
        linear-gradient(180deg, rgba(3, 8, 18, 0.1), rgba(3, 8, 18, 0.66) 74%, #06111b 100%),
        radial-gradient(circle at 84% 42%, rgba(255, 106, 205, 0.26), transparent 33%),
        radial-gradient(circle at 68% 14%, rgba(102, 220, 255, 0.22), transparent 31%),
        linear-gradient(135deg, #030812 0%, #081527 58%, #030812 100%);
}

body.home-future .hero-future .hero-media {
    background-image: url("../images/sentencial-localisation-hero.jpg");
    background-position: center right;
    background-size: cover;
    opacity: 0.95;
    filter: saturate(1.04) contrast(1.04) brightness(0.82);
    mix-blend-mode: normal;
}

body.home-future .hero-future::after {
    background:
        linear-gradient(90deg, rgba(5, 11, 20, 0.94) 0%, rgba(5, 11, 20, 0.78) 38%, rgba(5, 11, 20, 0.32) 66%, rgba(5, 11, 20, 0.12) 100%),
        linear-gradient(180deg, rgba(5, 11, 20, 0.18), rgba(5, 11, 20, 0.46));
}

body.home-future .hero-content-future {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 42px;
    min-height: min(680px, calc(100svh - 70px));
    padding-top: 74px;
    padding-bottom: 72px;
    align-items: center;
}

body.home-future .hero-copy .eyebrow,
body.home-future .hero-chip-row {
    display: none;
}

body.home-future .hero h1 {
    max-width: 680px;
    font-size: clamp(54px, 6.2vw, 96px);
    line-height: 1.0;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(244, 248, 255, 0.97);
}

body.home-future .hero-copy .hero-lead {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.66;
    color: rgba(226, 238, 250, 0.88);
}

body.home-future .hero-actions {
    gap: 12px;
    margin-top: 8px;
}

body.home-future .hero-actions .btn-secondary,
body.home-future .hero-actions .btn-ghost {
    min-height: 44px;
    background: rgba(4, 12, 24, 0.34);
    border-color: rgba(255, 181, 94, 0.48);
    color: rgba(255, 242, 214, 0.94);
}

body.home-future .hero-scene {
    min-height: clamp(480px, 50vw, 660px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home-future .hero-scene::before {
    inset: -8% -4% -14%;
    opacity: 0.26;
    border-radius: 42px;
}

body.home-future .hero-scene::after {
    display: none;
}

body.home-future .hero-webgl-canvas,
body.home-future .hero-particle-canvas,
body.home-future .hero-grid-overlay,
body.home-future .scene-core,
body.home-future .scene-panel {
    display: none !important;
}

body.home-future .hero-scene::before,
body.home-future .scene-particles {
    display: none;
}

body.home-future .scene-core {
    left: 66%;
    top: 48%;
    width: 94px;
    height: 430px;
    opacity: 0.6;
    filter: blur(0.2px) saturate(1.3);
    transform: translate3d(-50%, -50%, 10px) rotate(8deg);
}

body.home-future .scene-panel {
    width: min(390px, 54%);
    min-height: 116px;
    padding: 23px 30px;
    border-radius: 22px;
    border: 1px solid rgba(216, 246, 255, 0.48);
    background:
        radial-gradient(circle at 8% 82%, rgba(102, 220, 255, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(191, 235, 255, 0.22), rgba(127, 104, 255, 0.14) 48%, rgba(255, 104, 205, 0.1)),
        rgba(9, 20, 34, 0.42);
    backdrop-filter: blur(18px) saturate(1.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.22);
    box-shadow:
        0 24px 78px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(102, 220, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -24px 46px rgba(4, 9, 18, 0.34);
}

body.home-future .scene-panel::before {
    opacity: 0.5;
}

body.home-future .scene-panel h3 {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
}

body.home-future .scene-panel p,
body.home-future .scene-panel-center li {
    font-size: 12px;
    line-height: 1.5;
}

body.home-future .scene-panel-left {
    left: 7%;
    top: 7%;
    transform: rotateZ(-8deg) rotateY(-12deg) translate3d(0, 0, 34px);
}

body.home-future .scene-panel-right {
    left: 17%;
    right: auto;
    top: 36%;
    transform: rotateZ(-5deg) rotateY(-10deg) translate3d(0, 0, 42px);
}

body.home-future .scene-panel-center {
    left: 28%;
    top: 67%;
    width: min(390px, 54%);
    transform: rotateZ(-7deg) rotateY(-9deg) translate3d(0, 0, 50px);
}

body.home-future.future-motion-ready .scene-panel-left {
    transform: rotateZ(-8deg) rotateY(-12deg) translate3d(0, 0, 34px);
}

body.home-future.future-motion-ready .scene-panel-right {
    transform: rotateZ(-5deg) rotateY(-10deg) translate3d(0, 0, 42px);
}

body.home-future.future-motion-ready .scene-panel-center {
    transform: rotateZ(-7deg) rotateY(-9deg) translate3d(0, 0, 50px);
}

body.home-future .trust-section {
    padding-top: 44px;
}

body.home-future .proof-grid {
    gap: 0;
    padding: 26px 18px;
    border: 1px solid var(--cinema-soft-line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 36%, rgba(255, 102, 205, 0.12), transparent 32%),
        radial-gradient(circle at 84% 44%, rgba(101, 222, 255, 0.12), transparent 32%),
        rgba(4, 14, 25, 0.66);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(1.18);
    -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

body.home-future .proof-grid article {
    display: block;
    min-height: 92px;
    padding: 4px 28px 4px 76px;
    border: 0;
    border-left: 1px solid rgba(178, 231, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.home-future .proof-grid article:first-child {
    border-left: 0;
}

body.home-future .proof-grid article::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 7px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(255, 102, 205, 0.38), rgba(101, 222, 255, 0.18) 58%, rgba(4, 14, 25, 0.7) 100%);
    border: 1px solid rgba(214, 246, 255, 0.2);
    box-shadow: 0 0 24px rgba(101, 222, 255, 0.18);
    opacity: 1;
    animation: none;
    z-index: 2;
}

body.home-future .proof-grid article:nth-child(2)::before {
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(101, 222, 255, 0.42), rgba(146, 255, 216, 0.18) 58%, rgba(4, 14, 25, 0.7) 100%);
}

body.home-future .proof-grid article:nth-child(3)::before {
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(146, 255, 216, 0.38), rgba(101, 222, 255, 0.18) 58%, rgba(4, 14, 25, 0.7) 100%);
}

body.home-future .proof-grid article:nth-child(4)::before {
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(255, 181, 94, 0.34), rgba(255, 102, 205, 0.2) 58%, rgba(4, 14, 25, 0.7) 100%);
}

body.home-future .proof-grid article::after {
    display: none;
}

body.home-future .proof-grid strong {
    font-size: 42px;
    color: rgba(242, 248, 255, 0.96);
    text-shadow: 0 0 20px rgba(101, 222, 255, 0.16);
}

body.home-future .proof-grid span {
    margin-top: 6px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(230, 242, 251, 0.95);
}

body.home-future .client-proof {
    margin-top: 30px;
}

body.home-future .cinematic-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 40px 22px 30px;
    border-radius: 22px;
    border: 1px solid rgba(178, 231, 255, 0.16);
    background:
        radial-gradient(circle at 18% 8%, rgba(101, 222, 255, 0.12), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(255, 102, 205, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(6, 18, 31, 0.86), rgba(3, 10, 19, 0.88));
    box-shadow:
        0 26px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

body.home-future .cinematic-panel::before {
    content: "";
    position: absolute;
    inset: -22%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 40%, rgba(101, 222, 255, 0.11), transparent 28%),
        radial-gradient(circle at 88% 68%, rgba(255, 102, 205, 0.11), transparent 30%),
        conic-gradient(from 150deg at 50% 50%, transparent, rgba(101, 222, 255, 0.07), transparent, rgba(255, 102, 205, 0.07), transparent);
    opacity: 0.78;
    animation: panelAurora 20s linear infinite;
}

body.home-future .cinematic-panel::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 205, 0.64), rgba(101, 222, 255, 0.76), transparent);
    pointer-events: none;
    z-index: 1;
}

body.home-future .cinematic-panel > * {
    position: relative;
    z-index: 2;
}

body.home-future .cinematic-panel .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.36fr);
    gap: 26px;
    align-items: start;
    margin-bottom: 30px;
}

body.home-future .cinematic-panel .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -8px;
}

body.home-future .eyebrow,
body.home-future .service-card--future span,
body.home-future .case-card .pill,
body.home-future .blog-card .pill {
    letter-spacing: 0;
}

body.home-future .cinematic-panel .section-heading h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.1;
}

body.home-future .cinematic-panel .section-heading p:not(.eyebrow) {
    width: auto;
    max-width: 380px;
    justify-self: end;
    font-size: 17px;
    line-height: 1.7;
}

body.home-future .service-panel .service-track-tabs {
    display: none;
}

body.home-future .service-panel .card-grid.three,
body.home-future .work-panel .case-grid {
    gap: 20px;
}

body.home-future .service-card--future,
body.home-future .case-card,
body.home-future .blog-card {
    border-radius: 18px;
    border-color: rgba(188, 235, 255, 0.36);
    background:
        radial-gradient(circle at var(--fx-pointer-x) var(--fx-pointer-y), rgba(255, 255, 255, 0.16), transparent 26%),
        rgba(5, 15, 27, 0.7);
    box-shadow:
        0 18px 54px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -24px 52px rgba(0, 0, 0, 0.34);
}

body.home-future .service-card--future {
    min-height: 410px;
}

body.home-future .service-card--future .service-card-image,
body.home-future .case-card img,
body.home-future .blog-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border: 0;
    opacity: 0.92;
    filter: saturate(1.05) contrast(1.04) brightness(0.74);
    transform: scale(1.02);
    transition: transform 620ms ease, opacity 420ms ease, filter 420ms ease;
}

body.home-future .service-card--future:hover .service-card-image,
body.home-future .case-card:hover img,
body.home-future .blog-card:hover img {
    opacity: 1;
    transform: scale(1.06);
}

body.home-future .service-card--future::before,
body.home-future .case-card::before,
body.home-future .blog-card::before {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 102, 205, 0.22), transparent 18%),
        radial-gradient(circle at 82% 12%, rgba(101, 222, 255, 0.22), transparent 20%),
        radial-gradient(circle at 74% 70%, rgba(146, 255, 216, 0.12), transparent 26%),
        linear-gradient(112deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 42%, transparent 56%);
    opacity: 0.76;
}

body.home-future .service-card--future::after,
body.home-future .case-card::after,
body.home-future .blog-card::after {
    background: linear-gradient(90deg, rgba(255, 102, 205, 0.76), rgba(101, 222, 255, 0.9), transparent 76%);
}

body.home-future .service-card--future .service-card-body {
    min-height: 410px;
    justify-content: flex-end;
    padding: 32px 34px 28px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(3, 8, 18, 0.08), rgba(3, 8, 18, 0.62) 52%, rgba(2, 6, 14, 0.96) 100%);
}

body.home-future .service-card--future .service-card-body::before {
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 102, 205, 0.18), transparent 18%),
        radial-gradient(circle at 82% 12%, rgba(101, 222, 255, 0.18), transparent 22%);
}

body.home-future .service-card--future span {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(178, 231, 255, 0.3);
    background: rgba(5, 16, 28, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(214, 240, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

body.home-future .service-card--future h3 {
    max-width: 250px;
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.08;
}

body.home-future .service-card--future p {
    max-width: 320px;
    margin: 0;
    font-size: 15.5px;
    line-height: 1.66;
    color: rgba(226, 238, 250, 0.9);
}

body.home-future .service-card--future .card-actions {
    padding-top: 28px;
}

body.home-future .card-actions a::after,
body.home-future .case-card a::after,
body.home-future .blog-card-footer a::after {
    content: " ->";
    font-weight: 800;
}

body.home-future .case-card {
    display: flex;
    min-height: 360px;
}

body.home-future .case-card > div,
body.home-future .blog-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 26px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(3, 8, 18, 0.06), rgba(3, 8, 18, 0.54) 48%, rgba(2, 6, 14, 0.94) 100%);
}

body.home-future .work-panel .case-card .pill {
    order: 2;
    margin: 0;
    padding: 0;
    min-height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(218, 232, 245, 0.78);
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
}

body.home-future .work-panel .case-card h3 {
    order: 1;
    max-width: 330px;
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.17;
}

body.home-future .work-panel .case-card p {
    display: none;
}

body.home-future .work-panel .case-card a {
    order: 3;
    margin-top: 22px;
}

body.home-future .process-panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    padding-top: 34px;
}

body.home-future .process-panel > div {
    text-shadow: none;
}

body.home-future .process-panel h2 {
    max-width: 420px;
    font-size: 34px;
    line-height: 1.12;
}

body.home-future .process-panel p:not(.eyebrow) {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.7;
}

body.home-future .process-panel .btn {
    margin-top: 18px;
    background: transparent;
    border-color: rgba(255, 181, 94, 0.42);
    color: rgba(255, 242, 214, 0.94);
}

body.home-future .process-list {
    position: relative;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding-top: 26px;
}

body.home-future .process-list::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 47px;
    height: 1px;
    background: linear-gradient(90deg, rgba(101, 222, 255, 0.65), rgba(255, 181, 94, 0.55), rgba(255, 102, 205, 0.4));
}

body.home-future .process-list li {
    display: block;
    min-height: auto;
    padding: 0 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 12px;
    line-height: 1.48;
    font-weight: 600;
    color: rgba(218, 232, 245, 0.72);
}

body.home-future .process-list li::before,
body.home-future .process-list li::after {
    display: none;
}

body.home-future .process-list span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 0 20px;
    background: rgba(4, 14, 25, 0.92);
    border: 1px solid rgba(178, 231, 255, 0.28);
    color: rgba(242, 248, 255, 0.92);
    box-shadow: 0 0 22px rgba(101, 222, 255, 0.12);
}

body.home-future .expertise-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
    gap: 30px;
    align-items: center;
    padding: 26px;
}

body.home-future .expertise-panel::before {
    background:
        radial-gradient(circle at 12% 30%, rgba(101, 222, 255, 0.15), transparent 30%),
        radial-gradient(circle at 88% 68%, rgba(255, 102, 205, 0.13), transparent 34%),
        conic-gradient(from 150deg at 50% 50%, transparent, rgba(101, 222, 255, 0.08), transparent, rgba(255, 102, 205, 0.08), transparent);
    opacity: 0.82;
}

body.home-future .expertise-panel::after {
    background: linear-gradient(90deg, transparent, rgba(255, 102, 205, 0.62), rgba(101, 222, 255, 0.78), transparent);
}

body.home-future .expertise-panel img {
    width: 100%;
    height: clamp(286px, 31vw, 392px);
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(178, 231, 255, 0.26);
    opacity: 0.62;
    filter: saturate(1.32) contrast(1.14) brightness(0.5) hue-rotate(168deg);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.home-future .expertise-panel > div {
    padding: 8px 8px 8px 0;
}

body.home-future .expertise-panel h2 {
    max-width: 560px;
    margin: 0 0 18px;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: 0;
}

body.home-future .expertise-panel p:not(.eyebrow) {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.75;
}

body.home-future .expertise-panel .btn {
    margin-top: 22px;
    background: rgba(4, 12, 24, 0.44);
    border-color: rgba(255, 181, 94, 0.42);
    color: rgba(255, 242, 214, 0.94);
}

@keyframes panelAurora {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    100% { transform: translate3d(-24px, -18px, 0) rotate(360deg); }
}

@keyframes cosmicStarfield {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    100% { transform: translate3d(-80px, -60px, 0) rotate(6deg); }
}

@keyframes heroEnergySweep {
    0% { transform: translate3d(-2%, 0, 0) scale(1); opacity: 0.56; }
    50% { opacity: 0.95; }
    100% { transform: translate3d(2%, -2%, 0) scale(1.06); opacity: 0.78; }
}

@keyframes gridCurrent {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 84px, 84px 0; }
}

@keyframes sectionNebula {
    0% { transform: translate3d(20px, 0, 0) rotate(0deg); }
    100% { transform: translate3d(-20px, -20px, 0) rotate(360deg); }
}

@keyframes hologramSweep {
    0% { background-position: -220% 0, center; }
    100% { background-position: 220% 0, center; }
}

@media (max-width: 640px) {
    body.home-future .hero-content-future {
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 72px;
    }

    body.home-future .hero-copy {
        width: min(100%, 300px);
        justify-self: center;
    }

    body.home-future .hero h1 {
        font-size: clamp(30px, 9.4vw, 38px);
        line-height: 1;
    }

    body.home-future .hero-copy .hero-lead {
        font-size: 16px;
    }

    body.home-future .hero-scene {
        min-height: 150px;
        border-radius: 24px;
    }

    body.home-future .scene-panel-center {
        top: 56%;
        width: min(88%, 286px);
    }

    body.home-future .scene-panel h3 {
        font-size: clamp(15px, 4.8vw, 24px);
    }
}

@media (max-width: 980px) {
    body.home-future .container {
        width: min(100% - 36px, 1220px);
    }

    body.home-future .hero-content-future {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 76px;
        padding-bottom: 76px;
    }

    body.home-future .hero-copy {
        max-width: 660px;
    }

    body.home-future .hero-scene {
        width: 100%;
        min-height: 220px;
    }

    body.home-future .scene-panel {
        width: min(360px, 66%);
    }

    body.home-future .scene-panel-left {
        left: 8%;
        top: 7%;
    }

    body.home-future .scene-panel-right {
        left: 18%;
        top: 36%;
    }

    body.home-future .scene-panel-center {
        left: 28%;
        top: 66%;
        width: min(360px, 66%);
    }

    body.home-future .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    body.home-future .proof-grid article:nth-child(odd) {
        border-left: 0;
    }

    body.home-future .cinematic-panel .section-heading,
    body.home-future .process-panel {
        grid-template-columns: 1fr;
    }

    body.home-future .cinematic-panel .section-heading p:not(.eyebrow) {
        justify-self: start;
        max-width: 680px;
    }

    body.home-future .expertise-panel {
        grid-template-columns: 1fr;
    }

    body.home-future .expertise-panel img {
        height: clamp(240px, 48vw, 360px);
    }

    body.home-future .process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 26px;
    }
}

@media (max-width: 640px) {
    body.home-future .container {
        width: min(100% - 28px, 1220px);
    }

    body.home-future .header-inner {
        min-height: 66px;
        grid-template-columns: auto auto;
    }

    body.home-future .brand img {
        width: 168px;
    }

    body.home-future .primary-nav {
        inset: 66px 0 auto 0;
    }

    body.home-future .hero-content-future {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    body.home-future .hero-copy {
        width: min(100%, 340px);
        justify-self: start;
    }

    body.home-future .hero h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    body.home-future .hero-copy .hero-lead {
        font-size: 14px;
        line-height: 1.64;
    }

    body.home-future .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    body.home-future .hero-actions .btn {
        width: 100%;
    }

    body.home-future .hero-scene {
        min-height: 340px;
    }

    body.home-future .scene-panel-left,
    body.home-future .scene-panel-right {
        display: none;
    }

    body.home-future .scene-panel-center {
        left: 50%;
        top: 50%;
        width: min(90%, 300px);
        transform: translate3d(-50%, -50%, 40px) rotateZ(-5deg);
    }

    body.home-future.future-motion-ready .scene-panel-center {
        transform: translate3d(-50%, -50%, 40px) rotateZ(-5deg);
    }

    body.home-future .cinematic-panel {
        padding: 28px 14px 18px;
        border-radius: 18px;
    }

    body.home-future .cinematic-panel .section-heading {
        gap: 14px;
        margin-bottom: 22px;
    }

    body.home-future .cinematic-panel .section-heading h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    body.home-future .process-panel h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    body.home-future .cinematic-panel .section-heading p:not(.eyebrow) {
        font-size: 14px;
    }

    body.home-future .expertise-panel {
        padding: 18px 14px;
    }

    body.home-future .expertise-panel h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    body.home-future .expertise-panel p:not(.eyebrow) {
        font-size: 14px;
    }

    body.home-future .proof-grid {
        grid-template-columns: 1fr;
        padding: 18px 14px;
    }

    body.home-future .proof-grid article,
    body.home-future .proof-grid article:nth-child(odd) {
        min-height: 78px;
        padding: 2px 8px 16px 64px;
        border-left: 0;
        border-top: 1px solid rgba(178, 231, 255, 0.16);
    }

    body.home-future .proof-grid article:first-child {
        border-top: 0;
    }

    body.home-future .proof-grid article::before {
        left: 10px;
        top: 6px;
    }

    body.home-future .proof-grid strong {
        font-size: 34px;
    }

    body.home-future .service-card--future,
    body.home-future .service-card--future .service-card-body {
        min-height: 360px;
    }

    body.home-future .service-card--future .service-card-body,
    body.home-future .case-card > div,
    body.home-future .blog-card > div {
        padding: 24px 22px 22px;
    }

    body.home-future .service-card--future span {
        margin-bottom: 48px;
    }

    body.home-future .service-card--future h3 {
        font-size: 28px;
    }

    body.home-future .case-card,
    body.home-future .case-card > div,
    body.home-future .blog-card > div {
        min-height: 320px;
    }

    body.home-future .work-panel .case-card h3 {
        font-size: 22px;
    }

    body.home-future .process-list {
        grid-template-columns: 1fr;
        padding-top: 0;
        gap: 16px;
    }

    body.home-future .process-list::before {
        display: none;
    }

    body.home-future .process-list li {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 14px;
        align-items: start;
        padding: 0;
    }

    body.home-future .process-list span {
        margin: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .hero-media,
    .reveal,
    .back-to-top {
        transition: none;
    }

    .hero-media {
        transform: none;
    }

    .scene-panel,
    .scene-panel::before,
    .scene-core,
    .scene-core-ring,
    body.home-future main::before,
    body.home-future .hero-future::before,
    body.home-future .hero-grid-overlay,
    body.home-future .section::before,
    body.home-future .trust-section::before,
    body.home-future .service-track-section::before,
    body.home-future .testimonial-section::before,
    body.home-future .service-card::before,
    body.home-future .service-card--future::before,
    body.home-future .case-card::before,
    body.home-future .blog-card::before,
    body.home-future .testimonial-card::before,
    body.home-future .proof-grid article::before,
    body.home-future .process-list li::before,
    body.home-future .visual-band::before,
    body.home-future .cinematic-panel::before,
    .hero-title-glitch::before,
    .hero-title-glitch::after,
    .scene-particles::before,
    .scene-particles::after,
    .hero-scene::after {
        animation: none !important;
    }

    .hero-scene {
        transform: none !important;
    }

    .hero-webgl-canvas,
    body.home-future .section::after,
    body.home-future .trust-section::after,
    body.home-future .service-track-section::after,
    body.home-future .dark-cta::after,
    body.home-future .fx-card::before {
        display: none !important;
    }

    body.home-future .fx-card {
        transform: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    body.home-future .reveal,
    body.home-future .reveal.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* ─────────────────────────────────────────────────────────────────
   HOVER-LIFT UTILITIES
   ───────────────────────────────────────────────────────────────── */
.testimonial-card {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(2, 10, 18, 0.28);
}

.industry-service-card {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 200ms ease;
}

.industry-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 123, 50, 0.4);
    box-shadow: 0 16px 36px rgba(35, 31, 32, 0.12);
}

.proof-grid article {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.proof-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(2, 10, 18, 0.3);
}

/* ─────────────────────────────────────────────────────────────────
   GRADIENT TEXT — .text-gradient-brand on any inline element
   ───────────────────────────────────────────────────────────────── */
.text-gradient-brand {
    background: linear-gradient(92deg, var(--future-cyan) 0%, var(--future-mint) 45%, var(--future-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* ─────────────────────────────────────────────────────────────────
   SCROLL INDICATOR
   ───────────────────────────────────────────────────────────────── */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
    opacity: 0.6;
    animation: scroll-bounce 2.2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--future-cyan);
}

.scroll-indicator svg {
    width: 22px;
    height: 22px;
    color: var(--future-cyan);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ─────────────────────────────────────────────────────────────────
   COUNTER ANIMATION — stat numbers count up from 0
   ───────────────────────────────────────────────────────────────── */
.count-animated {
    display: inline-block;
}

/* ─────────────────────────────────────────────────────────────────
   FORM IMPROVEMENTS
   ───────────────────────────────────────────────────────────────── */
.form-grid label {
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.file-hint {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

body .quote-dialog label,
body .quote-dialog .eyebrow,
body .quote-dialog p {
    color: #1d1718 !important;
    font-size: 14px;
}

body .quote-dialog h2 {
    color: #1d1718 !important;
}

body .quote-dialog input,
body .quote-dialog select,
body .quote-dialog textarea {
    background: #fafafa !important;
    border-color: #d0c8c0 !important;
    color: #1d1718 !important;
    font-size: 15px;
    padding: 13px 14px;
}

body .quote-dialog input:focus,
body .quote-dialog select:focus,
body .quote-dialog textarea:focus {
    background: #fff !important;
    border-color: var(--orange) !important;
    outline: 2px solid rgba(244, 123, 50, 0.22);
    outline-offset: 0;
}

/* Contact form panel — white inputs on dark background */
body .form-panel input,
body .form-panel select,
body .form-panel textarea {
    background: #fff !important;
    color: #1d1718 !important;
    border-color: #ddd2c9 !important;
}
body .form-panel input:focus,
body .form-panel select:focus,
body .form-panel textarea:focus {
    background: #fff !important;
    border-color: var(--orange) !important;
    outline: 2px solid rgba(244, 123, 50, 0.22);
    outline-offset: 0;
}
body .form-panel input::placeholder,
body .form-panel textarea::placeholder {
    color: #9a8a84 !important;
}
body .form-panel select option {
    background: #fff;
    color: #1d1718;
}

/* ─────────────────────────────────────────────────────────────────
   CONTACT DETAILS SIDE PANEL
   ───────────────────────────────────────────────────────────────── */
body.site-future .contact-details {
    position: sticky;
    top: 100px;
}

/* ─────────────────────────────────────────────────────────────────
   LANGUAGE CHIP CLOUD — make pills look intentional
   ───────────────────────────────────────────────────────────────── */
.language-cloud span {
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-cloud span:hover {
    background: rgba(125, 215, 255, 0.18);
    border-color: rgba(125, 215, 255, 0.5);
    transform: translateY(-2px);
}

.client-segments span {
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.client-segments span:hover {
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────
   MEDIA & POST-PRODUCTION PILLAR — kept for potential re-use
   Dead section removed from HTML; CSS preserved in case re-enabled
   ───────────────────────────────────────────────────────────────── */
.media-pillar-section {
    background: radial-gradient(1200px 600px at 50% -10%, rgba(125,215,255,0.08), transparent 60%),
                linear-gradient(180deg, var(--future-bg-soft), var(--future-bg) 60%);
    color: #e3ecfa;
    padding: 96px 0 110px;
    position: relative;
    overflow: hidden;
}
.media-pillar-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(125,215,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,215,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 90%);
    pointer-events: none;
}
.media-pillar-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    position: relative;
}
.media-pillar-heading .eyebrow {
    color: var(--future-cyan);
    border: 1px solid rgba(125,215,255,0.35);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
    background: rgba(125,215,255,0.06);
}
.media-pillar-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.14;
    color: #fff;
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.media-pillar-heading h2 .text-gradient {
    background: linear-gradient(95deg, #7dd7ff 0%, #92ffd8 45%, #9d7cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.media-pillar-heading p {
    color: #98a8c4;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.media-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 56px;
    position: relative;
}
.media-tile {
    background: linear-gradient(165deg, rgba(20,32,52,0.78) 0%, rgba(12,20,36,0.85) 100%);
    border: 1px solid rgba(125,215,255,0.16);
    border-radius: 18px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
                border-color 200ms ease,
                box-shadow 320ms ease;
    overflow: hidden;
}
.media-tile::after {
    content: "";
    position: absolute;
    top: -1px; right: -1px;
    width: 90px; height: 90px;
    background: radial-gradient(circle at top right, rgba(125,215,255,0.18), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 320ms ease;
}
.media-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(125,215,255,0.45);
    box-shadow: 0 22px 50px rgba(0,0,0,0.35),
                0 0 0 1px rgba(125,215,255,0.18);
}
.media-tile:hover::after { opacity: 1; }

.media-tile-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: rgba(125,215,255,0.07);
    border: 1px solid rgba(125,215,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.media-tile-icon svg { width: 40px; height: 40px; }

.media-tile-body { display: flex; flex-direction: column; gap: 10px; }
.media-tile-tag {
    display: inline-block;
    width: max-content;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--future-cyan);
    background: rgba(125,215,255,0.08);
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0;
    border: 1px solid rgba(125,215,255,0.18);
}
.media-tile h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.media-tile p {
    color: #94a3c0;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.media-tile-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.media-tile-actions .btn-sm {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 8px;
}

.media-pillar-footer {
    text-align: center;
    padding: 32px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(125,215,255,0.06), rgba(157,124,255,0.04));
    border: 1px solid rgba(125,215,255,0.16);
    position: relative;
}
.media-pillar-cta {
    font-size: 17px;
    color: #fff;
    margin: 0 0 18px;
    font-weight: 500;
}
.media-pillar-actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Generic small button modifier used in media tiles */
.btn-sm {
    font-size: 12.5px;
    padding: 8px 14px;
    line-height: 1.2;
}

/* ── Scroll-reveal — opt-in with [data-reveal] ────────────────────
   Smaller, GPU-friendly, never gets stuck (force-visible if JS hasn't
   loaded or the IntersectionObserver isn't supported). */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
[data-reveal].is-revealed,
.no-js [data-reveal] {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 720px) {
    .media-pillar-section { padding: 64px 0 76px; }
    .media-pillar-heading h2 { font-size: 26px; }
    .media-tile { padding: 22px 20px; }
}
