:root {
    --bg: #0b1220;
    --bg-2: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.28);
    --text: #f8fafc;
    --muted: #a7b3c7;
    --soft: #dbeafe;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --cyan: #22d3ee;
    --green: #34d399;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --glow: 0 20px 70px rgba(59, 130, 246, 0.24);
    --radius: 16px;
    --radius-sm: 12px;
    --header-h: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(15, 23, 42, 0.98)),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open,
body.video-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.container.narrow {
    width: min(880px, calc(100% - 40px));
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-muted {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(11, 18, 32, 0.74)),
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.08), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(52, 211, 153, 0.07), transparent 32%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    font-size: 68px;
    font-weight: 800;
}

h2 {
    font-size: 44px;
    font-weight: 800;
}

h3 {
    font-size: 24px;
    font-weight: 750;
}

p {
    margin: 0;
    color: var(--muted);
}

.lead {
    color: var(--soft);
    font-size: 18px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-head p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 750;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 14px 40px rgba(59, 130, 246, 0.28);
}

.btn-gradient:hover,
.btn-gradient:focus-visible {
    box-shadow: 0 20px 64px rgba(139, 92, 246, 0.34);
}

.btn-outline {
    background: rgba(15, 23, 42, 0.34);
    border-color: var(--line-strong);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: rgba(59, 130, 246, 0.62);
    box-shadow: var(--glow);
}

.btn-light {
    background: #f8fafc;
    color: #0f172a;
}

.btn-small {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--cyan);
    font-weight: 750;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(11, 18, 32, 0.82);
    border-bottom-color: rgba(148, 163, 184, 0.16);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 145px;
    height: auto;
}

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

.nav-item {
    position: relative;
}

.primary-nav > a,
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.82);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease, background 0.3s ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active,
.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    z-index: 20;
    width: max-content;
    min-width: 260px;
    max-width: 330px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(11, 18, 32, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-menu a {
    display: block;
    padding: 9px 11px;
    border-radius: 10px;
    color: rgba(248, 250, 252, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 36px) 0 118px;
    isolation: isolate;
}

.hero-bg,
.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg img {
    opacity: 0.32;
    filter: saturate(1.05) contrast(1.05);
}

.hero-bg video {
    opacity: 1;
    filter: saturate(1.04) contrast(1.03);
}

.hero-bg::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(11, 18, 32, 0.94), rgba(11, 18, 32, 0.62) 52%, rgba(15, 23, 42, 0.86)),
        linear-gradient(180deg, rgba(11, 18, 32, 0.2), rgba(11, 18, 32, 0.96));
}

.hero .hero-bg::after {
    background:
        linear-gradient(90deg, rgba(11, 18, 32, 0.88), rgba(11, 18, 32, 0.34) 58%, rgba(15, 23, 42, 0.74)),
        linear-gradient(180deg, rgba(11, 18, 32, 0.12), rgba(11, 18, 32, 0.88));
}

.mesh {
    position: absolute;
    z-index: 2;
    width: 54%;
    height: 52%;
    border: 1px solid rgba(59, 130, 246, 0.16);
    transform: skewY(-8deg);
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.08)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 44px);
    clip-path: polygon(0 18%, 100% 0, 86% 82%, 16% 100%);
    opacity: 0.52;
    animation: meshDrift 13s ease-in-out infinite alternate;
}

.mesh-one {
    right: -15%;
    top: 8%;
}

.mesh-two {
    left: -22%;
    bottom: 0;
    animation-delay: -4s;
}

.shape {
    position: absolute;
    z-index: 3;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(34, 211, 238, 0.42);
    opacity: 0.42;
    transform: rotate(16deg);
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-one {
    right: 16%;
    top: 28%;
}

.shape-two {
    right: 35%;
    bottom: 18%;
    width: 44px;
    height: 44px;
    border-color: rgba(139, 92, 246, 0.5);
    animation-delay: -3s;
}

.shape-three {
    left: 8%;
    bottom: 22%;
    width: 56px;
    height: 56px;
    border-color: rgba(52, 211, 153, 0.42);
    animation-delay: -5s;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-subtitle {
    max-width: 720px;
    margin-top: 24px;
    font-size: 20px;
    color: #dbeafe;
}

.hero-statement {
    max-width: 620px;
    margin-top: 14px;
    font-size: 16px;
}

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

.video-showcase {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.video-showcase > span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.video-play {
    position: relative;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--blue);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.28);
    cursor: pointer;
    isolation: isolate;
}

.video-play::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(34, 211, 238, 0.22));
}

.video-play:hover,
.video-play:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 28px 76px rgba(34, 211, 238, 0.34);
}

.video-ring {
    position: absolute;
    inset: 0;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    animation: videoPulse 2.2s linear infinite;
}

.video-ring.ring-two {
    animation-delay: 1.1s;
}

.play-mark {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid currentColor;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(12px);
}

.video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    overflow: hidden;
    background: #020617;
    box-shadow: var(--shadow);
}

.video-modal-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    cursor: pointer;
}

.video-modal-close::before,
.video-modal-close::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.video-modal-close::before {
    transform: rotate(45deg);
}

.video-modal-close::after {
    transform: rotate(-45deg);
}

.logo-strip {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 40px));
    margin: -60px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.logo-item {
    width: 176px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    flex: 0 0 auto;
    border-right: 1px solid var(--line);
}

.logo-item img {
    max-height: 38px;
    opacity: 0.82;
    filter: grayscale(0.2) brightness(1.15);
}

.logo-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

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

.glass-card,
.pricing-card,
.solution-card,
.industry-card,
.principle-card,
.project-card,
.contact-panel,
.contact-form {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.66), rgba(15, 23, 42, 0.74));
    box-shadow: 0 14px 54px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover,
.pricing-card:hover,
.solution-card:hover,
.industry-card:hover,
.principle-card:hover,
.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 24px 78px rgba(59, 130, 246, 0.18), 0 14px 44px rgba(0, 0, 0, 0.3);
}

.glass-card {
    min-height: 260px;
    padding: 30px;
    border-radius: var(--radius);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card h2,
.service-card h3 {
    margin-top: 22px;
    font-size: 23px;
}

.service-card p {
    margin-top: 14px;
}

.service-card a,
.insight-card a {
    margin-top: auto;
    padding-top: 24px;
    color: var(--cyan);
    font-weight: 750;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(59, 130, 246, 0.42);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(139, 92, 246, 0.2));
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.section-split {
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow);
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.media-frame img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.split-copy h2 {
    margin-bottom: 24px;
}

.split-copy p + p {
    margin-top: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.metric {
    min-height: 108px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.62);
}

.metric strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #ffffff;
}

.metric span:last-child {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.zigzag-list,
.detail-list {
    display: grid;
    gap: 34px;
}

.zigzag-item,
.detail-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.52);
}

.zigzag-item.is-reverse,
.detail-row.is-reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.zigzag-item.is-reverse .zigzag-media,
.detail-row.is-reverse .detail-media {
    order: 2;
}

.zigzag-media,
.detail-media {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
}

.zigzag-media img,
.detail-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.zigzag-copy h3,
.detail-copy h3 {
    margin-top: 16px;
    font-size: 32px;
}

.zigzag-copy p,
.detail-copy p {
    margin-top: 16px;
}

.mini-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    border: 1px solid rgba(59, 130, 246, 0.36);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

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

.industry-card {
    min-height: 148px;
    padding: 24px;
    border-radius: var(--radius);
}

.industry-card span {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.industry-card h3 {
    margin-top: 18px;
    font-size: 20px;
}

.industry-grid.illustrated {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-grid.illustrated .industry-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 22px;
}

.insight-card span,
.project-card span,
.pricing-card span {
    display: inline-flex;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.insight-card h3 {
    margin-top: 18px;
}

.insight-card p {
    margin-top: 14px;
}

.cta-section {
    padding-top: 70px;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(139, 92, 246, 0.95)),
        var(--blue);
    box-shadow: 0 24px 84px rgba(59, 130, 246, 0.28);
}

.cta-banner .eyebrow,
.cta-banner p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-banner h2 {
    color: #ffffff;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h) + 92px) 0 112px;
    background: var(--bg);
    isolation: isolate;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero::before {
    content: "";
    background:
        linear-gradient(90deg, rgba(11, 18, 32, 0.98), rgba(11, 18, 32, 0.72)),
        url("../images/bg-pheader.jpg") center / cover no-repeat;
    opacity: 1;
}

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

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 22px;
    color: #dbeafe;
    font-size: 19px;
}

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

.principle-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.principle-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.principle-card div {
    padding: 24px;
}

.principle-card p {
    margin-top: 12px;
}

.detail-row {
    scroll-margin-top: 110px;
}

.detail-list.compact .detail-row {
    padding: 22px;
}

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

.pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(219, 234, 254, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--cyan);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.detail-hero-grid .detail-media {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.body-copy {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.numbered-grid,
.content-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.numbered-card,
.content-section {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 14px 54px rgba(0, 0, 0, 0.18);
}

.numbered-card {
    min-height: 220px;
    padding: 28px;
}

.numbered-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    border: 1px solid rgba(59, 130, 246, 0.36);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.numbered-card h3,
.content-section h3 {
    margin-top: 16px;
}

.numbered-card p,
.content-section p {
    margin-top: 14px;
}

.content-section {
    padding: 28px;
}

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

.content-section li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.content-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

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

.solution-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    min-height: 220px;
    padding: 22px;
    border-radius: var(--radius);
    scroll-margin-top: 110px;
}

.solution-card img {
    width: 170px;
    height: 170px;
    border-radius: 14px;
    object-fit: cover;
}

.solution-card h2 {
    font-size: 25px;
}

.solution-card p {
    margin-top: 14px;
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 620px;
    padding: 30px;
    border-radius: var(--radius);
}

.pricing-card h2 {
    margin-top: 16px;
    font-size: 28px;
}

.pricing-card strong {
    display: block;
    margin-top: 20px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
}

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

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

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.pricing-card .btn {
    margin-top: auto;
}

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

.project-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: var(--radius);
}

.project-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.94));
}

.project-card h3 {
    margin-top: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-panel,
.contact-form {
    border-radius: var(--radius);
    padding: 32px;
}

.contact-panel h2 {
    margin-bottom: 22px;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    color: var(--muted);
}

.contact-list li + li {
    margin-top: 8px;
}

.contact-list a {
    color: #dbeafe;
}

.contact-list.large li {
    font-size: 18px;
}

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

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: #dbeafe;
    font-size: 14px;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.78);
    color: #ffffff;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(59, 130, 246, 0.72);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-note {
    font-size: 14px;
}

.site-footer {
    padding: 84px 0 28px;
    border-top: 1px solid var(--line);
    background: #080e1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand img {
    width: 150px;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 330px;
}

.site-footer h2 {
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a,
.site-footer li {
    color: var(--muted);
    font-size: 15px;
}

.site-footer a:hover {
    color: #ffffff;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-row a,
.social-row span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.social-row span {
    opacity: 0.58;
}

.footer-bottom {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes meshDrift {
    from {
        transform: translate3d(0, 0, 0) skewY(-8deg);
    }
    to {
        transform: translate3d(22px, 18px, 0) skewY(-5deg);
    }
}

@keyframes floatShape {
    from {
        transform: translate3d(0, 0, 0) rotate(16deg);
    }
    to {
        transform: translate3d(12px, -18px, 0) rotate(34deg);
    }
}

@keyframes videoPulse {
    0% {
        transform: scale(1);
        opacity: 0.74;
    }

    70% {
        opacity: 0.16;
    }

    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

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

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

@media (max-width: 1100px) {
    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 38px;
    }

    .card-grid,
    .project-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-grid,
    .industry-grid.illustrated,
    .principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    :root {
        --header-h: 76px;
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .brand img {
        width: 132px;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-h) 16px auto;
        display: grid;
        gap: 6px;
        max-height: calc(100svh - var(--header-h) - 28px);
        overflow-y: auto;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(11, 18, 32, 0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .primary-nav > a,
    .nav-link {
        padding: 13px 14px;
        border-radius: 12px;
    }

    .nav-item {
        display: grid;
        gap: 6px;
    }

    .nav-menu {
        position: static;
        width: auto;
        min-width: 0;
        max-width: none;
        padding: 4px 0 8px 14px;
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item:hover .nav-menu,
    .nav-item:focus-within .nav-menu {
        transform: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 120px;
    }

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

    h2 {
        font-size: 34px;
    }

    .hero-subtitle,
    .page-hero p:not(.eyebrow),
    .section-head p:not(.eyebrow) {
        font-size: 17px;
    }

    .section {
        padding: 92px 0;
    }

    .split-grid,
    .contact-grid,
    .detail-hero-grid,
    .zigzag-item,
    .zigzag-item.is-reverse,
    .detail-row,
    .detail-row.is-reverse {
        grid-template-columns: 1fr;
    }

    .zigzag-item.is-reverse .zigzag-media,
    .detail-row.is-reverse .detail-media {
        order: 0;
    }

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

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

    .numbered-grid,
    .content-section-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        grid-template-columns: 132px 1fr;
    }

    .solution-card img {
        width: 132px;
        height: 132px;
    }

    .cta-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .container.narrow,
    .logo-strip {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 100svh;
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 104px;
    }

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

    h2 {
        font-size: 30px;
    }

    h3,
    .service-card h2,
    .service-card h3 {
        font-size: 22px;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .video-showcase {
        margin-top: 30px;
    }

    .btn {
        width: 100%;
    }

    .card-grid,
    .project-grid,
    .pricing-grid,
    .industry-grid,
    .industry-grid.illustrated,
    .principle-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .glass-card,
    .pricing-card,
    .contact-panel,
    .contact-form {
        padding: 24px;
    }

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

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

    .solution-card {
        grid-template-columns: 1fr;
    }

    .solution-card img {
        width: 100%;
        height: 210px;
    }

    .zigzag-item,
    .detail-row,
    .cta-banner {
        padding: 22px;
    }

    .page-hero {
        padding: calc(var(--header-h) + 58px) 0 82px;
    }

    .logo-item {
        width: 150px;
        height: 90px;
    }
}
