@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2-variations");
}

:root {
  --font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --bg: #f4f5f3;
  --bg-elevated: #ffffff;
  --bg-soft: #e9ece8;
  --ink: #141414;
  --ink-rgb: 20, 20, 20;
  --muted: #646970;
  --line: rgba(20, 20, 20, .14);
  --line-strong: rgba(20, 20, 20, .28);
  --red: #ea3422;
  --red-light: #fc5047;
  --green: #28b054;
  --green-light: #68d882;
  --orange: #febb24;
  --blue: #0f59ff;
  --dark: #071d33;
  --dark-2: #0b1020;
  --dark-3: #10141f;
  --white: #fff;
  --container: 1290px;
  --header: 82px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px rgba(21, 29, 38, .09);
  --ease: cubic-bezier(.2, .75, .25, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #07131f;
  --bg-elevated: #0d1b29;
  --bg-soft: #101f2c;
  --ink: #f4f7f8;
  --ink-rgb: 244, 247, 248;
  --muted: #a9b3bd;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .28);
  --shadow: 0 24px 80px rgba(0, 0, 0, .24);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 28px); }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; transition: background .35s ease, color .35s ease; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: -.04em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(3.25rem, 6.4vw, 6.8rem); }
h2 { font-size: clamp(2.3rem, 4vw, 4.65rem); }
h3 { font-size: clamp(1.25rem, 1.65vw, 1.72rem); }
p { color: var(--muted); }
::selection { color: #fff; background: var(--red); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow-content { max-width: 850px; }
.section { padding: clamp(90px, 11vw, 160px) 0; position: relative; }
.section--dark { position: relative; overflow: hidden; background: var(--dark-2); color: #fff; }
.section--dark p { color: #aeb9c6; }
.section--soft { background: var(--bg-soft); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; position: absolute; white-space: nowrap; }
.skip-link { position: fixed; z-index: 9999; left: 20px; top: 10px; transform: translateY(-150%); background: var(--ink); color: var(--bg); padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 999; left: 0; right: 0; top: 0; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--red),var(--orange),var(--green)); transform: scaleX(0); transform-origin: left; }
.noise { position: absolute; inset: 0; opacity: .04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: .45; background-image: linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom,#000,transparent 90%); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--ink); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; }
.eyebrow > span:first-child { width: 20px; height: 2px; background: var(--red); }
.eyebrow--light { color: #dbe3ea; }
.gradient-text { color: transparent; background: linear-gradient(92deg,var(--red) 0%,var(--red-light) 42%,var(--orange) 70%,var(--green) 110%); background-clip: text; -webkit-background-clip: text; }
.status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 6px rgba(40,176,84,.13); }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--red); background: var(--red); color: #fff; padding: 14px 23px; border-radius: 999px; font-weight: 750; font-size: .88rem; line-height: 1; cursor: pointer; transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.button:hover, .button:focus-visible { background: #cf2617; border-color: #cf2617; box-shadow: 0 15px 36px rgba(234,52,34,.24); transform: translateY(-2px); }
.button span { display: inline-flex; align-items: center; gap: 9px; }
.button--small { min-height: 42px; padding: 11px 17px; font-size: .76rem; }
.button--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.button--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); box-shadow: none; }
.button--light { background: #fff; border-color: #fff; color: #0b1020; }
.button--light:hover { background: var(--green-light); border-color: var(--green-light); color: #071d33; box-shadow: 0 15px 36px rgba(104,216,130,.15); }
.text-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; font-size: .84rem; font-weight: 800; color: var(--ink); }
.text-link svg { transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }
.text-link--light { color: #fff; }
.back-link { display: inline-flex; margin-bottom: 42px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.back-link--light { color: #b7c0ca; }

/* Header */
.site-header { position: fixed; z-index: 900; top: 0; left: 0; right: 0; height: var(--header); display: flex; align-items: center; background: rgba(247,247,244,.76); border-bottom: 1px solid transparent; backdrop-filter: blur(20px); transition: height .3s ease, background .3s ease, border-color .3s ease; }
html[data-theme="dark"] .site-header { background: rgba(7,19,31,.78); }
.site-header.is-scrolled { height: 68px; border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand { position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 10px; font-size: 1.04rem; font-weight: 850; letter-spacing: -.02em; }
.site-brand .brand-mark { width: 35px; height: 35px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 45px; width: auto; }
.primary-nav .menu { display: flex; align-items: center; gap: clamp(17px,2.2vw,33px); list-style: none; margin: 0; padding: 0; }
.primary-nav a { position: relative; display: block; padding: 12px 0; font-size: .76rem; font-weight: 720; color: var(--muted); }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: 7px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--ink); }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .sub-menu { position: absolute; list-style: none; margin: 0; padding: 12px 20px; min-width: 210px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-elevated); box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); visibility: hidden; transition: .25s ease; }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .nav-toggle { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
.theme-toggle { position: relative; display: grid; place-items: center; overflow: hidden; }
.theme-toggle svg { position: absolute; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .35s var(--ease), opacity .25s ease; }
.theme-toggle__moon { opacity: 0; transform: translateY(25px) rotate(45deg); }
html[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: translateY(-25px) rotate(-45deg); }
html[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: none; }
.nav-toggle { display: none; padding: 11px; }
.nav-toggle span:not(.screen-reader-text) { width: 18px; height: 1.5px; display: block; margin: 4px auto; background: currentColor; transition: .25s ease; }

/* Homepage hero */
.hero { position: relative; overflow: hidden; min-height: 100svh; padding: calc(var(--header) + 82px) 0 90px; display: flex; align-items: center; }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(100px); opacity: .11; pointer-events: none; }
.hero-glow--red { left: -200px; top: 0; background: var(--red); }
.hero-glow--green { right: -160px; bottom: -200px; background: var(--green); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px,7vw,115px); }
.hero-title { max-width: 800px; margin: 0 0 28px; font-size: clamp(3.5rem,6.3vw,6.7rem); }
.hero-lead { max-width: 690px; font-size: clamp(1.02rem,1.25vw,1.22rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 36px; color: var(--muted); font-size: .78rem; font-weight: 650; }
.system-visual { position: relative; aspect-ratio: 1; max-width: 620px; width: 100%; margin-left: auto; isolation: isolate; }
.system-radial-map { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.system-ring { fill: none; stroke: var(--line); stroke-width: 1; transform-origin: center; }
.system-ring--middle { stroke-dasharray: 4 10; }
.system-ring--inner { stroke: var(--line-strong); stroke-dasharray: 2 7; }
.system-segments { transform-origin: center; }
.system-segment { fill: none; stroke-width: 9; stroke-linecap: round; stroke-dasharray: 19 81; transform-origin: center; opacity: .7; }
.system-segment--red { stroke: var(--red); transform: rotate(-80deg); }
.system-segment--orange { stroke: var(--orange); transform: rotate(10deg); }
.system-segment--green { stroke: var(--green); transform: rotate(100deg); }
.system-segment--blue { stroke: var(--blue); transform: rotate(190deg); }
.system-core, .system-node { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: rgba(var(--ink-rgb),.025); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
html[data-theme="dark"] .system-core, html[data-theme="dark"] .system-node { background: rgba(255,255,255,.05); }
.system-core { z-index: 3; width: 154px; height: 154px; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--bg-elevated); }
.system-core::after { content: ""; position: absolute; inset: -26px; border: 1px solid var(--line); border-radius: inherit; }
.system-core .brand-mark { width: 43px; }
.system-core strong { margin-top: 7px; font-size: .78rem; }
.system-core small, .system-node small { color: var(--muted); font-size: .62rem; }
.system-core__pulse { position: absolute; inset: -12px; border: 1px solid rgba(234,52,34,.25); border-radius: inherit; }
.system-node { z-index: 4; left: 50%; top: 50%; width: 130px; height: 96px; padding: 0; border-radius: 19px; color: var(--ink); cursor: pointer; transform: translate(-50%,-50%); will-change: transform,opacity; }
.system-node::before { content: ""; position: absolute; inset: -1px; border: 1px solid transparent; border-radius: inherit; transition: border-color .3s ease,box-shadow .3s ease; }
.system-node:hover::before, .system-node:focus-visible::before, .system-node.is-active::before { border-color: var(--node-accent); box-shadow: 0 0 0 4px color-mix(in srgb,var(--node-accent) 11%,transparent),0 18px 55px color-mix(in srgb,var(--node-accent) 16%,transparent); }
.system-node:focus-visible { outline: 2px solid var(--node-accent); outline-offset: 5px; }
.system-node strong { font-size: .82rem; }
.node-icon { margin-bottom: 6px; color: var(--node-accent,var(--red)); font-size: .6rem; font-weight: 800; }
.system-node--web { transform: translate(-220px,-220px); }
.system-node--commerce { transform: translate(90px,-220px); }
.system-node--automation { transform: translate(-220px,120px); }
.system-node--growth { transform: translate(90px,120px); }
.system-detail { position: absolute; z-index: 7; left: 50%; top: 50%; width: min(74%,430px); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 64px; border: 1px solid var(--line); border-radius: 50%; background: var(--bg-elevated); box-shadow: 0 35px 100px rgba(11,18,29,.22); text-align: center; opacity: 0; pointer-events: none; clip-path: circle(0% at 50% 50%); transform: translate(-50%,-50%); }
.system-detail[aria-hidden="false"] { pointer-events: auto; }
.system-detail__close { position: absolute; z-index: 2; top: 55px; right: 55px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.system-detail__close span { position: absolute; width: 13px; height: 1px; background: currentColor; transform: rotate(45deg); }
.system-detail__close span:last-child { transform: rotate(-45deg); }
.system-detail__number { color: var(--detail-accent,var(--red)); font-size: .65rem; font-weight: 800; }
.system-detail > small { margin-top: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: .58rem; }
.system-detail h3 { margin: 13px 0; font-size: clamp(1.8rem,3vw,2.7rem); }
.system-detail p { max-width: 330px; margin-bottom: 20px; font-size: .76rem; line-height: 1.65; }
.system-detail__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.system-detail__tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: .58rem; font-weight: 750; }
.system-hint { position: absolute; left: 50%; bottom: -8px; display: flex; align-items: center; gap: 9px; width: max-content; margin: 0; color: var(--muted); font-size: .6rem; font-weight: 700; transform: translateX(-50%); }
.system-hint span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(40,176,84,.12); }
.system-visual.is-detail-open .system-hint { opacity: 0; }

/* Shared headings */
.section-heading, .split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,7vw,100px); align-items: end; margin-bottom: clamp(50px,7vw,90px); }
.section-heading h2, .split-heading h2 { margin-bottom: 0; }
.section-heading > p, .split-heading > div > p { max-width: 530px; margin: 0 0 6px auto; font-size: 1.02rem; }
.section-heading--light h2 { color: #fff; }
.centered-heading { max-width: 840px; margin-inline: auto; text-align: center; margin-bottom: 65px; }
.centered-heading h2 { margin-bottom: 0; }

/* Homepage sections */
.problem-section { border-top: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-card { position: relative; min-height: 310px; padding: 40px; border-right: 1px solid var(--line); }
.problem-card::before { content: ""; position: absolute; left: 40px; right: 40px; top: -1px; height: 2px; background: var(--card-accent,var(--red)); transform: scaleX(.25); transform-origin: left; transition: transform .45s var(--ease); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:nth-child(1) { --card-accent: var(--red); }
.problem-card:nth-child(2) { --card-accent: var(--orange); }
.problem-card:nth-child(3) { --card-accent: var(--green); }
.problem-card:last-child { border-right: 0; }
.problem-card > span { color: var(--card-accent,var(--red)); font-size: .68rem; font-weight: 800; }
.problem-card h3 { margin: 80px 0 17px; }
.problem-card p { margin: 0; font-size: .9rem; }
.services-preview { padding: clamp(100px,12vw,175px) 0; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { position: relative; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.045); transform-style: preserve-3d; transition: border-color .35s ease, background .35s ease; }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px circle at var(--mouse-x,50%) var(--mouse-y,50%),rgba(234,52,34,.16),transparent 42%); opacity: 0; transition: opacity .3s; }
.service-card:nth-child(3n+2)::before { background: radial-gradient(500px circle at var(--mouse-x,50%) var(--mouse-y,50%),rgba(40,176,84,.16),transparent 42%); }
.service-card:nth-child(3n)::before { background: radial-gradient(500px circle at var(--mouse-x,50%) var(--mouse-y,50%),rgba(15,89,255,.15),transparent 42%); }
.service-card:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
.service-card:hover::before { opacity: 1; }
.card-link { position: absolute; z-index: 2; inset: 0; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.service-card__number { font-size: .67rem; color: #778695; font-weight: 800; }
.service-card__arrow, .circle-arrow { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #fff; transition: .3s var(--ease); }
.service-card:hover .service-card__arrow { background: var(--red); border-color: var(--red); transform: rotate(-35deg); }
.service-card h3 { position: relative; color: #fff; margin: auto 0 17px; }
.service-card p { position: relative; color: #9eabb8; font-size: .84rem; margin-bottom: 25px; }
.service-card .text-link { position: relative; color: #fff; }
.section-end-link { display: flex; justify-content: flex-end; margin-top: 32px; }
.solution-stack { border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 60px 1.05fr 1fr 35px; align-items: center; gap: 30px; min-height: 125px; padding: 23px 5px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s ease; }
.solution-row:hover { padding-inline: 20px; background: var(--bg-elevated); }
.solution-row > span { color: var(--row-accent,var(--red)); font-size: .65rem; font-weight: 800; }
.solution-row:nth-child(4n+1) { --row-accent: var(--red); }.solution-row:nth-child(4n+2) { --row-accent: var(--orange); }.solution-row:nth-child(4n+3) { --row-accent: var(--green); }.solution-row:nth-child(4n) { --row-accent: var(--blue); }
.solution-row h3, .solution-row p { margin: 0; }
.solution-row p { font-size: .88rem; }
.why-section { background: var(--bg-soft); }
.why-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,9vw,140px); }
.why-intro { position: sticky; top: 120px; align-self: start; }
.why-intro h2 { font-size: clamp(2.4rem,4vw,4.2rem); }
.why-intro .text-link { margin-top: 24px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; }
.why-card { min-height: 275px; padding: 35px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-card:nth-child(-n+2) { border-top: 1px solid var(--line); }
.why-card span { color: var(--why-accent,var(--red)); font-size: .64rem; font-weight: 800; }
.why-card:nth-child(4n+1) { --why-accent: var(--red); }.why-card:nth-child(4n+2) { --why-accent: var(--green); }.why-card:nth-child(4n+3) { --why-accent: var(--orange); }.why-card:nth-child(4n) { --why-accent: var(--blue); }
.why-card h3 { margin: 65px 0 16px; font-size: 1.25rem; }
.why-card p { margin: 0; font-size: .82rem; }
.process-section { padding: clamp(100px,11vw,155px) 0; }
.process-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px,10vw,150px); }
.process-copy { position: sticky; top: 120px; align-self: start; }
.process-copy h2 { color: #fff; }
.process-progress { height: 2px; margin-top: 40px; background: rgba(255,255,255,.12); }
.process-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--red),var(--orange),var(--green)); transform: scaleX(.08); transform-origin: left; }
.process-step { min-height: 360px; padding: 55px 0; border-bottom: 1px solid rgba(255,255,255,.13); display: grid; align-content: center; }
.process-step__index { color: var(--green-light); font-size: .68rem; font-weight: 800; margin-bottom: 60px; }
.process-step > span { color: #8592a1; text-transform: uppercase; letter-spacing: .15em; font-size: .66rem; }
.process-step h3 { color: #fff; font-size: clamp(2rem,3.5vw,3.7rem); margin: 12px 0 20px; }
.process-step p { max-width: 550px; margin: 0; }
.technology-section { overflow: hidden; }
.tech-marquee { width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tech-track { width: max-content; display: flex; align-items: center; animation: marquee 32s linear infinite; }
.tech-track span { min-width: 190px; padding: 32px 38px; border-right: 1px solid var(--line); text-align: center; font-weight: 750; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.industry-fit-section { background: var(--bg-soft); }
.industry-fit-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.industry-fit-card { --fit-accent: var(--red); position: relative; min-height: 290px; display: flex; flex-direction: column; padding: 30px 26px; border-right: 1px solid var(--line); transition: background .35s ease,transform .35s var(--ease); }
.industry-fit-card:last-child { border-right: 0; }
.industry-fit-card:nth-child(2) { --fit-accent: var(--orange); }.industry-fit-card:nth-child(3) { --fit-accent: var(--green); }.industry-fit-card:nth-child(4) { --fit-accent: var(--blue); }.industry-fit-card:nth-child(5) { --fit-accent: var(--red-light); }
.industry-fit-card::before { content: ""; position: absolute; left: 26px; right: 26px; top: -1px; height: 3px; background: var(--fit-accent); transform: scaleX(.18); transform-origin: left; transition: transform .4s var(--ease); }
.industry-fit-card > span { color: var(--fit-accent); font-size: .62rem; font-weight: 800; }
.industry-fit-card h3 { margin: auto 0 15px; font-size: 1.16rem; }
.industry-fit-card p { min-height: 75px; margin: 0; font-size: .75rem; }
.industry-fit-card svg { margin-top: 20px; color: var(--fit-accent); }
.industry-fit-card:hover { z-index: 2; background: var(--bg-elevated); transform: translateY(-8px); box-shadow: var(--shadow); }
.industry-fit-card:hover::before { transform: scaleX(1); }
.product-section { padding-top: 20px; }
.product-panel { min-height: 670px; overflow: hidden; position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; padding: clamp(50px,7vw,95px); border-radius: var(--radius-lg); background: linear-gradient(135deg,#071d33,#0b1020 65%,#141b2d); color: #fff; }
.product-panel::after { content: ""; position: absolute; width: 500px; height: 500px; right: -150px; bottom: -250px; background: var(--blue); filter: blur(150px); opacity: .18; }
.product-copy { position: relative; z-index: 2; }
.product-copy h2 { color: #fff; font-size: clamp(4rem,8vw,8rem); margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 35px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin: 12px 0; font-size: .84rem; }
.check-list svg { flex: 0 0 auto; color: var(--green-light); }
.product-ui { position: relative; z-index: 1; perspective: 1000px; }
.ui-window { padding: 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.075); box-shadow: 0 35px 90px rgba(0,0,0,.35); transform: rotateY(-8deg) rotateX(4deg); backdrop-filter: blur(20px); }
.ui-bar { height: 42px; display: flex; gap: 7px; align-items: center; padding: 0 10px; }
.ui-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); }
.ui-layout { min-height: 410px; display: grid; grid-template-columns: 88px 1fr; overflow: hidden; border-radius: 13px; background: #f8fafb; }
.ui-sidebar { background: #0b2236; padding: 30px 18px; }
.ui-sidebar span { display: block; height: 7px; margin-bottom: 23px; border-radius: 5px; background: rgba(255,255,255,.17); }
.ui-content { padding: 35px; }
.ui-title { width: 36%; height: 14px; border-radius: 5px; background: #ccd5dd; }
.ui-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin: 30px 0; }
.ui-metrics i { height: 95px; border-radius: 12px; background: #e8edf1; }
.ui-metrics i:first-child { background: rgba(234,52,34,.14); }
.ui-table { padding: 18px; border: 1px solid #e4e8ec; border-radius: 12px; }
.ui-table span { display: block; height: 9px; margin: 16px 0; border-radius: 5px; background: #e4e8ec; }
.credibility-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.credibility-mark { aspect-ratio: 1; max-width: 410px; display: grid; place-items: center; position: relative; border: 1px solid var(--line); border-radius: 50%; }
.credibility-mark::before, .credibility-mark::after { content: ""; position: absolute; inset: 12%; border: 1px dashed var(--line-strong); border-radius: 50%; }
.credibility-mark::after { inset: 27%; }
.credibility-mark .brand-mark { width: 85px; }
.credibility-mark span { position: absolute; bottom: 17%; text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; font-weight: 800; }
.credibility-points { display: grid; grid-template-columns: repeat(3,1fr); margin: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credibility-points span { position: relative; padding: 20px 15px 20px 22px; border-right: 1px solid var(--line); font-size: .66rem; font-weight: 750; }
.credibility-points span:last-child { border-right: 0; }
.credibility-points span::before { content: ""; position: absolute; left: 6px; top: 28px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

@media (min-width: 900px) and (min-height: 720px) {
  .page-hero, .service-hero, .contact-hero, .process-page-hero, .portfolio-hero { min-height: 100svh; }
  .contact-hero, .process-page-hero { display: flex; align-items: center; }
  .portfolio-hero { display: flex; flex-direction: column; justify-content: flex-end; }
  .problem-section, .technology-section, .industry-fit-section, .product-section, .credibility-section { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
  .problem-section, .technology-section, .industry-fit-section, .credibility-section { padding-block: clamp(70px,9vh,115px); }
  .product-section { padding: 70px 0; }
  .product-panel { min-height: min(670px,calc(100svh - 140px)); }
}

@media (min-width: 1181px) and (max-height: 850px) {
  .hero { padding: calc(var(--header) + 42px) 0 42px; }
  .hero-title { font-size: clamp(3.15rem,5.4vw,4.7rem); margin-bottom: 20px; }
  .hero-lead { font-size: .94rem; line-height: 1.62; }
  .hero-actions { margin-top: 24px; }
  .hero-trust { margin-top: 24px; }
  .system-visual { max-width: min(68vh,550px); }
}

/* Page heroes and about */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--header) + 95px) 0 120px; min-height: 760px; display: flex; align-items: center; }
.page-hero__layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.page-hero__copy h1 { font-size: clamp(3.6rem,6.5vw,6.7rem); }
.page-hero__copy p { max-width: 700px; font-size: 1.08rem; }
.about-manifesto { aspect-ratio: 1; max-width: 490px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 55px; border-radius: 50%; background: var(--ink); color: var(--bg); }
.about-manifesto::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: inherit; }
.about-manifesto > span { font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; opacity: .7; }
.about-manifesto p { color: inherit; font-size: clamp(1.4rem,2.6vw,2.5rem); line-height: 1.2; }
.about-manifesto .brand-mark { position: absolute; width: 55px; top: 55px; right: 55px; }
.editorial-layout { display: grid; grid-template-columns: .45fr 1.55fr; gap: 80px; }
.editorial-aside { display: flex; flex-direction: column; }
.editorial-line { width: 1px; min-height: 120px; flex: 1; margin-left: 10px; background: var(--line); }
.large-copy p { color: var(--ink); font-size: clamp(1.8rem,3.3vw,3.5rem); line-height: 1.35; letter-spacing: -.04em; }
.large-copy p + p { color: var(--muted); }
.principle-section { padding: 140px 0; }
.principle-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.principle-card { min-height: 390px; padding: 34px; border: 1px solid rgba(255,255,255,.12); border-right: 0; position: relative; }
.principle-card:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.principle-card > span { color: var(--green-light); font-size: .65rem; }
.principle-card h3 { color: #fff; margin-top: 140px; }
.principle-card i { position: absolute; left: 34px; right: 34px; bottom: 0; height: 3px; background: linear-gradient(90deg,var(--red),var(--orange),var(--green)); transform: scaleX(.2); transform-origin: left; transition: transform .4s var(--ease); }
.principle-card:hover i { transform: scaleX(1); }
.operating-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.sticky-copy { position: sticky; top: 120px; align-self: start; }
.operating-card { min-height: 230px; padding: 34px 0 40px; border-bottom: 1px solid var(--line); }
.operating-card > span { color: var(--red); font-size: .65rem; }
.operating-card h3 { margin-top: 55px; }

/* Services */
.services-orbit { position: relative; aspect-ratio: 1; max-width: 510px; border: 1px solid var(--line); border-radius: 50%; }
.services-orbit::before { content: ""; position: absolute; inset: -8%; border-radius: 50%; background: radial-gradient(circle,rgba(234,52,34,.06),transparent 66%); filter: blur(18px); }
.orbit-ring { position: absolute; display: block; border-radius: 50%; pointer-events: none; }
.orbit-ring--outer { inset: 0; border: 1px solid var(--line); }
.orbit-ring--middle { inset: 18%; border: 1px dashed var(--line-strong); }
.orbit-ring--inner { inset: 36%; border: 1px dashed var(--line-strong); }
.orbit-center { position: absolute; z-index: 2; inset: 38%; display: grid; place-items: center; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 12px var(--bg),0 0 0 13px var(--line-strong),0 25px 70px rgba(0,0,0,.18); }
.orbit-center::before { content: ""; position: absolute; inset: -16px; border: 1px solid rgba(234,52,34,.28); border-radius: inherit; opacity: .65; }
.orbit-center .brand-mark { width: 46px; }
.services-orbit > span { position: absolute; z-index: 3; left: 50%; top: 50%; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--bg-elevated); border-radius: 50%; color: var(--muted); box-shadow: 0 12px 35px rgba(15,24,33,.08); font-size: .58rem; font-weight: 800; transform: translate(-50%,-50%) rotate(var(--angle)) translateY(-225px) rotate(var(--counter)); will-change: transform; }
.services-orbit > span::after { content: ""; position: absolute; right: 5px; top: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.services-orbit > span:nth-of-type(2n)::after { background: var(--green); box-shadow: 0 0 10px var(--green); }
.services-orbit > span:nth-of-type(3n)::after { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.services-orbit.is-engaged .orbit-ring--outer { border-color: rgba(234,52,34,.38); }
.cursor-aura { position: fixed; z-index: 850; left: 0; top: 0; width: 22px; height: 22px; margin: -11px 0 0 -11px; border: 1px solid rgba(234,52,34,.45); border-radius: 50%; background: rgba(234,52,34,.06); pointer-events: none; opacity: 0; will-change: transform; }
.cursor-aura::after { content: ""; position: absolute; inset: 6px; border-radius: inherit; background: var(--red); opacity: .55; }
.theme-ripple { position: fixed; z-index: 880; width: 90px; height: 90px; margin: -45px 0 0 -45px; border-radius: 50%; background: var(--bg); pointer-events: none; opacity: 0; transform: scale(0); will-change: transform; }
.service-index { border-top: 1px solid var(--line); }
.service-index__row { position: relative; min-height: 175px; display: grid; grid-template-columns: 70px 1.25fr .8fr 55px; align-items: center; gap: 30px; padding: 32px 10px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s ease; }
.service-index__row:hover { padding-inline: 24px; background: var(--bg-elevated); }
.service-index__number { color: var(--red); font-size: .65rem; font-weight: 800; }
.service-index__row h2 { margin: 0 0 10px; font-size: clamp(1.8rem,3vw,3.2rem); }
.service-index__row p { margin: 0; font-size: .85rem; }
.service-index__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-index__tags span, .tag-cloud span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .62rem; font-weight: 700; }
.service-index__row .circle-arrow, .solution-detail .circle-arrow { color: var(--ink); border-color: var(--line); }
.service-index__row:hover .circle-arrow, .solution-detail:hover .circle-arrow { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(-35deg); }
.service-connection { padding: 140px 0; }
.service-connection__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 110px; }
.service-connection h2 { color: #fff; }
.connection-list > div { display: grid; grid-template-columns: 50px 1fr; column-gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.connection-list span { color: var(--green-light); font-size: .65rem; }
.connection-list h3 { color: #fff; margin: 0; }
.connection-list p { grid-column: 2; margin: 8px 0 0; font-size: .84rem; }

/* Single service */
.service-story { --service-accent: var(--red); }
.service-story .eyebrow > span:first-child { background: var(--service-accent); }
.service-page-nav { position: fixed; z-index: 820; left: 0; right: 0; top: 68px; height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); background: var(--bg); background: color-mix(in srgb,var(--bg) 88%,transparent); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-110%); transition: opacity .3s ease,transform .4s var(--ease); }
.service-page-nav.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.service-page-nav__progress { position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--service-accent); transform: scaleX(0); transform-origin: left; }
.service-page-nav .container { height: 100%; display: flex; align-items: center; gap: clamp(16px,3vw,38px); overflow-x: auto; scrollbar-width: none; }
.service-page-nav .container::-webkit-scrollbar { display: none; }
.service-page-nav a { position: relative; flex: 0 0 auto; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; transition: color .25s ease; }
.service-page-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -15px; height: 2px; background: var(--service-accent); transform: scaleX(0); transition: transform .3s var(--ease); }
.service-page-nav a.is-active { color: var(--ink); }
.service-page-nav a.is-active::after { transform: scaleX(1); }
.service-hero { min-height: 850px; position: relative; overflow: hidden; padding: calc(var(--header) + 80px) 0 100px; display: flex; align-items: center; }
.service-hero__grid { position: relative; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 100px; }
.service-hero__copy h1 { font-size: clamp(3.8rem,7.2vw,7.6rem); }
.service-hero__copy > p { max-width: 700px; font-size: 1.1rem; }
.service-blueprint { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.blueprint-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 42px 42px; }
.blueprint-core { position: absolute; left: 50%; top: 50%; width: 180px; height: 180px; display: grid; place-items: center; text-align: center; padding: 25px; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--bg); transform: translate(-50%,-50%); }
.blueprint-core span { position: absolute; inset: -15px; border: 1px dashed var(--service-accent); border-radius: inherit; }
.blueprint-core strong { font-size: .88rem; }
.blueprint-core small { color: var(--muted); font-size: .58rem; }
.service-blueprint svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-blueprint svg path { fill: none; stroke: var(--line-strong); stroke-dasharray: 5 8; }
.blueprint-scan { position: absolute; z-index: 1; left: 0; right: 0; top: -20%; height: 100px; background: linear-gradient(transparent,color-mix(in srgb,var(--service-accent) 13%,transparent),transparent); opacity: .7; pointer-events: none; }
.blueprint-node { position: absolute; z-index: 2; min-width: 112px; min-height: 62px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--ink); color: var(--bg); font-size: .62rem; font-style: normal; box-shadow: var(--shadow); }
.blueprint-node b { color: var(--service-accent); font-size: .58rem; }
.blueprint-node em { max-width: 72px; font-style: normal; font-weight: 750; line-height: 1.25; }
.blueprint-node--1 { left: 12%; top: 12%; }.blueprint-node--2 { right: 12%; top: 12%; }.blueprint-node--3 { left: 12%; bottom: 12%; }.blueprint-node--4 { right: 12%; bottom: 12%; }
.service-signal { position: absolute; left: 50%; bottom: 25px; display: flex; align-items: center; justify-content: flex-end; gap: 26px; transform: translateX(-50%); }
.service-signal span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .62rem; font-weight: 700; }
.service-signal i { width: 5px; height: 5px; border-radius: 50%; background: var(--service-accent); box-shadow: 0 0 9px var(--service-accent); }
.service-problems__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.problem-line { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.problem-line span { color: var(--service-accent); font-size: .64rem; font-weight: 800; }
.problem-line p { color: var(--ink); margin: 0; font-size: clamp(1.15rem,2vw,1.7rem); }
.service-capabilities { padding: 140px 0; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.capability-card { position: relative; min-height: 230px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.capability-card span { color: #788a99; font-size: .62rem; }
.capability-card h3 { color: #fff; margin-top: 80px; }
.capability-card i { position: absolute; right: -30px; bottom: -70px; width: 150px; height: 150px; border: 25px solid color-mix(in srgb,var(--service-accent) 16%,transparent); border-radius: 50%; transition: .4s var(--ease); }
.capability-card b { position: absolute; left: var(--spot-x,50%); top: var(--spot-y,50%); width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle,color-mix(in srgb,var(--service-accent) 18%,transparent),transparent 68%); opacity: 0; pointer-events: none; transform: translate(-50%,-50%); transition: opacity .3s ease; }
.capability-card:hover b { opacity: 1; }
.capability-card:hover i { transform: scale(1.25); border-color: rgba(40,176,84,.18); }
.entry-content { font-size: 1.04rem; }
.entry-content > * { max-width: 850px; }
.entry-content h2 { margin-top: 1.5em; }
.entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.entry-content ul, .entry-content ol { padding-left: 1.2em; }
.delivery-section { background: var(--bg-soft); }
.delivery-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.deliverable { min-height: 78px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.deliverable svg { color: var(--green); flex: 0 0 auto; }
.mini-process { display: grid; grid-template-columns: repeat(7,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mini-step { min-height: 170px; padding: 25px 18px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.mini-step { position: relative; overflow: hidden; }
.mini-step:last-child { border: 0; }
.mini-step span { color: var(--service-accent); font-size: .62rem; }
.mini-step strong { font-size: .77rem; }
.mini-step i { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--service-accent); transform: scaleX(0); transform-origin: left; }
.mini-step.is-active { background: var(--bg-elevated); }
.tech-cloud { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-cloud span { padding: 12px 18px; font-size: .7rem; color: var(--ink); background: var(--bg-elevated); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.accordion-item button i { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; background: currentColor; transition: transform .25s ease; }
.accordion-item button i::before { width: 18px; height: 1px; top: 8px; }
.accordion-item button i::after { height: 18px; width: 1px; left: 8px; }
.accordion-item button[aria-expanded="true"] i::after { transform: rotate(90deg); }
.service-story .accordion-item button[aria-expanded="true"] { color: var(--service-accent); }
.accordion-panel { padding: 0 50px 25px 0; }
.related-services .service-card { background: var(--dark-2); }
.service-closing { padding: 140px 0; text-align: center; background: linear-gradient(135deg,#071d33,#0b1020); color: #fff; }
.service-closing .container { max-width: 900px; }
.service-closing h2 { color: #fff; }
.service-closing p { max-width: 650px; margin: 0 auto 35px; }

/* Portfolio */
.portfolio-hero { padding: calc(var(--header) + 100px) 0 0; }
.portfolio-hero__grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 100px; padding-bottom: 100px; }
.portfolio-hero h1 { color: #fff; }
.portfolio-hero h1 span, .contact-hero h1 span, .process-page-hero h1 span { color: var(--green-light); }
.portfolio-ticker { overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.portfolio-ticker div { width: max-content; padding: 25px 0; color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: .1em; animation: ticker 30s linear infinite; }
.portfolio-ticker i { display: inline-block; width: 7px; height: 7px; margin: 0 25px; border-radius: 50%; background: var(--red); }
@keyframes ticker { to { transform: translateX(-40%); } }
.portfolio-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.portfolio-toolbar p { margin: 0; font-size: .78rem; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-filters button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: transparent; color: var(--muted); font-size: .68rem; font-weight: 700; cursor: pointer; }
.portfolio-filters button.is-active, .portfolio-filters button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px 24px; }
.project-card { position: relative; }
.project-card--wide { grid-column: span 2; }
.project-card__media { position: relative; overflow: hidden; aspect-ratio: 1.25; border-radius: var(--radius); background: var(--bg-soft); }
.project-card--wide .project-card__media { aspect-ratio: 2.1; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card:hover img { transform: scale(1.035); }
.project-placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(135deg,var(--dark),var(--dark-2)); }
.project-placeholder::before { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; }
.project-placeholder span { position: absolute; width: 38%; height: 38%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.project-placeholder span:nth-child(2) { width: 62%; height: 62%; border-color: rgba(234,52,34,.25); }
.project-placeholder span:nth-child(3) { width: 82%; height: 82%; border-style: dashed; }
.project-placeholder strong { color: #fff; font-size: 3rem; }
.project-card__view { position: absolute; z-index: 3; right: 25px; bottom: 25px; display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; background: #fff; color: #141414; font-size: .68rem; font-weight: 800; transform: translateY(15px); opacity: 0; transition: .35s var(--ease); }
.project-card:hover .project-card__view { transform: none; opacity: 1; }
.project-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; padding-top: 24px; }
.project-card__meta span { color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-size: .6rem; font-weight: 800; }
.project-card__meta h2 { font-size: 1.8rem; margin: 8px 0 0; }
.project-card__meta p { margin: 0; font-size: .82rem; }
.project-card[hidden] { display: none; }
.portfolio-empty { grid-column: span 2; }
.empty-state { padding: 70px; border: 1px dashed var(--line-strong); border-radius: var(--radius); text-align: center; }
.case-hero { padding: calc(var(--header) + 65px) 0 0; }
.case-hero__top { position: relative; }
.case-hero__title { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
.case-hero__title h1 { color: #fff; }
.case-facts { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 28px 55px; margin-top: 60px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.13); }
.case-facts div { min-width: 130px; }
.case-facts span { display: block; margin-bottom: 6px; color: #778797; text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; }
.case-facts strong { color: #fff; font-size: .78rem; }
.case-cover { position: relative; z-index: 2; margin-top: 60px; transform: translateY(80px); overflow: hidden; aspect-ratio: 16/9; border-radius: var(--radius-lg); background: #0d2235; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.case-cover img { width: 100%; height: 100%; object-fit: cover; }
.case-cover__placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 70% 20%,rgba(15,89,255,.28),transparent 35%),linear-gradient(135deg,#102a40,#06111d); }
.case-screen { width: 70%; height: 65%; padding: 55px; border: 1px solid rgba(255,255,255,.15); border-radius: 25px; background: rgba(255,255,255,.06); transform: perspective(900px) rotateX(7deg) rotateY(-8deg); }
.case-screen span { display: block; width: 40%; height: 20px; background: rgba(255,255,255,.2); border-radius: 8px; margin-bottom: 40px; }
.case-screen i { display: inline-block; width: 28%; height: 120px; margin-right: 3%; border-radius: 15px; background: rgba(255,255,255,.08); }
.case-narrative { padding-top: 180px; }
.case-narrative__grid { display: grid; grid-template-columns: .4fr 1.6fr; gap: 100px; }
.case-nav { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; gap: 16px; }
.case-nav > span { margin-bottom: 15px; text-transform: uppercase; letter-spacing: .14em; font-size: .63rem; color: var(--muted); }
.case-nav a { font-size: .72rem; font-weight: 700; color: var(--muted); }
.case-nav a:hover { color: var(--red); }
.case-chapter { padding: 20px 0 100px; border-bottom: 1px solid var(--line); margin-bottom: 80px; }
.case-chapter > span { color: var(--red); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.case-chapter h2 { max-width: 880px; margin: 45px 0 30px; }
.case-chapter p { max-width: 800px; font-size: 1.05rem; }
.verified-results { padding: 130px 0; }
.result-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.result-card { min-height: 230px; padding: 35px; border-right: 1px solid rgba(255,255,255,.13); display: flex; flex-direction: column; justify-content: space-between; }
.result-card:last-child { border: 0; }
.result-card strong { color: #fff; font-size: clamp(2.2rem,4vw,4rem); letter-spacing: -.05em; }
.result-card span { color: #9aa8b5; font-size: .75rem; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--bg-soft); }
.gallery-grid .gallery-wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.case-proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.case-proof blockquote { margin: 0; padding: 50px; border-left: 3px solid var(--red); background: var(--bg-elevated); box-shadow: var(--shadow); }
.case-proof blockquote p { color: var(--ink); font-size: clamp(1.4rem,2.4vw,2.4rem); line-height: 1.4; }
.case-proof cite { color: var(--muted); font-size: .75rem; font-style: normal; }
.project-navigation { padding: 100px 0; }
.project-navigation .container > div { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.project-navigation a { display: flex; flex-direction: column; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.15); color: #fff; }
.project-navigation small { color: #8492a0; margin-bottom: 15px; }
.project-navigation strong { font-size: clamp(1.5rem,3vw,3rem); }

/* Solutions, products, industries, process */
.solution-compass { aspect-ratio: 1; position: relative; max-width: 500px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.solution-compass::before { content: ""; position: absolute; inset: 20%; border: 1px dashed var(--line-strong); border-radius: 50%; }
.solution-compass strong { width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: .7rem; }
.solution-compass span { position: absolute; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); font-size: .6rem; font-weight: 800; }
.solution-compass span:nth-child(1){top:6%;left:42%}.solution-compass span:nth-child(2){right:1%;top:44%}.solution-compass span:nth-child(3){bottom:6%;left:39%}.solution-compass span:nth-child(4){left:0;top:44%}
.solution-detail { position: relative; min-height: 275px; display: grid; grid-template-columns: 80px 1fr 1fr 60px; align-items: center; gap: 35px; border-bottom: 1px solid var(--line); }
.solution-detail__number { color: var(--red); font-size: .65rem; font-weight: 800; }
.solution-detail h2 { font-size: clamp(1.8rem,3vw,3.2rem); }
.solution-detail ul { list-style: none; margin: 0; padding: 0; }
.solution-detail li { display: flex; gap: 10px; align-items: center; margin: 9px 0; color: var(--muted); font-size: .78rem; }
.solution-detail li svg { color: var(--green); }
.process-page-hero { padding: calc(var(--header) + 110px) 0 120px; }
.process-page-hero .container { max-width: 1100px; }
.process-page-hero h1 { color: #fff; }
.process-page-hero p { max-width: 650px; }
.process-timeline { padding: 120px 0; position: relative; }
.process-timeline .container { position: relative; }
.timeline-line { position: absolute; left: 79px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-line span { display: block; width: 3px; height: 100%; margin-left: -1px; background: linear-gradient(var(--red),var(--orange),var(--green)); transform: scaleY(0); transform-origin: top; }
.timeline-step { min-height: 440px; display: grid; grid-template-columns: 160px .55fr 1.45fr; gap: 40px; align-items: center; }
.timeline-step__marker { position: relative; z-index: 2; width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--bg); color: var(--red); font-size: .65rem; font-weight: 800; }
.timeline-step__label { text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; font-weight: 800; color: var(--muted); }
.timeline-step__content { padding: 65px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); box-shadow: var(--shadow); }
.timeline-step__content > span { color: var(--green); font-size: .7rem; font-weight: 800; }
.timeline-step__content h2 { margin: 25px 0; font-size: clamp(2rem,3.4vw,3.7rem); }
.product-cube { aspect-ratio: 1; max-width: 460px; display: grid; place-items: center; position: relative; perspective: 800px; }
.product-cube::before { content: ""; width: 55%; height: 55%; border: 1px solid var(--line-strong); transform: rotate(45deg); }
.product-cube::after { content: ""; position: absolute; width: 55%; height: 55%; border: 1px solid var(--red); transform: rotate(60deg); }
.product-cube span { position: absolute; z-index: 2; font-size: .65rem; font-weight: 800; }
.product-cube i { position: absolute; width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.product-cube i:nth-of-type(1){top:20%;left:20%}.product-cube i:nth-of-type(2){right:20%;top:30%;background:var(--orange)}.product-cube i:nth-of-type(3){bottom:20%;left:35%;background:var(--red)}
.product-feature__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.product-feature__copy h2 { font-size: clamp(4rem,8vw,8rem); }
.feature-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.product-ui--light .ui-window { background: var(--dark); }
.industry-map { aspect-ratio: 1; max-width: 470px; display: grid; place-items: center; position: relative; }
.industry-map::before, .industry-map::after { content: ""; position: absolute; inset: 5%; border: 1px solid var(--line); border-radius: 50%; }.industry-map::after{inset:25%;border-style:dashed}
.industry-map span { width: 120px; height: 120px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--bg); font-size: .7rem; font-weight: 800; }
.industry-map i { position: absolute; width: 22px; height: 22px; border: 5px solid var(--red); border-radius: 50%; }.industry-map i:nth-child(1){top:4%;left:45%}.industry-map i:nth-child(2){right:6%;top:35%;border-color:var(--green)}.industry-map i:nth-child(3){right:20%;bottom:8%;border-color:var(--orange)}.industry-map i:nth-child(4){left:17%;bottom:10%;border-color:var(--blue)}.industry-map i:nth-child(5){left:5%;top:35%;border-color:var(--green)}
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.industry-card { min-height: 330px; position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); transform-style: preserve-3d; }
.industry-card > span { color: var(--red); font-size: .64rem; font-weight: 800; }
.industry-card h2 { margin-top: 90px; font-size: 1.45rem; }
.industry-card p { font-size: .8rem; }
.industry-card i { position: absolute; right: -45px; bottom: -70px; width: 140px; height: 140px; border: 25px solid var(--line); border-radius: 50%; }
.fit-section { padding: 140px 0; }
.fit-section h2 { color: #fff; }
.cihrm-hero { min-height: 900px; padding: calc(var(--header) + 100px) 0 100px; display: flex; align-items: center; }
.cihrm-hero__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.cihrm-copy h1 { margin: 0; color: #fff; font-size: clamp(6rem,14vw,14rem); line-height: .82; }
.cihrm-copy p { max-width: 640px; margin-top: 45px; }
.cihrm-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.cihrm-ghost:hover { background: #fff; color: #07131f; border-color: #fff; }
.cihrm-ui .ui-window { transform: rotateY(-6deg) rotateX(3deg); }
.connection-list--light h3 { color: var(--ink); }
.connection-list--light p { color: var(--muted); }

/* Contact and forms */
.contact-hero { padding: calc(var(--header) + 105px) 0 120px; }
.contact-hero__grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 100px; }
.contact-hero h1 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.contact-details h2 { font-size: clamp(2.3rem,4vw,4.2rem); }
.contact-detail { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-detail span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; font-weight: 800; }
.contact-detail a, .contact-detail address { display: block; margin-top: 8px; color: var(--ink); font-size: .83rem; font-style: normal; }
.project-form-wrap { padding: clamp(32px,5vw,70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); box-shadow: var(--shadow); }
.project-form { display: grid; gap: 23px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-form label { display: grid; gap: 8px; color: var(--ink); font-size: .7rem; font-weight: 750; }
.project-form input, .project-form textarea, .project-form select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); padding: 14px 15px; outline: none; transition: border-color .2s,box-shadow .2s; }
.project-form input:focus, .project-form textarea:focus, .project-form select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(234,52,34,.1); }
.project-form textarea { resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; }
.form-privacy { margin: 0; font-size: .65rem; }
.form-notice { margin-bottom: 25px; padding: 18px 20px; border-radius: 12px; }
.form-notice p { margin: 4px 0 0; font-size: .75rem; }
.form-notice--success { background: rgba(40,176,84,.12); border: 1px solid rgba(40,176,84,.3); }
.form-notice--error { background: rgba(234,52,34,.1); border: 1px solid rgba(234,52,34,.25); }

/* Generic */
.simple-page-hero { padding: calc(var(--header) + 100px) 0 80px; border-bottom: 1px solid var(--line); }
.simple-page-hero h1 { margin: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.post-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.post-card img { border-radius: 14px; margin-bottom: 20px; }
.post-card span { color: var(--red); font-size: .65rem; }
.post-card h2 { font-size: 1.6rem; margin: 12px 0; }
.post-cover { margin-top: 70px; overflow: hidden; border-radius: var(--radius-lg); }
.error-page { min-height: 80svh; position: relative; display: grid; place-items: center; padding: calc(var(--header) + 60px) 0 90px; text-align: center; overflow: hidden; }
.error-page .container { position: relative; max-width: 840px; }
.error-code { display: block; color: var(--line); font-size: clamp(9rem,25vw,23rem); font-weight: 800; line-height: .7; letter-spacing: -.1em; }
.error-page h1 { font-size: clamp(2.4rem,5vw,5rem); }
.error-page .hero-actions { justify-content: center; }
.navigation.pagination { margin-top: 60px; text-align: center; }
.nav-links { display: inline-flex; gap: 8px; }
.nav-links .page-numbers { min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .72rem; }
.nav-links .current { background: var(--red); border-color: var(--red); color: #fff; }

/* Footer */
.site-footer { padding: 80px 0 0; background: #07131f; color: #fff; }
.footer-cta { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-cta h2 { max-width: 900px; color: #fff; margin: 0; font-size: clamp(2.5rem,4.5vw,5rem); }
.footer-cta .button { justify-self: end; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr 1fr 1.15fr; gap: 60px; padding: 80px 0; }
.site-brand--footer { color: #fff; margin-bottom: 25px; }
.footer-brand p { max-width: 420px; color: #9ca9b5; font-size: .78rem; }
.footer-brand .footer-registration { color: var(--green-light); font-weight: 700; }
.footer-grid h3 { color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: .65rem; margin-bottom: 24px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 10px 0; }
.footer-grid a, .footer-grid address { color: #9ca9b5; font-size: .72rem; font-style: normal; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid .menu { display: block; }
.footer-bottom { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .legal-links a { margin: 0; color: #71808d; font-size: .65rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 20px; }

/* Dark mode refinements */
html[data-theme="dark"] .about-manifesto { background: #f4f7f8; color: #07131f; }
html[data-theme="dark"] .project-form input, html[data-theme="dark"] .project-form textarea, html[data-theme="dark"] .project-form select { background: #07131f; }
html[data-theme="dark"] .related-services .service-card { border-color: rgba(255,255,255,.12); }
html[data-theme="dark"] .ui-window { border-color: rgba(255,255,255,.15); }
html[data-theme="dark"] .solution-row:hover, html[data-theme="dark"] .service-index__row:hover { background: rgba(255,255,255,.035); }

/* Responsive */
@media (max-width: 1180px) {
  :root { --header: 72px; }
  .container { width: min(calc(100% - 40px),var(--container)); }
  .primary-nav { position: fixed; inset: 0; padding: 120px 28px 50px; background: var(--bg); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .3s var(--ease); overflow-y: auto; }
  .nav-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
  .primary-nav .menu { display: block; }
  .primary-nav a { font-size: clamp(1.7rem,4vw,3rem); padding: 12px 0; color: var(--ink); }
  .primary-nav a::after { display: none; }
  .primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 20px; background: transparent; }
  .primary-nav .sub-menu a { font-size: 1rem; color: var(--muted); }
  .nav-toggle { position: relative; z-index: 3; display: block; }
  .nav-open .nav-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { transform: translateY(-2px) rotate(-45deg); }
  .hero-layout, .page-hero__layout, .service-hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .system-visual, .services-orbit, .solution-compass, .product-cube, .industry-map { margin-inline: auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .principle-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .product-panel, .product-feature__grid { grid-template-columns: 1fr; }
  .cihrm-hero__grid { grid-template-columns: 1fr; }
  .industry-fit-grid { grid-template-columns: repeat(3,1fr); gap: 12px; border: 0; }
  .industry-fit-card, .industry-fit-card:last-child { border: 1px solid var(--line); border-radius: var(--radius); }
  .product-ui { max-width: 720px; }
  .mini-process { grid-template-columns: repeat(4,1fr); }
  .mini-step:nth-child(4) { border-right: 0; }
  .mini-step:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2/4; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px),var(--container)); }
  .section { padding: 85px 0; }
  .header-actions .button { display: none; }
  .hero { padding-top: calc(var(--header) + 65px); }
  .hero-title, .page-hero__copy h1, .service-hero__copy h1 { font-size: clamp(3rem,13vw,5.4rem); }
  .system-visual { max-width: 560px; }
  .section-heading, .split-heading, .why-layout, .process-shell, .credibility-grid, .operating-grid, .service-connection__grid, .service-problems__layout, .delivery-grid, .tech-cloud, .faq-layout, .contact-grid, .footer-cta, .case-hero__title, .case-narrative__grid, .case-proof__grid { grid-template-columns: 1fr; gap: 50px; }
  .section-heading > p, .split-heading > div > p { margin-left: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 260px; }
  .problem-card:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 45px 1fr 30px; gap: 15px; }
  .solution-row p { grid-column: 2; }
  .solution-row > svg { grid-column: 3; grid-row: 1/3; }
  .why-intro, .process-copy, .sticky-copy, .case-nav { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(2) { border-top: 0; }
  .process-step { min-height: 300px; }
  .product-panel { padding: 45px 30px; }
  .industry-fit-grid { grid-template-columns: 1fr 1fr; }
  .ui-layout { min-height: 310px; }
  .editorial-layout { grid-template-columns: 1fr; gap: 35px; }
  .editorial-line { display: none; }
  .service-index__row { grid-template-columns: 45px 1fr 50px; }
  .service-index__tags { grid-column: 2; }
  .service-index__row .circle-arrow { grid-column: 3; grid-row: 1/3; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-hero__grid, .contact-hero__grid { grid-template-columns: 1fr; gap: 35px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-card--wide, .portfolio-empty { grid-column: span 1; }
  .project-card--wide .project-card__media { aspect-ratio: 1.35; }
  .project-card__meta { grid-template-columns: 1fr; gap: 10px; }
  .case-nav { flex-direction: row; flex-wrap: wrap; }
  .case-nav > span { width: 100%; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .result-card:nth-child(2) { border-right: 0; }
  .result-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .solution-detail { grid-template-columns: 50px 1fr 50px; padding: 45px 0; }
  .solution-detail ul { grid-column: 2; }
  .solution-detail .circle-arrow { grid-column: 3; grid-row: 1/3; }
  .timeline-line { left: 34px; }
  .timeline-step { grid-template-columns: 85px 1fr; gap: 20px; margin-bottom: 70px; }
  .timeline-step__marker { width: 68px; }
  .timeline-step__label { grid-column: 2; }
  .timeline-step__content { grid-column: 2; padding: 35px; }
  .footer-cta .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .button { width: 100%; }
  .hero-actions { display: grid; }
  .system-visual { transform: scale(.92); }
  .system-node { width: 96px; height: 76px; }
  .system-core { width: 130px; height: 130px; }
  .system-detail { width: 82%; padding: 42px 34px; }
  .system-detail__close { top: 30px; right: 30px; }
  .system-detail p { margin-bottom: 12px; font-size: .68rem; }
  .system-detail__tags span { padding: 5px 8px; }
  .system-hint { bottom: -18px; width: 90%; justify-content: center; text-align: center; }
  .service-card { min-height: 310px; }
  .principle-grid, .capability-grid, .industry-grid, .feature-columns, .form-row { grid-template-columns: 1fr; }
  .industry-fit-grid { grid-template-columns: 1fr; }
  .principle-card { border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .principle-card:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
  .about-manifesto { padding: 40px; }
  .about-manifesto .brand-mark { top: 38px; right: 38px; }
  .service-index__row { grid-template-columns: 35px 1fr; }
  .service-index__row .circle-arrow, .service-index__tags { grid-column: 2; grid-row: auto; }
  .service-index__row .circle-arrow { width: 42px; height: 42px; }
  .services-orbit > span { width: 56px; height: 56px; transform: translate(-50%,-50%) rotate(var(--angle)) translateY(-180px) rotate(var(--counter)); }
  .service-signal { position: static; margin-top: 45px; justify-content: flex-start; flex-wrap: wrap; transform: none; }
  .blueprint-node { min-width: 48px; min-height: 48px; width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }
  .blueprint-node em { display: none; }
  .mini-process { grid-template-columns: 1fr 1fr; }
  .mini-step:nth-child(even) { border-right: 0; }
  .portfolio-toolbar { display: block; }
  .portfolio-filters { margin-top: 20px; }
  .case-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .case-cover { transform: translateY(45px); }
  .case-narrative { padding-top: 110px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { grid-column: span 1; }
  .project-navigation .container > div { grid-template-columns: 1fr; gap: 20px; }
  .solution-detail { grid-template-columns: 35px 1fr; }
  .solution-detail .circle-arrow { grid-column: 2; grid-row: auto; }
  .timeline-step__content { padding: 27px; }
  .ui-layout { grid-template-columns: 55px 1fr; min-height: 250px; }
  .ui-content { padding: 22px 15px; }
  .ui-metrics i { height: 62px; }
  .footer-grid { grid-template-columns: 1fr; }
  .credibility-points { grid-template-columns: 1fr; }
  .credibility-points span { border-right: 0; border-bottom: 1px solid var(--line); }
  .credibility-points span:last-child { border-bottom: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 25px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .tech-track, .portfolio-ticker div { transform: none !important; }
  .service-page-nav { display: none; }
}
