:root {
    --bg: #ffffff;
    --bg-muted: #f4f8f7;
    --surface: #ffffff;
    --ink: #10231f;
    --muted: #60716c;
    --line: #dbe7e3;
    --brand: #087a63;
    --brand-strong: #045944;
    --brand-soft: #e7f5f0;
    --teal: #12a89c;
    --gold: #d89a1f;
    --shadow: 0 24px 70px rgba(10, 48, 40, 0.15);
    --radius: 8px;
    --max: 1360px;
    --anchor-offset: 86px;
}

/* Cinematic international homepage system */
.cinematic-site {
    --cinema-bg: #030712;
    --cinema-bg-2: #07111f;
    --cinema-ink: #f8fafc;
    --cinema-muted: #94a3b8;
    --cinema-line: rgba(148, 163, 184, 0.22);
    --cinema-blue: #18b8ff;
    --cinema-blue-2: #60a5fa;
    --cinema-cyan: #67e8f9;
    --cinema-surface: rgba(15, 23, 42, 0.72);
    --cinema-glass: rgba(15, 23, 42, 0.52);
    background: var(--cinema-bg);
    color: var(--cinema-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
}

.cinematic-site::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, rgba(3, 7, 18, 0.98), rgba(5, 14, 32, 0.96) 52%, rgba(1, 8, 18, 0.98)),
        radial-gradient(circle at 72% 22%, rgba(24, 184, 255, 0.22), transparent 34%);
}

.cinematic-site a {
    color: inherit;
}

.cinema-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 clamp(22px, 4vw, 56px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(3, 7, 18, 0.72);
    backdrop-filter: blur(22px);
}

.cinema-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cinema-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #ffffff;
    box-shadow:
        0 0 34px rgba(24, 184, 255, 0.34),
        inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.cinema-brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.cinema-brand strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1;
}

.cinema-brand small {
    display: block;
    margin-top: 4px;
    color: var(--cinema-muted);
    font-size: 12px;
}

.cinema-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.45vw, 24px);
    color: rgba(248, 250, 252, 0.82);
    font-size: 14px;
    font-weight: 700;
}

.cinema-nav a {
    text-decoration: none;
}

.cinema-nav a:hover {
    color: var(--cinema-cyan);
}

.cinema-actions {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 4px;
    padding: 4px;
    max-width: min(46vw, 680px);
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.46);
    scrollbar-width: none;
}

.language-switch::-webkit-scrollbar {
    display: none;
}

.language-switch button, .language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: max-content;
    min-width: 44px;
    min-height: 32px;
    padding: 0 13px;
    box-sizing: border-box;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--cinema-muted);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.language-switch button.active, .language-switch a.active {
    background: rgba(24, 184, 255, 0.18);
    color: #fff;
}

.cinema-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(24, 184, 255, 0.72);
    border-radius: 8px;
    background: linear-gradient(135deg, #12b7ff, #2563eb);
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cinema-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(24, 184, 255, 0.34);
}

.cinema-button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.16);
}

.cinema-button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
}

.cinema-button-ghost {
    background: rgba(15, 23, 42, 0.42);
    color: #e0f2fe;
    box-shadow: none;
}

.cinema-menu-toggle {
    border-color: rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.68);
}

.cinema-menu-toggle span {
    background: #fff;
}

.cinema-panel,
.cinema-story,
.cinema-contact {
    min-height: 100svh;
    position: relative;
}

.cinema-hero {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(560px, 1.08fr);
    align-items: center;
    gap: 40px;
    padding: 104px clamp(26px, 4.5vw, 70px) 96px;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(5, 18, 42, 0.74) 55%, rgba(4, 9, 20, 0.98)),
        radial-gradient(circle at 76% 42%, rgba(24, 184, 255, 0.22), transparent 30%);
}

.cinema-hero::before {
    content: "";
    position: absolute;
    inset: 10% -10% auto 46%;
    height: 76%;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.cinema-hero-copy,
.cinema-hero-stage,
.hero-proof-dock,
.scroll-cue {
    position: relative;
    z-index: 2;
}

.cinema-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 112px);
    line-height: 0.94;
    letter-spacing: 0;
}

.cinema-hero h1::first-line {
    color: #fff;
}

.cinema-hero-copy p {
    max-width: 630px;
    margin: 28px 0 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.55;
}

.cinema-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cinema-hero-stage {
    min-height: 650px;
}

.world-panel {
    position: absolute;
    inset: 18px 0 80px 0;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(8, 47, 73, 0.24)),
        repeating-linear-gradient(90deg, rgba(96, 165, 250, 0.07) 0, rgba(96, 165, 250, 0.07) 1px, transparent 1px, transparent 82px);
    box-shadow: inset 0 0 80px rgba(24, 184, 255, 0.06);
}

.world-panel span {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(226, 232, 240, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.world-panel i {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cinema-cyan);
    box-shadow: 0 0 24px var(--cinema-blue);
}

.world-panel i:nth-child(2) { top: 36%; left: 58%; }
.world-panel i:nth-child(3) { top: 52%; left: 76%; }
.world-panel i:nth-child(4) { top: 28%; left: 82%; }

.hero-device {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 44px 54px rgba(0, 0, 0, 0.5));
}

.hero-device-main {
    width: min(74%, 560px);
    height: 86%;
    right: 12%;
    bottom: 0;
}

.hero-device-side {
    width: min(34%, 260px);
    height: 42%;
    left: 4%;
    bottom: 10%;
    opacity: 0.92;
}

.glass-card {
    position: absolute;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.62);
    color: #fff;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.glass-card span {
    display: block;
    color: rgba(226, 232, 240, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.glass-card strong {
    display: block;
    margin-top: 6px;
    font-size: 34px;
    line-height: 1;
}

.card-orders {
    top: 14%;
    left: 3%;
}

.card-uptime {
    right: 4%;
    top: 20%;
}

.card-payments {
    right: 0;
    bottom: 13%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.card-payments span {
    padding: 8px 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 7px;
}

.hero-proof-dock {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(2, 6, 23, 0.76);
    backdrop-filter: blur(16px);
}

.hero-proof-dock div {
    min-height: 96px;
    padding: 22px clamp(24px, 4vw, 56px);
    border-right: 1px solid rgba(148, 163, 184, 0.16);
}

.hero-proof-dock span {
    display: block;
    color: var(--cinema-muted);
    font-size: 12px;
    font-weight: 800;
}

.hero-proof-dock strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(17px, 1.7vw, 24px);
    line-height: 1.2;
}

.scroll-cue {
    position: absolute;
    bottom: 116px;
    left: 50%;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(226, 232, 240, 0.44);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: var(--cinema-cyan);
    transform: translateX(-50%);
    animation: scrollPulse 1.4s infinite;
}

@keyframes scrollPulse {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

.cinema-story {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(38px, 6vw, 88px);
    align-items: center;
    padding: 110px clamp(26px, 4.5vw, 70px);
    overflow: clip;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: linear-gradient(180deg, #030712, #06111f);
}

.cinema-story-light {
    background: #f8fafc;
    color: #020617;
}

.cinema-story-hardware {
    background:
        radial-gradient(circle at 70% 40%, rgba(96, 165, 250, 0.2), transparent 32%),
        linear-gradient(180deg, #08111f, #030712);
}

.cinema-story-pilot {
    grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
    background:
        linear-gradient(180deg, #030712, #071827),
        radial-gradient(circle at 56% 100%, rgba(24, 184, 255, 0.22), transparent 42%);
}

.story-copy {
    max-width: 620px;
}

.story-copy h2,
.cinema-contact h2 {
    margin: 0;
    font-size: clamp(44px, 5.8vw, 84px);
    line-height: 0.98;
    letter-spacing: 0;
}

.story-copy p,
.cinema-contact p {
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
}

.cinema-story-light .story-copy p {
    color: #475569;
}

.story-copy ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.story-copy li {
    position: relative;
    padding-left: 28px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 15px;
    font-weight: 750;
}

.story-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cinema-blue);
    box-shadow: 0 0 18px rgba(24, 184, 255, 0.5);
}

.sticky-visual {
    position: sticky;
    top: 110px;
}

.dashboard-shell {
    min-height: 620px;
    display: grid;
    grid-template-columns: 180px 1fr;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.dashboard-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 26px;
    border-right: 1px solid rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.76);
    font-size: 14px;
}

.dashboard-sidebar strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--cinema-blue);
    color: #fff;
}

.dashboard-main {
    padding: 28px;
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dashboard-kpis div,
.dashboard-chart {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.42);
}

.dashboard-kpis div {
    padding: 18px;
}

.dashboard-kpis span {
    color: var(--cinema-muted);
    font-size: 12px;
    font-weight: 800;
}

.dashboard-kpis strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
}

.dashboard-chart {
    height: 390px;
    display: flex;
    align-items: end;
    gap: 18px;
    margin-top: 18px;
    padding: 32px;
}

.dashboard-chart i {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--cinema-cyan), #2563eb);
    box-shadow: 0 0 22px rgba(24, 184, 255, 0.28);
}

.app-stack,
.hardware-gallery {
    min-height: 620px;
}

.app-stack {
    display: grid;
    place-items: center;
}

.app-stack img {
    position: absolute;
    max-width: min(52%, 460px);
    max-height: 70%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.22);
}

.app-stack img:first-child {
    left: 12%;
    transform: rotate(-4deg);
}

.app-stack img:nth-child(2) {
    right: 8%;
    transform: rotate(3deg);
}

.app-caption {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
    border-radius: 999px;
    background: #020617;
    color: #fff;
    font-weight: 850;
}

.rental-flow-cinema {
    position: relative;
    min-height: 420vh;
    display: block;
    overflow: visible;
    padding: 0 clamp(22px, 4vw, 70px);
    background:
        radial-gradient(circle at 15% 8%, rgba(34, 197, 94, 0.16), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(56, 189, 248, 0.18), transparent 30%),
        linear-gradient(180deg, #020617 0%, #07111f 48%, #0b1220 100%);
    color: #fff;
}

.rental-flow-cinema::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 80%, transparent 100%);
}

.rental-flow-stage {
    position: sticky;
    top: 0;
    z-index: 1;
    width: min(1440px, 100%);
    min-height: 100svh;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    padding: clamp(78px, 9svh, 112px) 0 clamp(34px, 5.5svh, 64px);
}

.rental-flow-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
}

.rental-flow-copy span {
    color: #5eead4;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rental-flow-copy h2 {
    max-width: 1120px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.8vw, 86px);
    font-weight: 950;
    line-height: 0.94;
}

.rental-flow-copy p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: clamp(16px, 1.28vw, 20px);
    line-height: 1.6;
}

.rental-flow-viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    margin: clamp(18px, 2.5vw, 30px) auto 0;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 30px;
    background:
        radial-gradient(circle at calc(var(--rental-progress, 0) * 100%) 0%, rgba(94, 234, 212, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.84));
    box-shadow: 0 48px 140px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.rental-flow-viewport::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 54%);
    transform: translateX(calc((var(--rental-progress, 0) * 180%) - 120%));
}

.rental-flow-toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.8);
    font-size: 13px;
    font-weight: 900;
}

.rental-flow-toolbar div {
    display: flex;
    gap: 8px;
}

.rental-flow-toolbar i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.7);
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.48);
}

.rental-flow-window {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.rental-flow-window::before,
.rental-flow-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: min(13vw, 170px);
    pointer-events: none;
}

.rental-flow-window::before {
    left: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), transparent);
}

.rental-flow-window::after {
    right: 0;
    background: linear-gradient(270deg, rgba(2, 6, 23, 0.92), transparent);
}

.rental-flow-strip {
    position: absolute;
    inset: 20px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.76);
    opacity: var(--flow-opacity, 1);
    transform: translate3d(0, var(--flow-y, 0), 0) scale(var(--flow-scale, 1));
    transform-origin: center;
    transition: opacity 0.18s linear, transform 0.18s linear;
}

.rental-flow-strip-b {
    --flow-opacity: 0;
}

.rental-flow-strip img {
    display: block;
    width: auto;
    max-width: none;
    height: 100%;
    will-change: transform;
    filter: saturate(1.03) contrast(1.04);
}

.rental-flow-strip figcaption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 6;
    padding: 10px 13px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.78);
    color: rgba(226, 232, 240, 0.88);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.rental-flow-progress {
    position: relative;
    z-index: 2;
    height: 5px;
    background: rgba(148, 163, 184, 0.16);
}

.rental-flow-progress span {
    display: block;
    width: calc(var(--rental-progress, 0) * 100%);
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #fbbf24);
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.48);
}

.hardware-gallery {
    position: relative;
}

.hardware-gallery img {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 40px 54px rgba(0, 0, 0, 0.42));
}

.hardware-gallery img:first-child {
    width: 58%;
    height: 88%;
    right: 18%;
    bottom: 0;
}

.hardware-gallery img:nth-child(2) {
    width: 32%;
    height: 42%;
    left: 2%;
    bottom: 8%;
}

.hardware-gallery img:nth-child(3) {
    width: 36%;
    height: 46%;
    right: 0;
    top: 8%;
}

.pilot-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pilot-path article {
    min-height: 430px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.54);
}

.pilot-path span {
    color: var(--cinema-cyan);
    font-size: 13px;
    font-weight: 900;
}

.pilot-path strong {
    display: block;
    margin-top: 150px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}

.pilot-path p {
    color: var(--cinema-muted);
    font-size: 14px;
}

.cinema-story-factory {
    grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
    background: #f8fafc;
    color: #020617;
}

.cinema-story-factory .story-copy p {
    color: #475569;
}

.factory-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.factory-board div {
    min-height: 260px;
    display: grid;
    place-items: center;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(24, 184, 255, 0.08), rgba(15, 23, 42, 0.03)),
        repeating-linear-gradient(45deg, rgba(2, 6, 23, 0.04) 0, rgba(2, 6, 23, 0.04) 1px, transparent 1px, transparent 18px);
    color: #0f172a;
    font-weight: 900;
}

.cinema-contact {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 0.8fr);
    gap: clamp(34px, 5vw, 80px);
    align-items: center;
    padding: 110px clamp(26px, 4.5vw, 70px);
    background:
        linear-gradient(135deg, #030712, #08182a),
        radial-gradient(circle at 78% 34%, rgba(24, 184, 255, 0.18), transparent 34%);
}

.cinema-form {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.66);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.cinema-form label {
    color: rgba(226, 232, 240, 0.88);
}

.cinema-form input,
.cinema-form select,
.cinema-form textarea {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.46);
    color: #fff;
}

.cinema-footer {
    padding: clamp(42px, 6vw, 76px) clamp(24px, 5vw, 82px) 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background:
        radial-gradient(circle at 14% 0%, rgba(37, 211, 102, 0.13), transparent 30%),
        linear-gradient(180deg, #020617 0%, #030712 100%);
    color: rgba(226, 232, 240, 0.72);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.65fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 0 42px rgba(24, 184, 255, 0.28),
        inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.footer-brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-brand-block strong {
    color: #f8fafc;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 0.98;
    letter-spacing: 0;
}

.footer-brand-block p {
    max-width: 440px;
    margin: 18px 0 0;
    color: rgba(203, 213, 225, 0.76);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-contact-row a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.56);
}

.footer-contact-row a:first-child {
    border-color: rgba(37, 211, 102, 0.34);
    color: #052012;
    background: linear-gradient(135deg, #25d366 0%, #8dffbc 100%);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
}

.footer-columns div {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-columns h3 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-columns a {
    color: rgba(203, 213, 225, 0.74);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.35;
    text-decoration: none;
}

.footer-columns a:hover,
.footer-contact-row a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: clamp(34px, 5vw, 58px);
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: rgba(148, 163, 184, 0.74);
    font-size: 12px;
    line-height: 1.6;
}

.legal-page {
    min-height: 100vh;
    margin: 0;
    color: var(--cinema-ink);
    background:
        linear-gradient(rgba(25, 112, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 112, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 12% 8%, rgba(20, 122, 255, 0.18), transparent 32%),
        radial-gradient(circle at 90% 14%, rgba(18, 203, 255, 0.16), transparent 30%),
        #fbfdff;
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.legal-page .cinema-header {
    background: rgba(255, 255, 255, 0.84);
    border-bottom-color: rgba(25, 112, 255, 0.12);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.legal-page .cinema-brand strong,
.legal-page .cinema-nav a {
    color: var(--cinema-ink);
}

.legal-page .cinema-brand small {
    color: #5f718a;
}

.legal-shell {
    width: min(920px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 132px 0 78px;
}

.legal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.legal-back {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.66);
}

.legal-language-switch {
    min-width: 158px;
    border-color: rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.66);
}

.legal-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(25, 112, 255, 0.13);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.86));
    box-shadow: 0 34px 92px rgba(35, 92, 160, 0.13);
}

.legal-card > span {
    color: var(--cinema-blue-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-card h1 {
    margin: 12px 0 0;
    color: var(--cinema-ink);
    font-size: clamp(38px, 7vw, 74px);
    line-height: 0.95;
    letter-spacing: 0;
}

.legal-updated {
    color: #64748b;
    font-size: 13px;
}

.legal-card h2 {
    margin: 32px 0 8px;
    color: var(--cinema-ink);
    font-size: 18px;
}

.legal-card p {
    color: #4f6077;
    font-size: 15px;
    line-height: 1.85;
}

.legal-card a {
    color: var(--cinema-blue-strong);
    font-weight: 800;
}

@media (max-width: 560px) {
    .legal-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

.resource-page {
    min-height: 100vh;
    background: #02040a;
}

.resource-shell {
    width: min(1280px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 132px 0 88px;
}

.resource-hero {
    min-height: min(620px, calc(100svh - 110px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: end;
    gap: clamp(24px, 6vw, 80px);
    padding: clamp(34px, 7vw, 76px);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 18%, rgba(24, 184, 255, 0.24), transparent 32%),
        radial-gradient(circle at 14% 82%, rgba(37, 211, 102, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(3, 7, 18, 0.98));
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.38);
    position: relative;
}

.resource-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -38% 18%;
    height: 52%;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.11) 0 1px, transparent 1px 88px),
        linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.16), transparent);
    transform: rotate(-6deg);
    opacity: 0.64;
}

.resource-hero > * {
    position: relative;
    z-index: 1;
}

.resource-hero span,
.resource-section-heading span,
.resource-machine-panel span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 999px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.1);
}

.resource-hero h1 {
    max-width: 880px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: 0;
}

.resource-hero p {
    max-width: 820px;
    margin: 24px 0 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.7;
}

.resource-hero-actions {
    display: grid;
    gap: 14px;
}

.resource-map-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.resource-card,
.resource-ai-summary,
.resource-machine-panel {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.76)),
        rgba(15, 23, 42, 0.72);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.resource-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(125, 211, 252, 0.11) 44%, transparent 58%);
    transform: translateX(-120%);
    transition: transform 0.76s ease;
}

.resource-card:hover::before {
    transform: translateX(120%);
}

.resource-card > span {
    color: #60a5fa;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resource-card h2 {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.08;
    letter-spacing: 0;
}

.resource-card p {
    min-height: 96px;
    margin: 14px 0 18px;
    color: rgba(203, 213, 225, 0.76);
    font-size: 14px;
    line-height: 1.68;
}

.resource-card a,
.resource-card strong {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin-top: 8px;
    padding: 0 14px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 12px;
    color: rgba(248, 250, 252, 0.92);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    background: rgba(2, 6, 23, 0.42);
}

.resource-card a:hover {
    border-color: rgba(125, 211, 252, 0.34);
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.1);
}

.resource-machine-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    align-items: center;
    gap: 28px;
    margin-top: 22px;
    padding: clamp(26px, 5vw, 48px);
}

.resource-machine-panel h2,
.resource-section-heading h2 {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

.resource-machine-panel p,
.resource-section-heading p {
    max-width: 820px;
    margin: 16px 0 0;
    color: rgba(203, 213, 225, 0.76);
    font-size: 16px;
    line-height: 1.72;
}

.resource-machine-links {
    display: grid;
    gap: 12px;
}

.resource-machine-links a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 14px;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    background: rgba(14, 165, 233, 0.12);
}

.resource-ai-summary {
    margin-top: 22px;
    padding: clamp(28px, 5vw, 54px);
}

.resource-ai-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.resource-ai-grid article {
    min-height: 214px;
    padding: 22px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.46);
}

.resource-ai-grid span {
    color: #25d366;
    font-size: 12px;
    font-weight: 900;
}

.resource-ai-grid h3 {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
}

.resource-ai-grid p {
    margin: 12px 0 0;
    color: rgba(203, 213, 225, 0.74);
    font-size: 14px;
    line-height: 1.68;
}

.resource-ai-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .resource-hero,
    .resource-machine-panel {
        grid-template-columns: 1fr;
    }

    .resource-map-grid,
    .resource-ai-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .resource-shell {
        width: min(100% - 24px, 680px);
        padding-top: 104px;
    }

    .resource-hero {
        min-height: auto;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .resource-hero h1 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .resource-map-grid,
    .resource-ai-grid,
    .resource-ai-links {
        grid-template-columns: 1fr;
    }

    .resource-card {
        min-height: auto;
    }

    .resource-card p {
        min-height: 0;
    }
}

/* Highest-priority compact language picker overrides legacy mobile language pills. */
.cinematic-site .language-switch.is-enhanced,
.language-switch.is-enhanced {
    overflow: visible;
}

.cinematic-site .language-switch.is-enhanced > .language-current,
.language-switch.is-enhanced > .language-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    padding: 0 36px 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(23, 105, 255, 0.96), rgba(43, 148, 255, 0.92));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.22);
    transform: none;
}

.cinematic-site .language-switch.is-enhanced > .language-current:hover,
.language-switch.is-enhanced > .language-current:hover {
    color: #ffffff;
    transform: none;
}

@media (max-width: 720px) {
    .cinematic-site .language-switch.is-enhanced,
    .language-switch.is-enhanced {
        min-width: 84px;
    }

    .cinematic-site .language-switch.is-enhanced > .language-current,
    .language-switch.is-enhanced > .language-current {
        min-width: 84px;
        height: 34px;
        padding: 0 32px 0 14px;
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .cinema-nav {
        position: fixed;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 14px;
        background: rgba(3, 7, 18, 0.94);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
    }

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

    .cinema-nav a {
        padding: 14px 12px;
    }

    .cinema-menu-toggle {
        display: block;
    }

    .cinema-hero,
    .cinema-story,
    .cinema-contact {
        grid-template-columns: 1fr;
    }

    .cinema-hero-stage,
    .story-visual {
        min-height: 560px;
    }

    .pilot-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-visual {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .cinema-header {
        height: 70px;
        padding: 0 16px;
    }

    .cinema-brand small,
    .cinema-button-small {
        display: none;
    }

    .language-switch {
        max-width: min(58vw, 320px);
        overflow-x: auto;
        gap: 2px;
        padding: 3px;
        scrollbar-width: none;
    }

    .language-switch::-webkit-scrollbar {
        display: none;
    }

    .language-switch button, .language-switch a {
        min-width: max-content;
        min-height: 30px;
        padding: 0 10px;
        font-size: 11px;
    }

    .language-switch button[data-language="zh"], .language-switch a[hreflang="zh-CN"] {
        min-width: max-content;
    }

    .cinema-nav {
        top: 70px;
        left: 16px;
        right: 16px;
    }

    .cinema-hero {
        min-height: 100svh;
        padding: 92px 16px 188px;
        gap: 14px;
    }

    .cinema-hero h1 {
        font-size: 44px;
    }

    .cinema-hero-copy p {
        font-size: 16px;
        margin-top: 18px;
    }

    .cinema-hero-stage {
        min-height: 320px;
    }

    .world-panel {
        inset: 12px 0 20px;
    }

    .hero-device-main {
        width: 58%;
        height: 84%;
        right: 13%;
    }

    .hero-device-side,
    .card-uptime,
    .card-payments {
        display: none;
    }

    .glass-card {
        padding: 12px;
    }

    .glass-card strong {
        font-size: 24px;
    }

    .hero-proof-dock {
        grid-template-columns: 1fr;
    }

    .hero-proof-dock div {
        min-height: 64px;
        padding: 12px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .scroll-cue {
        display: none;
    }

    .cinema-story,
    .cinema-contact {
        min-height: auto;
        padding: 78px 16px;
    }

    .story-copy h2,
    .cinema-contact h2 {
        font-size: 38px;
    }

    .story-copy p,
    .cinema-contact p {
        font-size: 16px;
    }

    .dashboard-shell {
        min-height: 440px;
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-kpis {
        grid-template-columns: 1fr;
    }

    .dashboard-chart {
        height: 220px;
    }

    .app-stack,
    .hardware-gallery,
    .story-visual {
        min-height: 400px;
    }

    .app-stack img {
        max-width: 70%;
    }

    .hardware-gallery img:first-child {
        width: 72%;
        right: 12%;
    }

    .hardware-gallery img:nth-child(2),
    .hardware-gallery img:nth-child(3) {
        display: none;
    }

    .pilot-path,
    .factory-board {
        grid-template-columns: 1fr;
    }

    .pilot-path article {
        min-height: auto;
    }

    .pilot-path strong {
        margin-top: 58px;
    }

    .cinema-footer {
        padding: 36px 16px 24px;
    }

    .footer-main,
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

[id] {
    scroll-margin-top: var(--anchor-offset);
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.muted-section {
    background: var(--bg-muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 231, 227, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 244px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
}

.brand strong,
.site-footer strong {
    display: block;
    font-size: 16px;
    letter-spacing: 0;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #30443f;
    font-size: 14px;
    font-weight: 650;
}

.primary-nav a,
.text-link {
    text-decoration: none;
}

.primary-nav a:hover,
.text-link:hover {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.text-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.text-link.strong {
    color: var(--brand);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 760;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--brand-strong);
    box-shadow: 0 12px 28px rgba(8, 122, 99, 0.22);
}

.button-secondary {
    background: #fff;
    color: var(--brand);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    padding: 76px 0 42px;
    min-height: calc(100vh - 156px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 38%, rgba(18, 168, 156, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(231, 245, 240, 0.94), rgba(255, 255, 255, 0) 58%),
        linear-gradient(180deg, #ffffff 0%, #f6fbf9 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    align-items: center;
    gap: 64px;
}

.platform-line {
    margin: 0 0 22px;
    color: var(--brand);
    font-size: 15px;
    font-weight: 840;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(52px, 6.4vw, 88px);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 810px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-points strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.hero-points span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 680;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.station-panel,
.dashboard-panel,
.app-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.station-panel {
    position: absolute;
    inset: 0 74px 42px 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.global-backdrop {
    position: absolute;
    inset: 58px 6px 32px 70px;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 48%, rgba(8, 122, 99, 0.1) 49%, rgba(8, 122, 99, 0.1) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(8, 122, 99, 0.1) 49%, rgba(8, 122, 99, 0.1) 51%, transparent 52%),
        radial-gradient(circle, rgba(8, 122, 99, 0.07), transparent 64%);
}

.station-showcase {
    position: relative;
    flex: 1;
    min-height: 0;
    display: grid;
    place-items: center;
}

.station-showcase img {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 34px 34px rgba(8, 34, 28, 0.2));
}

.station-primary {
    width: 78%;
    height: 96%;
    right: 5%;
    bottom: -2%;
}

.station-secondary {
    width: 43%;
    height: 58%;
    left: 0;
    bottom: 8%;
    opacity: 0.92;
}

.station-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.station-topline strong {
    color: var(--brand);
}

.dashboard-panel {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 330px;
    padding: 22px;
}

.panel-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.panel-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cad8d4;
}

.dash-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}

.dash-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 720;
}

.dash-row strong {
    font-size: 30px;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dash-kpis span {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
}

.dash-kpis strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
}

.dash-chart {
    height: 136px;
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--brand-soft);
}

.dash-chart i {
    flex: 1;
    display: block;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--teal), var(--brand));
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.dash-grid span {
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 720;
}

.app-panel {
    position: absolute;
    left: 26px;
    bottom: 22px;
    width: 235px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-panel img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.app-panel span {
    font-size: 13px;
    font-weight: 780;
}

.proof-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--brand-strong);
    color: #fff;
}

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

.proof-grid div {
    min-height: 112px;
    padding: 24px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 720;
}

.proof-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.35;
}

.launch-path-section {
    background: #071f1a;
    color: #fff;
}

.launch-path-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 58px;
    align-items: start;
}

.launch-path-section .section-heading {
    position: sticky;
    top: 116px;
    margin-bottom: 0;
}

.launch-path-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.decision-stack {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.decision-stack div {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.decision-stack span {
    display: block;
    margin-bottom: 8px;
    color: #6ee7d3;
    font-size: 12px;
    font-weight: 860;
    text-transform: uppercase;
}

.decision-stack strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.38;
}

.launch-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.launch-step {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.launch-step.featured {
    grid-row: span 2;
    min-height: 534px;
    background:
        linear-gradient(180deg, rgba(18, 168, 156, 0.22), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.06);
}

.launch-step span {
    color: #6ee7d3;
    font-size: 12px;
    font-weight: 860;
}

.launch-step h3 {
    margin: 20px 0 14px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.02;
    letter-spacing: 0;
}

.launch-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

.microservice-band {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.microservice-band strong {
    display: block;
    font-size: 25px;
    line-height: 1.14;
}

.microservice-band p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.microservice-band ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.microservice-band li {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 760;
}

.pilot-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
}

.pilot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 18px;
}

.pilot-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(10, 48, 40, 0.06);
}

.pilot-card-wide {
    grid-row: span 2;
    min-height: 538px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    background:
        linear-gradient(180deg, rgba(8, 122, 99, 0.04), rgba(8, 122, 99, 0.14)),
        #fff;
}

.pilot-card.dark {
    background: #071f1a;
    color: #fff;
}

.pilot-card span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 860;
    text-transform: uppercase;
}

.pilot-card.dark span {
    color: #6ee7d3;
}

.pilot-card h3 {
    margin: 18px 0 12px;
    font-size: clamp(23px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: 0;
}

.pilot-card:not(.pilot-card-wide) h3 {
    font-size: 25px;
}

.pilot-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.pilot-card.dark p {
    color: rgba(255, 255, 255, 0.72);
}

.pilot-card ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.pilot-card li {
    position: relative;
    padding-left: 18px;
    color: #334943;
    font-size: 14px;
    font-weight: 700;
}

.pilot-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand);
}

.pilot-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pilot-metrics div {
    min-height: 114px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid rgba(8, 122, 99, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
}

.pilot-metrics strong {
    display: block;
    color: var(--brand-strong);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.pilot-metrics span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 780;
    text-transform: none;
}

.comparison-section {
    background: #fff;
}

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

.comparison-card {
    min-height: 420px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(10, 48, 40, 0.05);
}

.comparison-card.featured {
    background:
        linear-gradient(180deg, rgba(18, 168, 156, 0.18), rgba(4, 89, 68, 0.02)),
        var(--brand-strong);
    color: #fff;
    box-shadow: 0 24px 64px rgba(4, 89, 68, 0.22);
}

.comparison-card span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 860;
    text-transform: uppercase;
}

.comparison-card.featured span {
    color: #6ee7d3;
}

.comparison-card h3 {
    margin: 18px 0 22px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: 0;
}

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

.comparison-card li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 690;
}

.comparison-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
}

.comparison-card.featured li {
    color: rgba(255, 255, 255, 0.82);
}

.comparison-card.featured li::before {
    background: #6ee7d3;
}

.tech-page {
    background: #f7fbfa;
}

.tech-hero-v2 {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 20%, rgba(18, 168, 156, 0.2), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f0faf6 100%);
}

.tech-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    gap: 72px;
    align-items: center;
}

.tech-hero-grid h1 {
    margin: 0;
    font-size: clamp(52px, 6.6vw, 92px);
    line-height: 0.96;
    letter-spacing: 0;
}

.platform-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.platform-node {
    min-height: 112px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: #24433b;
    text-align: center;
    font-weight: 820;
}

.platform-node.main {
    grid-column: span 2;
    min-height: 178px;
    background: var(--brand-strong);
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
}

.platform-node.main span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.platform-timeline article {
    min-height: 310px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.section-heading h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p,
.contact-section p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.solution-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.solution-rail article {
    min-height: 260px;
    padding: 26px;
    border-right: 1px solid var(--line);
}

.solution-rail article:last-child {
    border-right: 0;
}

.solution-rail span,
.timeline span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 820;
}

.solution-rail h3,
.product-card h3,
.capability-list h3,
.scenario-grid h3,
.timeline h3 {
    margin: 20px 0 10px;
    font-size: 21px;
    line-height: 1.16;
    letter-spacing: 0;
}

.solution-rail p,
.product-card p,
.capability-list p,
.scenario-grid p,
.timeline p,
.faq-list p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 48, 40, 0.06);
}

.product-image {
    display: grid;
    place-items: center;
    width: 100%;
    height: 310px;
    padding: 26px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #edf5f2);
    cursor: zoom-in;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.22s ease;
}

.product-image:hover img {
    transform: scale(1.04);
}

.product-card > div:last-child {
    padding: 26px;
}

.product-card h3 {
    margin-top: 0;
}

.product-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.product-card li {
    position: relative;
    padding-left: 18px;
    color: #334943;
    font-size: 14px;
    font-weight: 680;
}

.product-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand);
}

.software-grid,
.trust-grid,
.faq-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 58px;
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 116px;
}

.capability-list {
    display: grid;
    gap: 16px;
}

.capability-list article,
.scenario-grid article,
.timeline article,
.faq-list details,
.quote-form,
.media-placeholder,
.trust-list div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.capability-list article {
    padding: 28px;
}

.capability-list h3 {
    margin-top: 0;
}

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

.trust-list div {
    padding: 18px;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.trust-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.media-placeholder {
    min-height: 190px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(8, 122, 99, 0.12), rgba(18, 168, 156, 0.04)),
        repeating-linear-gradient(45deg, rgba(8, 122, 99, 0.08) 0, rgba(8, 122, 99, 0.08) 1px, transparent 1px, transparent 14px);
    color: var(--brand-strong);
    font-weight: 780;
    text-align: center;
}

.media-placeholder.large {
    grid-column: span 2;
    min-height: 300px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.timeline article {
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 28px;
}

.timeline article:last-child {
    border-right: 0;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.scenario-grid article {
    padding: 24px;
}

.scenario-grid h3 {
    margin-top: 0;
}

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

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 780;
}

.faq-list p {
    margin-top: 14px;
}

.contact-section {
    background: var(--brand-strong);
    color: #fff;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-cards a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    font-weight: 760;
}

.contact-cards .contact-card-whatsapp {
    position: relative;
    min-height: 52px;
    padding: 0 22px;
    border-color: rgba(37, 211, 102, 0.7);
    color: #04150b;
    background: linear-gradient(135deg, #25d366 0%, #8dffbc 100%);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
    overflow: hidden;
}

.contact-cards .contact-card-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.46) 48%, transparent 70%);
    transform: translateX(-120%);
    animation: whatsapp-sheen 3.8s ease-in-out infinite;
    pointer-events: none;
}

.contact-cards .contact-card-whatsapp:hover {
    transform: translateY(-1px);
}

.quote-form {
    padding: 28px;
    background: #fff;
    color: var(--ink);
}

.quote-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #30443f;
    font-size: 13px;
    font-weight: 780;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
}

.quote-form textarea {
    resize: vertical;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    padding: 42px 0;
    background: #071f1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 36px;
}

.site-footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.site-footer span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 820;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(3, 18, 15, 0.82);
}

.image-modal.active {
    display: flex;
}

.image-modal figure {
    width: min(960px, 100%);
    margin: 0;
}

.image-modal img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    background: #fff;
}

.image-modal figcaption {
    margin-top: 12px;
    color: #fff;
    text-align: center;
    font-weight: 760;
}

.modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.email-choice-panel {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(18px);
}

.email-choice-panel.active {
    display: flex;
}

.email-choice-card {
    position: relative;
    width: min(560px, 100%);
    padding: clamp(24px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 24px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 85% 12%, rgba(32, 197, 255, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.94));
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.email-choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.12) 42%, transparent 62%);
    transform: translateX(-52%);
    animation: emailChoiceSheen 4.6s ease-in-out infinite;
}

.email-choice-kicker {
    position: relative;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 999px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.1);
}

.email-choice-card h2 {
    position: relative;
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.02;
    letter-spacing: 0;
}

.email-choice-card p {
    position: relative;
    margin: 14px 0 0;
    color: rgba(226, 232, 240, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

.email-address-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.14);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.email-address-row code {
    overflow: hidden;
    padding: 0 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-address-row button,
.email-choice-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.email-address-row button {
    padding: 0 16px;
    color: #03120d;
    background: linear-gradient(135deg, #29f39c, #7dd3fc);
}

.email-choice-actions {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.email-choice-actions a {
    padding: 0 14px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    color: #e0f2fe;
    background: rgba(2, 6, 23, 0.56);
}

.email-choice-actions a:hover {
    border-color: rgba(125, 211, 252, 0.48);
    color: #ffffff;
    background: rgba(14, 165, 233, 0.18);
}

.email-choice-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@keyframes emailChoiceSheen {
    0%,
    42% {
        opacity: 0;
        transform: translateX(-52%);
    }
    58% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(52%);
    }
}

@media (max-width: 620px) {
    .email-address-row,
    .email-choice-actions {
        grid-template-columns: 1fr;
    }

    .email-choice-close {
        top: 12px;
        right: 12px;
    }
}

.cookie-consent-panel {
    position: fixed;
    left: max(18px, env(safe-area-inset-left));
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 125;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.cookie-consent-panel.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-card {
    position: relative;
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 18px;
    align-items: end;
    margin: 0 auto;
    padding: clamp(18px, 2.2vw, 26px);
    border: 1px solid rgba(91, 122, 164, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94));
    box-shadow: 0 24px 70px rgba(23, 71, 122, 0.18);
    color: #0b1220;
    backdrop-filter: blur(18px);
}

.cookie-consent-copy {
    min-width: 0;
}

.cookie-consent-copy span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.07);
    color: #1769ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-consent-copy h2 {
    margin: 12px 0 0;
    color: #0b1220;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.12;
}

.cookie-consent-copy p {
    max-width: 760px;
    margin: 10px 0 0;
    color: #42516a;
    font-size: 14px;
    line-height: 1.58;
}

.cookie-consent-copy a {
    display: inline-flex;
    margin-top: 12px;
    color: #1769ff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.cookie-preference-box {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.cookie-preference-box[hidden],
.cookie-consent-actions button[hidden] {
    display: none;
}

.cookie-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
}

.cookie-option input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #1769ff;
}

.cookie-option strong,
.cookie-option em {
    display: block;
}

.cookie-option strong {
    color: #0b1220;
    font-size: 14px;
    font-weight: 900;
}

.cookie-option em {
    margin-top: 5px;
    color: #5d6b82;
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.cookie-option-disabled {
    opacity: 0.82;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent-actions button {
    min-height: 42px;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.cookie-link-button {
    border: 0;
    background: transparent;
    color: #1769ff;
}

.cookie-ghost-button,
.cookie-primary-button {
    padding: 0 15px;
    border: 1px solid rgba(23, 105, 255, 0.2);
}

.cookie-ghost-button {
    color: #1553c5;
    background: rgba(255, 255, 255, 0.84);
}

.cookie-primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #1769ff, #0f46ac);
    box-shadow: 0 14px 32px rgba(23, 105, 255, 0.22);
}

.cookie-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 8px;
    color: #42516a;
    background: rgba(255, 255, 255, 0.72);
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.singapore-ad-page .cookie-consent-panel {
    left: auto;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: min(820px, calc(100vw - 36px));
}

.singapore-ad-page .cookie-consent-card {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 46px 14px 16px;
    border-radius: 20px;
}

.singapore-ad-page .cookie-consent-copy span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
}

.singapore-ad-page .cookie-consent-copy h2 {
    margin-top: 7px;
    font-size: 18px;
}

.singapore-ad-page .cookie-consent-copy p {
    max-width: 560px;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
}

.singapore-ad-page .cookie-consent-copy a {
    margin-top: 6px;
    font-size: 12px;
}

.singapore-ad-page .cookie-consent-actions {
    flex-wrap: nowrap;
}

.singapore-ad-page .cookie-consent-actions button {
    min-height: 38px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .cookie-consent-panel {
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
    }

    .cookie-consent-card,
    .cookie-preference-box {
        grid-template-columns: 1fr;
    }

    .cookie-consent-card {
        max-height: calc(100svh - 22px);
        overflow: auto;
        padding: 18px;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-actions button {
        flex: 1 1 150px;
    }

    .singapore-ad-page .cookie-consent-panel {
        left: 10px;
        right: 10px;
        width: auto;
    }

    .singapore-ad-page .cookie-consent-card {
        max-height: none;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 42px 10px 12px;
        overflow: visible;
        border-radius: 18px;
    }

    .singapore-ad-page .cookie-consent-copy h2 {
        display: none;
    }

    .singapore-ad-page .cookie-consent-copy p {
        display: none;
    }

    .singapore-ad-page .cookie-consent-copy span {
        min-height: 22px;
        padding: 0 8px;
        font-size: 9px;
    }

    .singapore-ad-page .cookie-consent-copy a {
        margin-top: 4px;
        font-size: 11px;
    }

    .singapore-ad-page .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .singapore-ad-page .cookie-link-button {
        grid-column: 1 / -1;
        min-height: 22px;
        justify-self: start;
        font-size: 11px;
    }

    .singapore-ad-page .cookie-consent-actions button {
        min-height: 36px;
        padding: 0 8px;
        font-size: 11px;
    }
}

@media (max-width: 1040px) {
    .primary-nav {
        position: fixed;
        top: 78px;
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

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

    .primary-nav a {
        padding: 12px 10px;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions .text-link {
        display: none;
    }

    .tech-hero-grid,
    .software-grid,
    .trust-grid,
    .faq-grid,
    .contact-grid,
    .launch-path-grid,
    .microservice-band {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 48px 0 28px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(46px, 6.1vw, 62px);
    }

    .hero-lead {
        font-size: 18px;
    }

    .tech-hero-v2 {
        min-height: auto;
    }

    .platform-map {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .solution-rail,
    .timeline,
    .launch-panel,
    .pilot-grid,
    .comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .launch-path-section .section-heading {
        position: static;
    }

    .launch-step.featured {
        grid-row: auto;
        min-height: 260px;
    }

    .pilot-card-wide {
        grid-row: auto;
        min-height: 320px;
    }

    .solution-rail article:nth-child(2n),
    .timeline article:nth-child(2n) {
        border-right: 0;
    }

    .solution-rail article:nth-child(n+3),
    .timeline article:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .product-grid,
    .proof-grid,
    .scenario-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid div,
    .proof-grid div:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .sticky-heading {
        position: static;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, var(--max));
    }

    .section {
        padding: 68px 0;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        min-width: 0;
    }

    .brand small,
    .header-actions .button {
        display: none;
    }

    .primary-nav {
        top: 68px;
        left: 16px;
        right: 16px;
    }

    .hero {
        padding: 28px 0 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .platform-line {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.02;
    }

    .tech-hero-grid h1 {
        font-size: 34px;
        line-height: 1.02;
    }

    .hero-lead {
        font-size: 15px;
        margin-top: 14px;
        line-height: 1.42;
    }

    .hero-actions {
        margin-top: 18px;
        gap: 12px;
    }

    .hero-actions .button {
        min-height: 44px;
    }

    .solution-rail,
    .timeline,
    .trust-media-grid {
        grid-template-columns: 1fr;
    }

    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
        padding-top: 14px;
    }

    .hero-points strong {
        font-size: 23px;
    }

    .hero-points span {
        font-size: 12px;
        line-height: 1.25;
    }

    .solution-rail article,
    .timeline article {
        min-height: auto;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .solution-rail article:first-child,
    .timeline article:first-child {
        border-top: 0;
    }

    .hero-visual {
        min-height: 108px;
    }

    .station-panel {
        inset: 0;
        padding: 10px;
    }

    .station-topline {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .global-backdrop {
        inset: 22px 0 20px 0;
    }

    .station-primary {
        width: 58%;
        height: 92%;
        right: 4%;
    }

    .station-secondary {
        width: 34%;
        height: 62%;
        left: 1%;
        bottom: 4%;
    }

    .dashboard-panel {
        display: none;
    }

    .dash-chart {
        height: 58px;
        gap: 7px;
        padding: 10px;
    }

    .dash-row {
        margin-bottom: 10px;
    }

    .dash-row strong {
        font-size: 20px;
    }

    .dash-kpis {
        display: none;
    }

    .dash-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 10px;
    }

    .dash-grid span {
        padding: 6px;
        font-size: 11px;
    }

    .app-panel {
        display: none;
    }

    .launch-panel {
        grid-template-columns: 1fr;
    }

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

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

    .launch-step,
    .launch-step.featured,
    .pilot-card,
    .pilot-card-wide,
    .comparison-card {
        min-height: auto;
        padding: 22px;
    }

    .pilot-card:not(.pilot-card-wide) h3,
    .pilot-card h3,
    .comparison-card h3 {
        font-size: 23px;
    }

    .pilot-metrics {
        grid-template-columns: 1fr;
    }

    .pilot-metrics div {
        min-height: 82px;
    }

    .microservice-band ul {
        grid-template-columns: 1fr;
    }

    .section-heading.split {
        display: block;
    }

    .product-image {
        height: 260px;
    }

    .media-placeholder.large {
        grid-column: auto;
    }
}

/* Final cascade layer for the new international cinematic homepage. */
.cinematic-site .cinema-menu-toggle {
    display: none;
}

.cinematic-site .cinema-form {
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.66);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.cinematic-site .cinema-form label {
    color: rgba(226, 232, 240, 0.88);
}

.cinematic-site .cinema-form input,
.cinematic-site .cinema-form select,
.cinematic-site .cinema-form textarea {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.46);
    color: #fff;
}

.cinematic-site .cinema-form .form-note {
    color: rgba(226, 232, 240, 0.6);
}

@media (max-width: 1180px) {
    .cinematic-site .cinema-menu-toggle {
        display: block;
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-hero {
        min-height: 100svh;
    }
}

/* Grand-scale homepage corrections after visual QA. */
.cinematic-site {
    --cinema-scroll: 0;
    color: #f8fafc;
    background: #02040a;
}

.cinematic-site .cinema-hero {
    min-height: 100svh;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(2, 4, 10, 0.98) 0%, rgba(5, 11, 23, 0.86) 45%, rgba(0, 10, 26, 0.96) 100%),
        linear-gradient(135deg, #02040a 0%, #07111f 48%, #001f4d 100%);
}

.cinematic-site .cinema-hero h1 {
    font-size: clamp(56px, 6vw, 100px);
    line-height: 0.96;
}

.cinematic-site .cinema-hero-copy p {
    margin-top: 24px;
}

.cinematic-site .cinema-hero-actions {
    margin-top: 28px;
}

.cinematic-site .cinema-hero-stage {
    transform: translate3d(0, calc(var(--cinema-scroll, 0) * 18px), 0);
    transition: transform 140ms linear;
}

.cinematic-site .world-panel {
    inset: 0 -8% 52px 2%;
    border-color: rgba(125, 211, 252, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.34), rgba(14, 165, 233, 0.08)),
        repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.06) 0, rgba(125, 211, 252, 0.06) 1px, transparent 1px, transparent 96px),
        repeating-linear-gradient(0deg, rgba(125, 211, 252, 0.035) 0, rgba(125, 211, 252, 0.035) 1px, transparent 1px, transparent 74px);
    transform: translate3d(calc(var(--cinema-scroll, 0) * -18px), calc(var(--cinema-scroll, 0) * 12px), 0);
}

.cinematic-site .hero-device-main {
    width: min(118%, 980px);
    height: auto;
    right: -12%;
    bottom: 11%;
    border-radius: 28px;
    box-shadow:
        0 46px 90px rgba(0, 0, 0, 0.42),
        0 0 72px rgba(37, 99, 235, 0.18);
    filter: saturate(1.08) contrast(1.04);
    transform: translate3d(0, calc(var(--cinema-scroll, 0) * -34px), 0);
}

.cinematic-site .hero-device-side {
    display: none;
}

.cinematic-site .glass-card {
    border-color: rgba(226, 232, 240, 0.18);
    background: rgba(3, 7, 18, 0.62);
}

.cinematic-site .card-orders {
    top: 10%;
    left: 0;
}

.cinematic-site .card-uptime {
    top: auto;
    right: 2%;
    bottom: 30%;
}

.cinematic-site .card-payments {
    left: 1%;
    right: auto;
    bottom: 10%;
}

.cinematic-site .cinema-story {
    min-height: 105svh;
}

.cinematic-site .cinema-story-platform {
    min-height: 112svh;
    background:
        linear-gradient(180deg, #02040a 0%, #06111f 52%, #071827 100%);
}

.cinematic-site .cinema-story-platform .story-copy {
    align-self: start;
    padding-top: clamp(46px, 8vh, 96px);
}

.cinematic-site .cinema-story-platform .sticky-visual {
    top: 92px;
}

.cinematic-site .dashboard-shell {
    min-height: min(72vh, 720px);
    border-radius: 24px;
    box-shadow: 0 44px 110px rgba(2, 6, 23, 0.42);
}

.cinematic-site .cinema-story-light {
    background: #f8fafc;
}

.cinematic-site .cinema-story-hardware {
    background:
        linear-gradient(180deg, #f8fafc 0%, #edf6ff 18%, #02040a 18%, #050a14 100%);
}

.cinematic-site .cinema-story-hardware .story-copy {
    align-self: start;
    padding-top: clamp(44px, 8vh, 100px);
}

.cinematic-site .hardware-gallery {
    min-height: min(76vh, 720px);
}

.cinematic-site .hardware-gallery img:first-child {
    width: min(96%, 760px);
    height: auto;
    right: 0;
    bottom: 12%;
    border-radius: 28px;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.52);
    filter: saturate(1.06) contrast(1.03);
}

.cinematic-site .hardware-gallery img:nth-child(2) {
    width: 30%;
    height: 38%;
    left: 0;
    bottom: 3%;
    opacity: 0.78;
}

.cinematic-site .hardware-gallery img:nth-child(3) {
    width: 30%;
    height: 38%;
    right: 2%;
    top: 2%;
    opacity: 0.78;
}

.cinematic-site .hardware-gallery-single {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(80vh, 780px);
}

.cinematic-site .hardware-gallery-single::before {
    content: "";
    position: absolute;
    inset: 10% 4% 6%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 58% 28%, rgba(250, 204, 21, 0.22), transparent 34%),
        radial-gradient(circle at 44% 72%, rgba(56, 189, 248, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(2, 6, 23, 0.08));
    filter: blur(2px);
}

.cinematic-site .hardware-gallery-single img:first-child {
    position: relative;
    z-index: 1;
    width: min(92%, 800px);
    max-height: min(76vh, 760px);
    height: auto;
    right: auto;
    bottom: auto;
    border-radius: 34px;
    object-fit: contain;
    box-shadow: none;
    filter: drop-shadow(0 54px 92px rgba(0, 0, 0, 0.56)) saturate(1.04) contrast(1.02);
    transform: translateX(2%);
}

.cinematic-site .cinema-wide {
    position: relative;
    z-index: 3;
    isolation: isolate;
    min-height: 100svh;
    padding: 150px clamp(26px, 4.5vw, 70px) 118px;
    overflow: clip;
}

.cinematic-site .wide-copy {
    max-width: 940px;
}

.cinematic-site .wide-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

.cinematic-site .wide-copy p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.55;
}

.cinematic-site .cinema-rental {
    background:
        radial-gradient(circle at 18% 28%, rgba(24, 184, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #050a14 0%, #081827 100%);
}

.cinematic-site .method-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(42px, 7vw, 86px);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.18);
}

.cinematic-site .method-grid article {
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.82)),
        radial-gradient(circle at 50% 18%, rgba(24, 184, 255, 0.14), transparent 34%);
}

.cinematic-site .method-grid span,
.cinematic-site .product-matrix span,
.cinematic-site .delivery-rail span {
    color: var(--cinema-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.cinematic-site .method-grid strong,
.cinematic-site .product-matrix strong,
.cinematic-site .delivery-rail strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.05;
}

.cinematic-site .method-grid p,
.cinematic-site .product-matrix p,
.cinematic-site .delivery-rail p {
    margin: 18px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .cinema-products {
    color: #020617;
    background: #f8fafc;
}

.cinematic-site .cinema-products .wide-copy h2 {
    color: #020617;
}

.cinematic-site .cinema-products .wide-copy p {
    color: #475569;
}

.cinematic-site .product-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(32px, 5vw, 64px);
}

.cinematic-site .product-matrix article {
    min-height: 0;
    display: grid;
    grid-template-rows: 168px auto;
    overflow: hidden;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.cinematic-site .product-matrix img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    padding: 14px;
    background:
        radial-gradient(circle at 50% 78%, rgba(24, 184, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fafc, #eaf4ff);
}

.cinematic-site .product-zoom {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
}

.cinematic-site .product-zoom::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(226, 232, 240, 0.86)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 4a6.5 6.5 0 0 1 5.14 10.47l4.44 4.45-1.42 1.41-4.44-4.44A6.5 6.5 0 1 1 10.5 4Zm0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm1 2v1.5H13v2h-1.5V13h-2v-1.5H8v-2h1.5V8h2Z' fill='%230f172a'/%3E%3C/svg%3E") center / 17px 17px no-repeat;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(6px) scale(0.92);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cinematic-site .product-zoom:hover::after,
.cinematic-site .product-zoom:focus-visible::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cinematic-site .product-zoom img {
    transition: transform 260ms ease, filter 260ms ease;
}

.cinematic-site .product-zoom:hover img,
.cinematic-site .product-zoom:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.cinematic-site .product-visual {
    position: relative;
    min-height: 0;
    height: 168px;
    display: grid;
    gap: 8px;
    align-items: end;
    overflow: hidden;
    padding: 12px;
    background:
        radial-gradient(circle at 50% 78%, rgba(24, 184, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fafc, #eaf4ff);
}

.cinematic-site .product-visual .product-zoom {
    min-height: 0;
    border-radius: 12px;
}

.cinematic-site .product-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 28px 34px rgba(15, 23, 42, 0.18));
}

.cinematic-site .product-visual-desktop {
    display: block;
}

.cinematic-site .product-visual-desktop img {
    border-radius: 14px;
    object-fit: contain;
    object-position: center;
}

.cinematic-site .product-visual-stackable {
    display: flex;
    align-items: end;
    justify-content: center;
}

.cinematic-site .product-visual-stackable .product-zoom {
    width: min(58%, 210px);
}

.cinematic-site .product-visual-stackable img {
    height: 148px;
}

.cinematic-site .product-matrix article > .product-copy {
    padding: 18px;
    border-top: 1px solid #e2e8f0;
}

.cinematic-site .product-matrix span {
    color: #0ea5e9;
}

.cinematic-site .product-matrix strong {
    margin-top: 12px;
    font-size: clamp(18px, 1.45vw, 24px);
    color: #020617;
}

.cinematic-site .product-matrix p {
    margin-top: 12px;
    color: #475569;
}

.cinematic-site .cinema-venues {
    background:
        radial-gradient(circle at 82% 22%, rgba(24, 184, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eaf4ff 42%, #071827 42%, #02040a 100%);
}

.cinematic-site .cinema-venues .wide-copy h2 {
    color: #020617;
}

.cinematic-site .cinema-venues .wide-copy p {
    color: #475569;
}

.cinematic-site .venue-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(42px, 7vw, 86px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.2);
    box-shadow: 0 38px 100px rgba(2, 6, 23, 0.24);
}

.cinematic-site .venue-grid article {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.88)),
        radial-gradient(circle at 50% 18%, rgba(24, 184, 255, 0.12), transparent 34%);
}

.cinematic-site .venue-grid span {
    color: var(--cinema-cyan);
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .venue-grid strong {
    display: block;
    color: #fff;
    font-size: clamp(20px, 1.8vw, 27px);
    line-height: 1.05;
}

.cinematic-site .venue-grid p {
    margin: 18px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .cinema-delivery {
    background:
        linear-gradient(180deg, #02040a 0%, #071827 60%, #02040a 100%);
}

.cinematic-site .delivery-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(42px, 7vw, 86px);
}

.cinematic-site .delivery-rail article {
    min-height: 330px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.56);
}

.cinematic-site .delivery-rail strong {
    margin-top: 112px;
    font-size: 21px;
}

.cinematic-site .cinema-localization {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(14, 165, 233, 0.09) 0 36%, transparent 36% 100%),
        linear-gradient(180deg, #f8fbff 0%, #eaf3ff 54%, #f8fafc 100%);
    color: #07111f;
}

.cinematic-site .cinema-localization::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
    pointer-events: none;
}

.cinematic-site .localization-copy,
.cinematic-site .localization-layout {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.cinematic-site .localization-copy h2 {
    max-width: 1050px;
    margin: 0;
    color: #07111f;
    font-size: 92px;
    font-weight: 930;
    line-height: 0.92;
}

.cinematic-site .localization-copy p {
    max-width: 790px;
    margin: 26px 0 0;
    color: #475569;
    font-size: 22px;
    line-height: 1.56;
}

.cinematic-site .localization-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.34fr);
    gap: 22px;
    align-items: stretch;
    margin-top: 70px;
}

.cinematic-site .market-console {
    position: relative;
    overflow: hidden;
    min-height: 630px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 44px;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(20, 184, 166, 0.17), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0f172a 100%);
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.22);
}

.cinematic-site .market-console::before {
    content: "";
    position: absolute;
    inset: 96px 32px auto auto;
    width: 56%;
    height: 52%;
    border-top: 1px solid rgba(94, 234, 212, 0.26);
    border-right: 1px solid rgba(96, 165, 250, 0.2);
    transform: skewX(-18deg);
    pointer-events: none;
}

.cinematic-site .market-console-head span {
    display: block;
    color: #5eead4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .market-console-head strong {
    display: block;
    max-width: 430px;
    margin-top: 18px;
    color: #fff;
    font-size: 48px;
    font-weight: 930;
    line-height: 1;
}

.cinematic-site .market-readiness-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.cinematic-site .market-readiness-list p {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.14);
}

.cinematic-site .market-readiness-list span {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 900;
}

.cinematic-site .market-readiness-list b {
    color: rgba(248, 250, 252, 0.86);
    font-size: 15px;
    line-height: 1.3;
}

.cinematic-site .localization-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cinematic-site .localization-checks article {
    min-height: 198px;
    display: grid;
    align-content: space-between;
    gap: 22px;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.cinematic-site .localization-checks article:nth-child(2n) {
    background: rgba(241, 247, 255, 0.86);
}

.cinematic-site .localization-checks span {
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .localization-checks strong {
    display: block;
    color: #07111f;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.06;
}

.cinematic-site .localization-checks p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.cinematic-site .cinema-packages {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.18), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #03060d 100%);
    color: #f8fafc;
}

.cinematic-site .cinema-packages::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    pointer-events: none;
}

.cinematic-site .packages-header,
.cinematic-site .package-grid,
.cinematic-site .package-flow,
.cinematic-site .package-note {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.cinematic-site .packages-header span {
    display: block;
    color: #5eead4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .packages-header h2 {
    max-width: 1040px;
    margin: 20px 0 0;
    color: #fff;
    font-size: 88px;
    font-weight: 930;
    line-height: 0.94;
}

.cinematic-site .packages-header p {
    max-width: 860px;
    margin: 26px 0 0;
    color: rgba(226, 232, 240, 0.74);
    font-size: 21px;
    line-height: 1.56;
}

.cinematic-site .package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 64px;
}

.cinematic-site .package-card {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.52)),
        rgba(15, 23, 42, 0.72);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.cinematic-site .package-card-featured {
    border-color: rgba(94, 234, 212, 0.5);
    background:
        linear-gradient(145deg, rgba(94, 234, 212, 0.16), rgba(14, 165, 233, 0.08)),
        rgba(15, 23, 42, 0.86);
}

.cinematic-site .package-card > span {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .package-card strong {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: 34px;
    font-weight: 930;
    line-height: 1.02;
}

.cinematic-site .package-card p {
    margin: 16px 0 0;
    color: #5eead4;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.cinematic-site .package-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cinematic-site .package-card li {
    position: relative;
    padding-left: 22px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 15px;
    line-height: 1.45;
}

.cinematic-site .package-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #38bdf8;
}

.cinematic-site .package-select-button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.28);
}

.cinematic-site .package-card-featured .package-select-button {
    background: linear-gradient(135deg, #5eead4, #0ea5e9);
    color: #04111f;
}

.cinematic-site .package-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    background: rgba(148, 163, 184, 0.2);
}

.cinematic-site .package-flow article {
    min-height: 230px;
    padding: 28px;
    background: rgba(2, 6, 23, 0.72);
}

.cinematic-site .package-flow span {
    color: #38bdf8;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .package-flow strong {
    display: block;
    margin-top: 78px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.06;
}

.cinematic-site .package-flow p {
    margin: 14px 0 0;
    color: rgba(226, 232, 240, 0.66);
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .package-note {
    max-width: 980px;
    margin-top: 28px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

.cinematic-site .factory-board article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 12px;
    padding: 26px;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(24, 184, 255, 0.08), rgba(15, 23, 42, 0.03)),
        repeating-linear-gradient(45deg, rgba(2, 6, 23, 0.04) 0, rgba(2, 6, 23, 0.04) 1px, transparent 1px, transparent 18px);
}

.cinematic-site .factory-proof-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    isolation: isolate;
    padding: 28px;
    border-color: rgba(15, 23, 42, 0.12);
    background: #07111f;
    box-shadow: 0 22px 68px rgba(15, 23, 42, 0.18);
}

.cinematic-site .factory-proof-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.34) 48%, rgba(2, 6, 23, 0.86) 100%),
        radial-gradient(circle at 20% 12%, rgba(94, 234, 212, 0.22), transparent 34%);
}

.cinematic-site .factory-proof-card::after {
    content: "";
    position: absolute;
    inset: -36% -72%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
    transform: translateX(-40%) rotate(3deg);
    animation: proofScan 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cinematic-site .factory-proof-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.cinematic-site .factory-proof-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    filter: saturate(0.74) contrast(0.9) brightness(0.88) blur(0.18px);
    transform: scale(1.04);
}

.cinematic-site .factory-proof-media img:only-child {
    grid-column: 1 / -1;
}

.cinematic-site .factory-proof-card-doc .factory-proof-media img {
    object-position: top center;
    filter: saturate(0.48) contrast(0.92) brightness(0.94) blur(0.46px);
}

.cinematic-site .factory-proof-card span,
.cinematic-site .factory-proof-card p {
    position: relative;
    z-index: 3;
}

.cinematic-site .factory-board article span {
    color: #0f172a;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    line-height: 1.05;
}

.cinematic-site .factory-proof-card span {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.cinematic-site .factory-board article p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.cinematic-site .factory-proof-card p {
    color: rgba(226, 232, 240, 0.76);
}

.cinematic-site .cinema-story-factory {
    position: relative;
    display: block;
    min-height: 100vh;
    overflow: hidden;
    padding: clamp(112px, 10vw, 176px) clamp(18px, 4vw, 72px);
    background:
        radial-gradient(circle at 10% 12%, rgba(20, 184, 166, 0.14), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbfa 0%, #eef5f2 100%);
    color: #0b2f25;
}

.cinematic-site .cinema-story-factory::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(2, 44, 34, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(2, 44, 34, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.cinematic-site .factory-gallery-stage {
    position: relative;
    z-index: 1;
    max-width: 1680px;
    margin: 0 auto;
}

.cinematic-site .factory-gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    margin-bottom: clamp(34px, 4vw, 56px);
}

.cinematic-site .factory-gallery-header span[data-i18n="factory_kicker"] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0d9488;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cinematic-site .factory-gallery-header span[data-i18n="factory_kicker"]::before {
    content: "";
    width: 4px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #10b981, #38bdf8);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.32);
}

.cinematic-site .factory-gallery-header h2 {
    max-width: 980px;
    margin: 0;
    color: #0f3327;
    font-size: clamp(54px, 6vw, 96px);
    font-weight: 950;
    line-height: 0.94;
}

.cinematic-site .factory-gallery-header p {
    max-width: 1040px;
    margin: 0;
    color: #526173;
    font-size: clamp(16px, 1.35vw, 23px);
    font-weight: 700;
    line-height: 1.48;
}

.cinematic-site .factory-gallery-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(15, 51, 39, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 70px rgba(15, 51, 39, 0.1);
    backdrop-filter: blur(16px);
}

.cinematic-site .factory-tab {
    min-width: 116px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #526173;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.cinematic-site .factory-tab:hover {
    color: #0f3327;
}

.cinematic-site .factory-tab.active {
    background: linear-gradient(135deg, #0f3327, #0d9488);
    color: #fff;
    box-shadow: 0 14px 30px rgba(13, 148, 136, 0.26);
}

.cinematic-site .factory-gallery-panel {
    display: block;
}

.cinematic-site .factory-gallery-panel[hidden] {
    display: none;
}

.cinematic-site .factory-panel-heading {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.cinematic-site .factory-source-card,
.cinematic-site .factory-proof-strip {
    border: 1px solid rgba(15, 51, 39, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 80px rgba(15, 51, 39, 0.08);
    backdrop-filter: blur(16px);
}

.cinematic-site .factory-source-card {
    padding: 24px;
}

.cinematic-site .factory-source-card span {
    color: #0d9488;
    font-size: 12px;
    font-weight: 950;
}

.cinematic-site .factory-source-card strong {
    display: block;
    margin-top: 28px;
    color: #0f3327;
    font-size: clamp(24px, 2.4vw, 42px);
    font-weight: 950;
    line-height: 1.02;
}

.cinematic-site .factory-source-card p {
    margin: 14px 0 0;
    color: #526173;
    font-size: 14px;
    line-height: 1.58;
}

.cinematic-site .factory-proof-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: stretch;
    overflow: hidden;
}

.cinematic-site .factory-proof-strip span {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 22px 18px;
    border-left: 1px solid rgba(15, 51, 39, 0.08);
    color: #0f3327;
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 950;
    text-align: center;
}

.cinematic-site .factory-proof-strip span:first-child {
    border-left: 0;
}

.cinematic-site .factory-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.25vw, 24px);
}

.cinematic-site .factory-gallery-card {
    position: relative;
    min-height: 188px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 51, 39, 0.12);
    border-radius: 24px;
    background: #dce9e5;
    box-shadow: 0 22px 54px rgba(15, 51, 39, 0.12);
    isolation: isolate;
    transform: translateZ(0);
}

.cinematic-site .factory-gallery-card-featured {
    grid-column: span 2;
}

.cinematic-site .factory-gallery-card-wide {
    grid-column: span 2;
}

.cinematic-site .factory-gallery-card::after {
    content: "";
    position: absolute;
    inset: -40% -70%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.32) 50%, transparent 58%);
    transform: translateX(-42%) rotate(5deg);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.cinematic-site .factory-gallery-card:hover::after {
    opacity: 1;
    animation: proofScan 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.cinematic-site .factory-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
    transform: scale(1.012);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.cinematic-site .factory-gallery-card:hover img {
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.055);
}

.cinematic-site .factory-gallery-card-doc img {
    object-position: top center;
}

.cinematic-site .factory-gallery-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    max-width: calc(100% - 28px);
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(3, 28, 22, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1.1;
    backdrop-filter: blur(14px);
}

.cinematic-site .factory-gallery-panel.active .factory-gallery-card {
    animation: factoryCardRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(2) { animation-delay: 0.04s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(3) { animation-delay: 0.08s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(4) { animation-delay: 0.12s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(5) { animation-delay: 0.16s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(6) { animation-delay: 0.2s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(7) { animation-delay: 0.24s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(8) { animation-delay: 0.28s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(9) { animation-delay: 0.32s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(10) { animation-delay: 0.36s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(11) { animation-delay: 0.4s; }
.cinematic-site .factory-gallery-panel.active .factory-gallery-card:nth-child(12) { animation-delay: 0.44s; }

.cinematic-site .factory-empty-state {
    position: relative;
    min-height: 268px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(15, 51, 39, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 14% 18%, rgba(13, 148, 136, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 244, 0.88));
    box-shadow: 0 24px 80px rgba(15, 51, 39, 0.08);
    backdrop-filter: blur(16px);
}

.cinematic-site .factory-empty-state::before {
    content: "";
    position: absolute;
    inset: 20px;
    pointer-events: none;
    border: 1px dashed rgba(13, 148, 136, 0.35);
    border-radius: 18px;
}

.cinematic-site .factory-empty-state::after {
    content: "";
    position: absolute;
    inset: -35% -60%;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
    animation: proofScan 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cinematic-site .factory-empty-state span,
.cinematic-site .factory-empty-state strong,
.cinematic-site .factory-empty-state p {
    position: relative;
    z-index: 1;
}

.cinematic-site .factory-empty-state span {
    color: #0d9488;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.cinematic-site .factory-empty-state strong {
    display: block;
    margin-top: 34px;
    color: #0f3327;
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 950;
    line-height: 0.95;
}

.cinematic-site .factory-empty-state p {
    max-width: 640px;
    margin: 18px 0 0;
    color: #526173;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.55;
}

@keyframes factoryCardRise {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 1240px) {
    .cinematic-site .factory-gallery-header {
        align-items: center;
    }

    .cinematic-site .factory-gallery-tabs {
        justify-content: center;
    }

    .cinematic-site .factory-panel-heading {
        grid-template-columns: 1fr;
    }

    .cinematic-site .factory-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .cinematic-site .cinema-story-factory {
        padding: 96px 16px;
    }

    .cinematic-site .factory-gallery-header h2 {
        font-size: clamp(40px, 14vw, 64px);
    }

    .cinematic-site .factory-gallery-header p {
        font-size: 15px;
    }

    .cinematic-site .factory-gallery-tabs {
        width: 100%;
    }

    .cinematic-site .factory-tab {
        flex: 1;
        min-width: 0;
    }

    .cinematic-site .factory-proof-strip {
        grid-template-columns: 1fr;
    }

    .cinematic-site .factory-proof-strip span {
        min-height: 68px;
        border-left: 0;
        border-top: 1px solid rgba(15, 51, 39, 0.08);
        font-size: 18px;
    }

    .cinematic-site .factory-proof-strip span:first-child {
        border-top: 0;
    }

    .cinematic-site .factory-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .cinematic-site .factory-gallery-card,
    .cinematic-site .factory-gallery-card img {
        min-height: 150px;
    }

    .cinematic-site .factory-gallery-card-featured,
    .cinematic-site .factory-gallery-card-wide {
        grid-column: span 2;
    }

    .cinematic-site .factory-gallery-card figcaption {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        font-size: 11px;
    }
}

.cinematic-site .cinema-supply {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(94, 234, 212, 0.16), transparent 28%),
        radial-gradient(circle at 86% 70%, rgba(96, 165, 250, 0.18), transparent 34%),
        linear-gradient(135deg, #020617 0%, #0b1220 48%, #030712 100%);
    color: #f8fafc;
}

.cinematic-site .cinema-supply::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    pointer-events: none;
}

.cinematic-site .supply-header,
.cinematic-site .supply-matrix,
.cinematic-site .supply-rules,
.cinematic-site .supply-note {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.cinematic-site .supply-header span {
    display: block;
    color: #5eead4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .supply-header h2 {
    max-width: 1080px;
    margin: 18px 0 0;
    color: #fff;
    font-size: 82px;
    font-weight: 930;
    line-height: 0.95;
}

.cinematic-site .supply-header p {
    max-width: 900px;
    margin: 24px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 20px;
    line-height: 1.58;
}

.cinematic-site .supply-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 58px;
}

.cinematic-site .supply-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
    padding: 32px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.52)),
        rgba(15, 23, 42, 0.72);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28);
}

.cinematic-site .supply-card-featured {
    border-color: rgba(251, 191, 36, 0.58);
    background:
        linear-gradient(145deg, rgba(251, 191, 36, 0.16), rgba(20, 184, 166, 0.10)),
        rgba(15, 23, 42, 0.86);
}

.cinematic-site .supply-card > span {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .supply-card strong {
    display: block;
    max-width: 320px;
    color: #fff;
    font-size: 35px;
    font-weight: 930;
    line-height: 1.02;
}

.cinematic-site .supply-card ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cinematic-site .supply-card li {
    display: grid;
    gap: 7px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.cinematic-site .supply-card b {
    color: #67e8f9;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cinematic-site .supply-card li span {
    color: rgba(226, 232, 240, 0.76);
    font-size: 15px;
    line-height: 1.5;
}

.cinematic-site .supply-rules {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background: rgba(148, 163, 184, 0.22);
}

.cinematic-site .supply-rules article {
    min-height: 230px;
    padding: 28px;
    background: rgba(2, 6, 23, 0.72);
}

.cinematic-site .supply-rules span {
    color: #38bdf8;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .supply-rules strong {
    display: block;
    margin-top: 70px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.08;
}

.cinematic-site .supply-rules p {
    margin: 14px 0 0;
    color: rgba(226, 232, 240, 0.66);
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .supply-note {
    max-width: 980px;
    margin-top: 28px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

.cinematic-site .cinema-procurement {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(132deg, rgba(8, 16, 31, 0) 0 42%, rgba(20, 184, 166, 0.08) 42% 43%, rgba(8, 16, 31, 0) 43% 100%),
        linear-gradient(180deg, #07111f 0%, #101827 54%, #03060d 100%);
    color: #f8fafc;
}

.cinematic-site .cinema-procurement::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    pointer-events: none;
}

.cinematic-site .procurement-header,
.cinematic-site .procurement-layout {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.cinematic-site .procurement-header span {
    display: block;
    color: #5eead4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .procurement-header h2 {
    max-width: 1040px;
    margin: 22px 0 0;
    color: #fff;
    font-size: 98px;
    font-weight: 930;
    line-height: 0.92;
}

.cinematic-site .procurement-header p {
    max-width: 820px;
    margin: 28px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 22px;
    line-height: 1.56;
}

.cinematic-site .procurement-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(18px, 3vw, 36px);
    align-items: stretch;
    margin-top: clamp(48px, 6vw, 92px);
}

.cinematic-site .procurement-command {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 42px;
    padding: clamp(28px, 3.5vw, 48px);
    border: 1px solid rgba(94, 234, 212, 0.24);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(94, 234, 212, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
}

.cinematic-site .procurement-command::before {
    content: "";
    position: absolute;
    inset: auto -20% 18% 24%;
    height: 120px;
    border-top: 1px solid rgba(251, 191, 36, 0.26);
    border-bottom: 1px solid rgba(94, 234, 212, 0.2);
    transform: rotate(-18deg);
    pointer-events: none;
}

.cinematic-site .procurement-command > span {
    color: #fbbf24;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .procurement-command strong {
    display: block;
    max-width: 460px;
    margin-top: 18px;
    color: #fff;
    font-size: 54px;
    font-weight: 930;
    line-height: 0.98;
}

.cinematic-site .procurement-command > p {
    max-width: 490px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: 16px;
    line-height: 1.7;
}

.cinematic-site .procurement-flow {
    display: grid;
    gap: 10px;
}

.cinematic-site .procurement-flow p {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.cinematic-site .procurement-flow b {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(94, 234, 212, 0.28);
    border-radius: 999px;
    color: #5eead4;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .procurement-flow span {
    color: rgba(248, 250, 252, 0.88);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
}

.cinematic-site .procurement-terms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cinematic-site .procurement-terms article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(22px, 2.4vw, 34px);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.07);
    backdrop-filter: blur(18px);
}

.cinematic-site .procurement-terms article:nth-child(3n + 1) {
    border-color: rgba(94, 234, 212, 0.3);
}

.cinematic-site .procurement-terms article:nth-child(3n + 2) {
    border-color: rgba(96, 165, 250, 0.26);
}

.cinematic-site .procurement-terms article:nth-child(3n) {
    border-color: rgba(251, 191, 36, 0.26);
}

.cinematic-site .procurement-terms span {
    color: rgba(148, 163, 184, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.cinematic-site .procurement-terms strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
}

.cinematic-site .procurement-terms p {
    margin: 14px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 15px;
    line-height: 1.62;
}

.cinematic-site .cinema-news {
    min-height: auto;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 14%, rgba(23, 105, 255, 0.11), transparent 31%),
        radial-gradient(circle at 84% 20%, rgba(91, 184, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #fbfdff 0%, #f4faff 54%, #eef7ff 100%);
    color: #0b1220;
}

.cinematic-site .cinema-news::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(23, 105, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 105, 255, 0.03) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 88%);
}

.cinematic-site .cinema-news > * {
    position: relative;
    z-index: 1;
}

.cinematic-site .news-head {
    max-width: 900px;
}

.cinematic-site .news-head span,
.cinematic-site .news-body > span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cinematic-site .news-head h2 {
    max-width: 980px;
    margin: 22px 0 0;
    color: #0b1220;
    font-size: clamp(44px, 6vw, 92px);
    font-weight: 930;
    line-height: 0.96;
}

.cinematic-site .news-head p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #5d6b82;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.cinematic-site .news-feature-card {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(20px, 3vw, 42px);
    align-items: stretch;
    margin-top: clamp(34px, 5vw, 70px);
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.88)),
        radial-gradient(circle at 84% 0%, rgba(23, 105, 255, 0.16), transparent 34%);
    box-shadow: 0 32px 100px rgba(23, 71, 122, 0.14);
    padding: clamp(22px, 3.4vw, 44px);
}

.cinematic-site .news-date {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 180px;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 10%, rgba(23, 105, 255, 0.16), transparent 48%),
        rgba(255, 255, 255, 0.72);
    color: #1769ff;
    text-align: center;
}

.cinematic-site .news-date span,
.cinematic-site .news-date small {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cinematic-site .news-date strong {
    display: block;
    color: #0b1220;
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 950;
    line-height: 0.9;
}

.cinematic-site .news-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cinematic-site .news-body h3 {
    margin: 18px 0 0;
    color: #0b1220;
    font-size: clamp(28px, 3.4vw, 54px);
    font-weight: 920;
    line-height: 1.02;
}

.cinematic-site .news-body p {
    margin: 18px 0 0;
    max-width: 760px;
    color: #4d5d74;
    font-size: 17px;
    line-height: 1.72;
}

.cinematic-site .news-body .cinema-button {
    margin-top: 24px;
}

.cinematic-site .news-signal-grid {
    display: grid;
    gap: 12px;
    align-content: center;
}

.cinematic-site .news-signal-grid p {
    margin: 0;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    padding: 18px;
}

.cinematic-site .news-signal-grid b,
.cinematic-site .news-signal-grid span {
    display: block;
}

.cinematic-site .news-signal-grid b {
    color: #0b1220;
    font-size: 18px;
    font-weight: 900;
}

.cinematic-site .news-signal-grid span {
    margin-top: 8px;
    color: #5d6b82;
    font-size: 14px;
    line-height: 1.45;
}

.news-page .news-article-hero time {
    display: inline-flex;
    margin-top: 22px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 900;
}

.news-page .news-article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: stretch;
}

.news-page .news-article-visual,
.news-page .news-article-status {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.86));
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

.news-page .news-article-visual {
    overflow: hidden;
    margin: 0;
}

.news-page .news-article-visual img {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 620px);
    object-fit: cover;
    object-position: center;
}

.news-page .news-article-visual figcaption {
    padding: 20px 24px 24px;
    color: #44546a;
    font-size: 15px;
    line-height: 1.55;
}

.news-page .news-article-status {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: clamp(20px, 3vw, 34px);
}

.news-page .news-article-status p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin: 0;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    padding: 16px;
}

.news-page .news-article-status span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    background: rgba(23, 105, 255, 0.1);
    color: #1769ff;
    font-size: 13px;
    font-weight: 950;
}

.news-page .news-article-status strong {
    color: #0b1220;
    font-size: 16px;
    line-height: 1.28;
}

.news-page .news-article-body {
    display: grid;
    gap: 18px;
    max-width: 1040px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.82));
    padding: clamp(22px, 3vw, 36px);
    box-shadow: 0 22px 70px rgba(23, 71, 122, 0.1);
}

.news-page .news-article-shell {
    display: grid;
    gap: 24px;
}

.news-page .news-article-cover {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 48% 0%, rgba(23, 105, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.9));
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

.news-page .news-article-cover img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.news-page .news-article-cover figcaption {
    padding: 14px 18px;
    color: #42516a;
    font-size: 14px;
    font-weight: 800;
}

.news-page .news-article-body > div {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.82));
    padding: clamp(22px, 3vw, 36px);
    box-shadow: 0 22px 70px rgba(23, 71, 122, 0.1);
}

.news-page .news-article-body h2 {
    margin: 0;
    color: #0b1220;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 920;
    line-height: 1.08;
}

.news-page .news-article-body p {
    margin: 14px 0 0;
    color: #4d5d74;
    font-size: 17px;
    line-height: 1.72;
}

.news-page .news-inline-image {
    overflow: hidden;
    margin: 8px 0;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(23, 105, 255, 0.1), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.88));
    box-shadow: 0 18px 52px rgba(23, 71, 122, 0.1);
}

.news-page .news-inline-image img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.news-page .news-inline-image figcaption {
    padding: 12px 16px;
    color: #42516a;
    font-size: 14px;
    font-weight: 800;
}

.news-page .news-inline-image-small {
    display: block;
    max-width: min(100%, 720px);
    margin: 12px 0;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(23, 71, 122, 0.12);
}

.news-page .news-article-body ul,
.news-page .news-article-body pre {
    margin: 0;
}

.news-page .news-article-body li {
    margin: 8px 0;
    color: #4d5d74;
    font-size: 17px;
    line-height: 1.68;
}

.news-page .news-article-body h3 {
    margin: 4px 0 0;
    color: #0b1220;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.18;
}

.news-page .news-article-faq {
    display: grid;
    gap: 14px;
    max-width: 1040px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.88));
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

.news-page .news-article-faq h2 {
    margin: 0 0 4px;
    color: #0b1220;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 920;
    line-height: 1.08;
}

.news-page .news-article-faq article {
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    padding: clamp(18px, 2.4vw, 26px);
}

.news-page .news-article-faq h3 {
    margin: 0;
    color: #102033;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 900;
    line-height: 1.18;
}

.news-page .news-article-faq p {
    margin: 10px 0 0;
    color: #4d5d74;
    font-size: 16px;
    line-height: 1.72;
}

.news-page .news-article-v4-links {
    display: grid;
    gap: 18px;
    max-width: 1040px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 84% 0%, rgba(21, 219, 132, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.88));
    padding: clamp(22px, 3vw, 36px);
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.11);
}

.news-page .news-article-tags,
.news-page .news-article-navigation,
.news-page .news-related-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.news-page .news-article-tags span,
.news-page .news-related-section > div:first-child span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-page .news-article-tags a,
.news-page .news-article-navigation a,
.news-page .news-related-grid a {
    color: inherit;
    text-decoration: none;
}

.news-page .news-article-tags a {
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #0f46ac;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 900;
}

.news-page .news-article-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-page .news-article-navigation a,
.news-page .news-related-grid a {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    padding: 18px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.news-page .news-article-navigation a:hover,
.news-page .news-related-grid a:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 105, 255, 0.34);
}

.news-page .news-article-navigation span,
.news-page .news-related-grid span {
    display: block;
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-page .news-article-navigation strong,
.news-page .news-related-grid strong {
    display: block;
    margin-top: 8px;
    color: #0b1220;
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.18;
}

.news-page .news-related-section {
    display: grid;
    gap: 14px;
}

.news-page .news-related-section h2 {
    margin: 8px 0 0;
    color: #0b1220;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.1;
}

.news-page .news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-page .news-related-grid p {
    margin: 10px 0 0;
    color: #4d5d74;
    font-size: 14px;
    line-height: 1.55;
}

.language-local-faq {
    display: grid;
    gap: 18px;
}

.language-local-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.language-local-faq-grid article {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    padding: clamp(18px, 2.4vw, 26px);
}

.language-local-faq-grid h3 {
    margin: 0;
    color: #0b1220;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.18;
}

.language-local-faq-grid p {
    margin: 10px 0 0;
}

.cinematic-site .cinema-faq {
    min-height: auto;
    background: #02040a;
}

.cinematic-site .faq-list {
    max-width: 1040px;
    display: grid;
    gap: 12px;
    margin-top: clamp(42px, 6vw, 78px);
}

.cinematic-site .faq-list details {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.58);
    color: #fff;
}

.cinematic-site .faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    color: #fff;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 850;
    line-height: 1.15;
    list-style: none;
}

.cinematic-site .faq-list summary::-webkit-details-marker {
    display: none;
}

.cinematic-site .faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: rgba(226, 232, 240, 0.7);
    font-size: 16px;
    line-height: 1.65;
}

.cinematic-site .cinema-catalog {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(24, 184, 255, 0.2), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(14, 165, 233, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eaf4ff 52%, #02040a 52%, #02040a 100%);
    color: #0f172a;
}

.cinematic-site .cinema-catalog::before {
    content: "";
    position: absolute;
    inset: 9% -8% auto auto;
    width: min(62vw, 820px);
    height: min(62vw, 820px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    transform: rotate(-12deg);
}

.cinematic-site .catalog-lead {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(24px, 4vw, 72px);
    margin: 0 auto;
}

.cinematic-site .catalog-lead h2 {
    max-width: 920px;
    margin: 0;
    color: #07111f;
    font-size: clamp(52px, 7vw, 112px);
    font-weight: 900;
    line-height: 0.92;
}

.cinematic-site .catalog-lead p {
    max-width: 780px;
    margin: 28px 0 0;
    color: #475569;
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.55;
}

.cinematic-site .catalog-pack {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    margin: clamp(50px, 8vw, 104px) auto 0;
}

.cinematic-site .catalog-pack article {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 18px;
    padding: clamp(24px, 3.2vw, 44px);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(226, 242, 255, 0.86)),
        linear-gradient(90deg, rgba(14, 165, 233, 0.08), transparent);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.18);
}

.cinematic-site .catalog-pack .catalog-primary {
    color: #fff;
    background:
        linear-gradient(140deg, rgba(24, 184, 255, 0.25), rgba(14, 165, 233, 0.08)),
        radial-gradient(circle at 75% 20%, rgba(125, 211, 252, 0.34), transparent 30%),
        #07111f;
}

.cinematic-site .catalog-pack span {
    color: #18b8ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cinematic-site .catalog-pack strong {
    max-width: 680px;
    color: #0f172a;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 900;
    line-height: 1;
}

.cinematic-site .catalog-pack .catalog-primary strong {
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
}

.cinematic-site .catalog-pack p {
    max-width: 640px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.cinematic-site .catalog-pack .catalog-primary p {
    color: rgba(226, 232, 240, 0.72);
}

.cinematic-site .catalog-lead {
    grid-template-columns: 1fr;
    align-items: start;
}

.cinematic-site .catalog-lead span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #0369a1;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cinematic-site .proof-wall {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin: clamp(42px, 6vw, 76px) auto 0;
}

.cinematic-site .proof-tile {
    position: relative;
    min-height: clamp(150px, 14vw, 218px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 18px;
    background: #07111f;
    box-shadow: 0 22px 64px rgba(15, 23, 42, 0.18);
    transform: translateZ(0);
}

.cinematic-site .proof-tile-wide {
    grid-column: span 2;
}

.cinematic-site .proof-tile img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    filter: saturate(0.72) contrast(0.86) brightness(0.9) blur(0.28px);
    opacity: 0.82;
    transform: scale(1.04);
    transition: filter 0.42s ease, opacity 0.42s ease, transform 0.42s ease;
}

.cinematic-site .proof-tile-doc img {
    object-position: top center;
    filter: saturate(0.48) contrast(0.92) brightness(0.95) blur(0.58px);
}

.cinematic-site .proof-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.16) 58%, rgba(2, 6, 23, 0.72) 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 12px);
}

.cinematic-site .proof-tile::after {
    content: "";
    position: absolute;
    inset: -40% -80%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.24) 49%, transparent 62%);
    transform: translateX(-36%) rotate(3deg);
    animation: proofScan 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cinematic-site .proof-tile:hover img {
    filter: saturate(0.96) contrast(0.98) brightness(0.98) blur(0);
    opacity: 0.94;
    transform: scale(1.01);
}

.cinematic-site .proof-tile figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1180px) {
    .rental-flow-cinema {
        min-height: 410vh;
        padding: 0 20px;
    }

    .rental-flow-stage {
        padding-top: 82px;
        padding-bottom: 44px;
    }

    .rental-flow-viewport {
        height: 100%;
    }

    .cinematic-site .proof-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rental-flow-cinema {
        min-height: 430vh;
        padding: 0 16px;
    }

    .rental-flow-stage {
        padding-top: 78px;
        padding-bottom: 34px;
    }

    .rental-flow-copy h2 {
        font-size: 34px;
    }

    .rental-flow-copy p {
        font-size: 16px;
        margin-top: 12px;
    }

    .rental-flow-viewport {
        margin-top: 18px;
        border-radius: 22px;
    }

    .rental-flow-toolbar {
        padding: 14px;
        font-size: 11px;
    }

    .rental-flow-strip {
        inset: 14px;
        border-radius: 18px;
    }

    .rental-flow-strip figcaption {
        left: 12px;
        right: auto;
        bottom: 12px;
        max-width: calc(100% - 24px);
        font-size: 11px;
    }

    .cinematic-site .proof-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cinematic-site .proof-tile,
    .cinematic-site .proof-tile-wide {
        grid-column: span 1;
        min-height: 148px;
        border-radius: 14px;
    }
}

.floating-action-stack {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 96;
    display: grid;
    justify-items: center;
    gap: 13px;
    transform: translateY(-50%);
}

.floating-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.76);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.26);
    backdrop-filter: blur(18px);
}

.floating-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 48px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.floating-contact a:last-child {
    color: #07111f;
    border-bottom: 0;
    background: #20c5ff;
}

@keyframes whatsapp-sheen {
    0% {
        transform: translateX(-120%);
    }
    44%,
    100% {
        transform: translateX(125%);
    }
}

.whatsapp-fab {
    position: relative;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: radial-gradient(circle at 32% 24%, #9cffbf 0%, #25d366 42%, #0d9f4e 100%);
    box-shadow: 0 20px 52px rgba(37, 211, 102, 0.34), 0 8px 18px rgba(2, 6, 23, 0.28);
    animation: whatsapp-float 4.2s ease-in-out infinite;
}

.whatsapp-fab::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(37, 211, 102, 0.48);
    border-radius: inherit;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-fab::after {
    content: "";
    position: absolute;
    inset: 12px 9px auto auto;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    filter: blur(0.2px);
}

.whatsapp-fab svg {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    fill: currentColor;
}

.whatsapp-fab-label {
    position: absolute;
    right: 92px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: 999px;
    color: #ecfff3;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
    background: rgba(2, 20, 12, 0.78);
    box-shadow: 0 12px 34px rgba(2, 6, 23, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-jumpers {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    gap: 9px;
    justify-content: center;
}

.scroll-jumper {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.92);
    background: rgba(2, 6, 23, 0.76);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.24);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.scroll-jumper:hover,
.scroll-jumper:focus-visible {
    border-color: rgba(32, 197, 255, 0.5);
    background: rgba(8, 47, 73, 0.84);
    transform: translateY(-2px);
    outline: 0;
}

.scroll-jumper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
    transform: translateY(-2px);
}

.whatsapp-fab:hover .whatsapp-fab-label,
.whatsapp-fab:focus-visible .whatsapp-fab-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        opacity: 0.72;
        transform: scale(0.82);
    }
    80%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes whatsapp-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-cards .contact-card-whatsapp::after,
    .whatsapp-fab,
    .whatsapp-fab::before {
        animation: none;
    }
}

@media (max-width: 1180px) {
    .cinematic-site .hero-device-main {
        width: min(94vw, 760px);
        right: 50%;
        bottom: 8%;
        transform: translate3d(50%, calc(var(--cinema-scroll, 0) * -24px), 0);
    }

    .cinematic-site .card-uptime {
        bottom: 22%;
    }

    .cinematic-site .cinema-story-platform,
    .cinematic-site .cinema-story-hardware {
        background: #02040a;
    }

    .cinematic-site .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .product-matrix {
        grid-template-columns: 1fr;
    }

    .cinematic-site .venue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .delivery-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .catalog-lead {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cinematic-site .catalog-pack {
        grid-template-columns: 1fr;
    }

    .cinematic-site .catalog-pack article {
        min-height: 300px;
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-hero {
        padding-top: 90px;
        padding-bottom: 124px;
    }

    .cinematic-site .cinema-hero-stage {
        min-height: 430px;
    }

    .cinematic-site .hero-device-main {
        width: 132vw;
        right: -24vw;
        bottom: 12%;
    }

    .cinematic-site .glass-card {
        padding: 12px 14px;
    }

    .cinematic-site .card-payments {
        display: none;
    }

    .cinematic-site .cinema-story {
        min-height: auto;
    }

    .cinematic-site .cinema-wide {
        min-height: auto;
        padding: 78px 16px;
    }

    .cinematic-site .wide-copy h2 {
        font-size: 42px;
    }

    .cinematic-site .method-grid,
    .cinematic-site .venue-grid,
    .cinematic-site .delivery-rail {
        grid-template-columns: 1fr;
    }

    .cinematic-site .method-grid article,
    .cinematic-site .venue-grid article,
    .cinematic-site .delivery-rail article {
        min-height: 260px;
    }

    .cinematic-site .cinema-venues {
        background: linear-gradient(180deg, #f8fafc 0%, #eaf4ff 35%, #02040a 35%, #02040a 100%);
    }

    .cinematic-site .cinema-catalog {
        padding-bottom: 112px;
        background: linear-gradient(180deg, #f8fafc 0%, #eaf4ff 46%, #02040a 46%, #02040a 100%);
    }

    .cinematic-site .catalog-lead h2 {
        font-size: 42px;
    }

    .cinematic-site .catalog-pack {
        margin-top: 12px;
    }

    .cinematic-site .catalog-pack article {
        min-height: 260px;
        border-radius: 14px;
        padding-bottom: 136px;
    }

    .floating-contact {
        flex-direction: column;
        border-radius: 18px;
        transform: none;
    }

    .floating-contact a {
        flex: none;
        min-width: 76px;
        min-height: 44px;
        padding: 0 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    }

    .floating-contact a:last-child {
        border-bottom: 0;
    }

    .floating-action-stack {
        right: 12px;
        top: 50%;
        gap: 10px;
    }

    .whatsapp-fab {
        width: 66px;
        height: 66px;
    }

    .whatsapp-fab svg {
        width: 38px;
        height: 38px;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .scroll-jumpers {
        grid-template-columns: repeat(2, 36px);
        gap: 8px;
    }

    .scroll-jumper {
        width: 36px;
        height: 36px;
    }

    .cinematic-site .delivery-rail strong {
        margin-top: 72px;
    }

    .cinematic-site .product-matrix article {
        min-height: auto;
    }

    .cinematic-site .product-visual {
        min-height: 150px;
        height: 150px;
        padding: 14px;
    }

    .cinematic-site .product-visual-stackable {
        gap: 6px;
    }

    .cinematic-site .product-visual-stackable .product-zoom {
        width: min(62%, 220px);
    }

    .cinematic-site .product-visual-stackable img {
        height: 148px;
    }

    .cinematic-site .hardware-gallery img:first-child {
        width: 116%;
        right: -8%;
        bottom: 24%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cinematic-site .cinema-hero-stage,
    .cinematic-site .world-panel,
    .cinematic-site .hero-device-main {
        transform: none;
        transition: none;
    }
}

/* Content must remain readable even when scroll observers lag behind. */
.cinematic-site [data-reveal] {
    opacity: 1;
    transform: none;
}

/* Product Design polish pass: cinematic attraction, clearer path, stronger scroll rhythm. */
.cinematic-site {
    --pointer-x: 50%;
    --pointer-y: 50%;
}

.cinematic-site section {
    scroll-margin-top: 92px;
}

.cinematic-site .cinema-hero {
    overflow: hidden;
}

.cinematic-site .cinema-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(24, 184, 255, 0.18), transparent 28%),
        linear-gradient(120deg, transparent 0%, rgba(56, 189, 248, 0.08) 42%, transparent 58%);
    opacity: 0.9;
    transition: background-position 180ms linear;
}

.cinematic-site .cinema-hero h1 {
    max-width: 1060px;
    text-wrap: balance;
}

.cinematic-site .cinema-hero-copy {
    padding-bottom: 118px;
}

.cinematic-site .hero-route-line {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 14px;
    background: rgba(125, 211, 252, 0.14);
    box-shadow: 0 22px 54px rgba(2, 6, 23, 0.22);
}

.cinematic-site .hero-route-line span {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: rgba(248, 250, 252, 0.9);
    background: rgba(3, 7, 18, 0.62);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.cinematic-site .signal-field {
    position: absolute;
    inset: 0 -8% 52px 2%;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    pointer-events: none;
}

.cinematic-site .signal-field span {
    position: absolute;
    left: -18%;
    width: 62%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.72), transparent);
    box-shadow: 0 0 22px rgba(24, 184, 255, 0.52);
    transform: rotate(-18deg);
    animation: signalSweep 5.8s linear infinite;
}

.cinematic-site .signal-field span:nth-child(1) { top: 28%; animation-delay: -1.2s; }
.cinematic-site .signal-field span:nth-child(2) { top: 42%; animation-delay: -3.6s; }
.cinematic-site .signal-field span:nth-child(3) { top: 57%; animation-delay: -2.2s; }
.cinematic-site .signal-field span:nth-child(4) { top: 72%; animation-delay: -4.8s; }

.cinematic-site .hero-feed {
    position: absolute;
    left: 3%;
    bottom: 31%;
    z-index: 4;
    width: min(330px, 42vw);
    padding: 18px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 16px;
    background: rgba(3, 7, 18, 0.7);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(18px);
}

.cinematic-site .hero-feed span {
    display: block;
    color: #20c5ff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.cinematic-site .hero-feed strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: 900;
    line-height: 1.1;
}

.cinematic-site .hero-feed p {
    margin: 10px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.cinematic-site .cinema-marquee {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 138px;
    overflow: hidden;
    border-top: 1px solid rgba(125, 211, 252, 0.16);
    border-bottom: 1px solid rgba(125, 211, 252, 0.16);
    background:
        linear-gradient(90deg, #02040a 0%, rgba(2, 20, 40, 0.96) 48%, #02040a 100%);
    color: #fff;
}

.cinematic-site .cinema-marquee::before,
.cinematic-site .cinema-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 18vw;
    pointer-events: none;
}

.cinematic-site .cinema-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #02040a, transparent);
}

.cinematic-site .cinema-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #02040a, transparent);
}

.cinematic-site .marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    animation: marqueeFlow 28s linear infinite;
}

.cinematic-site .marquee-track-alt {
    position: absolute;
    top: 74px;
    opacity: 0.28;
    animation-duration: 42s;
    animation-direction: reverse;
}

.cinematic-site .marquee-track span {
    color: rgba(248, 250, 252, 0.92);
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

@keyframes signalSweep {
    from { transform: translateX(0) rotate(-18deg); opacity: 0; }
    12% { opacity: 1; }
    72% { opacity: 1; }
    to { transform: translateX(230%) rotate(-18deg); opacity: 0; }
}

@keyframes proofScan {
    0%,
    34% {
        transform: translateX(-38%) rotate(3deg);
        opacity: 0;
    }

    52% {
        opacity: 0.75;
    }

    74%,
    100% {
        transform: translateX(42%) rotate(3deg);
        opacity: 0;
    }
}

@keyframes marqueeFlow {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (max-width: 1180px) {
    .cinematic-site .hero-feed {
        left: 4%;
        bottom: 24%;
        width: min(310px, 48vw);
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-hero-copy {
        padding-bottom: 0;
    }

    .cinematic-site .cinema-hero h1 {
        font-size: clamp(46px, 14vw, 70px);
        line-height: 0.94;
    }

    .cinematic-site .hero-route-line {
        grid-template-columns: 1fr;
        margin-top: 16px;
        border-radius: 12px;
    }

    .cinematic-site .hero-route-line span {
        min-height: 36px;
        justify-content: flex-start;
        padding: 0 18px;
        font-size: 13px;
        text-align: left;
    }

    .cinematic-site .signal-field {
        inset: 0 0 42px 0;
    }

    .cinematic-site .hero-feed {
        display: none;
    }

    .cinematic-site .cinema-marquee {
        min-height: 112px;
    }

    .cinematic-site .marquee-track {
        gap: 34px;
        animation-duration: 24s;
    }

    .cinematic-site .marquee-track-alt {
        top: 66px;
    }

    .cinematic-site .floating-contact {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .cinematic-site.mobile-floating-ready .floating-contact {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cinematic-site .signal-field span,
    .cinematic-site .marquee-track {
        animation: none;
    }
}

/* Product Design depth pass: control tower and migration decision surfaces. */
.cinematic-site .platform-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.cinematic-site .platform-reason-grid article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.58)),
        radial-gradient(circle at 76% 18%, rgba(24, 184, 255, 0.14), transparent 38%);
}

.cinematic-site .platform-reason-grid span {
    color: #20c5ff;
    font-size: 11px;
    font-weight: 900;
}

.cinematic-site .platform-reason-grid strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.05;
}

.cinematic-site .platform-reason-grid p {
    margin: 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 13px;
    line-height: 1.48;
}

.cinematic-site .dashboard-main {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 16px;
}

.cinematic-site .dashboard-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(24, 184, 255, 0.14), rgba(37, 99, 235, 0.06)),
        rgba(2, 6, 23, 0.52);
}

.cinematic-site .dashboard-topline span {
    color: #20c5ff;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .dashboard-topline strong {
    color: #fff;
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 900;
    line-height: 1.05;
    text-align: right;
}

.cinematic-site .dashboard-chart {
    position: relative;
    height: auto;
    min-height: 310px;
    margin-top: 0;
    overflow: hidden;
}

.cinematic-site .dashboard-chart::before {
    content: "";
    position: absolute;
    inset: 34px 32px;
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
    background-size: 56px 46px;
    opacity: 0.8;
}

.cinematic-site .dashboard-chart i {
    position: relative;
    z-index: 1;
    animation: barPulse 4.2s ease-in-out infinite;
}

.cinematic-site .dashboard-chart i:nth-child(2n) {
    animation-delay: -1.3s;
}

.cinematic-site .dashboard-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 14px;
    background: rgba(125, 211, 252, 0.18);
}

.cinematic-site .dashboard-flow span {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: rgba(248, 250, 252, 0.92);
    background: rgba(2, 6, 23, 0.66);
    font-size: 13px;
    font-weight: 900;
}

.cinematic-site .pilot-board {
    display: grid;
    gap: 18px;
}

.cinematic-site .pilot-decision-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: end;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 20%, rgba(24, 184, 255, 0.2), transparent 30%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.76));
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.28);
}

.cinematic-site .pilot-decision-panel > span {
    color: #20c5ff;
    font-size: 12px;
    font-weight: 900;
    align-self: start;
}

.cinematic-site .pilot-decision-panel > strong {
    color: #fff;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 900;
    line-height: 0.98;
}

.cinematic-site .pilot-decision-panel div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cinematic-site .pilot-decision-panel p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.42);
}

.cinematic-site .pilot-decision-panel b {
    display: block;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.cinematic-site .pilot-decision-panel small {
    display: block;
    margin-top: 8px;
    color: rgba(226, 232, 240, 0.68);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
}

@keyframes barPulse {
    0%, 100% { filter: saturate(1); transform: scaleY(1); }
    50% { filter: saturate(1.28); transform: scaleY(1.04); }
}

@media (max-width: 1180px) {
    .cinematic-site .localization-copy h2 {
        font-size: 70px;
    }

    .cinematic-site .localization-layout {
        grid-template-columns: 1fr;
    }

    .cinematic-site .market-console {
        min-height: auto;
    }

    .cinematic-site .packages-header h2 {
        font-size: 68px;
    }

    .cinematic-site .package-grid {
        grid-template-columns: 1fr;
    }

    .cinematic-site .package-card {
        min-height: auto;
    }

    .cinematic-site .package-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .supply-header h2 {
        font-size: 66px;
    }

    .cinematic-site .supply-matrix {
        grid-template-columns: 1fr;
    }

    .cinematic-site .supply-card {
        min-height: auto;
    }

    .cinematic-site .supply-rules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .procurement-header h2 {
        font-size: 72px;
    }

    .cinematic-site .procurement-command strong {
        font-size: 46px;
    }

    .cinematic-site .procurement-layout {
        grid-template-columns: 1fr;
    }

    .cinematic-site .procurement-command {
        min-height: auto;
    }

    .cinematic-site .platform-reason-grid {
        grid-template-columns: 1fr;
    }

    .cinematic-site .pilot-decision-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .cinematic-site .localization-copy h2 {
        font-size: 42px;
        line-height: 0.98;
    }

    .cinematic-site .localization-copy p {
        font-size: 17px;
    }

    .cinematic-site .localization-layout {
        gap: 14px;
        margin-top: 38px;
    }

    .cinematic-site .market-console {
        padding: 24px;
        border-radius: 16px;
    }

    .cinematic-site .market-console-head strong {
        font-size: 34px;
    }

    .cinematic-site .market-readiness-list p {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 12px;
    }

    .cinematic-site .market-readiness-list b {
        padding-right: 72px;
    }

    .cinematic-site .localization-checks {
        grid-template-columns: 1fr;
    }

    .cinematic-site .localization-checks article {
        min-height: 168px;
        padding: 24px;
        border-radius: 14px;
    }

    .cinematic-site .localization-checks strong {
        font-size: 25px;
    }

    .cinematic-site .packages-header h2 {
        font-size: 42px;
        line-height: 0.98;
    }

    .cinematic-site .packages-header p {
        font-size: 17px;
    }

    .cinematic-site .package-grid {
        margin-top: 38px;
    }

    .cinematic-site .package-card {
        gap: 22px;
        padding: 24px;
        border-radius: 16px;
    }

    .cinematic-site .package-card strong {
        font-size: 28px;
    }

    .cinematic-site .package-flow {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .cinematic-site .package-flow article {
        min-height: 180px;
        padding: 24px;
    }

    .cinematic-site .package-flow strong {
        margin-top: 46px;
    }

    .cinematic-site .supply-header h2 {
        font-size: 42px;
        line-height: 0.98;
    }

    .cinematic-site .supply-header p {
        font-size: 17px;
    }

    .cinematic-site .supply-matrix {
        margin-top: 38px;
    }

    .cinematic-site .supply-card {
        gap: 22px;
        padding: 24px;
        border-radius: 16px;
    }

    .cinematic-site .supply-card strong {
        font-size: 28px;
    }

    .cinematic-site .supply-rules {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .cinematic-site .supply-rules article {
        min-height: 180px;
        padding: 24px;
    }

    .cinematic-site .supply-rules strong {
        margin-top: 46px;
    }

    .cinematic-site .procurement-header span {
        font-size: 11px;
    }

    .cinematic-site .procurement-header h2 {
        font-size: 44px;
        line-height: 0.95;
    }

    .cinematic-site .procurement-header p {
        font-size: 17px;
    }

    .cinematic-site .procurement-layout {
        margin-top: 38px;
    }

    .cinematic-site .procurement-command {
        border-radius: 16px;
    }

    .cinematic-site .procurement-command strong {
        font-size: 36px;
    }

    .cinematic-site .procurement-flow p {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .cinematic-site .procurement-flow b {
        width: 36px;
        height: 36px;
    }

    .cinematic-site .procurement-terms {
        grid-template-columns: 1fr;
    }

    .cinematic-site .procurement-terms article {
        min-height: 166px;
        border-radius: 16px;
    }

    .cinematic-site .platform-reason-grid article {
        min-height: 150px;
    }

    .cinematic-site .dashboard-main {
        padding: 18px;
    }

    .cinematic-site .dashboard-topline {
        display: grid;
        align-items: start;
    }

    .cinematic-site .dashboard-topline strong {
        text-align: left;
    }

    .cinematic-site .dashboard-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .pilot-board {
        gap: 14px;
    }

    .cinematic-site .pilot-decision-panel {
        border-radius: 16px;
    }

    .cinematic-site .pilot-decision-panel div {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cinematic-site .dashboard-chart i {
        animation: none;
    }
}

/* Product Design global control tower pass: real cross-region admin console. */
.cinematic-site .global-dashboard-stage {
    position: relative;
    min-height: min(78vh, 760px);
    display: grid;
    align-content: center;
}

.cinematic-site .global-dashboard-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.86);
    box-shadow:
        0 44px 130px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transform: perspective(1500px) rotateY(-4deg) rotateX(1.5deg);
    transform-origin: center;
}

.cinematic-site .global-dashboard-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(125, 211, 252, 0.18);
    background:
        linear-gradient(90deg, rgba(24, 184, 255, 0.18), rgba(37, 99, 235, 0.1)),
        rgba(2, 6, 23, 0.94);
}

.cinematic-site .global-dashboard-bar span {
    width: 36px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20c5ff, #22c55e);
    box-shadow: 0 0 18px rgba(32, 197, 255, 0.34);
}

.cinematic-site .global-dashboard-bar strong {
    color: #fff;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.1;
}

.cinematic-site .global-dashboard-bar em {
    color: #20c5ff;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.cinematic-site .global-dashboard-window img {
    display: block;
    width: 100%;
    aspect-ratio: 4096 / 2086;
    object-fit: cover;
    object-position: center top;
}

.cinematic-site .global-dashboard-window::after {
    content: "";
    position: absolute;
    inset: 54px 0 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 20%, transparent 78%, rgba(24, 184, 255, 0.12)),
        radial-gradient(circle at 88% 14%, rgba(34, 197, 94, 0.14), transparent 22%);
    mix-blend-mode: screen;
}

.cinematic-site .global-dashboard-kpis {
    position: absolute;
    right: 2%;
    bottom: 104px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(70%, 620px);
}

.cinematic-site .global-dashboard-kpis article {
    padding: 16px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.cinematic-site .global-dashboard-kpis span {
    display: block;
    color: rgba(226, 232, 240, 0.66);
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .global-dashboard-kpis strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1;
}

.cinematic-site .global-dashboard-stage .dashboard-flow {
    position: absolute;
    left: 4%;
    bottom: 24px;
    z-index: 3;
    width: min(520px, 72%);
}

@media (max-width: 1180px) {
    .cinematic-site .global-dashboard-window {
        transform: none;
    }

    .cinematic-site .global-dashboard-kpis {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }

    .cinematic-site .global-dashboard-stage .dashboard-flow {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }
}

@media (max-width: 720px) {
    .cinematic-site .global-dashboard-stage {
        min-height: auto;
    }

    .cinematic-site .global-dashboard-bar {
        grid-template-columns: 1fr;
        gap: 4px;
        align-items: start;
        padding: 12px 14px;
    }

    .cinematic-site .global-dashboard-bar span {
        display: none;
    }

    .cinematic-site .global-dashboard-window {
        border-radius: 18px;
    }

    .cinematic-site .global-dashboard-window img {
        min-height: 310px;
        object-fit: cover;
        object-position: 10% top;
    }

    .cinematic-site .global-dashboard-kpis {
        grid-template-columns: 1fr;
    }
}

/* Product Design proof pass: real operator data, product selection, venue economics and evidence readiness. */
.cinematic-site .cinema-operator {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #f8fafc;
    background:
        radial-gradient(circle at 78% 18%, rgba(24, 184, 255, 0.2), transparent 30%),
        radial-gradient(circle at 12% 82%, rgba(37, 99, 235, 0.18), transparent 26%),
        linear-gradient(180deg, #02040a 0%, #071827 50%, #02040a 100%);
}

.cinematic-site .cinema-operator::before {
    content: "";
    position: absolute;
    inset: 9% -18% auto 36%;
    height: 78%;
    border: 1px solid rgba(125, 211, 252, 0.13);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.cinematic-site .operator-grid {
    position: relative;
    z-index: 1;
    max-width: 1680px;
    min-height: calc(100svh - 140px);
    display: grid;
    grid-template-columns: minmax(330px, 0.62fr) minmax(680px, 1.38fr);
    gap: 48px;
    align-items: center;
    margin: 0 auto;
}

.cinematic-site .operator-copy h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: 72px;
    font-weight: 950;
    line-height: 0.95;
}

.cinematic-site .operator-copy > p {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 18px;
    line-height: 1.65;
}

.cinematic-site .operator-data-points {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.cinematic-site .operator-data-points article {
    padding: 18px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.56)),
        radial-gradient(circle at 90% 22%, rgba(24, 184, 255, 0.12), transparent 30%);
}

.cinematic-site .operator-data-points span {
    color: #20c5ff;
    font-size: 11px;
    font-weight: 900;
}

.cinematic-site .operator-data-points strong {
    display: block;
    margin-top: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.cinematic-site .operator-data-points p {
    margin: 9px 0 0;
    color: rgba(226, 232, 240, 0.66);
    font-size: 13px;
    line-height: 1.48;
}

.cinematic-site .operator-stage {
    position: relative;
    min-width: 0;
    min-height: 820px;
    display: grid;
    place-items: center;
}

.cinematic-site .operator-window-stack {
    position: relative;
    width: 100%;
    display: grid;
    justify-items: center;
    padding: 28px 0 54px;
}

.cinematic-site .operator-window {
    position: relative;
    width: 100%;
    max-width: 1120px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 26px;
    background: rgba(248, 250, 252, 0.96);
    box-shadow:
        0 44px 120px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transform: perspective(1500px) rotateY(-5deg) rotateX(1deg);
    transform-origin: center;
}

.cinematic-site .operator-window-summary {
    z-index: 1;
}

.cinematic-site .operator-window-orders {
    z-index: 2;
    justify-self: end;
    max-width: 980px;
    margin-top: -76px;
    transform: perspective(1500px) rotateY(-4deg) rotateX(1deg) translateX(-22px);
}

.cinematic-site .operator-window-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    background:
        linear-gradient(90deg, rgba(5, 18, 42, 0.98), rgba(15, 23, 42, 0.88)),
        rgba(2, 6, 23, 0.92);
}

.cinematic-site .operator-window-bar span {
    width: 34px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20c5ff, #22c55e);
    box-shadow: 0 0 20px rgba(32, 197, 255, 0.32);
}

.cinematic-site .operator-window-bar strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.cinematic-site .operator-window-bar em {
    color: rgba(226, 232, 240, 0.64);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.cinematic-site .operator-window img {
    display: block;
    width: 100%;
    aspect-ratio: 4076 / 2058;
    object-fit: cover;
    object-position: left top;
}

.cinematic-site .operator-window-orders img {
    aspect-ratio: 3812 / 1876;
    object-position: left top;
}

.cinematic-site .operator-window::after {
    content: "";
    position: absolute;
    inset: 54px 0 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 20%, transparent 72%, rgba(24, 184, 255, 0.12));
    mix-blend-mode: screen;
}

.cinematic-site .operator-float {
    position: absolute;
    z-index: 2;
    min-width: 146px;
    padding: 16px 18px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

.cinematic-site .operator-float span {
    display: block;
    color: rgba(226, 232, 240, 0.62);
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .operator-float strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 38px;
    line-height: 1;
}

.cinematic-site .operator-float-a {
    top: 10%;
    right: 0;
}

.cinematic-site .operator-float-b {
    left: 2%;
    bottom: 10%;
}

.cinematic-site .product-spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 0;
    overflow: hidden;
    padding: 0;
    list-style: none;
}

.cinematic-site .product-spec-list li {
    position: relative;
    padding: 5px 8px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.07);
    color: #0f172a;
    overflow: hidden;
    font-size: 11px;
    font-weight: 760;
    line-height: 1.42;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cinematic-site .product-spec-list li::before {
    content: none;
}

.cinematic-site .venue-economics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 44px;
    overflow: hidden;
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.12);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.cinematic-site .venue-economics article {
    min-height: 230px;
    padding: 28px;
    background:
        radial-gradient(circle at 90% 18%, rgba(24, 184, 255, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.94);
}

.cinematic-site .venue-economics span {
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 900;
}

.cinematic-site .venue-economics strong {
    display: block;
    max-width: 360px;
    margin-top: 40px;
    color: #020617;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.02;
}

.cinematic-site .venue-economics p {
    max-width: 390px;
    margin: 16px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .cinema-story-factory .story-copy {
    grid-row: 1 / span 2;
}

.cinematic-site .proof-readiness {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-self: end;
}

.cinematic-site .proof-readiness article {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 255, 0.88)),
        radial-gradient(circle at 88% 18%, rgba(24, 184, 255, 0.12), transparent 30%);
}

.cinematic-site .proof-readiness span {
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 950;
}

.cinematic-site .proof-readiness strong {
    display: block;
    margin-top: 44px;
    color: #020617;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.05;
}

.cinematic-site .proof-readiness p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.48;
}

.cinematic-site .factory-board {
    grid-column: 2;
}

@media (max-width: 1180px) {
    .cinematic-site .operator-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cinematic-site .operator-copy h2 {
        font-size: 58px;
    }

    .cinematic-site .operator-stage {
        min-height: auto;
    }

    .cinematic-site .operator-window-stack {
        gap: 18px;
        padding: 20px 0 0;
    }

    .cinematic-site .operator-window {
        transform: none;
    }

    .cinematic-site .operator-window-orders {
        justify-self: stretch;
        max-width: none;
        margin-top: 0;
        transform: none;
    }

    .cinematic-site .venue-economics,
    .cinematic-site .proof-readiness {
        grid-template-columns: 1fr;
    }

    .cinematic-site .cinema-story-factory .story-copy,
    .cinematic-site .proof-readiness,
    .cinematic-site .factory-board {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-operator {
        padding: 86px 16px;
    }

    .cinematic-site .operator-copy h2 {
        font-size: 42px;
    }

    .cinematic-site .operator-copy > p {
        font-size: 15px;
    }

    .cinematic-site .operator-window {
        border-radius: 18px;
    }

    .cinematic-site .operator-window-stack {
        gap: 14px;
        padding: 0;
    }

    .cinematic-site .operator-window-bar {
        grid-template-columns: 1fr;
        gap: 4px;
        align-items: start;
        padding: 12px 14px;
    }

    .cinematic-site .operator-window-bar span {
        display: none;
    }

    .cinematic-site .operator-window img {
        min-height: 280px;
        object-fit: cover;
        object-position: 8% top;
    }

    .cinematic-site .operator-window-orders img {
        min-height: 260px;
        object-position: left top;
    }

    .cinematic-site .operator-float {
        position: static;
        min-width: 0;
        margin-top: 12px;
    }

    .cinematic-site .operator-stage {
        display: block;
    }

    .cinematic-site .venue-economics article,
    .cinematic-site .proof-readiness article {
        min-height: 190px;
    }

    .cinematic-site .venue-economics strong {
        margin-top: 34px;
        font-size: 24px;
    }
}

/* Product Design decision pass: buyer comparison and SaaS-first launch reasoning. */
.cinematic-site .cinema-decision {
    color: #fff;
    padding-top: 176px;
    background:
        radial-gradient(circle at 88% 18%, rgba(24, 184, 255, 0.2), transparent 30%),
        radial-gradient(circle at 12% 72%, rgba(34, 197, 94, 0.12), transparent 28%),
        linear-gradient(180deg, #02040a 0%, #071827 54%, #02040a 100%);
}

.cinematic-site .cinema-decision::before {
    content: "";
    position: absolute;
    inset: 11% 4% auto 42%;
    height: 76%;
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.cinematic-site .decision-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
}

.cinematic-site .decision-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cinematic-site .decision-questions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.cinematic-site .decision-questions article {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 24px;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.62)),
        radial-gradient(circle at 82% 18%, rgba(24, 184, 255, 0.14), transparent 34%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.cinematic-site .decision-questions span {
    color: #20c5ff;
    font-size: 11px;
    font-weight: 950;
}

.cinematic-site .decision-questions strong {
    display: block;
    margin-top: 86px;
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 950;
    line-height: 1.04;
}

.cinematic-site .decision-questions p {
    margin: 16px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 14px;
    line-height: 1.52;
}

.cinematic-site .decision-matrix {
    position: relative;
    z-index: 1;
    margin-top: clamp(40px, 6vw, 76px);
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.28);
}

.cinematic-site .decision-row {
    display: grid;
    grid-template-columns: minmax(170px, 0.62fr) repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(125, 211, 252, 0.16);
}

.cinematic-site .decision-row:first-child {
    border-top: 0;
}

.cinematic-site .decision-row > * {
    margin: 0;
    padding: 24px;
    border-left: 1px solid rgba(125, 211, 252, 0.16);
}

.cinematic-site .decision-row > *:first-child {
    border-left: 0;
}

.cinematic-site .decision-head {
    background:
        linear-gradient(90deg, rgba(24, 184, 255, 0.16), rgba(34, 197, 94, 0.08)),
        rgba(2, 6, 23, 0.64);
}

.cinematic-site .decision-head span {
    color: rgba(248, 250, 252, 0.9);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .decision-row strong {
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.08;
}

.cinematic-site .decision-row p {
    color: rgba(226, 232, 240, 0.66);
    font-size: 14px;
    line-height: 1.55;
}

.cinematic-site .decision-cell-label {
    display: none;
}

.cinematic-site .decision-row .decision-core {
    color: #e0f2fe;
    background:
        linear-gradient(135deg, rgba(24, 184, 255, 0.16), rgba(34, 197, 94, 0.1)),
        rgba(8, 47, 73, 0.26);
    font-weight: 850;
}

@media (max-width: 1180px) {
    .cinematic-site .decision-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cinematic-site .decision-questions {
        grid-template-columns: 1fr;
    }

    .cinematic-site .decision-questions article {
        min-height: 220px;
    }

    .cinematic-site .decision-questions strong {
        margin-top: 42px;
    }
}

@media (max-width: 820px) {
    .cinematic-site .decision-matrix {
        display: grid;
        gap: 14px;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .cinematic-site .decision-row,
    .cinematic-site .decision-head {
        display: grid;
        grid-template-columns: 1fr;
        overflow: hidden;
        border: 1px solid rgba(125, 211, 252, 0.18);
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.62);
    }

    .cinematic-site .decision-head {
        display: none;
    }

    .cinematic-site .decision-row > * {
        border-left: 0;
        border-top: 1px solid rgba(125, 211, 252, 0.14);
        padding: 18px;
    }

    .cinematic-site .decision-row > *:first-child {
        border-top: 0;
    }

    .cinematic-site .decision-cell-label {
        display: block;
        margin-bottom: 6px;
        color: #20c5ff;
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-decision {
        padding-top: 96px;
    }

    .cinematic-site .decision-actions {
        display: grid;
    }

    .cinematic-site .decision-questions article {
        min-height: 190px;
        padding: 20px;
    }

    .cinematic-site .decision-questions strong {
        margin-top: 34px;
        font-size: 24px;
    }
}

/* Premium motion layer: subtle global rhythm for languages, regions and cards. */
@media (prefers-reduced-motion: no-preference) {
    body.cinematic-site main {
        transition:
            opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.32s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.cinematic-site.language-transitioning main {
        opacity: 0.76;
        filter: blur(5px);
        transform: translate3d(0, 4px, 0);
    }

    html.motion-ready body.cinematic-site [data-reveal] {
        opacity: 0;
        transform: translate3d(0, 38px, 0) scale(0.986);
        filter: blur(10px);
        transition:
            opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
            filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: opacity, transform, filter;
    }

    html.motion-ready body.cinematic-site [data-reveal].revealed {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }

    .cinematic-site .cinema-nav a {
        position: relative;
        transition: color 0.24s ease, opacity 0.24s ease;
    }

    .cinematic-site .cinema-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -9px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.94), transparent);
        opacity: 0;
        transform: scaleX(0.4);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .cinematic-site .cinema-nav a:hover::after {
        opacity: 1;
        transform: scaleX(1);
    }

    .cinematic-site .language-switch {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(2, 6, 23, 0.22);
    }

    .cinematic-site .language-switch::before {
        content: "";
        position: absolute;
        inset: -40% -20%;
        background: linear-gradient(115deg, transparent 30%, rgba(125, 211, 252, 0.18), transparent 66%);
        opacity: 0.7;
        transform: translateX(-54%);
        animation: languageSheen 5.8s ease-in-out infinite;
        pointer-events: none;
    }

    .cinematic-site .language-switch button, .cinematic-site .language-switch a {
        position: relative;
        z-index: 1;
        transition:
            color 0.24s ease,
            background 0.24s ease,
            box-shadow 0.24s ease,
            transform 0.24s ease;
    }

    .cinematic-site .language-switch button:hover,
    .cinematic-site .language-switch a:hover {
        color: #fff;
        transform: translateY(-1px);
    }

    .cinematic-site .language-switch button.active,
    .cinematic-site .language-switch a.active {
        background: linear-gradient(135deg, rgba(24, 184, 255, 0.34), rgba(34, 197, 94, 0.2));
        box-shadow: 0 10px 28px rgba(24, 184, 255, 0.18);
    }

    .cinematic-site .language-switch button.active::after,
    .cinematic-site .language-switch a.active::after {
        content: "";
        position: absolute;
        inset: 5px;
        border: 1px solid rgba(226, 232, 240, 0.2);
        border-radius: inherit;
        opacity: 0.7;
        animation: activeLanguagePulse 2.8s ease-in-out infinite;
        pointer-events: none;
    }

    .cinematic-site .market-readiness-list p {
        position: relative;
        overflow: hidden;
        padding-right: 14px;
        padding-left: 14px;
        border: 1px solid transparent;
        border-top-color: rgba(226, 232, 240, 0.14);
        border-radius: 16px;
        transition:
            background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cinematic-site .market-readiness-list p::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, #22c55e, #38bdf8, #fbbf24);
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
    }

    .cinematic-site .market-readiness-list p.is-active {
        background:
            radial-gradient(circle at 14% 50%, rgba(34, 197, 94, 0.16), transparent 36%),
            rgba(15, 23, 42, 0.74);
        border-color: rgba(125, 211, 252, 0.2);
        box-shadow: 0 18px 50px rgba(2, 6, 23, 0.2);
        transform: translateX(7px);
    }

    .cinematic-site .market-readiness-list p.is-active span {
        color: #7dd3fc;
    }

    .cinematic-site .market-readiness-list p.is-active b {
        color: #fff;
    }

    .cinematic-site .market-readiness-list p.is-active::after {
        opacity: 1;
        animation: regionTimer 2.6s linear infinite;
    }

    .cinematic-site :where(
        .package-card,
        .supply-card,
        .localization-checks article,
        .procurement-terms article,
        .catalog-pack article,
        .delivery-rail article,
        .venue-grid article,
        .product-matrix article,
        .decision-questions article,
        .proof-readiness article,
        .method-grid article
    ) {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        transform: translateZ(0);
        transition:
            transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
            background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .cinematic-site :where(
        .package-card,
        .supply-card,
        .localization-checks article,
        .procurement-terms article,
        .catalog-pack article,
        .delivery-rail article,
        .venue-grid article,
        .product-matrix article,
        .decision-questions article,
        .proof-readiness article,
        .method-grid article
    ) > * {
        position: relative;
        z-index: 1;
    }

    .cinematic-site :where(
        .package-card,
        .supply-card,
        .localization-checks article,
        .procurement-terms article,
        .catalog-pack article,
        .delivery-rail article,
        .venue-grid article,
        .product-matrix article,
        .decision-questions article,
        .proof-readiness article,
        .method-grid article
    )::after {
        content: "";
        position: absolute;
        z-index: 0;
        inset: -1px;
        pointer-events: none;
        background:
            radial-gradient(230px circle at var(--card-x, 50%) var(--card-y, 16%), rgba(125, 211, 252, 0.2), transparent 48%),
            radial-gradient(380px circle at 50% 0%, rgba(34, 197, 94, 0.1), transparent 62%);
        opacity: 0;
        transition: opacity 0.42s ease;
    }

    .cinematic-site :where(
        .package-card,
        .supply-card,
        .localization-checks article,
        .procurement-terms article,
        .catalog-pack article,
        .delivery-rail article,
        .venue-grid article,
        .product-matrix article,
        .decision-questions article,
        .proof-readiness article,
        .method-grid article
    ):hover {
        border-color: rgba(125, 211, 252, 0.32);
        box-shadow: 0 34px 88px rgba(2, 6, 23, 0.28), 0 0 0 1px rgba(125, 211, 252, 0.05);
        transform: translate3d(0, -6px, 0);
    }

    .cinematic-site :where(
        .package-card,
        .supply-card,
        .localization-checks article,
        .procurement-terms article,
        .catalog-pack article,
        .delivery-rail article,
        .venue-grid article,
        .product-matrix article,
        .decision-questions article,
        .proof-readiness article,
        .method-grid article
    ):hover::after {
        opacity: 1;
    }

    html.motion-ready .cinematic-site .package-grid.revealed .package-card,
    html.motion-ready .cinematic-site .supply-matrix.revealed .supply-card,
    html.motion-ready .cinematic-site .localization-layout.revealed .localization-checks article,
    html.motion-ready .cinematic-site .delivery-rail.revealed article,
    html.motion-ready .cinematic-site .catalog-pack.revealed article,
    html.motion-ready .cinematic-site .procurement-layout.revealed .procurement-terms article {
        animation: cardArrive 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
        animation-delay: var(--card-arrive-delay, 0ms);
    }

    .cinematic-site .package-card:nth-child(2),
    .cinematic-site .supply-card:nth-child(2),
    .cinematic-site .localization-checks article:nth-child(2),
    .cinematic-site .delivery-rail article:nth-child(2),
    .cinematic-site .catalog-pack article:nth-child(2),
    .cinematic-site .procurement-terms article:nth-child(2) {
        --card-arrive-delay: 90ms;
    }

    .cinematic-site .package-card:nth-child(3),
    .cinematic-site .supply-card:nth-child(3),
    .cinematic-site .localization-checks article:nth-child(3),
    .cinematic-site .delivery-rail article:nth-child(3),
    .cinematic-site .catalog-pack article:nth-child(3),
    .cinematic-site .procurement-terms article:nth-child(3) {
        --card-arrive-delay: 180ms;
    }

    .cinematic-site .localization-checks article:nth-child(4),
    .cinematic-site .delivery-rail article:nth-child(4),
    .cinematic-site .procurement-terms article:nth-child(4) {
        --card-arrive-delay: 270ms;
    }

    .cinematic-site .localization-checks article:nth-child(5),
    .cinematic-site .delivery-rail article:nth-child(5),
    .cinematic-site .procurement-terms article:nth-child(5) {
        --card-arrive-delay: 360ms;
    }

    .cinematic-site .localization-checks article:nth-child(6),
    .cinematic-site .delivery-rail article:nth-child(6),
    .cinematic-site .procurement-terms article:nth-child(6) {
        --card-arrive-delay: 450ms;
    }

    .cinematic-site .cinema-localization::before,
    .cinematic-site .cinema-packages::before,
    .cinematic-site .cinema-supply::before,
    .cinematic-site .cinema-procurement::before,
    .cinematic-site .cinema-catalog::before {
        transform-origin: center;
        animation: ambientField 24s ease-in-out infinite alternate;
        will-change: transform, opacity;
    }

    .cinematic-site .hero-route-line span {
        transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
    }

    .cinematic-site .hero-route-line span:hover {
        color: #fff;
        background: rgba(24, 184, 255, 0.18);
        transform: translateY(-2px);
    }

    .cinematic-site .cinema-button {
        transition:
            transform 0.24s ease,
            box-shadow 0.24s ease,
            border-color 0.24s ease,
            background 0.24s ease;
    }

    .cinematic-site .cinema-button:hover {
        box-shadow: 0 18px 46px rgba(24, 184, 255, 0.18);
        transform: translateY(-2px);
    }
}

@keyframes languageSheen {
    0%,
    58% {
        transform: translateX(-54%);
    }
    82%,
    100% {
        transform: translateX(44%);
    }
}

@keyframes activeLanguagePulse {
    0%,
    100% {
        opacity: 0.48;
        transform: scale(1);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.05);
    }
}

@keyframes regionTimer {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes cardArrive {
    0% {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.98);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes ambientField {
    0% {
        opacity: 0.72;
        transform: translate3d(-1.4%, 0, 0) scale(1);
    }
    100% {
        opacity: 0.95;
        transform: translate3d(1.4%, -1%, 0) scale(1.04);
    }
}

/* Delivered brand intelligence: real cases presented as a calm predictive signal layer. */
.cinematic-site .case-intelligence {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: clamp(92px, 9vw, 138px);
    background:
        radial-gradient(circle at 16% 16%, rgba(20, 184, 166, 0.18), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(56, 189, 248, 0.16), transparent 36%),
        linear-gradient(180deg, #020617 0%, #07111f 54%, #020617 100%);
    color: #f8fafc;
}

.cinematic-site .case-intelligence::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(125, 211, 252, 0.045) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(circle at 50% 26%, #000 0%, rgba(0, 0, 0, 0.9) 36%, transparent 78%);
    pointer-events: none;
}

.cinematic-site .case-intelligence::after {
    content: "";
    position: absolute;
    inset: 0 -30%;
    background: linear-gradient(112deg, transparent 38%, rgba(34, 211, 238, 0.13) 48%, rgba(52, 211, 153, 0.08) 52%, transparent 62%);
    opacity: 0.55;
    transform: translateX(-46%);
    pointer-events: none;
}

.cinematic-site .case-intelligence-copy,
.cinematic-site .case-intelligence-stage {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.cinematic-site .case-intelligence-copy > span {
    display: block;
    color: #5eead4;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .case-intelligence-copy h2 {
    max-width: 980px;
    margin: 22px 0 0;
    color: #fff;
    font-size: clamp(52px, 6.4vw, 86px);
    font-weight: 950;
    line-height: 0.92;
}

.cinematic-site .case-intelligence-copy p {
    max-width: 840px;
    margin: 30px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.55;
}

.cinematic-site .case-intelligence-stage {
    display: block;
    margin-top: clamp(38px, 5vw, 72px);
}

.cinematic-site .case-oracle {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 38%, rgba(20, 184, 166, 0.19), transparent 28%),
        radial-gradient(circle at 50% 38%, rgba(56, 189, 248, 0.12), transparent 46%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.86));
    box-shadow: 0 42px 130px rgba(0, 0, 0, 0.38);
}

.cinematic-site .case-scan-line {
    position: absolute;
    inset: -20% auto -20% 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.16), transparent);
    filter: blur(1px);
    transform: translateX(-120%) skewX(-14deg);
}

.cinematic-site .case-oracle-core {
    position: absolute;
    left: 50%;
    top: 38%;
    width: clamp(210px, 22vw, 280px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 26px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 32%, rgba(94, 234, 212, 0.24), transparent 42%),
        rgba(2, 6, 23, 0.72);
    box-shadow:
        0 0 0 14px rgba(14, 165, 233, 0.04),
        0 0 0 34px rgba(20, 184, 166, 0.035),
        0 26px 90px rgba(0, 0, 0, 0.42);
    text-align: center;
    transform: translate(-50%, -50%);
}

.cinematic-site .case-oracle-core span {
    color: #5eead4;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.cinematic-site .case-oracle-core strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(42px, 5.8vw, 78px);
    font-weight: 950;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cinematic-site[data-locale="zh"] .case-oracle-core strong {
    letter-spacing: 0;
}

.cinematic-site .case-oracle-core p {
    max-width: 190px;
    margin: 14px auto 0;
    color: rgba(226, 232, 240, 0.66);
    font-size: 13px;
    line-height: 1.42;
}

.cinematic-site .case-orbit {
    position: absolute;
    left: 50%;
    top: 38%;
    border: 1px solid rgba(125, 211, 252, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cinematic-site .case-orbit-a {
    width: min(78%, 460px);
    aspect-ratio: 1;
}

.cinematic-site .case-orbit-b {
    width: min(105%, 620px);
    aspect-ratio: 1;
    border-color: rgba(94, 234, 212, 0.11);
}

.cinematic-site .case-feed {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 10px;
}

.cinematic-site .case-feed article {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.68);
}

.cinematic-site .case-feed article span {
    grid-row: span 2;
    color: #38bdf8;
    font-size: 12px;
    font-weight: 950;
}

.cinematic-site .case-feed article strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cinematic-site .case-feed article p {
    margin: 4px 0 0;
    color: rgba(226, 232, 240, 0.62);
    font-size: 13px;
    line-height: 1.42;
}

.cinematic-site .case-signal-panel {
    display: grid;
    align-content: start;
    gap: 24px;
}

.cinematic-site .case-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cinematic-site .case-metrics article {
    min-height: 146px;
    padding: 22px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
}

.cinematic-site .case-metrics strong {
    display: block;
    color: #fff;
    min-height: 2.1em;
    font-size: clamp(22px, 2.1vw, 34px);
    font-weight: 950;
    line-height: 1.05;
}

.cinematic-site .case-metrics span {
    display: block;
    margin-top: 14px;
    color: rgba(226, 232, 240, 0.66);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.cinematic-site .case-logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cinematic-site .case-signal-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.68)),
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12), transparent 50%);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
    transform: translateZ(0);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cinematic-site .case-signal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.14), transparent 66%);
    opacity: 0;
    transform: translateX(-88%);
}

.cinematic-site .case-signal-card::after {
    content: "";
    position: absolute;
    inset: auto 24px 18px 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #f59e0b);
    opacity: 0;
    transform: scaleX(0.2);
    transform-origin: left;
}

.cinematic-site .case-signal-card img {
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.cinematic-site .case-signal-card strong {
    display: block;
    margin-top: 34px;
    color: #fff;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 950;
    line-height: 1.04;
}

.cinematic-site .case-signal-card span {
    display: block;
    margin-top: 10px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.cinematic-site .case-signal-card.is-active {
    border-color: rgba(94, 234, 212, 0.44);
    background:
        radial-gradient(circle at 18% 14%, rgba(94, 234, 212, 0.2), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.72));
    box-shadow: 0 28px 76px rgba(20, 184, 166, 0.16);
    transform: translate3d(0, -5px, 0);
}

.cinematic-site .case-signal-card.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.cinematic-site .case-route-lab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.64), rgba(2, 6, 23, 0.58)),
        radial-gradient(circle at 72% 12%, rgba(94, 234, 212, 0.12), transparent 38%);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.cinematic-site .case-route-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 6px 0;
    max-width: 920px;
}

.cinematic-site .case-route-copy > span,
.cinematic-site .case-payment-panel > span {
    color: #5eead4;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .case-route-copy h3 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 950;
    line-height: 0.98;
}

.cinematic-site .case-route-copy p,
.cinematic-site .case-payment-panel p {
    margin: 0;
    color: rgba(226, 232, 240, 0.66);
    font-size: 14px;
    line-height: 1.62;
}

.cinematic-site .case-proof-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.cinematic-site .case-phone-preview {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 28px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.34);
    transform: translateZ(0);
    transition:
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        transform 0.32s ease;
}

.cinematic-site .case-phone-preview:hover {
    border-color: rgba(94, 234, 212, 0.44);
    box-shadow: 0 34px 92px rgba(20, 184, 166, 0.16);
    transform: translateY(-4px);
}

.cinematic-site .case-phone-preview::before {
    content: "";
    position: absolute;
    inset: 10px 34% auto 34%;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    z-index: 4;
}

.cinematic-site .case-map-preview::after {
    content: "";
    position: absolute;
    inset: 58px 16px 128px 16px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(28deg, transparent 46%, rgba(56, 189, 248, 0.18) 48%, transparent 51%),
        linear-gradient(112deg, transparent 41%, rgba(94, 234, 212, 0.16) 43%, transparent 47%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        rgba(241, 245, 249, 0.34);
    background-size: auto, auto, 22px 22px, 22px 22px, auto;
    opacity: 0.86;
    pointer-events: none;
    z-index: 1;
}

.cinematic-site .case-map-badge {
    position: absolute;
    left: 50%;
    top: 78px;
    z-index: 3;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(15, 23, 42, 0.78);
    font-size: 10px;
    font-weight: 950;
    white-space: nowrap;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.cinematic-site .case-phone-preview img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
}

.cinematic-site .case-phone-preview figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(16px);
}

.cinematic-site .case-phone-preview figcaption strong,
.cinematic-site .case-route-matrix strong,
.cinematic-site .case-payment-panel strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.1;
}

.cinematic-site .case-phone-preview figcaption span {
    display: block;
    margin-top: 5px;
    color: rgba(226, 232, 240, 0.66);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

.cinematic-site .case-phone-preview-a {
    transform: rotate(-4deg);
}

.cinematic-site .case-phone-preview-b {
    transform: rotate(4deg);
}

.cinematic-site .case-route-matrix {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cinematic-site .case-route-matrix article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    align-content: start;
    padding: 13px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
}

.cinematic-site .case-route-matrix img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}

.cinematic-site .case-route-matrix span {
    display: block;
    margin-top: 5px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.36;
}

.cinematic-site .case-route-matrix nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cinematic-site .case-route-matrix a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 7px 9px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.86);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    transition:
        border-color 0.24s ease,
        color 0.24s ease,
        transform 0.24s ease;
}

.cinematic-site .case-route-matrix a:hover {
    border-color: rgba(94, 234, 212, 0.52);
    color: #fff;
    transform: translateY(-1px);
}

.cinematic-site .case-payment-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
    gap: 14px 22px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(125, 211, 252, 0.12);
}

.cinematic-site .case-payment-panel > span {
    grid-column: 1 / -1;
}

.cinematic-site .case-payment-panel > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cinematic-site .case-payment-panel em {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid rgba(94, 234, 212, 0.18);
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.06);
    color: rgba(226, 232, 240, 0.78);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.cinematic-site .case-note {
    max-width: 720px;
    margin: 0;
    color: rgba(226, 232, 240, 0.6);
    font-size: 14px;
    line-height: 1.62;
}

@media (prefers-reduced-motion: no-preference) {
    .cinematic-site .case-intelligence::after {
        animation: caseSectionSweep 9s ease-in-out infinite;
    }

    .cinematic-site .case-oracle-core {
        animation: caseBreath 4.8s ease-in-out infinite;
    }

    .cinematic-site .case-orbit-a {
        animation: caseOrbit 18s linear infinite;
    }

    .cinematic-site .case-orbit-b {
        animation: caseOrbit 26s linear infinite reverse;
    }

    .cinematic-site .case-scan-line {
        animation: caseScan 5.6s ease-in-out infinite;
    }

    .cinematic-site .case-feed article::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.12), transparent);
        opacity: 0;
        transform: translateX(-90%);
        animation: caseFeedSweep 4.2s ease-in-out infinite;
        animation-delay: var(--feed-delay, 0ms);
    }

    .cinematic-site .case-feed article:nth-child(2) {
        --feed-delay: 460ms;
    }

    .cinematic-site .case-feed article:nth-child(3) {
        --feed-delay: 920ms;
    }

    .cinematic-site .case-signal-card.is-active::before {
        opacity: 1;
        animation: caseCardSheen 2.1s ease-in-out infinite;
    }
}

@media (max-width: 1180px) {
    .cinematic-site .case-route-copy {
        max-width: 760px;
    }

    .cinematic-site .case-proof-gallery {
        grid-template-columns: repeat(6, minmax(150px, 1fr));
        overflow-x: auto;
        padding: 2px 0 14px;
        scroll-snap-type: x proximity;
        scrollbar-color: rgba(94, 234, 212, 0.38) rgba(15, 23, 42, 0.44);
    }

    .cinematic-site .case-phone-preview {
        scroll-snap-align: start;
    }
}

@media (max-width: 820px) {
    .cinematic-site .case-intelligence {
        padding-top: 96px;
    }

    .cinematic-site .case-intelligence-copy h2 {
        font-size: 48px;
        line-height: 0.94;
    }

    .cinematic-site .case-intelligence-copy p {
        font-size: 17px;
    }

    .cinematic-site .case-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .case-logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .case-payment-panel {
        grid-template-columns: 1fr;
    }

    .cinematic-site .case-proof-gallery {
        grid-template-columns: repeat(6, minmax(178px, 1fr));
    }

    .cinematic-site .case-route-matrix {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cinematic-site .case-signal-card {
        min-height: 182px;
        padding: 18px;
    }

    .cinematic-site .case-signal-card img {
        width: 58px;
        height: 58px;
    }

    .cinematic-site .case-signal-card strong {
        margin-top: 24px;
        font-size: 17px;
    }

    .cinematic-site .case-route-copy h3 {
        font-size: 28px;
        line-height: 1;
    }

    .cinematic-site .case-route-lab {
        padding: 18px;
        border-radius: 22px;
    }

    .cinematic-site .case-proof-gallery {
        grid-template-columns: repeat(6, minmax(210px, 68vw));
        margin-inline: -2px;
    }

    .cinematic-site .case-route-matrix article {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 13px;
    }
}

@keyframes caseSectionSweep {
    0%,
    58% {
        transform: translateX(-46%);
    }
    100% {
        transform: translateX(46%);
    }
}

@keyframes caseBreath {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 0 14px rgba(14, 165, 233, 0.04),
            0 0 0 34px rgba(20, 184, 166, 0.035),
            0 26px 90px rgba(0, 0, 0, 0.42);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.035);
        box-shadow:
            0 0 0 18px rgba(14, 165, 233, 0.07),
            0 0 0 44px rgba(20, 184, 166, 0.055),
            0 34px 110px rgba(20, 184, 166, 0.18);
    }
}

@keyframes caseOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1.01);
    }
}

@keyframes caseScan {
    0%,
    48% {
        transform: translateX(-120%) skewX(-14deg);
    }
    100% {
        transform: translateX(440%) skewX(-14deg);
    }
}

@keyframes caseFeedSweep {
    0%,
    54% {
        opacity: 0;
        transform: translateX(-90%);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(90%);
    }
}

@keyframes caseCardSheen {
    0%,
    42% {
        transform: translateX(-88%);
    }
    100% {
        transform: translateX(88%);
    }
}

.cinematic-site .rental-flow-cinema {
    min-height: 420vh;
    padding: 0 clamp(22px, 4vw, 70px);
    overflow: visible;
}

/* Keep the launch-system card clear of the hero power-bank station. */
.cinematic-site .hero-feed {
    left: auto;
    right: 2%;
    top: -24px;
    bottom: auto;
    width: min(330px, 28vw);
}

@media (max-width: 1180px) {
    .cinematic-site .hero-feed {
        top: -132px;
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(520px, 84vw);
        transform: translateX(-50%);
    }

    .cinematic-site .rental-flow-cinema {
        min-height: 410vh;
        padding: 0 20px;
    }
}

@media (max-width: 720px) {
    .cinematic-site .rental-flow-cinema {
        min-height: 430vh;
        padding: 0 16px;
    }
}

/* Final hero focus pass: keep the new product render centered and uncluttered. */
.cinematic-site .cinema-hero {
    grid-template-columns: minmax(330px, 0.74fr) minmax(620px, 1.26fr);
    gap: clamp(24px, 3.4vw, 54px);
}

.cinematic-site .cinema-hero h1 {
    max-width: 720px;
    font-size: clamp(40px, 4.05vw, 62px);
    line-height: 1.04;
}

.cinematic-site .cinema-hero-copy p {
    max-width: 600px;
    font-size: clamp(17px, 1.25vw, 21px);
}

.cinematic-site .hero-route-line {
    width: min(620px, 100%);
}

.cinematic-site .cinema-hero-stage {
    min-height: clamp(560px, 61vw, 730px);
    transform: none;
}

.cinematic-site .world-panel {
    inset: 10% 1% 8% 1%;
    border: 0;
    background:
        radial-gradient(circle at 52% 46%, rgba(32, 197, 255, 0.17), transparent 36%),
        radial-gradient(circle at 66% 64%, rgba(250, 204, 21, 0.12), transparent 30%);
    box-shadow: none;
    opacity: 0.72;
    transform: none;
}

.cinematic-site .world-panel span,
.cinematic-site .world-panel i,
.cinematic-site .glass-card,
.cinematic-site .hero-feed {
    display: none;
}

.cinematic-site .signal-field {
    inset: 8% 0 8% 0;
    opacity: 0.55;
}

.cinematic-site .hero-device-main {
    top: 50%;
    right: 50%;
    bottom: auto;
    width: min(112%, 1080px);
    max-width: 112%;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 42px 72px rgba(0, 0, 0, 0.34)) saturate(1.06) contrast(1.03);
    transform: translate3d(50%, -50%, 0);
}

@media (max-width: 1180px) {
    .cinematic-site .cinema-hero {
        grid-template-columns: 1fr;
    }

    .cinematic-site .cinema-hero h1 {
        font-size: clamp(46px, 9vw, 78px);
    }

    .cinematic-site .cinema-hero-stage {
        min-height: min(68vw, 560px);
    }

    .cinematic-site .hero-device-main {
        width: min(96vw, 820px);
    }
}

@media (max-width: 720px) {
    .cinematic-site .cinema-hero-stage {
        min-height: 360px;
    }

    .cinematic-site .hero-device-main {
        width: min(112vw, 620px);
        max-width: none;
    }
}

/* Technology 2.0 page */
.technology-v2-page main {
    background: #02040a;
}

.cinema-nav a.active {
    color: #ffffff;
    background: rgba(32, 197, 255, 0.12);
}

.tech-v2-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(480px, 1.12fr);
    align-items: center;
    gap: clamp(34px, 5vw, 82px);
    padding: 116px clamp(24px, 5vw, 88px) 84px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 44%, rgba(32, 197, 255, 0.18), transparent 30%),
        radial-gradient(circle at 18% 74%, rgba(250, 204, 21, 0.12), transparent 28%),
        linear-gradient(135deg, #02040a 0%, #07111f 48%, #001a42 100%);
}

.tech-v2-hero::before {
    content: "";
    position: absolute;
    inset: 10% -10% auto 42%;
    height: 72%;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.tech-v2-copy,
.tech-orbit,
.tech-section-heading,
.tech-path-grid,
.tech-capability-grid,
.tech-migration-band > *,
.tech-contact {
    position: relative;
    z-index: 1;
}

.tech-v2-copy > span,
.tech-section-heading > span,
.tech-migration-band > div:first-child > span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 999px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.1);
}

.tech-v2-copy h1 {
    max-width: 880px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: clamp(54px, 6.7vw, 106px);
    line-height: 0.95;
    letter-spacing: 0;
    text-wrap: balance;
}

.tech-v2-copy p {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.55;
}

.tech-orbit {
    min-height: clamp(520px, 46vw, 680px);
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 50%, rgba(32, 197, 255, 0.18), transparent 34%),
        repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.06) 0, rgba(125, 211, 252, 0.06) 1px, transparent 1px, transparent 88px),
        repeating-linear-gradient(0deg, rgba(125, 211, 252, 0.04) 0, rgba(125, 211, 252, 0.04) 1px, transparent 1px, transparent 72px),
        rgba(3, 7, 18, 0.54);
    box-shadow: inset 0 0 80px rgba(32, 197, 255, 0.05), 0 34px 90px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.tech-orbit::before,
.tech-orbit::after {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 50%;
    animation: orbitRotate 22s linear infinite;
}

.tech-orbit::after {
    inset: 24%;
    border-color: rgba(250, 204, 21, 0.14);
    animation-duration: 30s;
    animation-direction: reverse;
}

.tech-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    width: clamp(170px, 14vw, 230px);
    height: clamp(170px, 14vw, 230px);
    place-items: center;
    border: 1px solid rgba(125, 211, 252, 0.35);
    border-radius: 50%;
    color: #ffffff;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 950;
    line-height: 1.1;
    text-align: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(32, 197, 255, 0.22), rgba(2, 6, 23, 0.92));
    box-shadow: 0 0 80px rgba(32, 197, 255, 0.24);
    transform: translate(-50%, -50%);
}

.tech-core span {
    color: #facc15;
}

.tech-node {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 66px;
    padding: 0 18px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 16px;
    color: rgba(248, 250, 252, 0.92);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.node-device { left: 9%; top: 14%; }
.node-rental { right: 9%; top: 16%; }
.node-payment { right: 3%; top: 48%; }
.node-console { right: 12%; bottom: 14%; }
.node-role { left: 9%; bottom: 15%; }
.node-api { left: 3%; top: 48%; }

.tech-v2-section {
    padding: clamp(76px, 8vw, 126px) clamp(24px, 5vw, 88px);
    background: #02040a;
}

.tech-section-heading {
    max-width: 930px;
    margin-bottom: clamp(34px, 4vw, 56px);
}

.tech-section-heading h2,
.tech-migration-band h2 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(42px, 5.7vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.tech-section-heading p,
.tech-migration-band p {
    max-width: 800px;
    margin: 20px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.62;
}

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

.tech-path-grid article,
.tech-capability-grid article {
    min-height: 260px;
    padding: clamp(22px, 2.2vw, 32px);
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 18px;
    color: #ffffff;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.74), rgba(8, 47, 73, 0.18)),
        rgba(2, 6, 23, 0.62);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.tech-path-grid article > span {
    color: #20c5ff;
    font-size: 13px;
    font-weight: 950;
}

.tech-path-grid h3,
.tech-capability-grid h3 {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.08;
}

.tech-path-grid p,
.tech-capability-grid p {
    margin: 18px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 15px;
    line-height: 1.65;
}

.tech-v2-dark {
    background:
        radial-gradient(circle at 12% 18%, rgba(32, 197, 255, 0.13), transparent 28%),
        linear-gradient(180deg, #02040a 0%, #07111f 100%);
}

.tech-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.tech-capability-grid article {
    min-height: 230px;
}

.tech-migration-band {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
    align-items: center;
    gap: clamp(34px, 5vw, 86px);
    margin: 0 clamp(24px, 5vw, 88px);
    padding: clamp(50px, 6vw, 86px);
    border: 1px solid rgba(250, 204, 21, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 46%, rgba(250, 204, 21, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(8, 47, 73, 0.42));
}

.tech-module-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: center;
}

.tech-module-card {
    position: relative;
    min-height: 244px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 22px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(15, 23, 42, 0.36)),
        rgba(2, 6, 23, 0.56);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.tech-module-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.16) 38%, transparent 58%);
    opacity: 0;
    transform: translateX(-44%);
    transition: opacity 240ms ease, transform 560ms ease;
}

.tech-module-card:hover::after {
    opacity: 1;
    transform: translateX(44%);
}

.tech-module-card img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}

.tech-module-card div {
    padding: 18px 20px 20px;
}

.tech-module-card strong {
    display: block;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.04;
}

.tech-module-card p {
    margin: 10px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.tech-contact {
    margin-top: clamp(76px, 8vw, 120px);
}

@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .tech-v2-hero,
    .tech-migration-band {
        grid-template-columns: 1fr;
    }

    .tech-module-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tech-module-card {
        min-height: 228px;
    }

    .tech-path-grid,
    .tech-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .tech-v2-hero {
        min-height: auto;
        padding: 96px 18px 64px;
    }

    .tech-v2-copy h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .tech-orbit {
        min-height: 520px;
    }

    .tech-node {
        min-width: 126px;
        min-height: 56px;
        padding: 0 12px;
        font-size: 12px;
    }

    .tech-v2-section {
        padding: 70px 18px;
    }

    .tech-path-grid,
    .tech-capability-grid {
        grid-template-columns: 1fr;
    }

    .tech-module-strip {
        grid-template-columns: 1fr;
    }

    .tech-module-card {
        min-height: 218px;
    }

    .tech-module-card img {
        height: 132px;
    }

    .tech-migration-band {
        margin: 0 18px;
        padding: 34px 20px;
    }
}

/* Product model pages for the 2.0 launch footer catalog. */
.product-model-page main {
    background: #02040a;
}

.product-model-hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(30px, 5vw, 78px);
    padding: 118px clamp(24px, 5vw, 88px) 82px;
    background:
        radial-gradient(circle at 78% 46%, rgba(32, 197, 255, 0.14), transparent 31%),
        radial-gradient(circle at 20% 78%, rgba(250, 204, 21, 0.11), transparent 30%),
        linear-gradient(135deg, #02040a 0%, #07111f 52%, #001a42 100%);
}

.product-model-copy > span,
.product-model-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 999px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.1);
}

.product-model-copy h1 {
    max-width: 720px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: clamp(50px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: 0;
}

.product-model-copy p {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.76);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.62;
}

.product-model-media {
    display: grid;
    gap: 16px;
}

.product-model-main-image,
.product-model-placeholder {
    min-height: clamp(380px, 42vw, 620px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 45%, rgba(32, 197, 255, 0.12), transparent 35%),
        rgba(2, 6, 23, 0.58);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.product-model-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-model-placeholder strong {
    color: #ffffff;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1;
}

.product-model-placeholder span {
    margin-top: 14px;
    color: rgba(226, 232, 240, 0.66);
    font-size: 16px;
    font-weight: 800;
}

.product-model-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-model-thumbs figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.58);
}

.product-model-thumbs img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    display: block;
}

.product-model-thumbs figcaption {
    padding: 12px 14px;
    color: rgba(226, 232, 240, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.product-model-details {
    padding: clamp(70px, 8vw, 120px) clamp(24px, 5vw, 88px);
    background: #02040a;
}

.product-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-model-grid article {
    min-height: 210px;
    padding: clamp(22px, 2vw, 30px);
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.62);
    color: #ffffff;
}

.product-model-grid span {
    color: #20c5ff;
    font-size: 13px;
    font-weight: 950;
}

.product-model-grid h2 {
    margin: 18px 0 0;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.08;
}

.product-model-grid p {
    margin: 16px 0 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 15px;
    line-height: 1.62;
}

@media (max-width: 980px) {
    .product-model-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-model-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-model-hero,
    .product-model-details {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-model-copy h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .product-model-thumbs {
        grid-template-columns: 1fr;
    }
}

.oem-odm-page main {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 4%, rgba(23, 105, 255, 0.13), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(21, 219, 132, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 48%, #ffffff 100%);
}

.oem-hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 86px);
    padding: 116px clamp(24px, 5vw, 88px) 92px;
}

.oem-hero-copy > span,
.oem-section-head > span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.09);
    color: #1769ff;
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.oem-hero-copy h1 {
    max-width: 820px;
    margin: 22px 0 0;
    color: #07111f;
    font-size: clamp(48px, 6.2vw, 94px);
    line-height: 0.96;
    letter-spacing: 0;
}

.oem-hero-copy p {
    max-width: 690px;
    margin: 24px 0 0;
    color: #42516a;
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.65;
}

.oem-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.oem-proof-row span {
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #102033;
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 900;
}

.oem-hero-visual {
    display: grid;
    gap: 18px;
}

.oem-device-frame {
    position: relative;
    overflow: hidden;
    min-height: clamp(430px, 43vw, 680px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at 66% 14%, rgba(23, 105, 255, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.88));
    box-shadow: 0 36px 100px rgba(23, 71, 122, 0.16);
}

.oem-device-frame::before {
    content: "";
    position: absolute;
    inset: 10% -16% auto 38%;
    height: 70%;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.oem-device-frame img {
    position: relative;
    z-index: 1;
    width: min(94%, 820px);
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(23, 71, 122, 0.16));
}

.oem-floating-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-width: 176px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 56px rgba(23, 71, 122, 0.13);
    padding: 16px 18px;
    backdrop-filter: blur(16px);
}

.oem-floating-card strong {
    color: #07111f;
    font-size: 15px;
    font-weight: 950;
}

.oem-floating-card span {
    color: #52627a;
    font-size: 12px;
    font-weight: 800;
}

.oem-floating-card.is-top {
    top: 30px;
    left: 30px;
}

.oem-floating-card.is-bottom {
    right: 30px;
    bottom: 30px;
}

.oem-hero-visual > p {
    margin: 0;
    color: #4d5d74;
    font-size: 16px;
    line-height: 1.66;
}

.oem-section {
    padding: clamp(70px, 8vw, 124px) clamp(24px, 5vw, 88px);
}

.oem-section-head {
    max-width: 930px;
    margin: 0 0 clamp(26px, 4vw, 46px);
}

.oem-section-head h2,
.oem-evidence-copy h2,
.oem-cta h2 {
    margin: 0;
    color: #07111f;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.oem-section-head p,
.oem-evidence-copy p,
.oem-cta p {
    max-width: 820px;
    margin: 18px 0 0;
    color: #42516a;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.65;
}

.oem-card-grid,
.oem-path-grid,
.oem-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.oem-faq {
    background:
        radial-gradient(circle at 14% 8%, rgba(23, 105, 255, 0.08), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(21, 219, 132, 0.09), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.92));
}

.oem-faq .oem-section-head {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.oem-faq .oem-section-head h2 {
    margin-right: auto;
    margin-left: auto;
}

.oem-faq-grid {
    max-width: 1500px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.oem-card-grid article,
.oem-path-grid article,
.oem-faq-grid article,
.oem-step-list article {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 0%, rgba(23, 105, 255, 0.1), transparent 34%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 68px rgba(23, 71, 122, 0.09);
}

.oem-card-grid article {
    min-height: 236px;
    padding: clamp(22px, 2.2vw, 30px);
}

.oem-faq-grid article {
    min-height: clamp(210px, 14vw, 260px);
    padding: clamp(28px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oem-card-grid span,
.oem-step-list span {
    color: #1769ff;
    font-size: 13px;
    font-weight: 950;
}

.oem-card-grid h3,
.oem-path-grid h3,
.oem-faq-grid h3,
.oem-step-list h3,
.oem-evidence-grid h3 {
    margin: 16px 0 0;
    color: #0b1220;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.12;
}

.oem-card-grid p,
.oem-path-grid p,
.oem-faq-grid p,
.oem-step-list p,
.oem-evidence-grid p {
    margin: 14px 0 0;
    color: #4d5d74;
    font-size: 15px;
    line-height: 1.68;
}

.oem-faq-grid h3 {
    max-width: 92%;
    font-size: clamp(28px, 2.45vw, 42px);
    line-height: 1.08;
}

.oem-faq-grid p {
    max-width: 88%;
    font-size: clamp(16px, 1.3vw, 20px);
}

.oem-path-section {
    background:
        linear-gradient(180deg, rgba(241, 248, 255, 0.72), rgba(255, 255, 255, 0.98));
}

.oem-path-grid article {
    min-height: 260px;
    padding: clamp(24px, 2.6vw, 36px);
}

.oem-workflow {
    background:
        radial-gradient(circle at 12% 20%, rgba(23, 105, 255, 0.1), transparent 34%),
        #ffffff;
}

.oem-step-list {
    display: grid;
    gap: 14px;
}

.oem-step-list article {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: start;
    padding: clamp(20px, 2.2vw, 28px);
}

.oem-step-list span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(23, 105, 255, 0.1);
}

.oem-evidence {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    background:
        linear-gradient(145deg, rgba(241, 248, 255, 0.86), rgba(255, 255, 255, 0.98));
}

.oem-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.oem-evidence-grid article {
    overflow: hidden;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 68px rgba(23, 71, 122, 0.1);
}

.oem-evidence-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background:
        radial-gradient(circle at 50% 12%, rgba(23, 105, 255, 0.1), transparent 35%),
        #eef6ff;
}

.oem-evidence-grid h3,
.oem-evidence-grid p {
    padding-left: 20px;
    padding-right: 20px;
}

.oem-evidence-grid p {
    padding-bottom: 22px;
}

.oem-cta {
    margin: clamp(54px, 7vw, 96px) clamp(24px, 5vw, 88px) clamp(70px, 8vw, 116px);
    border: 1px solid rgba(23, 105, 255, 0.15);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 0%, rgba(21, 219, 132, 0.16), transparent 34%),
        linear-gradient(145deg, #ffffff, #edf6ff);
    padding: clamp(34px, 5vw, 70px);
    box-shadow: 0 32px 90px rgba(23, 71, 122, 0.13);
}

@media (max-width: 1180px) {
    .oem-hero,
    .oem-evidence {
        grid-template-columns: 1fr;
    }

    .oem-card-grid,
    .oem-path-grid,
    .oem-faq-grid,
    .oem-evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .oem-hero,
    .oem-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .oem-hero-copy h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .oem-card-grid,
    .oem-path-grid,
    .oem-faq-grid,
    .oem-evidence-grid {
        grid-template-columns: 1fr;
    }

    .oem-step-list article {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .oem-floating-card {
        position: relative;
        inset: auto;
        margin: -12px 18px 0;
    }

    .oem-device-frame {
        min-height: 360px;
    }

    .oem-cta {
        margin-left: 18px;
        margin-right: 18px;
    }
}

@media (max-width: 1180px) {
    .cinematic-site .hardware-gallery-single {
        min-height: 620px;
    }

    .cinematic-site .hardware-gallery-single img:first-child {
        width: min(94%, 660px);
        right: auto;
        bottom: auto;
        transform: none;
    }
}

@media (max-width: 720px) {
    .cinematic-site .hardware-gallery-single {
        min-height: 520px;
    }

    .cinematic-site .hardware-gallery-single::before {
        inset: 14% -4% 8%;
        border-radius: 32px;
    }

    .cinematic-site .hardware-gallery-single img:first-child {
        width: min(108%, 520px);
        max-height: 500px;
    }
}

/* Warm-white AI SaaS visual system */
.cinematic-site {
    --cinema-bg: #f8fbff;
    --cinema-bg-2: #edf7ff;
    --cinema-ink: #0b1220;
    --cinema-muted: #5d6b82;
    --cinema-line: rgba(91, 122, 164, 0.18);
    --cinema-blue: #1769ff;
    --cinema-blue-2: #4aa3ff;
    --cinema-cyan: #00a7e8;
    --cinema-surface: rgba(255, 255, 255, 0.84);
    --cinema-glass: rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(180deg, #fbfdff 0%, #f7fbff 46%, #edf7ff 100%);
    color: #0b1220;
}

.cinematic-site::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.92)),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.035) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgba(23, 105, 255, 0.028) 0 1px, transparent 1px 92px);
}

.cinema-header {
    border-bottom-color: rgba(91, 122, 164, 0.14);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 42px rgba(23, 71, 122, 0.08);
}

.cinema-brand strong,
.cinema-nav,
.cinema-nav a,
.cinema-menu-toggle span {
    color: #0b1220;
}

.cinema-brand small,
.language-switch button,
.language-switch a {
    color: #6b7890;
}

.cinema-nav a:hover,
.cinema-nav a.active {
    color: #1769ff;
}

.language-switch {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(242, 248, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.language-switch button.active,
.language-switch a.active,
.language-switch a:hover {
    background: #1769ff;
    color: #ffffff;
    text-decoration: none;
}

.cinema-button {
    border-color: rgba(23, 105, 255, 0.76);
    background: linear-gradient(135deg, #1976ff 0%, #0357d8 100%);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(23, 105, 255, 0.24);
}

.cinema-button:hover {
    box-shadow: 0 22px 54px rgba(23, 105, 255, 0.3);
}

.cinema-button-ghost {
    border-color: rgba(23, 105, 255, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: #1553c5;
    box-shadow: 0 14px 34px rgba(23, 71, 122, 0.08);
}

.cinema-menu-toggle {
    border-color: rgba(91, 122, 164, 0.18);
    background: rgba(255, 255, 255, 0.86);
}

.cinema-hero,
.cinema-story,
.cinema-story-hardware,
.cinema-story-pilot,
.rental-flow-cinema,
.cinema-contact,
.technology-v2-page main,
.tech-v2-section,
.tech-v2-dark {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 255, 0.94) 100%);
    color: #0b1220;
}

.cinema-hero {
    min-height: 100svh;
    background:
        linear-gradient(110deg, #ffffff 0%, #f9fcff 46%, #eef7ff 100%),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.05) 0 1px, transparent 1px 94px);
}

.cinema-hero::before,
.tech-v2-hero::before {
    border-color: rgba(23, 105, 255, 0.18);
}

.cinema-hero h1,
.cinema-hero h1::first-line,
.story-copy h2,
.cinema-contact h2,
.rental-flow-copy h2,
.tech-v2-copy h1,
.tech-section-heading h2,
.tech-migration-band h2,
.resource-hero h1,
.resource-section-heading h2,
.resource-machine-panel h2 {
    color: #0b1220;
}

.cinema-hero-copy p,
.story-copy p,
.cinema-contact p,
.rental-flow-copy p,
.tech-v2-copy p,
.tech-section-heading p,
.tech-migration-band p,
.resource-hero p,
.resource-section-heading p,
.resource-machine-panel p {
    color: #5d6b82;
}

.cinema-story-light {
    background: #fbfdff;
}

.world-panel,
.dashboard-shell,
.rental-flow-viewport,
.pilot-path article,
.factory-board div,
.cinema-form,
.resource-hero,
.resource-card,
.resource-ai-summary,
.resource-machine-panel,
.tech-orbit,
.tech-path-grid article,
.tech-capability-grid article,
.tech-migration-band,
.product-model-main-image,
.product-model-placeholder,
.product-model-grid article {
    border-color: rgba(91, 122, 164, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 255, 0.78));
    color: #0b1220;
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

.world-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(231, 244, 255, 0.68)),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.055) 0 1px, transparent 1px 82px);
}

.world-panel span,
.glass-card span,
.dashboard-kpis span,
.dashboard-sidebar,
.rental-flow-toolbar,
.pilot-path p,
.tech-path-grid p,
.tech-capability-grid p,
.tech-module-card p,
.resource-card p,
.resource-ai-grid p,
.product-model-grid p {
    color: #5d6b82;
}

.glass-card,
.hero-feed,
.hero-route-line,
.hero-proof-dock,
.dashboard-kpis div,
.dashboard-chart,
.rental-flow-strip,
.rental-flow-strip figcaption,
.tech-module-card,
.resource-ai-grid article,
.product-model-thumbs figure,
.contact-cards a,
.footer-contact-row a,
.floating-contact {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: #0b1220;
    box-shadow: 0 18px 54px rgba(23, 71, 122, 0.1);
}

.glass-card strong,
.dashboard-kpis strong,
.pilot-path strong,
.tech-path-grid h3,
.tech-capability-grid h3,
.tech-module-card strong,
.resource-card h2,
.resource-ai-grid h3,
.product-model-grid h2,
.product-model-copy h1 {
    color: #0b1220;
}

.hero-device,
.hardware-gallery img {
    filter: drop-shadow(0 40px 54px rgba(23, 71, 122, 0.2));
}

.hero-proof-dock {
    border-top-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.hero-proof-dock div,
.dashboard-sidebar,
.rental-flow-toolbar {
    border-color: rgba(91, 122, 164, 0.14);
}

.hero-proof-dock strong {
    color: #0b1220;
}

.hero-route-line span,
.card-payments span,
.factory-board span,
.rental-flow-copy span,
.rental-flow-toolbar i,
.tech-v2-copy > span,
.tech-section-heading > span,
.tech-migration-band > div:first-child > span,
.resource-hero span,
.resource-section-heading span,
.resource-machine-panel span,
.product-model-copy > span {
    border-color: rgba(23, 105, 255, 0.22);
    background: rgba(23, 105, 255, 0.07);
    color: #1769ff;
}

.signal-field span,
.world-panel i,
.story-copy li::before {
    background: #1769ff;
    box-shadow: 0 0 22px rgba(23, 105, 255, 0.32);
}

.cinema-marquee {
    border-color: rgba(91, 122, 164, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #0b1220;
}

.cinema-marquee::before {
    background: linear-gradient(90deg, #fbfdff, transparent);
}

.cinema-marquee::after {
    background: linear-gradient(270deg, #fbfdff, transparent);
}

.marquee-track span {
    color: rgba(15, 23, 42, 0.88);
}

.dashboard-sidebar strong,
.dashboard-chart i,
.rental-flow-progress span {
    background: linear-gradient(180deg, #4aa3ff, #1769ff);
    box-shadow: 0 0 22px rgba(23, 105, 255, 0.24);
}

.rental-flow-cinema::before {
    background:
        linear-gradient(90deg, rgba(23, 105, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 105, 255, 0.035) 1px, transparent 1px);
}

.rental-flow-viewport {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 255, 0.86));
}

.rental-flow-window::before {
    background: linear-gradient(90deg, rgba(248, 251, 255, 0.96), transparent);
}

.rental-flow-window::after {
    background: linear-gradient(270deg, rgba(248, 251, 255, 0.96), transparent);
}

.rental-flow-strip {
    background: #ffffff;
}

.cinema-form label,
.cinema-form input,
.cinema-form select,
.cinema-form textarea {
    color: #0b1220;
}

.cinema-form input,
.cinema-form select,
.cinema-form textarea {
    border-color: rgba(91, 122, 164, 0.18);
    background: rgba(255, 255, 255, 0.86);
}

.cinema-form input::placeholder,
.cinema-form textarea::placeholder {
    color: rgba(93, 107, 130, 0.72);
}

.cinema-footer {
    border-top-color: rgba(91, 122, 164, 0.14);
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
    color: #5d6b82;
}

.footer-brand-block strong,
.footer-columns h3,
.footer-contact-row a,
.footer-columns a:hover,
.footer-contact-row a:hover {
    color: #0b1220;
}

.footer-brand-block p,
.footer-columns a,
.footer-bottom {
    color: #5d6b82;
}

.footer-bottom {
    border-top-color: rgba(91, 122, 164, 0.14);
}

.footer-icp-link {
    color: inherit;
    font-weight: 760;
    text-decoration: none;
}

.footer-icp-link:hover {
    color: #1769ff;
}

.legal-icp-footer {
    width: min(920px, calc(100vw - 32px));
    margin: -42px auto 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(91, 122, 164, 0.14);
    color: #5d6b82;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.footer-contact-row a:first-child,
.contact-cards .contact-card-whatsapp {
    color: #052012;
    background: linear-gradient(135deg, #25d366 0%, #8dffbc 100%);
}

.resource-page,
.legal-page,
.product-model-page {
    background:
        linear-gradient(180deg, #fbfdff 0%, #f5fbff 48%, #eef7ff 100%);
    color: #0b1220;
}

.resource-card a,
.resource-card strong,
.resource-machine-links a {
    border-color: rgba(23, 105, 255, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: #1553c5;
}

.resource-card a:hover,
.resource-machine-links a:hover {
    border-color: rgba(23, 105, 255, 0.34);
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
}

.tech-v2-hero {
    background:
        linear-gradient(120deg, #ffffff 0%, #f8fbff 52%, #eaf5ff 100%);
}

.tech-orbit {
    background:
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.055) 0, rgba(23, 105, 255, 0.055) 1px, transparent 1px, transparent 88px),
        repeating-linear-gradient(0deg, rgba(23, 105, 255, 0.04) 0, rgba(23, 105, 255, 0.04) 1px, transparent 1px, transparent 72px),
        rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 80px rgba(23, 105, 255, 0.06), 0 28px 88px rgba(23, 71, 122, 0.12);
}

.tech-core {
    border-color: rgba(23, 105, 255, 0.28);
    color: #0b1220;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(222, 241, 255, 0.9));
    box-shadow: 0 0 78px rgba(23, 105, 255, 0.18);
}

.tech-core span {
    color: #1769ff;
}

.tech-node {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.88);
    color: #0b1220;
    box-shadow: 0 20px 54px rgba(23, 71, 122, 0.12);
}

.tech-migration-band {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 255, 0.88));
}

.tech-module-card {
    background: #ffffff;
}

.tech-module-card img {
    border-bottom-color: rgba(91, 122, 164, 0.12);
}

.product-model-hero,
.product-model-details {
    background: transparent;
    color: #0b1220;
}

.product-model-copy p,
.product-model-status,
.product-model-thumbs figcaption {
    color: #5d6b82;
}

.floating-contact {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 54px rgba(23, 71, 122, 0.12);
}

.floating-contact a {
    color: #0b1220;
    border-bottom-color: rgba(91, 122, 164, 0.14);
}

.floating-contact a:last-child {
    color: #ffffff;
    background: #1769ff;
}

.scroll-jumper {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: #1769ff;
}

.growth-index-grid,
.market-landing-grid,
.news-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.growth-card,
.market-landing-card,
.news-directory-card,
.growth-wide-panel {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 0%, rgba(23, 105, 255, 0.09), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.88));
    box-shadow: 0 28px 84px rgba(23, 71, 122, 0.1);
}

.growth-card,
.market-landing-card,
.news-directory-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    overflow: hidden;
}

.news-card-cover {
    position: relative;
    width: calc(100% + 64px);
    margin: -32px -32px 4px;
    aspect-ratio: 16 / 8.4;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0), rgba(241, 248, 255, 0.5) 72%, rgba(241, 248, 255, 0.92));
}

.news-card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0.94) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.78));
}

.news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.04) contrast(0.98);
}

.growth-card span,
.market-landing-card span,
.news-directory-card span {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(23, 105, 255, 0.08);
}

.growth-card h2,
.market-landing-card h2,
.news-directory-card h2,
.growth-wide-panel h2 {
    margin: 0;
    color: #0b1220;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.12;
}

.growth-card p,
.market-landing-card p,
.news-directory-card p,
.growth-wide-panel p,
.market-landing-list li {
    margin: 0;
    color: #42516a;
    font-size: 15px;
    line-height: 1.72;
}

.growth-card a,
.market-landing-card a,
.news-directory-card a,
.growth-wide-panel a {
    width: fit-content;
    margin-top: auto;
    color: #1769ff;
    font-weight: 900;
    text-decoration: none;
}

.growth-card a:hover,
.market-landing-card a:hover,
.news-directory-card a:hover,
.growth-wide-panel a:hover {
    color: #0f46ac;
}

.growth-wide-panel {
    margin-top: 22px;
    padding: clamp(26px, 4vw, 42px);
}

.language-roadmap,
.market-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.language-roadmap span,
.market-proof-strip span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 999px;
    color: #0b1220;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.86);
}

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

.market-landing-list li {
    padding: 14px 16px;
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.news-hub-shell {
    width: min(1380px, calc(100vw - 36px));
}

.news-page [data-reveal],
html.motion-ready body.news-page [data-reveal],
html.motion-ready body.cinematic-site.news-page [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
}

.news-hub-hero,
.news-hub-section,
.news-contact-band {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 4%, rgba(23, 105, 255, 0.1), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.86));
    box-shadow: 0 28px 84px rgba(23, 71, 122, 0.1);
}

.news-hub-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: stretch;
    min-height: auto;
    padding: clamp(28px, 4vw, 52px);
    overflow: hidden;
    position: relative;
}

.news-hub-hero::before {
    content: "";
    position: absolute;
    inset: -26% -18% auto 42%;
    height: 78%;
    pointer-events: none;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 999px;
    transform: rotate(-12deg);
}

.news-hub-copy,
.news-hub-panel,
.news-hub-section > *,
.news-contact-band > * {
    position: relative;
    z-index: 1;
}

.news-kicker,
.news-section-head span,
.news-hub-panel > span,
.news-contact-band span {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.07);
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-hub-copy h1 {
    max-width: 880px;
    margin: 18px 0 0;
    color: #0b1220;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.03;
    letter-spacing: 0;
}

.news-hub-copy p,
.news-section-head p,
.news-contact-band p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #42516a;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.72;
}

.news-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: min(720px, 100%);
    margin-top: 22px;
    padding: 8px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.news-search input {
    min-width: 0;
    min-height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0b1220;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
}

.news-search input::placeholder {
    color: #7a879b;
}

.news-search button,
.news-filter-row button {
    min-height: 42px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1553c5;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.news-search button {
    padding: 0 18px;
}

.news-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.news-filter-row button {
    padding: 0 14px;
}

.news-search button.active,
.news-filter-row button.active,
.news-search button:hover,
.news-filter-row button:hover {
    border-color: rgba(23, 105, 255, 0.44);
    background: #1769ff;
    color: #ffffff;
}

.news-hero-actions,
.news-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.news-hub-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(228, 242, 255, 0.74)),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.045) 0 1px, transparent 1px 78px);
}

.news-hub-visual {
    position: relative;
    width: 100%;
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 50px rgba(23, 71, 122, 0.12);
}

.news-hub-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 40%, transparent 40%, rgba(241, 248, 255, 0.44) 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 250, 255, 0.36));
}

.news-hub-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-hub-panel h2 {
    margin: 18px 0 0;
    color: #0b1220;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.news-brief-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.news-brief-list a,
.news-topic-grid a,
.news-market-grid a,
.news-topic-stack a {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: #0b1220;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.news-brief-list a:hover,
.news-topic-grid a:hover,
.news-market-grid a:hover,
.news-topic-stack a:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 105, 255, 0.28);
    box-shadow: 0 18px 44px rgba(23, 71, 122, 0.12);
}

.news-brief-list a {
    display: grid;
    gap: 6px;
    padding: 18px;
}

.news-brief-list strong,
.news-topic-grid strong,
.news-market-grid strong,
.news-topic-stack strong {
    color: #0b1220;
    font-weight: 900;
}

.news-brief-list em,
.news-topic-grid em,
.news-market-grid span,
.news-topic-stack em {
    color: #5d6b82;
    font-style: normal;
    line-height: 1.55;
}

.news-hub-section {
    margin-top: 16px;
    padding: clamp(22px, 3vw, 36px);
}

.news-section-head {
    display: grid;
    gap: 8px;
}

.news-section-head p {
    margin-top: 0;
}

.news-section-head h2,
.news-contact-band h2 {
    max-width: 860px;
    margin: 0;
    color: #0b1220;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.04;
}

.news-latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 16px;
    margin-top: 18px;
}

.news-lead-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 8%, rgba(23, 105, 255, 0.15), transparent 34%),
        linear-gradient(145deg, #ffffff, #eef7ff);
}

.news-lead-card .news-card-cover {
    margin-bottom: 10px;
}

.news-lead-card span,
.news-topic-stack span {
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-lead-card h2 {
    max-width: 860px;
    margin: 14px 0 0;
    color: #0b1220;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
}

.news-lead-card p {
    max-width: 740px;
    margin: 12px 0 0;
    color: #42516a;
    font-size: 17px;
    line-height: 1.7;
}

.news-lead-card a {
    width: fit-content;
    color: #1769ff;
    font-weight: 900;
    text-decoration: none;
}

.news-topic-stack {
    display: grid;
    gap: 18px;
}

.news-topic-stack a {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.news-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.news-topic-grid a {
    display: grid;
    gap: 10px;
    min-height: 138px;
    padding: 18px;
}

.news-topic-grid span {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
}

.news-market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.news-market-grid a {
    display: grid;
    gap: 12px;
    min-height: 112px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 247, 255, 0.82));
}

.news-browse-grid [hidden],
.news-browse-grid .is-hidden,
.news-lead-card.is-hidden,
.news-topic-stack a.is-hidden {
    display: none;
}

.news-empty-state {
    margin: 18px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: #42516a;
    font-weight: 800;
}

.news-contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-top: 16px;
    padding: clamp(24px, 3vw, 38px);
}

.news-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(18px, 2vw, 28px);
    align-items: start;
    margin-top: 16px;
}

.news-content-layout .news-hub-section {
    margin-top: 0;
}

.news-content-layout .news-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-sidebar {
    position: sticky;
    top: calc(var(--anchor-offset) + 18px);
    display: grid;
    gap: 18px;
}

.news-sidebar-card {
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 4%, rgba(23, 105, 255, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.9));
    padding: clamp(20px, 2.5vw, 28px);
    box-shadow: 0 26px 70px rgba(23, 71, 122, 0.1);
}

.news-sidebar-card > span {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-sidebar-card h2,
.news-sidebar-card h3 {
    margin: 16px 0 0;
    color: #0b1220;
    line-height: 1.08;
}

.news-sidebar-card h2 {
    font-size: clamp(26px, 2.4vw, 34px);
}

.news-sidebar-card h3 {
    font-size: clamp(21px, 1.8vw, 27px);
}

.news-sidebar-card p {
    margin: 12px 0 0;
    color: #42516a;
    font-size: 14px;
    line-height: 1.65;
}

.news-sidebar-form {
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.cinematic-site .news-sidebar-form,
.cinematic-site .news-sidebar-form label,
.cinematic-site .news-sidebar-form input,
.cinematic-site .news-sidebar-form textarea {
    width: 100%;
}

.news-sidebar-form .cinema-button {
    width: 100%;
    min-height: 48px;
}

.news-sidebar-links,
.news-sidebar-posts,
.news-sidebar-tags,
.news-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.news-sidebar-links a,
.news-sidebar-posts a,
.news-sidebar-tags a,
.news-sidebar-actions a {
    color: #0b1220;
    text-decoration: none;
}

.news-sidebar-links a {
    display: grid;
    gap: 5px;
    padding: 14px 15px;
    border: 1px solid rgba(91, 122, 164, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-sidebar-links a:hover,
.news-sidebar-posts a:hover,
.news-sidebar-tags a:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 105, 255, 0.28);
}

.news-sidebar-links strong {
    color: #0b1220;
    font-weight: 950;
}

.news-sidebar-links em {
    color: #5d6b82;
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
}

.news-sidebar-posts a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(91, 122, 164, 0.13);
    color: #26364d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.42;
}

.news-sidebar-posts a:last-child {
    border-bottom: 0;
}

.news-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
}

.news-sidebar-tags a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.07);
    color: #1553c5;
    font-size: 13px;
    font-weight: 900;
}

.news-sidebar-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: #0b1220;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.news-sidebar-actions .contact-card-whatsapp {
    border-color: rgba(37, 211, 102, 0.28);
    background: linear-gradient(135deg, #25d366 0%, #8dffbc 100%);
    color: #052012;
}

.market-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.market-faq-grid article {
    padding: 24px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.market-faq-grid h3 {
    margin: 0 0 10px;
    color: #0b1220;
    font-size: 20px;
}

.market-faq-grid p {
    margin: 0;
    color: #42516a;
    line-height: 1.7;
}

.singapore-ad-page .resource-shell {
    max-width: 1480px;
}

.singapore-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr) minmax(300px, 0.62fr);
    gap: clamp(18px, 2.2vw, 34px);
    align-items: center;
    padding: clamp(24px, 3vw, 42px);
    margin-top: 18px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 14%, rgba(23, 105, 255, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.9));
    box-shadow: 0 36px 110px rgba(23, 71, 122, 0.13);
}

.singapore-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.singapore-hero .eyebrow,
.singapore-included-panel .eyebrow,
.singapore-package-section .eyebrow,
.singapore-hardware-panel .eyebrow,
.singapore-final-cta .eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    color: #1769ff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.singapore-hero h1 {
    max-width: 660px;
    margin: 0;
    color: #07111f;
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 0.98;
    letter-spacing: 0;
}

.singapore-lead {
    max-width: 640px;
    margin: 18px 0 0;
    color: #2c3d56;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.45;
    font-weight: 760;
}

.audience-note {
    width: fit-content;
    max-width: 650px;
    margin: 16px 0 0;
    padding: 11px 14px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #42516a;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 850;
}

.singapore-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.singapore-hero-actions .cinema-button {
    min-height: 48px;
}

.singapore-offer-card {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(23, 105, 255, 0.14), transparent 32%),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 54px rgba(23, 71, 122, 0.1);
}

.singapore-offer-card span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.1);
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.singapore-offer-card strong {
    color: #07111f;
    font-size: clamp(20px, 1.65vw, 27px);
    line-height: 1.1;
}

.singapore-offer-card p {
    max-width: 620px;
    margin: 0;
    color: #42516a;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.55;
}

.cinema-button-whatsapp {
    background: linear-gradient(135deg, #19c86b, #6cffaa);
    color: #052012;
    box-shadow: 0 18px 42px rgba(25, 200, 107, 0.24);
}

.keyword-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.keyword-strip span {
    padding: 8px 10px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #26364d;
    font-size: 12px;
    font-weight: 850;
}

.singapore-hero-visual {
    display: grid;
    gap: 12px;
    align-content: center;
}

.singapore-visual-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 105, 255, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 18%, rgba(23, 105, 255, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 246, 255, 0.88));
    box-shadow: 0 24px 64px rgba(23, 71, 122, 0.12);
}

.singapore-visual-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 14px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(23, 105, 255, 0.16), transparent 70%);
}

.singapore-visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 14px;
    transform: scale(1.08);
}

.singapore-flow-mini,
.singapore-proof-mini {
    display: grid;
    gap: 8px;
}

.singapore-flow-mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.singapore-flow-mini span,
.singapore-proof-mini span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    color: #21314a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
}

.singapore-proof-mini {
    grid-template-columns: 1fr;
}

.singapore-quick-form {
    align-self: center;
    padding: clamp(18px, 2vw, 24px);
}

.singapore-quick-form .form-kicker {
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.singapore-quick-form h2 {
    margin: 6px 0 14px;
    color: #0b1220;
    font-size: clamp(22px, 1.6vw, 28px);
    line-height: 1.08;
}

.singapore-quick-form label {
    gap: 7px;
}

.singapore-quick-form input,
.singapore-quick-form select,
.singapore-quick-form textarea {
    min-height: 46px;
}

.singapore-message-details {
    margin-top: 2px;
}

.singapore-message-details summary {
    cursor: pointer;
    width: fit-content;
    color: #1769ff;
    font-size: 13px;
    font-weight: 900;
}

.singapore-message-details label {
    margin-top: 10px;
}

.singapore-fit-grid {
    margin-top: 30px;
}

.singapore-included-panel {
    margin-top: 34px;
}

.singapore-included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.singapore-included-grid p {
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.singapore-included-grid b,
.singapore-included-grid span {
    display: block;
}

.singapore-included-grid b {
    margin-bottom: 8px;
    color: #0b1220;
    font-size: 17px;
}

.singapore-included-grid span {
    color: #42516a;
    line-height: 1.65;
}

.singapore-trust-panel {
    margin-top: 34px;
}

.singapore-trust-panel h2 {
    max-width: 960px;
    margin: 0;
    color: #0b1220;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
}

.singapore-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.singapore-trust-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 320px;
    padding: clamp(20px, 2vw, 28px);
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 0%, rgba(23, 105, 255, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 62px rgba(23, 71, 122, 0.08);
}

.singapore-trust-grid article > span {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.1);
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
}

.singapore-trust-grid h3 {
    margin: 0;
    color: #0b1220;
    font-size: clamp(21px, 1.85vw, 30px);
    line-height: 1.1;
}

.singapore-trust-grid p {
    margin: 0;
    color: #42516a;
    line-height: 1.65;
}

.singapore-trust-grid a {
    align-self: end;
    color: #1769ff;
    font-weight: 900;
    text-decoration: none;
}

.singapore-package-section,
.singapore-final-cta {
    margin-top: 34px;
    padding: clamp(30px, 4vw, 56px);
    border: 1px solid rgba(91, 122, 164, 0.15);
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 10%, rgba(23, 105, 255, 0.11), transparent 34%),
        rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 80px rgba(23, 71, 122, 0.1);
}

.singapore-package-section .package-grid {
    gap: 14px;
}

.singapore-package-section .package-card {
    min-height: 0;
    border: 1px solid rgba(23, 105, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
    color: #0b1220;
    box-shadow: 0 20px 60px rgba(23, 71, 122, 0.08);
}

.singapore-package-section .package-card > span {
    color: #1769ff;
}

.singapore-package-section .package-card strong,
.singapore-package-section .package-card p,
.singapore-package-section .package-card li {
    color: #0b1220;
}

.singapore-package-section .package-card p,
.singapore-package-section .package-card li {
    color: #42516a;
}

.singapore-package-section .package-card li b {
    color: #0b1220;
}

.singapore-package-section .package-card li::before {
    background: #1769ff;
}

.singapore-package-section .package-card .cinema-button {
    border-color: rgba(23, 105, 255, 0.22);
    background: #fff;
    color: #0b4fc5;
}

.singapore-operations-panel {
    margin-top: 34px;
}

.singapore-operations-head h2 {
    max-width: 980px;
    margin: 0;
    color: #0b1220;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
}

.singapore-operations-head p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #42516a;
    font-size: 18px;
    line-height: 1.65;
}

.singapore-flow-lane {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.singapore-flow-lane article {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
}

.singapore-flow-lane b {
    display: block;
    margin-bottom: 8px;
    color: #0b1220;
    font-size: 20px;
}

.singapore-flow-lane span {
    display: block;
    color: #42516a;
    line-height: 1.6;
}

.singapore-operations-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.singapore-operations-links a {
    color: #1769ff;
    font-weight: 900;
}

.singapore-package-section .section-heading h2,
.singapore-final-cta h2,
.singapore-hardware-panel h2,
.singapore-included-panel h2 {
    margin: 0;
    color: #0b1220;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
}

.singapore-package-section .section-heading p,
.singapore-final-cta p,
.singapore-hardware-panel p {
    max-width: 820px;
    margin: 16px 0 0;
    color: #42516a;
    font-size: 18px;
    line-height: 1.7;
}

.singapore-hardware-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.singapore-hardware-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.singapore-hardware-strip img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border: 1px solid rgba(91, 122, 164, 0.12);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 250, 255, 0.92), rgba(255, 255, 255, 0.98));
    box-shadow: 0 20px 60px rgba(23, 71, 122, 0.1);
}

.singapore-final-cta {
    text-align: center;
}

.singapore-final-cta p,
.singapore-final-cta .singapore-hero-actions,
.singapore-final-cta .eyebrow {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

@media (max-width: 980px) {
    .singapore-hero,
    .singapore-hardware-panel {
        grid-template-columns: 1fr;
    }

    .singapore-included-grid,
    .singapore-flow-lane,
    .singapore-trust-grid {
        grid-template-columns: 1fr;
    }

    .singapore-hero {
        gap: 18px;
        padding: 20px;
        border-radius: 26px;
    }

    .singapore-hero h1 {
        font-size: clamp(34px, 10.2vw, 46px);
        line-height: 1;
    }

    .singapore-lead {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.45;
    }

    .audience-note,
    .keyword-strip {
        margin-top: 12px;
    }

    .singapore-hero-actions {
        margin-top: 16px;
    }

    .singapore-hero-actions .cinema-button {
        width: 100%;
        min-height: 46px;
    }

    .singapore-flow-mini {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .singapore-flow-mini span {
        justify-content: center;
        padding: 9px 6px;
        text-align: center;
        font-size: 11px;
    }

    .singapore-proof-mini {
        grid-template-columns: 1fr;
    }

    .singapore-quick-form {
        padding: 18px;
    }

    .singapore-trust-grid article {
        min-height: 0;
    }

    .singapore-hardware-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .growth-index-grid,
    .market-landing-grid,
    .news-directory-grid,
    .market-faq-grid {
        grid-template-columns: 1fr;
    }

    .growth-card,
    .market-landing-card,
    .news-directory-card {
        min-height: auto;
    }

    .news-hub-hero,
    .news-latest-layout,
    .news-contact-band,
    .news-content-layout {
        grid-template-columns: 1fr;
    }

    .news-content-layout .news-directory-grid {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
    }

    .news-hub-hero {
        min-height: auto;
    }

    .news-hub-panel {
        justify-content: flex-start;
    }

    .news-topic-grid,
    .news-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-hub-shell {
        width: min(100% - 22px, 1420px);
        padding-top: 86px;
    }

    .news-hub-hero,
    .news-hub-section,
    .news-contact-band {
        border-radius: 20px;
        padding: 18px;
    }

    .news-hub-copy h1 {
        margin-top: 14px;
        font-size: clamp(32px, 9vw, 42px);
    }

    .news-hub-copy p,
    .news-section-head p,
    .news-contact-band p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.65;
    }

    .news-search {
        margin-top: 16px;
    }

    .news-filter-row {
        gap: 8px;
        margin-top: 12px;
    }

    .news-hero-actions,
    .news-contact-actions {
        gap: 10px;
        margin-top: 16px;
    }

    .news-hub-panel {
        display: none;
    }

    .news-hub-visual {
        margin-bottom: 16px;
    }

    .news-hub-panel h2,
    .news-lead-card h2,
    .news-section-head h2,
    .news-contact-band h2 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .news-brief-list,
    .news-topic-stack,
    .news-sidebar {
        gap: 12px;
    }

    .news-brief-list {
        margin-top: 16px;
    }

    .news-brief-list a,
    .news-topic-stack a,
    .news-topic-grid a,
    .news-market-grid a {
        min-height: auto;
        padding: 15px;
    }

    .news-latest-layout,
    .news-topic-grid,
    .news-market-grid {
        margin-top: 16px;
    }

    .news-search {
        grid-template-columns: 1fr;
    }

    .news-search button {
        width: 100%;
    }

    .news-hero-actions,
    .news-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .news-topic-grid,
    .news-market-grid {
        grid-template-columns: 1fr;
    }

    .news-lead-card {
        min-height: auto;
        padding: 18px;
    }

    .news-card-cover {
        width: calc(100% + 36px);
        margin: -18px -18px 0;
    }
}

@media (max-width: 1180px) {
    .cinematic-site .cinema-nav {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 22px 60px rgba(23, 71, 122, 0.14);
    }
}

/* Final light-theme hardening for high-specificity legacy cinematic rules */
.cinematic-site .cinema-hero {
    background:
        linear-gradient(110deg, #ffffff 0%, #f9fcff 48%, #edf7ff 100%),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.045) 0 1px, transparent 1px 94px);
}

.cinematic-site .cinema-hero::after {
    opacity: 0.42;
    background:
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.05) 0 1px, transparent 1px 94px),
        linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.08), transparent);
}

.cinematic-site .cinema-hero h1,
.cinematic-site .cinema-hero h1::first-line,
.cinematic-site .cinema-hero-copy p,
.cinematic-site .hero-feed strong,
.cinematic-site .hero-route-line span,
.cinematic-site .hero-proof-dock strong {
    color: #0b1220;
}

.cinematic-site .hero-route-line {
    border-color: rgba(23, 105, 255, 0.18);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(23, 71, 122, 0.1);
}

.cinematic-site .hero-route-line span {
    border-color: rgba(23, 105, 255, 0.14);
    background: rgba(255, 255, 255, 0.74);
    color: #0f172a;
}

.cinematic-site .hero-route-line span:hover {
    background: rgba(23, 105, 255, 0.08);
    color: #1769ff;
}

.cinematic-site .cinema-hero-copy p,
.cinematic-site .hero-feed p,
.cinematic-site .hero-feed span,
.cinematic-site .hero-proof-dock span {
    color: #5d6b82;
}

.cinematic-site .world-panel,
.cinematic-site .hero-feed,
.cinematic-site .glass-card,
.cinematic-site .hero-route-line,
.cinematic-site .hero-proof-dock {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: #0b1220;
    box-shadow: 0 18px 54px rgba(23, 71, 122, 0.1);
}

.cinematic-site .world-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(231, 244, 255, 0.7)),
        repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.05) 0 1px, transparent 1px 82px);
}

.cinematic-site .hero-device {
    filter: drop-shadow(0 40px 54px rgba(23, 71, 122, 0.2));
}

.cinematic-site .hero-device-main {
    border-radius: 20px;
}

.cinematic-site .card-payments span {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(247, 251, 255, 0.84);
    color: #0b1220;
}

.cinematic-site .scroll-cue {
    border-color: rgba(23, 105, 255, 0.28);
    background: rgba(255, 255, 255, 0.72);
}

.cinematic-site .scroll-cue span {
    background: #1769ff;
}

.cinematic-site .cinema-story,
.cinematic-site .cinema-story-hardware,
.cinematic-site .cinema-story-pilot,
.cinematic-site .rental-flow-cinema,
.cinematic-site .cinema-contact {
    background:
        linear-gradient(180deg, #fbfdff 0%, #f5fbff 100%);
    color: #0b1220;
}

.cinematic-site .story-copy h2,
.cinematic-site .cinema-contact h2,
.cinematic-site .rental-flow-copy h2 {
    color: #0b1220;
}

.cinematic-site .story-copy p,
.cinematic-site .cinema-contact p,
.cinematic-site .rental-flow-copy p,
.cinematic-site .story-copy li {
    color: #5d6b82;
}

/* 深底区文字保持浅色——上面一刀切 #5d6b82 会把深底区染成"深底深字"看不清,此处按 section 覆盖回浅色 */
.cinematic-site .cinema-hero-copy p,
.cinematic-site .cinema-story-platform .story-copy p,
.cinematic-site .cinema-story-platform .story-copy li,
.cinematic-site .cinema-story-platform .platform-reason-grid p,
.cinematic-site .cinema-story-platform .platform-reason-grid li,
.cinematic-site .cinema-story-pilot .story-copy p,
.cinematic-site .cinema-story-pilot .story-copy li {
    color: rgba(226, 232, 240, 0.82);
}

.cinematic-site .dashboard-shell,
.cinematic-site .pilot-path article,
.cinematic-site .cinema-form {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: #0b1220;
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

.cinematic-site .dashboard-sidebar,
.cinematic-site .dashboard-kpis div,
.cinematic-site .dashboard-chart {
    border-color: rgba(91, 122, 164, 0.14);
    background: rgba(247, 251, 255, 0.82);
    color: #0b1220;
}

.cinematic-site .dashboard-kpis strong,
.cinematic-site .pilot-path strong {
    color: #0b1220;
}

.cinematic-site .rental-flow-viewport,
.cinematic-site .rental-flow-strip,
.cinematic-site .rental-flow-strip figcaption {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: #0b1220;
}

.cinematic-site .rental-flow-toolbar {
    border-color: rgba(91, 122, 164, 0.14);
    color: #5d6b82;
}

.cinematic-site .rental-flow-window::before {
    background: linear-gradient(90deg, rgba(248, 251, 255, 0.96), transparent);
}

.cinematic-site .rental-flow-window::after {
    background: linear-gradient(270deg, rgba(248, 251, 255, 0.96), transparent);
}

.technology-v2-page .tech-v2-hero,
.technology-v2-page .tech-v2-section,
.technology-v2-page .tech-v2-dark,
.technology-v2-page main {
    background:
        linear-gradient(180deg, #fbfdff 0%, #f5fbff 100%);
    color: #0b1220;
}

.technology-v2-page .tech-v2-copy h1,
.technology-v2-page .tech-section-heading h2,
.technology-v2-page .tech-migration-band h2,
.technology-v2-page .tech-path-grid h3,
.technology-v2-page .tech-capability-grid h3,
.technology-v2-page .tech-module-card strong {
    color: #0b1220;
}

.technology-v2-page .tech-v2-copy p,
.technology-v2-page .tech-section-heading p,
.technology-v2-page .tech-migration-band p,
.technology-v2-page .tech-path-grid p,
.technology-v2-page .tech-capability-grid p,
.technology-v2-page .tech-module-card p {
    color: #5d6b82;
}

.technology-v2-page .tech-orbit,
.technology-v2-page .tech-path-grid article,
.technology-v2-page .tech-capability-grid article,
.technology-v2-page .tech-migration-band,
.technology-v2-page .tech-module-card {
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: #0b1220;
    box-shadow: 0 28px 88px rgba(23, 71, 122, 0.12);
}

/* Final warm-white FAQ and contact pass */
.cinematic-site .cinema-faq,
.cinematic-site .cinema-contact {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 10%, rgba(23, 105, 255, 0.1), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(91, 184, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #fbfdff 0%, #f5fbff 54%, #eef7ff 100%);
    color: #0b1220;
}

.cinematic-site .cinema-faq::before,
.cinematic-site .cinema-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(23, 105, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 105, 255, 0.03) 1px, transparent 1px);
    background-size: 94px 94px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 86%);
}

.cinematic-site .cinema-faq > *,
.cinematic-site .cinema-contact > * {
    position: relative;
    z-index: 1;
}

.cinematic-site .cinema-faq .wide-copy h2,
.cinematic-site .cinema-contact h2 {
    color: #0b1220;
}

.cinematic-site .cinema-faq .wide-copy p,
.cinematic-site .cinema-contact p {
    color: #5d6b82;
}

.cinematic-site .faq-list {
    color: #0b1220;
}

.cinematic-site .faq-list details {
    border: 1px solid rgba(91, 122, 164, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 255, 0.78));
    color: #0b1220;
    box-shadow: 0 24px 70px rgba(23, 71, 122, 0.1);
}

.cinematic-site .faq-list details[open] {
    border-color: rgba(23, 105, 255, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 255, 0.9));
    box-shadow: 0 30px 88px rgba(23, 71, 122, 0.14);
}

.cinematic-site .faq-list summary {
    color: #0b1220;
}

.cinematic-site .faq-list summary::after {
    color: #1769ff;
}

.cinematic-site .faq-list p {
    color: #5d6b82;
}

.cinematic-site .contact-cards {
    justify-content: center;
}

.cinematic-site .contact-cards a {
    min-height: 54px;
    border-color: rgba(91, 122, 164, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: #0b1220;
    box-shadow: 0 18px 54px rgba(23, 71, 122, 0.1);
}

.cinematic-site .contact-cards a:not(.contact-card-whatsapp):hover {
    border-color: rgba(23, 105, 255, 0.3);
    background: rgba(23, 105, 255, 0.08);
    color: #1553c5;
}

.cinematic-site .contact-cards .contact-card-whatsapp {
    min-height: 58px;
    color: #052012;
    background: linear-gradient(135deg, #25d366 0%, #8dffbc 100%);
    box-shadow: 0 20px 52px rgba(37, 211, 102, 0.22);
}

.wechat-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 18px;
    align-items: center;
    max-width: 520px;
    margin: 22px auto 0;
    padding: 16px;
    border: 1px solid rgba(91, 122, 164, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.82));
    box-shadow: 0 22px 58px rgba(23, 71, 122, 0.1);
}

.wechat-contact-card span {
    display: block;
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wechat-contact-card strong {
    display: block;
    margin-top: 8px;
    color: #0b1220;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.08;
}

.wechat-contact-card p {
    margin: 8px 0 0;
    color: #53637a;
    font-size: 14px;
    line-height: 1.45;
}

.wechat-contact-card img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.singapore-final-cta .wechat-contact-card {
    margin-top: 24px;
}

@media (max-width: 640px) {
    .wechat-contact-card {
        grid-template-columns: 1fr;
        max-width: min(100%, 360px);
        padding: 14px;
        text-align: center;
    }

    .wechat-contact-card img {
        width: 116px;
        height: 116px;
        justify-self: center;
    }
}

.cinematic-site .quote-form,
.cinematic-site .cinema-form {
    border: 1px solid rgba(91, 122, 164, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.84));
    color: #0b1220;
    box-shadow: 0 30px 88px rgba(23, 71, 122, 0.12);
}

.cinematic-site .quote-form label,
.cinematic-site .cinema-form label {
    color: #26364d;
}

.cinematic-site .quote-form input,
.cinematic-site .quote-form select,
.cinematic-site .quote-form textarea,
.cinematic-site .cinema-form input,
.cinematic-site .cinema-form select,
.cinematic-site .cinema-form textarea {
    border: 1px solid rgba(91, 122, 164, 0.18);
    background: rgba(255, 255, 255, 0.94);
    color: #0b1220;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cinematic-site .quote-form input:focus,
.cinematic-site .quote-form select:focus,
.cinematic-site .quote-form textarea:focus,
.cinematic-site .cinema-form input:focus,
.cinematic-site .cinema-form select:focus,
.cinematic-site .cinema-form textarea:focus {
    border-color: rgba(23, 105, 255, 0.44);
    outline: none;
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.1);
}

.cinematic-site .quote-form input::placeholder,
.cinematic-site .quote-form textarea::placeholder,
.cinematic-site .cinema-form input::placeholder,
.cinematic-site .cinema-form textarea::placeholder {
    color: rgba(93, 107, 130, 0.72);
}

.cinematic-site .quote-form .form-note,
.cinematic-site .cinema-form .form-note {
    color: #5d6b82;
}

/* Product matrix image stage: centered products with soft blended edges. */
.cinematic-site .product-matrix article {
    grid-template-rows: clamp(208px, 15vw, 252px) auto;
}

.cinematic-site .product-visual {
    position: relative;
    height: clamp(208px, 15vw, 252px);
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(16px, 1.8vw, 28px);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.88) 42%, rgba(226, 242, 255, 0.72) 74%, rgba(238, 247, 255, 0.96) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 242, 255, 0.9));
}

.cinematic-site .product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 58%, rgba(23, 105, 255, 0.14), transparent 46%),
        radial-gradient(ellipse at 50% 42%, rgba(125, 211, 252, 0.2), transparent 54%);
    filter: blur(4px);
}

.cinematic-site .product-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0) 18%, rgba(248, 251, 255, 0) 82%, rgba(248, 251, 255, 0.98) 100%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.86) 0%, rgba(248, 251, 255, 0) 24%, rgba(248, 251, 255, 0) 74%, rgba(248, 251, 255, 0.92) 100%);
}

.cinematic-site .product-visual .product-zoom {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 18px;
}

.cinematic-site .product-visual .product-zoom::before {
    content: "";
    position: absolute;
    inset: 8px 10px;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(23, 105, 255, 0.1), transparent 64%);
    filter: blur(18px);
}

.cinematic-site .product-visual img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    background: transparent;
    filter: drop-shadow(0 30px 34px rgba(23, 71, 122, 0.18));
    -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.84) 72%, rgba(0, 0, 0, 0.16) 91%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.84) 72%, rgba(0, 0, 0, 0.16) 91%, transparent 100%);
}

.cinematic-site .product-visual-desktop img {
    --cc-desktop-shift: -4%; /* 按图片自身宽度的百分比平移——随卡片缩放，不随浏览器宽度漂移；标定终值改这一处即可 */
    width: min(78%, 430px);
    max-width: 78%;
    max-height: 90%;
    transform: translateX(var(--cc-desktop-shift));
}

.cinematic-site .product-visual-desktop .product-zoom:hover img,
.cinematic-site .product-visual-desktop .product-zoom:focus-visible img {
    transform: translateX(var(--cc-desktop-shift)) scale(1.035);
}

.cinematic-site .product-visual-stackable .product-zoom,
.cinematic-site .product-visual-kiosk .product-zoom {
    width: 100%;
    max-width: 100%;
}

.cinematic-site .product-visual-stackable img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.cinematic-site .product-visual-kiosk img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.cinematic-site .product-oem-entry {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 46px);
    margin-top: clamp(20px, 3.4vw, 42px);
    padding: clamp(24px, 3.4vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 18%, rgba(23, 105, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(21, 219, 132, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 255, 0.9));
    box-shadow: 0 28px 86px rgba(31, 84, 132, 0.12);
}

.cinematic-site .product-oem-entry::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    pointer-events: none;
}

.cinematic-site .product-oem-entry span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.1);
    color: #075eb8;
    font-size: 12px;
    font-weight: 950;
}

.cinematic-site .product-oem-entry h3 {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 16px 0 0;
    color: #07111f;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.cinematic-site .product-oem-entry p {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 16px 0 0;
    color: #40536a;
    font-size: 16px;
    line-height: 1.72;
}

@media (max-width: 1180px) {
    .cinematic-site .product-matrix article {
        grid-template-rows: 190px auto;
    }

    .cinematic-site .product-visual {
        height: 190px;
    }

    .cinematic-site .package-upgrade-path,
    .cinematic-site .product-oem-entry {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cinematic-site .package-upgrade-path a,
    .cinematic-site .product-oem-entry a {
        width: fit-content;
    }
}

@media (max-width: 720px) {
    .cinematic-site .product-matrix article {
        grid-template-rows: 178px auto;
    }

    .cinematic-site .product-visual {
        height: 178px;
    }

    .cinematic-site .product-visual-desktop img {
        width: min(86%, 430px);
        max-width: 86%;
    }

    .cinematic-site .product-visual-stackable .product-zoom,
    .cinematic-site .product-visual-kiosk .product-zoom {
        width: 100%;
    }

    .cinematic-site .package-upgrade-path,
    .cinematic-site .product-oem-entry {
        border-radius: 24px;
        padding: 20px;
    }

    .cinematic-site .package-upgrade-path a,
    .cinematic-site .product-oem-entry a {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* Technology architecture map: multilingual system diagram embedded in the page. */
.technology-v2-page .tech-architecture-map-section {
    padding-top: clamp(82px, 8vw, 132px);
    background:
        radial-gradient(circle at 12% 8%, rgba(23, 105, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #fbfdff 0%, #f3f9ff 100%);
}

.technology-v2-page .tech-arch-shell {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(91, 122, 164, 0.18);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.88)),
        linear-gradient(90deg, rgba(23, 105, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 105, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 86px 86px, 86px 86px;
    box-shadow: 0 34px 96px rgba(23, 71, 122, 0.14);
    -webkit-overflow-scrolling: touch;
}

.technology-v2-page .tech-arch-inner {
    min-width: 1120px;
    padding: clamp(28px, 3vw, 42px);
}

.technology-v2-page .tech-arch-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(91, 122, 164, 0.14);
}

.technology-v2-page .tech-arch-header strong {
    display: block;
    color: #0b1220;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.02;
}

.technology-v2-page .tech-arch-header p {
    max-width: 720px;
    margin: 12px 0 0;
    color: #5d6b82;
    font-size: 15px;
    line-height: 1.6;
}

.technology-v2-page .tech-arch-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 460px;
}

.technology-v2-page .tech-arch-legend span,
.technology-v2-page .tech-arch-rail span,
.technology-v2-page .arch-chip-cloud span,
.technology-v2-page .tech-arch-paas b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(91, 122, 164, 0.14);
    border-radius: 999px;
    color: #26364d;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.1;
    background: rgba(255, 255, 255, 0.78);
}

.technology-v2-page .tech-arch-legend .legend-access { color: #1553c5; background: rgba(23, 105, 255, 0.08); }
.technology-v2-page .tech-arch-legend .legend-service { color: #047857; background: rgba(16, 185, 129, 0.1); }
.technology-v2-page .tech-arch-legend .legend-governance { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.technology-v2-page .tech-arch-legend .legend-paas { color: #a16207; background: rgba(250, 204, 21, 0.16); }
.technology-v2-page .tech-arch-legend .legend-monitor { color: #be123c; background: rgba(244, 63, 94, 0.1); }

.technology-v2-page .tech-arch-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 18px;
}

.technology-v2-page .tech-arch-rail span {
    min-height: 44px;
    border-radius: 14px;
    color: #1769ff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 244, 255, 0.84));
    box-shadow: 0 16px 44px rgba(23, 71, 122, 0.08);
}

.technology-v2-page .tech-arch-layer {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    margin-top: 16px;
    padding: 22px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.76));
    box-shadow: 0 18px 60px rgba(23, 71, 122, 0.08);
}

.technology-v2-page .tech-arch-layer::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, #1769ff, #5bb8ff);
}

.technology-v2-page .layer-service::before { background: linear-gradient(180deg, #10b981, #38bdf8); }
.technology-v2-page .layer-monitor::before { background: linear-gradient(180deg, #f43f5e, #7c3aed); }
.technology-v2-page .layer-cicd::before { background: linear-gradient(180deg, #facc15, #1769ff); }

.technology-v2-page .layer-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    background: #1769ff;
    box-shadow: 0 14px 36px rgba(23, 105, 255, 0.22);
}

.technology-v2-page .layer-meta h3 {
    margin: 16px 0 0;
    color: #0b1220;
    font-size: 24px;
    line-height: 1.06;
}

.technology-v2-page .layer-meta p {
    margin: 12px 0 0;
    color: #5d6b82;
    font-size: 13px;
    line-height: 1.58;
}

.technology-v2-page .layer-grid {
    display: grid;
    gap: 14px;
    align-items: stretch;
}

.technology-v2-page .layer-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.technology-v2-page .layer-grid-three {
    grid-template-columns: minmax(170px, 0.72fr) minmax(420px, 1.7fr) minmax(170px, 0.72fr);
}

.technology-v2-page .tech-arch-panel {
    position: relative;
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(23, 105, 255, 0.12), transparent 32%),
        rgba(255, 255, 255, 0.82);
}

.technology-v2-page .tech-arch-panel small {
    display: block;
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
}

.technology-v2-page .tech-arch-panel strong {
    display: block;
    margin-top: 8px;
    color: #0b1220;
    font-size: 22px;
    line-height: 1.08;
}

.technology-v2-page .tech-arch-panel > span {
    display: block;
    margin-top: 14px;
    color: #5d6b82;
    font-size: 13px;
    line-height: 1.45;
}

.technology-v2-page .service-panel {
    background:
        radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.13), transparent 30%),
        radial-gradient(circle at 84% 22%, rgba(23, 105, 255, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.88);
}

.technology-v2-page .governance-panel {
    background:
        radial-gradient(circle at 80% 16%, rgba(124, 58, 237, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.82);
}

.technology-v2-page .monitor-panel {
    background:
        radial-gradient(circle at 86% 18%, rgba(244, 63, 94, 0.1), transparent 32%),
        rgba(255, 255, 255, 0.84);
}

.technology-v2-page .arch-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.technology-v2-page .arch-chip-cloud span {
    min-height: 28px;
    color: #34445d;
    background: rgba(245, 250, 255, 0.86);
}

.technology-v2-page .tech-arch-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 116px;
    overflow: hidden;
}

.technology-v2-page .tech-arch-flow span {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 14px 16px;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 18px;
    color: #0b1220;
    font-size: 15px;
    font-weight: 950;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 243, 255, 0.82));
    box-shadow: 0 16px 44px rgba(23, 71, 122, 0.09);
}

.technology-v2-page .tech-arch-flow i {
    flex: 0 0 38px;
    height: 1px;
    position: relative;
    background: rgba(23, 105, 255, 0.32);
}

.technology-v2-page .tech-arch-flow i::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(23, 105, 255, 0.64);
    border-right: 2px solid rgba(23, 105, 255, 0.64);
    transform: translateY(-50%) rotate(45deg);
}

.technology-v2-page .tech-arch-flow-long span {
    min-height: 70px;
    font-size: 13px;
}

.technology-v2-page .tech-arch-flow-long i {
    flex-basis: 22px;
}

.technology-v2-page .tech-arch-paas {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(250, 204, 21, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 218, 0.78));
    box-shadow: 0 14px 42px rgba(161, 98, 7, 0.08);
}

.technology-v2-page .tech-arch-paas span {
    flex: 0 0 168px;
    max-width: 168px;
    color: #a16207;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.18;
}

.technology-v2-page .tech-arch-paas b {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 14px;
    color: #7c4a03;
    background: rgba(250, 204, 21, 0.14);
}

.technology-v2-page .floating-action-stack {
    display: none;
}

.technology-v2-page .floating-contact a {
    min-height: 44px;
}

@media (max-width: 1200px) {
    .technology-v2-page .tech-arch-inner {
        min-width: 980px;
    }

    .technology-v2-page .tech-arch-layer {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .technology-v2-page .tech-arch-paas {
        margin-left: 0;
    }
}

@media (max-width: 760px) {
    .technology-v2-page .tech-architecture-map-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .technology-v2-page .tech-arch-shell {
        margin: 0 -4px;
        border-radius: 22px;
    }

    .technology-v2-page .tech-arch-inner {
        min-width: 820px;
        padding: 22px;
    }

    .technology-v2-page .tech-arch-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .technology-v2-page .tech-arch-legend {
        justify-content: flex-start;
        max-width: none;
    }

    .technology-v2-page .tech-arch-layer {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .technology-v2-page .layer-grid-three {
        grid-template-columns: minmax(150px, 0.72fr) minmax(330px, 1.7fr) minmax(150px, 0.72fr);
    }

    .technology-v2-page .tech-arch-paas {
        align-items: flex-start;
        margin-left: 0;
    }

    .technology-v2-page .tech-arch-paas span {
        flex-basis: 138px;
        max-width: 138px;
    }
}

/* Product Design direction 3: overseas buyer conversion path */
.cinematic-site {
    color: #0b1220;
    background:
        radial-gradient(circle at 14% 8%, rgba(23, 105, 255, 0.1), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(11, 184, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.cinematic-site .cinema-hero.cinema-panel {
    width: min(100%, 1920px);
    min-height: calc(100svh - 10px);
    display: grid;
    grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.16fr);
    align-items: center;
    gap: clamp(34px, 4.6vw, 86px);
    padding: clamp(112px, 12vh, 152px) clamp(26px, 4.8vw, 92px) clamp(54px, 7vh, 86px);
    border: 0;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.94) 54%, rgba(255, 255, 255, 0.96)),
        radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 22%), rgba(23, 105, 255, 0.16), transparent 36%);
    overflow: hidden;
}

.cinematic-site .cinema-hero.cinema-panel::before {
    opacity: 0.42;
    background:
        linear-gradient(115deg, rgba(23, 105, 255, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86));
}

.cinematic-site .cinema-hero-copy {
    max-width: 760px;
    z-index: 2;
}

.cinematic-site .cinema-hero h1 {
    max-width: 760px;
    color: #07111f;
    font-size: clamp(52px, 4.2vw, 78px);
    line-height: 0.98;
    letter-spacing: 0;
}

.cinematic-site .cinema-hero-copy > p {
    max-width: 650px;
    color: #33445e;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.55;
}

.cinematic-site .cinema-hero-actions {
    margin-top: 34px;
}

.cinematic-site .cinema-hero-actions .cinema-button {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    box-shadow: 0 18px 42px rgba(23, 105, 255, 0.22);
}

.cinematic-site .cinema-hero-actions .cinema-button-ghost {
    color: #0d2748;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(23, 105, 255, 0.22);
    box-shadow: 0 16px 34px rgba(59, 91, 130, 0.1);
}

.cinematic-site .buyer-entry-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
    padding: 0;
    background: transparent;
    border: 0;
}

.cinematic-site .buyer-entry-line span {
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 110px;
    padding: 18px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 22px;
    color: #0b1220;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(236, 247, 255, 0.66));
    box-shadow: 0 18px 46px rgba(31, 84, 132, 0.08);
}

.cinematic-site .buyer-entry-line b {
    font-size: 15px;
    font-weight: 950;
}

.cinematic-site .buyer-entry-line small {
    color: #5d6d82;
    font-size: 12px;
    line-height: 1.45;
}

.cinematic-site .buyer-journey-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
    align-items: stretch;
    gap: 18px;
    min-height: min(70vh, 680px);
    padding: 20px;
    border: 1px solid rgba(124, 158, 201, 0.2);
    border-radius: 38px;
    background:
        radial-gradient(circle at 18% 16%, rgba(23, 105, 255, 0.12), transparent 35%),
        radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 255, 0.86));
    box-shadow: 0 34px 90px rgba(17, 64, 112, 0.16);
    overflow: hidden;
}

.cinematic-site .buyer-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.72;
}

.cinematic-site .buyer-orbit span {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(23, 105, 255, 0.1);
    border-radius: 50%;
    animation: buyer-orbit-pulse 7s ease-in-out infinite;
}

.cinematic-site .buyer-orbit span:nth-child(1) {
    left: -94px;
    top: 8%;
}

.cinematic-site .buyer-orbit span:nth-child(2) {
    right: -86px;
    top: 18%;
    animation-delay: -2.2s;
}

.cinematic-site .buyer-orbit span:nth-child(3) {
    right: 24%;
    bottom: -122px;
    animation-delay: -4s;
}

@keyframes buyer-orbit-pulse {
    0%, 100% {
        transform: scale(0.94);
        opacity: 0.28;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.72;
    }
}

.cinematic-site .journey-visual-card,
.cinematic-site .buyer-journey-panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(23, 105, 255, 0.12);
    border-radius: 30px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 255, 0.74));
    box-shadow: 0 24px 60px rgba(31, 84, 132, 0.1);
    overflow: hidden;
}

.cinematic-site .journey-visual-card {
    display: grid;
    place-items: center;
    min-height: 520px;
}

.cinematic-site .journey-visual-card::before {
    content: "";
    position: absolute;
    inset: auto 8% 7% 8%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(23, 105, 255, 0.12), transparent 68%);
    filter: blur(12px);
}

.cinematic-site .buyer-journey-stage .hero-device-main {
    position: relative;
    inset: auto;
    width: min(112%, 620px);
    max-width: none;
    max-height: 540px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 32px 48px rgba(6, 34, 72, 0.14));
}

.cinematic-site .journey-status {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    padding: 13px 16px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
}

.cinematic-site .journey-status span {
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.cinematic-site .journey-status strong {
    color: #0b1220;
    font-size: 13px;
    text-align: right;
}

.cinematic-site .buyer-journey-panel {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.cinematic-site .journey-panel-head {
    display: grid;
    gap: 10px;
}

.cinematic-site .journey-panel-head span,
.cinematic-site .buyer-package-head span {
    color: #1769ff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cinematic-site .journey-panel-head strong {
    color: #07111f;
    font-size: clamp(28px, 2.35vw, 44px);
    line-height: 1.05;
}

.cinematic-site .journey-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cinematic-site .journey-steps article {
    position: relative;
    min-height: 148px;
    padding: 18px;
    border: 1px solid rgba(23, 105, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(232, 244, 255, 0.72));
}

.cinematic-site .journey-steps article::after,
.cinematic-site .buyer-package-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 44%, transparent 68%);
    transform: translateX(-120%);
    animation: buyer-scanline 6.8s ease-in-out infinite;
    pointer-events: none;
}

.cinematic-site .journey-steps article:nth-child(2)::after,
.cinematic-site .buyer-package-card:nth-child(2)::after {
    animation-delay: -2s;
}

.cinematic-site .journey-steps article:nth-child(3)::after,
.cinematic-site .buyer-package-card:nth-child(3)::after {
    animation-delay: -4s;
}

@keyframes buyer-scanline {
    0%, 64%, 100% {
        transform: translateX(-120%);
    }

    78% {
        transform: translateX(120%);
    }
}

.cinematic-site .journey-steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 12px;
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
    background: rgba(23, 105, 255, 0.1);
}

.cinematic-site .journey-steps strong {
    display: block;
    color: #0b1220;
    font-size: 17px;
    line-height: 1.15;
}

.cinematic-site .journey-steps p {
    margin: 10px 0 0;
    color: #52647a;
    font-size: 13px;
    line-height: 1.45;
}

.cinematic-site .hero-proof-dock {
    grid-column: 1 / -1;
    align-self: end;
    width: min(100%, 1180px);
    margin: 6px auto 0;
    border-color: rgba(23, 105, 255, 0.14);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(31, 84, 132, 0.1);
}

.cinematic-site .hero-proof-dock strong {
    color: #0b1220;
}

.cinematic-site .homepage-resource-entry {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: stretch;
    margin: 0 auto;
    padding: clamp(46px, 6vw, 86px) clamp(22px, 4.8vw, 84px);
    border-top: 1px solid rgba(23, 105, 255, 0.08);
    border-bottom: 1px solid rgba(23, 105, 255, 0.08);
    background:
        radial-gradient(circle at 14% 16%, rgba(23, 105, 255, 0.12), transparent 32%),
        radial-gradient(circle at 84% 24%, rgba(21, 219, 132, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.78));
}

.cinematic-site .homepage-resource-copy {
    display: grid;
    align-content: center;
    gap: 14px;
}

.cinematic-site .homepage-resource-copy span,
.cinematic-site .homepage-resource-card span,
.language-local-faq > span {
    width: fit-content;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.09);
    color: #1769ff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cinematic-site .homepage-resource-copy h2 {
    margin: 0;
    max-width: 680px;
    color: #07111f;
    font-size: clamp(34px, 4.4vw, 68px);
    line-height: 1.02;
}

.cinematic-site .homepage-resource-copy p {
    max-width: 610px;
    margin: 0;
    color: #42516a;
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.65;
}

.cinematic-site .homepage-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cinematic-site .homepage-resource-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    min-height: 268px;
    border: 1px solid rgba(91, 122, 164, 0.18);
    border-radius: 26px;
    background:
        radial-gradient(circle at 74% 0%, rgba(23, 105, 255, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.9));
    box-shadow: 0 28px 82px rgba(23, 71, 122, 0.11);
    padding: clamp(22px, 2.4vw, 30px);
    color: inherit;
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cinematic-site .homepage-resource-card::after {
    content: "";
    position: absolute;
    inset: auto -18% -22% 18%;
    height: 96px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(23, 105, 255, 0.18), rgba(21, 219, 132, 0.12));
    filter: blur(26px);
    opacity: 0.78;
    pointer-events: none;
}

.cinematic-site .homepage-resource-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 32px;
    color: #07111f;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.12;
}

.cinematic-site .homepage-resource-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #42516a;
    font-size: 15px;
    line-height: 1.66;
}

.cinematic-site .homepage-resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 105, 255, 0.34);
    box-shadow: 0 34px 94px rgba(23, 71, 122, 0.16);
}

.cinematic-site .homepage-resource-card-linkset {
    gap: 16px;
}

.cinematic-site .homepage-resource-link-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.cinematic-site .homepage-resource-link-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #0b4fb4;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.cinematic-site .homepage-resource-link-list a:hover {
    border-color: rgba(23, 105, 255, 0.38);
    background: rgba(232, 243, 255, 0.92);
}

.cinematic-site .homepage-resource-card-featured {
    background:
        radial-gradient(circle at 70% 0%, rgba(21, 219, 132, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 244, 255, 0.92));
}

.cinematic-site .homepage-resource-card-custom {
    background:
        radial-gradient(circle at 70% 0%, rgba(23, 105, 255, 0.18), transparent 38%),
        radial-gradient(circle at 14% 100%, rgba(21, 219, 132, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.92));
}

.cinematic-site .buyer-package-preview {
    margin: 0 auto;
    padding: clamp(64px, 8vw, 118px) clamp(22px, 4.8vw, 84px);
    border-top: 1px solid rgba(23, 105, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 255, 0.72) 52%, rgba(255, 255, 255, 0.98));
}

.cinematic-site .buyer-package-head {
    display: grid;
    gap: 14px;
    max-width: 930px;
    margin: 0 auto 34px;
    text-align: center;
}

.cinematic-site .buyer-package-head h2 {
    margin: 0;
    color: #07111f;
    font-size: clamp(38px, 4.2vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.cinematic-site .buyer-package-head p {
    max-width: 760px;
    margin: 0 auto;
    color: #52647a;
    font-size: 17px;
    line-height: 1.7;
}

.cinematic-site .buyer-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    max-width: 1320px;
    margin: 0 auto;
}

.cinematic-site .buyer-package-card {
    position: relative;
    min-height: 450px;
    padding: 28px;
    border: 1px solid rgba(23, 105, 255, 0.14);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 0%, rgba(23, 105, 255, 0.1), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 255, 0.82));
    box-shadow: 0 24px 72px rgba(31, 84, 132, 0.11);
    overflow: hidden;
}

.cinematic-site .buyer-package-card.package-card-featured {
    transform: translateY(-10px);
    border-color: rgba(23, 105, 255, 0.34);
    background:
        radial-gradient(circle at 20% -4%, rgba(23, 105, 255, 0.2), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 255, 0.88));
}

.cinematic-site .buyer-package-card > span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #1769ff;
    font-size: 12px;
    font-weight: 950;
    background: rgba(23, 105, 255, 0.1);
}

.cinematic-site .buyer-package-card strong {
    display: block;
    margin-top: 22px;
    color: #07111f;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.08;
}

.cinematic-site .buyer-package-card p {
    margin: 14px 0 18px;
    color: #1769ff;
    font-size: 17px;
    font-weight: 950;
}

.cinematic-site .buyer-package-card ul {
    display: grid;
    gap: 12px;
    min-height: 150px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cinematic-site .buyer-package-card li {
    position: relative;
    padding-left: 22px;
    color: #40536a;
    font-size: 14px;
    line-height: 1.45;
}

.cinematic-site .buyer-package-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1769ff;
    box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.cinematic-site .buyer-package-card .package-select-button {
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
    background: linear-gradient(135deg, #1769ff, #09a9ff);
    box-shadow: 0 18px 44px rgba(23, 105, 255, 0.22);
    cursor: pointer;
}

.cinematic-site .package-upgrade-path {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.45fr auto;
    align-items: center;
    gap: clamp(18px, 2.6vw, 36px);
    max-width: 1320px;
    margin: clamp(22px, 3vw, 38px) auto 0;
    padding: clamp(18px, 2.4vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 20%, rgba(23, 105, 255, 0.13), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(21, 219, 132, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.88));
    box-shadow: 0 24px 70px rgba(31, 84, 132, 0.12);
}

.cinematic-site .package-upgrade-path::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 0;
    width: 42%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    opacity: 0.72;
    transform: translateX(-120%);
    animation: buyer-scanline 8.4s ease-in-out infinite;
}

.cinematic-site .package-upgrade-path span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(23, 105, 255, 0.1);
    color: #075eb8;
    font-size: 12px;
    font-weight: 950;
}

.cinematic-site .package-upgrade-path strong {
    position: relative;
    z-index: 1;
    color: #07111f;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.12;
}

.cinematic-site .package-upgrade-path p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #40536a;
    font-size: 15px;
    line-height: 1.68;
}

.cinematic-site .package-upgrade-path a,
.cinematic-site .product-oem-entry a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(135deg, #1769ff, #09a9ff);
    box-shadow: 0 18px 44px rgba(23, 105, 255, 0.22);
}

.cinematic-site .cinema-story-platform .story-copy > p,
.cinematic-site .cinema-story-platform .story-copy > ul li {
    color: #40536a;
}

/* Direction 3 readability hardening: keep light sections dark enough and dark cards readable in every language. */
.cinematic-site .cinema-story-platform .story-copy > p,
.cinematic-site .cinema-story-platform .story-copy > ul li,
.cinematic-site .cinema-story-hardware .story-copy > p,
.cinematic-site .cinema-contact p,
.cinematic-site .buyer-package-head p,
.cinematic-site .buyer-entry-line small,
.cinematic-site .journey-steps p {
    color: #40536a;
}

.cinematic-site .journey-panel-head span,
.cinematic-site .buyer-package-head span,
.cinematic-site .buyer-package-card > span,
.cinematic-site .buyer-package-card p,
.cinematic-site .product-matrix span,
.cinematic-site .venue-economics span,
.cinematic-site .proof-readiness span,
.cinematic-site .journey-status span {
    color: #075eb8;
}

.cinematic-site .buyer-package-card > span,
.cinematic-site .journey-steps span,
.cinematic-site .journey-status span {
    background: rgba(7, 94, 184, 0.11);
}

.cinematic-site .operator-copy h2,
.cinematic-site .case-intelligence-copy h2,
.cinematic-site .wide-copy h2 {
    text-wrap: balance;
}

.cinematic-site .operator-copy > p,
.cinematic-site .case-intelligence-copy p,
.cinematic-site .case-route-copy p,
.cinematic-site .case-payment-panel p,
.cinematic-site .case-note,
.cinematic-site .wide-copy p {
    color: rgba(226, 237, 248, 0.86);
}

.cinematic-site .cinema-products .wide-copy p,
.cinematic-site .cinema-venues .wide-copy p,
.cinematic-site .buyer-package-head p {
    color: #40536a;
}

.cinematic-site .operator-data-points span,
.cinematic-site .operator-window-bar em,
.cinematic-site .operator-float span,
.cinematic-site .case-metrics span,
.cinematic-site .case-feed article p,
.cinematic-site .case-signal-card span,
.cinematic-site .case-phone-preview figcaption span,
.cinematic-site .case-route-matrix span,
.cinematic-site .case-route-matrix a,
.cinematic-site .case-payment-panel em,
.cinematic-site .case-oracle-core p,
.cinematic-site .method-grid p,
.cinematic-site .venue-grid p,
.cinematic-site .delivery-rail p {
    color: rgba(226, 237, 248, 0.82);
}

.cinematic-site .method-grid span,
.cinematic-site .venue-grid span,
.cinematic-site .delivery-rail span,
.cinematic-site .operator-data-points span,
.cinematic-site .case-feed article span,
.cinematic-site .case-route-copy > span,
.cinematic-site .case-payment-panel > span,
.cinematic-site .case-oracle-core span,
.cinematic-site .case-intelligence-copy > span {
    color: #7dd3fc;
}

.cinematic-site .operator-data-points p,
.cinematic-site .operator-float span,
.cinematic-site .delivery-rail p,
.cinematic-site .venue-grid p,
.cinematic-site .method-grid p {
    color: #dbeafe;
}

.cinematic-site .operator-data-points article,
.cinematic-site .case-metrics article,
.cinematic-site .case-feed article,
.cinematic-site .case-signal-card,
.cinematic-site .case-route-matrix article,
.cinematic-site .delivery-rail article,
.cinematic-site .venue-grid article,
.cinematic-site .method-grid article {
    border-color: rgba(125, 211, 252, 0.22);
}

.cinematic-site .market-readiness-list p.is-active b,
.cinematic-site .market-readiness-list p.is-active span {
    color: #ffffff;
}

.cinematic-site .contact-cards a {
    max-width: min(100%, 520px);
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
}

.cinematic-site.contact-in-view .floating-action-stack {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
}

.cinematic-site .package-process-section {
    margin-top: 0;
}

.cinematic-site .package-process-section .packages-header,
.cinematic-site .package-process-section .package-grid {
    display: none;
}

.mobile-conversion-bar {
    display: none;
}

.cinematic-site .floating-action-stack {
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cinematic-site.mobile-floating-ready .floating-action-stack {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cinematic-site.mobile-floating-ready.contact-in-view .floating-action-stack,
.cinematic-site.contact-in-view .floating-action-stack {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
    .cinematic-site .buyer-orbit span,
    .cinematic-site .journey-steps article::after,
    .cinematic-site .buyer-package-card::after,
    .cinematic-site .package-upgrade-path::after {
        animation: none;
    }
}

@media (max-width: 1180px) {
    .cinematic-site .cinema-hero.cinema-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 112px;
    }

    .cinematic-site .cinema-hero-copy {
        max-width: 900px;
    }

    .cinematic-site .buyer-journey-stage {
        min-height: 620px;
    }

    .cinematic-site .buyer-package-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .cinematic-site .buyer-package-card.package-card-featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .cinematic-site .cinema-hero.cinema-panel {
        padding: 92px 18px 38px;
        gap: 26px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.9));
    }

    .cinematic-site .cinema-hero h1 {
        font-size: clamp(38px, 10.2vw, 52px);
        line-height: 1.02;
    }

    .cinematic-site .cinema-hero-copy > p {
        color: #22334a;
        font-size: 16px;
        line-height: 1.62;
    }

    .cinematic-site .cinema-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .cinematic-site .cinema-hero-actions .cinema-button {
        width: 100%;
        justify-content: center;
    }

    .cinematic-site .buyer-entry-line {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .cinematic-site .buyer-entry-line span {
        min-height: auto;
        padding: 16px;
    }

    .cinematic-site .buyer-journey-stage {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 12px;
        border-radius: 28px;
    }

    .cinematic-site .journey-visual-card {
        min-height: 330px;
        border-radius: 24px;
    }

    .cinematic-site .buyer-journey-stage .hero-device-main {
        width: min(112%, 420px);
        max-height: 288px;
    }

    .cinematic-site .journey-status {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .cinematic-site .journey-status strong {
        text-align: left;
    }

    .cinematic-site .buyer-journey-panel {
        padding: 18px;
        border-radius: 24px;
    }

    .cinematic-site .journey-panel-head strong {
        font-size: 28px;
    }

    .cinematic-site .journey-steps {
        grid-template-columns: 1fr;
    }

    .cinematic-site .journey-steps article {
        min-height: auto;
    }

    .cinematic-site .hero-proof-dock {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 12px;
        border-radius: 22px;
    }

    .cinematic-site .buyer-package-preview {
        padding: 56px 18px 70px;
    }

    .cinematic-site .buyer-package-head {
        text-align: left;
    }

    .cinematic-site .buyer-package-head h2 {
        font-size: clamp(34px, 9.6vw, 48px);
    }

    .cinematic-site .buyer-package-head p {
        margin: 0;
        font-size: 15px;
    }

    .cinematic-site .buyer-package-card {
        min-height: auto;
        padding: 22px;
        border-radius: 24px;
    }

    .cinematic-site .package-process-section .package-flow {
        grid-template-columns: 1fr;
    }

    .cinematic-site .floating-action-stack {
        right: 14px;
        bottom: 96px;
    }

    .cinematic-site .floating-contact,
    .cinematic-site .scroll-jumpers {
        display: none;
    }

    .cinematic-site.nav-open .floating-action-stack,
    .cinematic-site.nav-open .mobile-conversion-bar {
        display: none;
    }

    .mobile-conversion-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 92;
        display: grid;
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
        gap: 10px;
        padding: 10px;
        border: 1px solid rgba(23, 105, 255, 0.14);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(20px);
        box-shadow: 0 18px 52px rgba(17, 64, 112, 0.18);
    }

    .mobile-conversion-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 12px;
        border-radius: 16px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 950;
        text-decoration: none;
        background: linear-gradient(135deg, #1769ff, #09a9ff);
    }

    .mobile-conversion-bar a:nth-child(2) {
        color: #0d2748;
        border: 1px solid rgba(23, 105, 255, 0.16);
        background: rgba(239, 248, 255, 0.95);
    }

    .cinematic-site {
        padding-bottom: 82px;
    }
}

/* Homepage hero breathing-room pass: make the first screen feel wider and more product-led. */
.cinematic-site .cinema-hero.cinema-panel {
    grid-template-columns: minmax(360px, 0.66fr) minmax(720px, 1.34fr);
    gap: clamp(32px, 4vw, 78px);
}

.cinematic-site .cinema-hero-copy {
    max-width: 690px;
}

.cinematic-site .cinema-hero h1 {
    max-width: 680px;
    font-size: clamp(40px, 3.78vw, 60px);
}

.cinematic-site .cinema-hero-copy > p {
    max-width: 590px;
}

.cinematic-site .buyer-entry-line {
    width: min(580px, 100%);
    gap: 10px;
    margin-top: 28px;
}

.cinematic-site .buyer-entry-line span {
    min-height: 94px;
    padding: 16px;
}

.cinematic-site .buyer-journey-stage {
    grid-template-columns: minmax(520px, 1.2fr) minmax(320px, 0.8fr);
    gap: clamp(16px, 1.8vw, 24px);
    min-height: clamp(620px, 58vw, 760px);
    padding: clamp(18px, 1.7vw, 28px);
}

.cinematic-site .journey-visual-card {
    min-height: clamp(540px, 50vw, 690px);
}

.cinematic-site .buyer-journey-stage .hero-device-main {
    width: min(124%, 780px);
    max-height: 650px;
}

.cinematic-site .buyer-journey-panel {
    align-content: center;
    gap: 16px;
    padding: clamp(18px, 1.8vw, 26px);
}

.cinematic-site .journey-panel-head {
    gap: 8px;
}

.cinematic-site .journey-panel-head strong {
    font-size: clamp(26px, 2vw, 38px);
}

.cinematic-site .journey-steps {
    grid-template-columns: 1fr;
    gap: 10px;
}

.cinematic-site .journey-steps article {
    min-height: auto;
    padding: 14px 16px 14px 58px;
}

.cinematic-site .journey-steps span {
    position: absolute;
    left: 16px;
    top: 14px;
    width: 30px;
    height: 30px;
    margin: 0;
    border-radius: 10px;
}

.cinematic-site .journey-steps strong {
    font-size: 16px;
}

.cinematic-site .journey-steps p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.42;
}

@media (max-width: 1180px) {
    .cinematic-site .cinema-hero.cinema-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cinematic-site .cinema-hero-copy {
        max-width: 920px;
    }

    .cinematic-site .buyer-journey-stage {
        grid-template-columns: minmax(420px, 1.08fr) minmax(300px, 0.92fr);
        min-height: clamp(520px, 62vw, 650px);
    }

    .cinematic-site .journey-visual-card {
        min-height: clamp(420px, 52vw, 560px);
    }

    .cinematic-site .buyer-journey-stage .hero-device-main {
        width: min(112%, 680px);
        max-height: 520px;
    }
}

@media (max-width: 760px) {
    .cinematic-site .cinema-hero.cinema-panel {
        padding: 88px 18px 36px;
        gap: 18px;
    }

    .cinematic-site .cinema-hero h1 {
        font-size: clamp(36px, 9.2vw, 48px);
        line-height: 1.03;
    }

    .cinematic-site .cinema-hero-copy > p {
        font-size: 15px;
        line-height: 1.55;
    }

    .cinematic-site .cinema-hero-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .cinematic-site .cinema-hero-actions .cinema-button {
        min-height: 50px;
        padding: 0 12px;
        font-size: 13px;
    }

    .cinematic-site .buyer-entry-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }

    .cinematic-site .buyer-entry-line span {
        min-height: 60px;
        padding: 10px;
        border-radius: 18px;
    }

    .cinematic-site .buyer-entry-line b {
        font-size: 13px;
        line-height: 1.18;
    }

    .cinematic-site .buyer-entry-line small {
        display: none;
    }

    .cinematic-site .buyer-journey-stage {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 10px;
        border-radius: 28px;
    }

    .cinematic-site .journey-visual-card {
        min-height: clamp(360px, 74vw, 440px);
        border-radius: 24px;
    }

    .cinematic-site .buyer-journey-stage .hero-device-main {
        width: min(122vw, 650px);
        max-height: 390px;
    }

    .cinematic-site .journey-status {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-height: 54px;
        flex-direction: row;
        align-items: center;
    }

    .cinematic-site .journey-status strong {
        text-align: right;
        font-size: 12px;
    }

    .cinematic-site .buyer-journey-panel {
        padding: 16px;
        border-radius: 24px;
    }

    .cinematic-site .journey-panel-head strong {
        font-size: 24px;
    }

    .cinematic-site .journey-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cinematic-site .journey-steps article {
        padding: 12px;
    }

    .cinematic-site .journey-steps span {
        position: static;
        margin-bottom: 10px;
    }
}

@media (max-width: 520px) {
    .cinematic-site .cinema-hero-actions,
    .cinematic-site .buyer-entry-line,
    .cinematic-site .journey-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .cinematic-site .news-feature-card {
        grid-template-columns: 1fr;
    }

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

    .cinematic-site .news-date {
        display: flex;
        min-height: 96px;
        justify-content: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .cinematic-site .news-date strong {
        font-size: 52px;
    }
}

@media (max-width: 640px) {
    .cinematic-site .news-head h2 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .cinematic-site .news-feature-card {
        border-radius: 22px;
        padding: 18px;
    }

    .cinematic-site .news-body h3 {
        font-size: 28px;
    }

    .cinematic-site .news-signal-grid p {
        padding: 16px;
    }

    .news-page .news-article-visual img {
        height: clamp(240px, 72vw, 380px);
    }
}

/* Desktop English hero balance: avoid left-heavy title columns and low visual cards. */
@media (min-width: 1181px) {
    .cinematic-site .cinema-hero.cinema-panel {
        grid-template-columns: minmax(430px, 0.72fr) minmax(800px, 1.28fr);
        align-items: start;
        gap: clamp(28px, 2.8vw, 48px);
        padding-top: clamp(96px, 10vh, 128px);
    }

    .cinematic-site .cinema-hero-stage,
    .cinematic-site .buyer-journey-stage {
        grid-template-columns: minmax(0, 1.42fr) minmax(270px, 0.58fr);
        align-self: start;
        min-height: clamp(540px, 43vw, 640px);
        margin-top: 0;
    }

    .cinematic-site .journey-visual-card {
        min-height: clamp(480px, 39vw, 590px);
    }

    .cinematic-site .buyer-journey-stage .hero-device-main {
        width: min(132%, 860px);
        max-height: 560px;
        object-position: center 38%;
        transform: translateY(-10%);
    }

    .cinematic-site .buyer-journey-panel {
        padding: clamp(18px, 1.45vw, 24px);
    }

    html[lang^="en"] .cinematic-site .cinema-hero h1 {
        max-width: 520px;
        font-size: clamp(38px, 2.8vw, 44px);
        line-height: 1.035;
    }

    html[lang^="en"] .cinematic-site .cinema-hero-copy > p {
        max-width: 540px;
        font-size: clamp(17px, 1.12vw, 19px);
        line-height: 1.48;
    }
}

/* Final CTA contrast pass: blue buttons must read as primary actions. */
.cinematic-site .cinema-button:not(.cinema-button-ghost),
.cinematic-site .cinema-hero-actions .cinema-button:not(.cinema-button-ghost),
.cinematic-site .package-select-button,
.cinematic-site .buyer-package-card .package-select-button,
.cinematic-site .cinema-form button[type="submit"],
.mobile-conversion-bar a:first-child {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    font-weight: 950;
    text-shadow: 0 1px 8px rgba(0, 26, 82, 0.22);
}

.cinematic-site .cinema-button:not(.cinema-button-ghost):hover,
.cinematic-site .cinema-hero-actions .cinema-button:not(.cinema-button-ghost):hover {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.cinematic-site .cinema-button-ghost,
.mobile-conversion-bar a:nth-child(2) {
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

/* Language landing hero: fill the desktop right side with product proof instead of an empty CTA rail. */
.language-root-page .resource-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    align-items: center;
    gap: clamp(34px, 4.6vw, 84px);
}

.language-root-page .resource-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 5.5vw, 86px);
    line-height: 0.98;
}

.language-root-page .resource-hero p {
    max-width: 720px;
}

.language-hero-visual {
    display: grid;
    gap: 18px;
    align-self: stretch;
    align-content: center;
    min-height: clamp(520px, 44vw, 650px);
}

.language-hero-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(320px, 30vw, 460px);
    overflow: hidden;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(23, 105, 255, 0.12), transparent 42%),
        radial-gradient(circle at 80% 18%, rgba(37, 211, 102, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 246, 255, 0.78));
    box-shadow: 0 34px 86px rgba(23, 71, 122, 0.16);
}

.language-hero-media::before,
.language-hero-media::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.language-hero-media::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.88)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), transparent 22%, transparent 78%, rgba(241, 248, 255, 0.82));
    z-index: 1;
}

.language-hero-media::after {
    inset: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    z-index: 2;
}

.language-hero-media img {
    position: relative;
    z-index: 3;
    width: min(108%, 760px);
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 34px 52px rgba(31, 84, 132, 0.22));
}

.language-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.language-hero-proof span {
    min-height: 46px;
    justify-content: center;
    padding: 0 12px;
    border-radius: 18px;
    color: #0b4cbd;
    font-size: clamp(11px, 0.82vw, 13px);
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(23, 105, 255, 0.12), 0 14px 34px rgba(23, 71, 122, 0.08);
}

.language-hero-visual .resource-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.language-hero-visual .cinema-button {
    width: 100%;
    min-height: 56px;
}

html[dir="rtl"] .language-hero-media img {
    transform: scaleX(-1);
}

@media (max-width: 1180px) {
    .language-root-page .resource-hero {
        grid-template-columns: 1fr;
    }

    .language-hero-visual {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .language-root-page .resource-hero h1 {
        font-size: clamp(34px, 10vw, 50px);
    }

    .language-hero-media {
        min-height: 280px;
        border-radius: 24px;
    }

    .language-hero-proof,
    .language-hero-visual .resource-hero-actions {
        grid-template-columns: 1fr;
    }
}

/* Homepage left-column balance: give the pilot path enough weight without adding SEO headings. */
@media (min-width: 1181px) {
    .cinematic-site .cinema-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: clamp(560px, 42vw, 640px);
    }

    .cinematic-site .buyer-entry-line {
        grid-template-columns: 1fr;
        width: min(620px, 100%);
        gap: 10px;
        margin-top: clamp(26px, 3.2vh, 38px);
        padding: 12px;
        border: 1px solid rgba(23, 105, 255, 0.14);
        border-radius: 28px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 247, 255, 0.68)),
            radial-gradient(circle at 12% 12%, rgba(23, 105, 255, 0.1), transparent 42%);
        box-shadow: 0 26px 64px rgba(31, 84, 132, 0.11);
    }

    .cinematic-site .buyer-entry-line span {
        position: relative;
        min-height: 74px;
        align-content: center;
        gap: 6px;
        padding: 14px 18px 14px 66px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        text-align: left;
    }

    .cinematic-site .buyer-entry-line span::before {
        content: "01";
        position: absolute;
        left: 18px;
        top: 50%;
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 12px;
        color: #0f6cff;
        font-size: 12px;
        font-weight: 950;
        background: linear-gradient(180deg, #eef5ff, #dceaff);
        transform: translateY(-50%);
    }

    .cinematic-site .buyer-entry-line span:nth-child(2)::before {
        content: "02";
    }

    .cinematic-site .buyer-entry-line span:nth-child(3)::before {
        content: "03";
    }

    .cinematic-site .buyer-entry-line span:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 35px;
        bottom: -12px;
        width: 1px;
        height: 12px;
        background: linear-gradient(180deg, rgba(23, 105, 255, 0.28), rgba(23, 105, 255, 0));
    }

    .cinematic-site .buyer-entry-line b {
        color: #081326;
        font-size: 17px;
        line-height: 1.18;
    }

    .cinematic-site .buyer-entry-line small {
        color: #42546d;
        font-size: 13px;
        line-height: 1.38;
    }
}

/* V3 anchor alignment: fixed header plus generous section padding should not leave a blank band after menu jumps. */
html {
    scroll-padding-top: var(--anchor-offset);
}

[id],
.cinematic-site section,
.technology-v2-page section {
    scroll-margin-top: var(--anchor-offset);
}

@media (max-width: 760px) {
    :root {
        --anchor-offset: 74px;
    }
}

/* Compact multilingual picker: default follows the browser, manual choices persist. */
.cinematic-site .language-switch.is-enhanced,
.language-switch.is-enhanced {
    position: relative;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 92px;
    max-width: none;
    height: 40px;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(91, 122, 164, 0.22);
    border-radius: 999px;
    background: rgba(246, 251, 255, 0.9);
    box-shadow:
        0 14px 34px rgba(23, 105, 255, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.cinematic-site .language-switch.is-enhanced::before,
.language-switch.is-enhanced::before {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 90;
    display: block;
    width: max(100%, 174px);
    height: 14px;
    background: transparent;
}

.language-current {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    padding: 0 36px 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(23, 105, 255, 0.96), rgba(43, 148, 255, 0.92));
    color: #ffffff;
    font: inherit;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.22);
}

.language-current [data-language-current-label] {
    display: inline-block;
    min-width: 32px;
    text-align: center;
}

.language-current::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-66%) rotate(45deg);
    transition: transform 0.22s ease;
}

.language-switch.open .language-current::after,
.language-switch:focus-within .language-current::after,
.language-switch:hover .language-current::after {
    transform: translateY(-30%) rotate(225deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 120;
    display: grid;
    min-width: 174px;
    padding: 7px;
    border: 1px solid rgba(91, 122, 164, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.97));
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.language-switch.open .language-menu,
.language-switch:hover .language-menu,
.language-switch:focus-within .language-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cinematic-site .language-switch.is-enhanced .language-menu button,
.cinematic-site .language-switch.is-enhanced .language-menu a,
.language-switch.is-enhanced .language-menu button,
.language-switch.is-enhanced .language-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #41516a;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    transform: none;
}

.cinematic-site .language-switch.is-enhanced .language-menu button:hover,
.cinematic-site .language-switch.is-enhanced .language-menu a:hover,
.language-switch.is-enhanced .language-menu button:hover,
.language-switch.is-enhanced .language-menu a:hover {
    background: rgba(23, 105, 255, 0.08);
    color: #0b1220;
    transform: none;
}

.cinematic-site .language-switch.is-enhanced .language-menu button.active,
.cinematic-site .language-switch.is-enhanced .language-menu a.active,
.language-switch.is-enhanced .language-menu button.active,
.language-switch.is-enhanced .language-menu a.active {
    background: linear-gradient(135deg, rgba(23, 105, 255, 0.14), rgba(125, 211, 252, 0.18));
    color: #075fd7;
    box-shadow: none;
}

.cinematic-site .language-switch.is-enhanced .language-menu button.active::after,
.cinematic-site .language-switch.is-enhanced .language-menu a.active::after,
.language-switch.is-enhanced .language-menu button.active::after,
.language-switch.is-enhanced .language-menu a.active::after {
    display: none;
}

@media (max-width: 720px) {
    .cinematic-site .language-switch.is-enhanced,
    .language-switch.is-enhanced {
        min-width: 84px;
        height: 36px;
    }

    .language-current {
        min-width: 84px;
        height: 34px;
        padding: 0 32px 0 14px;
        font-size: 11px;
    }

    .language-current::after {
        right: 14px;
        width: 6px;
        height: 6px;
    }

    .language-menu {
        right: -4px;
        min-width: 150px;
    }

    .cinematic-site .language-switch.is-enhanced::before,
    .language-switch.is-enhanced::before {
        right: -4px;
        width: max(100%, 150px);
    }
}

@media (max-width: 980px) {
    .cinematic-site .homepage-resource-entry {
        grid-template-columns: 1fr;
    }

    .cinematic-site .homepage-resource-grid,
    .news-page .news-related-grid {
        grid-template-columns: 1fr;
    }

    .news-page .news-article-navigation,
    .language-local-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* OEM / ODM FAQ polish: keep the 2x2 structure, but give each answer real breathing room. */
.oem-odm-page .oem-faq {
    padding-top: clamp(84px, 7vw, 124px);
    padding-bottom: clamp(88px, 8vw, 132px);
}

.oem-odm-page .oem-faq-grid {
    width: min(1420px, calc(100% - clamp(40px, 7vw, 128px)));
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 34px);
}

.oem-odm-page .oem-faq-grid article {
    position: relative;
    min-height: clamp(245px, 16vw, 315px);
    justify-content: flex-start;
    gap: clamp(16px, 1.5vw, 22px);
    overflow: hidden;
    padding: clamp(42px, 3.8vw, 62px) clamp(42px, 4.2vw, 70px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 255, 0.9)),
        radial-gradient(circle at 90% 0%, rgba(23, 105, 255, 0.11), transparent 34%);
    box-shadow:
        0 26px 76px rgba(23, 71, 122, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.oem-odm-page .oem-faq-grid article::before {
    content: "";
    position: absolute;
    top: clamp(26px, 2.4vw, 36px);
    left: clamp(26px, 2.4vw, 36px);
    width: 6px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1769ff, #20d38b);
    box-shadow: 0 12px 28px rgba(23, 105, 255, 0.18);
}

.oem-odm-page .oem-faq-grid h3,
.oem-odm-page .oem-faq-grid p {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.oem-odm-page .oem-faq-grid h3 {
    margin: 0;
    padding-left: clamp(22px, 2vw, 30px);
    font-size: clamp(28px, 2.2vw, 39px);
    line-height: 1.12;
}

.oem-odm-page .oem-faq-grid p {
    width: min(100%, 760px);
    margin: 0;
    padding-left: clamp(22px, 2vw, 30px);
    color: #43536c;
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.75;
}

@media (max-width: 980px) {
    .oem-odm-page .oem-faq-grid {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
    }

    .oem-odm-page .oem-faq-grid article {
        min-height: 0;
        padding: 34px 28px 36px;
    }

    .oem-odm-page .oem-faq-grid article::before {
        top: 28px;
        left: 22px;
        height: 36px;
    }
}

.oem-odm-page .oem-contact {
    min-height: auto;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
    padding: clamp(92px, 8vw, 138px) clamp(26px, 5vw, 86px);
    border-top: 1px solid rgba(91, 122, 164, 0.12);
}

.oem-odm-page .oem-contact .contact-copy {
    max-width: 760px;
}

.oem-odm-page .oem-contact .contact-copy h2 {
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.02;
}

.oem-odm-page .oem-contact .contact-copy p {
    max-width: 680px;
}

.oem-odm-page .oem-contact .quote-form {
    width: min(100%, 620px);
    justify-self: end;
}

@media (max-width: 980px) {
    .oem-odm-page .oem-contact {
        grid-template-columns: 1fr;
        padding: 76px 18px;
    }

    .oem-odm-page .oem-contact .quote-form {
        width: 100%;
        justify-self: stretch;
    }
}

/* Mobile H5 compact pass + China contact channel. */
.hero-contact-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    max-width: 720px;
    margin-top: 16px;
}

.hero-contact-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(23, 105, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #16345f;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(23, 71, 122, 0.08);
}

.contact-form-stack {
    display: grid;
    gap: 16px;
    align-self: start;
}

.contact-form-stack .wechat-contact-card {
    max-width: 100%;
    margin: 0;
    justify-self: stretch;
}

.cinematic-site .cinema-contact .contact-cards {
    justify-content: flex-start;
}

.cinematic-site .cinema-contact .contact-side-channel {
    width: 100%;
    max-width: 640px;
    margin: 22px 0 0;
    grid-template-columns: minmax(0, 1fr) 132px;
}

.cinematic-site .cinema-contact .contact-side-channel img {
    width: 132px;
    height: 132px;
}

.wechat-contact-card p a {
    color: #1553c5;
    font-weight: 850;
    text-decoration: none;
}

.wechat-contact-card p a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .cinematic-site {
        padding-bottom: 72px;
    }

    .cinematic-site .cinema-header {
        min-height: 64px;
    }

    .cinematic-site .cinema-hero.cinema-panel,
    .cinematic-site .cinema-hero,
    .singapore-ad-page .singapore-hero {
        padding: 78px 14px 30px;
        gap: 16px;
        min-height: auto;
    }

    .cinematic-site .cinema-hero h1,
    .singapore-ad-page .singapore-hero h1 {
        font-size: clamp(30px, 8.8vw, 42px);
        line-height: 1.04;
        letter-spacing: 0;
    }

    .cinematic-site .cinema-hero-copy > p,
    .cinematic-site .cinema-hero-copy p,
    .singapore-ad-page .singapore-lead,
    .singapore-ad-page .audience-note {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .cinematic-site .cinema-hero-actions,
    .singapore-ad-page .singapore-hero-actions {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 16px;
    }

    .cinematic-site .cinema-button,
    .singapore-ad-page .cinema-button {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 13px;
    }

    .hero-contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 12px;
    }

    .hero-contact-strip a {
        min-height: 34px;
        justify-content: flex-start;
        padding: 0 12px;
        font-size: 12px;
    }

    .cinematic-site .buyer-entry-line,
    .cinematic-site .hero-route-line {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .cinematic-site .buyer-entry-line span,
    .cinematic-site .hero-route-line span {
        min-height: auto;
        padding: 12px;
        border-radius: 16px;
    }

    .cinematic-site .cinema-hero-stage,
    .cinematic-site .buyer-journey-stage {
        min-height: auto;
        padding: 10px;
        border-radius: 22px;
    }

    .cinematic-site .journey-visual-card {
        min-height: 240px;
    }

    .cinematic-site .buyer-journey-panel,
    .singapore-ad-page .singapore-offer-card,
    .singapore-ad-page .singapore-quick-form,
    .singapore-ad-page .singapore-trust-grid article,
    .singapore-ad-page .package-card,
    .singapore-ad-page .singapore-flow-lane article,
    .singapore-ad-page .singapore-included-grid article {
        padding: 16px;
        border-radius: 18px;
        box-shadow: 0 14px 34px rgba(23, 71, 122, 0.08);
    }

    .cinematic-site .journey-panel-head strong {
        font-size: 22px;
        line-height: 1.1;
    }

    .cinematic-site .journey-steps {
        gap: 8px;
    }

    .cinematic-site .journey-steps article {
        padding: 12px;
        border-radius: 16px;
    }

    .cinematic-site .cinema-story,
    .cinematic-site .cinema-contact,
    .cinematic-site .cinema-packages,
    .cinematic-site .buyer-package-preview,
    .singapore-ad-page .singapore-included-panel,
    .singapore-ad-page .singapore-trust-panel,
    .singapore-ad-page .singapore-package-section,
    .singapore-ad-page .singapore-operations-panel,
    .singapore-ad-page .singapore-hardware-panel,
    .singapore-ad-page .singapore-final-cta {
        padding: 42px 14px;
    }

    .cinematic-site .story-copy h2,
    .cinematic-site .cinema-contact h2,
    .singapore-ad-page .singapore-package-section .section-heading h2,
    .singapore-ad-page .singapore-final-cta h2,
    .singapore-ad-page .singapore-hardware-panel h2,
    .singapore-ad-page .singapore-included-panel h2,
    .singapore-ad-page .singapore-trust-panel h2 {
        font-size: clamp(26px, 7.8vw, 36px);
        line-height: 1.08;
    }

    .cinematic-site .story-copy p,
    .cinematic-site .cinema-contact p,
    .singapore-ad-page .singapore-package-section .section-heading p,
    .singapore-ad-page .singapore-final-cta p,
    .singapore-ad-page .singapore-hardware-panel p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .cinematic-site .quote-form,
    .cinematic-site .cinema-form {
        padding: 16px;
        border-radius: 20px;
    }

    .cinematic-site .quote-form label,
    .cinematic-site .cinema-form label {
        gap: 6px;
    }

    .cinematic-site .quote-form input,
    .cinematic-site .quote-form select,
    .cinematic-site .quote-form textarea,
    .cinematic-site .cinema-form input,
    .cinematic-site .cinema-form select,
    .cinematic-site .cinema-form textarea {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 14px;
        font-size: 13px;
    }

    .cinematic-site .cinema-form textarea,
    .cinematic-site .quote-form textarea {
        padding-top: 12px;
    }

    .wechat-contact-card,
    .contact-form-stack .wechat-contact-card,
    .cinematic-site .cinema-contact .contact-side-channel,
    .singapore-final-cta .wechat-contact-card {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 12px;
        max-width: 100%;
        padding: 12px;
        border-radius: 18px;
        text-align: left;
    }

    .wechat-contact-card span {
        font-size: 10px;
    }

    .wechat-contact-card strong {
        margin-top: 6px;
        font-size: 18px;
    }

    .wechat-contact-card p {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.42;
    }

    .wechat-contact-card img {
        width: 112px;
        height: 112px;
        border-radius: 14px;
    }

    .cinematic-site .cinema-contact .contact-side-channel {
        margin-top: 0;
    }

    .cinematic-site .cinema-contact .contact-side-channel img {
        width: 112px;
        height: 112px;
    }

    .cinematic-site .faq-list {
        gap: 10px;
    }

    .cinematic-site .faq-list details {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .cinematic-site .faq-list summary {
        font-size: 15px;
    }

    .cinematic-site .faq-list p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .cinematic-site .footer-main,
    .cinematic-site .footer-columns {
        gap: 18px;
    }

    .cinematic-site .footer-contact-row {
        gap: 8px;
    }

    .cinematic-site .footer-contact-row a {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .mobile-conversion-bar {
        grid-template-columns: 1.05fr 0.8fr 0.75fr;
        gap: 7px;
        padding: 8px;
        border-radius: 18px;
    }

    .mobile-conversion-bar a {
        min-height: 40px;
        padding: 0 8px;
        border-radius: 13px;
        font-size: 12px;
    }

    .mobile-conversion-bar a:first-child {
        background: linear-gradient(135deg, #19c463, #6ff0a5);
        color: #052012;
        -webkit-text-fill-color: #052012;
        text-shadow: none;
    }
}

@media (max-width: 390px) {
    .wechat-contact-card,
    .contact-form-stack .wechat-contact-card,
    .cinematic-site .cinema-contact .contact-side-channel,
    .singapore-final-cta .wechat-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wechat-contact-card img {
        justify-self: center;
    }
}

/* H5 hard gate fixes: keep the desktop composition intact while tightening mobile conversion flow. */
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .cinematic-site {
        padding-bottom: 24px !important;
    }

    .cinematic-site .cinema-hero.cinema-panel {
        padding: 86px 18px 34px;
        gap: 20px;
    }

    .cinematic-site .cinema-hero h1 {
        font-size: clamp(30px, 8.4vw, 40px);
        line-height: 1.08;
    }

    .cinematic-site .cinema-hero-copy > p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .cinematic-site .cinema-hero-actions {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 18px;
    }

    .cinematic-site .cinema-hero-actions .cinema-button,
    .singapore-ad-page .singapore-hero-actions .cinema-button {
        min-height: 44px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 13px;
    }

    .cinematic-site .cinema-hero-actions .cinema-button-whatsapp,
    .singapore-ad-page .singapore-hero-actions .cinema-button-whatsapp,
    .hero-contact-strip {
        display: none !important;
    }

    .cinematic-site .cinema-hero-actions .cinema-button-ghost,
    .singapore-ad-page .singapore-hero-actions .cinema-button-ghost {
        color: #0d2748;
        border: 1px solid rgba(23, 105, 255, 0.18);
        background: rgba(255, 255, 255, 0.62);
        box-shadow: none;
    }

    .cinematic-site .buyer-entry-line,
    .cinematic-site .hero-route-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 12px;
    }

    .cinematic-site .buyer-entry-line span,
    .cinematic-site .hero-route-line span {
        display: grid;
        min-height: 44px;
        align-items: center;
        justify-items: center;
        padding: 8px 5px;
        border-radius: 14px;
        text-align: center;
        box-shadow: none;
    }

    .cinematic-site .buyer-entry-line b,
    .cinematic-site .hero-route-line b {
        font-size: 12px;
        line-height: 1.18;
        word-break: keep-all;
    }

    .cinematic-site .buyer-entry-line small,
    .cinematic-site .hero-route-line small {
        display: none;
    }

    .cinematic-site .buyer-journey-stage {
        padding: 10px;
        border-radius: 22px;
    }

    .cinematic-site .journey-visual-card {
        min-height: clamp(260px, 72vw, 330px);
        border-radius: 20px;
    }

    .cinematic-site .buyer-journey-stage .hero-device-main,
    .cinematic-site .journey-visual-card .hero-device-main {
        left: 50% !important;
        right: auto !important;
        bottom: 8% !important;
        width: min(112vw, 540px) !important;
        max-height: 310px;
        object-fit: contain;
        object-position: center center;
        transform: translate3d(-55%, calc(var(--cinema-scroll, 0) * -8px), 0) !important;
    }

    .cinematic-site .journey-status {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-height: 42px;
        padding: 8px 12px;
        border-radius: 16px;
    }

    .cinematic-site .journey-status strong {
        font-size: 13px;
        line-height: 1.25;
    }

    .cinematic-site .homepage-resource-card-featured {
        display: none !important;
    }

    .cinematic-site .package-upgrade-path {
        grid-template-columns: 1fr;
        gap: 13px;
        min-height: auto;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .cinematic-site .package-upgrade-path::after {
        display: none;
    }

    .cinematic-site .package-upgrade-path span {
        max-width: 100%;
        min-height: 34px;
        justify-self: start;
        padding: 0 13px;
        white-space: normal;
    }

    .cinematic-site .package-upgrade-path strong {
        max-width: 100%;
        font-size: clamp(25px, 7.4vw, 34px);
        line-height: 1.12;
    }

    .cinematic-site .package-upgrade-path p {
        display: block;
        font-size: 14px;
        line-height: 1.5;
    }

    .cinematic-site .package-upgrade-path a {
        width: 100%;
        min-height: 44px;
        white-space: normal;
    }

    .mobile-conversion-bar {
        display: none !important;
    }

    .cinematic-site .floating-action-stack,
    .cinematic-site.mobile-floating-ready .floating-action-stack,
    .cinematic-site.mobile-floating-ready.contact-in-view .floating-action-stack,
    .cinematic-site.contact-in-view .floating-action-stack {
        position: fixed;
        top: auto;
        right: 16px;
        bottom: max(78px, calc(env(safe-area-inset-bottom) + 70px));
        z-index: 94;
        display: grid;
        gap: 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .cinematic-site .floating-contact,
    .cinematic-site .scroll-jumpers {
        display: none !important;
    }

    .whatsapp-fab {
        width: 58px;
        height: 58px;
        animation-duration: 5.2s;
    }

    .whatsapp-fab::before {
        inset: -7px;
    }

    .whatsapp-fab svg {
        width: 34px;
        height: 34px;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .singapore-ad-page .singapore-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 94px;
    }

    .singapore-ad-page .singapore-hero h1 {
        font-size: clamp(31px, 8.5vw, 42px);
        line-height: 1.08;
    }

    .singapore-ad-page .singapore-lead,
    .singapore-ad-page .audience-note {
        font-size: 14px;
        line-height: 1.5;
    }

    .singapore-ad-page .singapore-quick-form {
        padding: 16px;
        border-radius: 18px;
    }

    .cinematic-site .quote-form input,
    .cinematic-site .quote-form select,
    .cinematic-site .quote-form textarea,
    .cinematic-site .cinema-form input,
    .cinematic-site .cinema-form select,
    .cinematic-site .cinema-form textarea,
    .cinematic-site .quote-form button,
    .cinematic-site .cinema-form button {
        min-height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .cinematic-site .buyer-entry-line,
    .cinematic-site .hero-route-line {
        gap: 5px;
    }

    .cinematic-site .buyer-entry-line b,
    .cinematic-site .hero-route-line b {
        font-size: 11px;
    }

    .cinematic-site .buyer-journey-stage .hero-device-main,
    .cinematic-site .journey-visual-card .hero-device-main {
        width: min(116vw, 500px) !important;
        transform: translate3d(-56%, calc(var(--cinema-scroll, 0) * -8px), 0) !important;
    }
}

/* Paid-search pages must be readable and actionable from the first frame. */
body.paid-search-market-page [data-reveal],
body.paid-search-market-page [data-reveal].revealed,
html.motion-ready body.paid-search-market-page [data-reveal],
html.motion-ready body.paid-search-market-page [data-reveal].revealed {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
}

body.cookie-consent-open .floating-action-stack {
    display: none !important;
}

@media (max-width: 760px) {
    body.landing-form-in-view .floating-action-stack {
        display: none !important;
    }

    .paid-search-market-page .language-switch.is-enhanced,
    .paid-search-market-page .language-switch.is-enhanced > .language-current,
    .paid-search-market-page .cinema-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        height: 44px;
    }

    .paid-search-market-page .cinema-menu-toggle {
        width: 44px;
        flex: 0 0 44px;
        padding: 0;
    }

    .paid-search-market-page .language-switch.is-enhanced > .language-current {
        padding-top: 0;
        padding-bottom: 0;
    }

    .paid-search-market-page .singapore-offer-card {
        display: none !important;
    }

    .paid-search-market-page .cookie-consent-copy span {
        display: none;
    }

    .paid-search-market-page .cookie-consent-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .paid-search-market-page .cookie-link-button {
        grid-column: auto;
        justify-self: stretch;
    }

    .paid-search-market-page .cookie-consent-actions button {
        min-width: 0;
        min-height: 44px;
        height: auto;
        padding: 5px 7px;
        line-height: 1.12;
        white-space: normal;
    }

    .paid-search-market-page .cookie-close-button {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}
