:root {
  color-scheme: dark;
  --blue: #2563eb;
  --blue-bright: #4c8dff;
  --blue-soft: rgba(37, 99, 235, 0.14);
  --ink: #080b0f;
  --ink-soft: #0d1118;
  --panel: #111720;
  --panel-light: #151d28;
  --line: #293240;
  --line-bright: #3b4b61;
  --text: #f7f9fc;
  --muted: #a9b2c1;
  --muted-dark: #7f8998;
  --success: #4ade80;
  --danger: #fb7185;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

button,
a,
input,
textarea,
select,
summary {
  outline: none;
}

:focus-visible {
  outline: 3px solid #8ab5ff;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6.7vw, 6.2rem);
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 7px;
  background: #fff;
  color: #05070a;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  flex: 0 0 auto;
  width: 1.2em;
  height: 1.2em;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(68, 82, 102, 0.55);
  background: rgba(8, 11, 15, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-navigation > a,
.service-menu > summary {
  min-height: 44px;
  padding: 0.68rem 0.85rem;
  border-radius: 8px;
  color: #d7dde7;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.main-navigation > a:hover,
.service-menu > summary:hover,
.service-menu[open] > summary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.service-menu {
  position: relative;
}

.service-menu > summary {
  display: flex;
  align-items: center;
  list-style: none;
}

.service-menu > summary::-webkit-details-marker {
  display: none;
}

.service-menu > summary::after {
  width: 0.45rem;
  height: 0.45rem;
  margin: -0.2rem 0 0 0.5rem;
  transform: rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
}

.service-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  display: grid;
  width: min(360px, 90vw);
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #10151d;
  box-shadow: var(--shadow);
}

.service-menu-panel a {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  color: #d7dde7;
  font-size: 0.9rem;
  text-decoration: none;
}

.service-menu-panel a:hover {
  background: var(--blue-soft);
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  background: #3474ef;
}

.button-small {
  min-height: 42px;
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
}

.button-secondary {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.025);
  color: #e9edf5;
}

.button-secondary:hover {
  border-color: #6d7d94;
  background: rgba(255, 255, 255, 0.07);
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--blue-bright);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.text-link:hover,
.text-button:hover {
  color: #8ab5ff;
  text-decoration: underline;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #11161e;
  color: #fff;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4.5px);
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-1.5px) rotate(-45deg);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(21, 97, 222, 0.18), transparent 35%),
    linear-gradient(135deg, #080b0f, #090e16 70%, #071125);
}

.hero {
  min-height: 760px;
}

.hero-geometry {
  position: absolute;
  top: 0;
  right: -8%;
  width: 58%;
  height: 20%;
  background: linear-gradient(135deg, #0b4ac0, #1c6fff 60%, #0b45b1);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
}

.home-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
}

.hero-copy,
.large-copy {
  max-width: 760px;
  margin-bottom: 2rem;
  color: #c4ccd8;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-area {
  margin: 2rem 0 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.brand-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1.8rem;
  place-items: center;
  border: 1px solid #344054;
  border-radius: 20px;
  background: linear-gradient(145deg, #131a25, #080b10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.brand-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.network-visual {
  position: relative;
  min-height: 540px;
  background-image: radial-gradient(circle, rgba(51, 125, 255, 0.56) 1.3px, transparent 1.4px);
  background-size: 27px 27px;
  mask-image: radial-gradient(circle at 55% 48%, #000 0, rgba(0, 0, 0, 0.95) 45%, transparent 78%);
}

.network-visual::before,
.network-visual::after {
  position: absolute;
  border: 1px solid rgba(58, 132, 255, 0.28);
  content: "";
  transform: rotate(-18deg);
}

.network-visual::before {
  inset: 18% 8% 26% 3%;
}

.network-visual::after {
  inset: 29% -4% 14% 17%;
  transform: rotate(22deg);
}

.network-orbit {
  position: absolute;
  border: 1px solid rgba(60, 137, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.12);
}

.orbit-one {
  inset: 15% 13% 24% 8%;
  transform: rotate(16deg);
}

.orbit-two {
  inset: 29% 3% 8% 24%;
  transform: rotate(-25deg);
}

.node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #b3d0ff;
  border-radius: 50%;
  background: #2f7cff;
  box-shadow: 0 0 26px 10px rgba(37, 99, 235, 0.38);
}

.node-one { top: 18%; left: 37%; }
.node-two { top: 38%; right: 12%; }
.node-three { right: 34%; bottom: 20%; }
.node-four { bottom: 31%; left: 13%; }

.visual-card {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 16%;
  display: grid;
  max-width: 265px;
  padding: 1.4rem;
  border: 1px solid rgba(85, 111, 150, 0.62);
  border-radius: 14px;
  background: rgba(9, 14, 23, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-card span {
  margin-bottom: 1rem;
  color: var(--blue-bright);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.visual-card strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.visual-card small {
  color: var(--muted);
  line-height: 1.5;
}

.process-overview {
  padding: clamp(1.8rem, 3vw, 2.6rem) 0;
  border-block: 1px solid rgba(46, 56, 70, 0.72);
  background: linear-gradient(180deg, #0b1017, #090d12);
}

.process-overview-heading {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.process-overview-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.process-overview-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.025em;
}

.process-overview-heading > p {
  max-width: 390px;
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-kpis {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-kpis li {
  display: flex;
  min-height: 108px;
  padding: 1.05rem 1.1rem;
  border: 1px solid #2d3848;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(18, 25, 36, 0.96), rgba(12, 17, 24, 0.96));
  flex-direction: column;
  justify-content: space-between;
}

.process-kpis span {
  color: var(--blue-bright);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.process-kpis strong {
  color: #c7cfda;
  font-size: 0.84rem;
  font-weight: 600;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-alt {
  border-block: 1px solid rgba(46, 56, 70, 0.72);
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  margin-bottom: 3rem;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 4rem;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 27, 38, 0.98), rgba(9, 13, 18, 0.98));
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #4266a1;
}

.service-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  filter: blur(30px);
  content: "";
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 1px solid #33445f;
  border-radius: 12px;
  background: #0c121b;
  color: var(--blue-bright);
}

.card-icon .icon {
  width: 24px;
  height: 24px;
}

.card-number {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: #536176;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.service-card h3 a,
.post-card h2 a,
.related-grid h3 a {
  text-decoration: none;
}

.service-card h3 a::after,
.post-card h2 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-card > p:not(.card-number) {
  color: var(--muted);
}

.service-card .text-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.split-grid,
.proof-grid,
.article-grid,
.content-grid,
.faq-layout,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

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

.steps li {
  display: grid;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 70px 1fr;
  gap: 1rem;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span,
.process-grid > li > span {
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.steps p,
.feature-grid p,
.process-grid p,
.related-grid p,
.post-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.feature-grid article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
}

.feature-grid .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 1.3rem;
  color: var(--blue-bright);
}

.location-grid {
  align-items: center;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
}

.about-profile-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.profile-card,
.location-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.profile-card picture,
.location-photo picture {
  display: block;
}

.profile-card img,
.location-photo img {
  width: 100%;
  object-fit: cover;
}

.profile-card img {
  height: auto;
  aspect-ratio: 1;
}

.profile-card figcaption {
  display: grid;
  padding: 1.2rem 1.35rem;
  gap: 0.2rem;
}

.profile-card figcaption strong {
  color: #fff;
  font-size: 1.05rem;
}

.profile-card figcaption span,
.location-photo figcaption {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.about-copy h2 {
  margin-top: 0;
}

.location-photo img {
  height: clamp(240px, 28vw, 340px);
}

.location-photo figcaption {
  padding: 0.9rem 1.1rem;
}

.external-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
}

.map-mark {
  display: grid;
  min-height: 340px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.26), transparent 37%),
    radial-gradient(circle, rgba(70, 132, 244, 0.42) 1px, transparent 1px);
  background-size: auto, 24px 24px;
}

.map-mark .icon {
  width: 84px;
  height: 84px;
  color: var(--blue-bright);
  filter: drop-shadow(0 0 22px rgba(37, 99, 235, 0.5));
}

.cta-section {
  padding: 2rem 0 7rem;
}

.cta-panel {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid #345894;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(12, 26, 51, 0.96), rgba(10, 14, 21, 0.98)),
    var(--ink-soft);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.cta-panel h2 {
  margin-bottom: 0.9rem;
}

.cta-panel p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
}

.breadcrumb {
  padding-top: 1.35rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.55rem;
  color: #526074;
  content: "/";
}

.breadcrumb a {
  color: #c4ccd8;
}

.inner-hero {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.inner-hero::after {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 45%;
  height: 42%;
  background: linear-gradient(135deg, #0a45af, #1f6df5);
  clip-path: polygon(24% 0, 100% 0, 78% 100%, 0 100%);
  content: "";
  opacity: 0.75;
}

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

.inner-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.7rem);
}

.article-grid h2,
.content-grid h2,
.faq-layout h2 {
  position: sticky;
  top: 118px;
}

.prose {
  color: #c6ceda;
  font-size: 1.05rem;
}

.prose p {
  margin-bottom: 1.4rem;
}

.prose h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.prose h3 {
  margin-top: 2.4rem;
}

.prose a {
  color: #75a7ff;
}

.prose .button,
.prose .button:hover {
  color: #fff;
}

.prose code {
  padding: 0.15rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #0f151e;
  font-size: 0.92em;
}

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

.check-list li {
  display: flex;
  padding: 1rem 0;
  align-items: flex-start;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  color: #d5dbe5;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list .icon {
  width: 21px;
  height: 21px;
  margin-top: 0.18rem;
  color: var(--blue-bright);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.process-grid li {
  min-height: 275px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-right: 0;
}

.process-grid li:first-child {
  border-radius: 14px 0 0 14px;
}

.process-grid li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
}

.process-grid h3 {
  margin-top: 2.5rem;
}

.related-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.related-grid > article,
.post-card,
.reference-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #111720, #0b0f15);
}

.reference-showcase {
  display: grid;
  gap: clamp(4.5rem, 9vw, 8rem);
}

.reference-project {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.reference-project:nth-child(even) .reference-project-visual {
  order: 2;
}

.reference-project:nth-child(even) {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
}

.reference-project-visual {
  position: relative;
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.reference-index {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(138, 181, 255, 0.5);
  border-radius: 9px;
  background: rgba(6, 10, 16, 0.82);
  color: #d8e7ff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  place-items: center;
  backdrop-filter: blur(10px);
}

.reference-project-copy {
  min-width: 0;
}

.reference-project-copy h2,
.reference-project-copy h3 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.reference-project-copy h2 a,
.reference-project-copy h3 a {
  text-decoration: none;
}

.reference-project-copy h2 a:hover,
.reference-project-copy h3 a:hover {
  color: #d9e6fb;
}

.reference-project-copy > p {
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.reference-meta,
.reference-tags,
.reference-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.reference-meta span {
  color: #86afff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-meta span + span::before {
  margin-right: 0.55rem;
  color: #536176;
  content: "•";
}

.reference-tags {
  margin: 0 0 1.6rem;
}

.reference-tags span {
  padding: 0.38rem 0.68rem;
  border: 1px solid #344156;
  border-radius: 999px;
  color: #bfc9d8;
  font-size: 0.72rem;
  line-height: 1.35;
}

.reference-preview {
  position: relative;
  width: 100%;
}

.reference-preview-single .reference-screen {
  aspect-ratio: 1590 / 992;
}

.reference-preview-stack {
  aspect-ratio: 16 / 11;
}

.reference-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid #334057;
  border-radius: 15px;
  background: #0b0f15;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.reference-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-preview-stack .reference-screen-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 83%;
  aspect-ratio: 1590 / 992;
}

.reference-preview-stack .reference-screen-secondary {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 1590 / 992;
  border-color: #4b5d78;
}

.reference-screen-secondary figcaption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(6, 9, 13, 0.78);
  color: #edf3fb;
  font-size: 0.66rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.reference-showcase-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.reference-project-compact {
  display: block;
}

.reference-project-compact:nth-child(even) .reference-project-visual {
  order: initial;
}

.reference-project-compact .reference-project-visual {
  margin-bottom: 1.8rem;
}

.reference-project-compact .reference-project-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.reference-project-compact .reference-preview-stack {
  aspect-ratio: 16 / 12;
}

.section-link-row {
  display: flex;
  margin-top: 2.5rem;
  justify-content: flex-end;
}

.reference-detail-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.15), transparent 34%), #090d13;
}

.reference-detail-heading {
  max-width: 920px;
}

.reference-detail-heading .eyebrow {
  margin: 1.1rem 0 1.3rem;
}

.reference-detail-heading h1 {
  max-width: 960px;
}

.reference-detail-heading .hero-copy {
  max-width: 780px;
}

.reference-client {
  margin-bottom: 1rem;
  color: #d4dbe6;
  font-weight: 650;
}

.reference-detail-actions {
  margin-top: 1.5rem;
  gap: 1.4rem;
}

.reference-detail-hero .reference-preview {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.reference-lead-copy > p {
  color: #c2cad6;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.reference-tech,
.reference-result {
  margin-top: 2.7rem;
  padding-top: 2.1rem;
  border-top: 1px solid var(--line);
}

.reference-tech h3,
.reference-result h3 {
  margin-bottom: 1.2rem;
}

.reference-tech .reference-tags {
  margin-bottom: 0;
}

.reference-result p {
  margin-bottom: 0;
  color: #c4cdda;
}

.reference-gallery-section {
  border-bottom: 1px solid var(--line);
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reference-gallery-item {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c1118;
}

.reference-gallery-item-wide {
  grid-column: 1 / -1;
}

.reference-gallery-item img {
  width: 100%;
  aspect-ratio: 1590 / 992;
  object-fit: contain;
  background: #070a0e;
}

.reference-gallery-item figcaption {
  display: flex;
  min-height: 72px;
  padding: 1rem 1.15rem;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.reference-gallery-item figcaption span {
  color: #76a5ff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: #eff3f8;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: var(--blue-bright);
  font-size: 1.5rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.empty-state {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.empty-state .card-icon {
  margin-inline: auto;
}

.empty-state p {
  margin: 0 auto 2rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.contact-details > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-details address {
  display: grid;
  margin-top: 2rem;
  gap: 0.75rem;
  font-style: normal;
}

.availability-card {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid #345894;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(20, 38, 69, 0.72), rgba(11, 16, 23, 0.96));
}

.availability-title {
  display: flex;
  margin-bottom: 0.9rem;
  align-items: center;
  gap: 0.65rem;
}

.availability-title .icon {
  width: 22px;
  height: 22px;
  color: var(--blue-bright);
}

.availability-card dl {
  display: grid;
  margin: 0 0 0.9rem;
  gap: 0.35rem;
}

.availability-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.availability-card dt {
  color: var(--muted);
}

.availability-card dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.availability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-details address a {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #e7ebf2;
  text-decoration: none;
}

.contact-details address a:hover {
  border-color: #486998;
}

.contact-details address small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details address .icon {
  width: 23px;
  height: 23px;
  margin-top: 0.15rem;
  color: var(--blue-bright);
}

.company-id {
  margin-top: 1.2rem;
  font-size: 0.85rem;
}

.contact-form {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: flex;
  color: #e6ebf2;
  font-size: 0.9rem;
  font-weight: 650;
  flex-direction: column;
  gap: 0.55rem;
}

.field-label {
  display: flex;
  min-height: 22px;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.field-label small {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

.required-mark,
.contact-form label strong {
  display: inline;
  color: #7facff;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  height: 54px;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #3a4555;
  border-radius: 8px;
  background: #0b1017;
  color: #fff;
}

.contact-form textarea {
  height: auto;
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(76, 141, 255, 0.18);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--danger);
}

.contact-form small {
  color: var(--muted-dark);
  font-weight: 400;
}

.consent-check {
  display: flex !important;
  align-items: flex-start;
  flex-direction: row !important;
  gap: 0.7rem !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.consent-check input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
}

.form-feedback.success {
  color: var(--success);
}

.form-feedback.error {
  color: var(--danger);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-list span,
.post-meta span {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bdc6d3;
  font-size: 0.74rem;
}

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

.post-card {
  min-height: 330px;
}

.post-card h2 {
  font-size: 1.45rem;
}

.post-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.post-card .text-link {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.article-header {
  padding: clamp(5rem, 9vw, 8rem) 0 4rem;
}

.article-header h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.article-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  gap: 1.2rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-layout {
  display: grid;
  padding-bottom: 7rem;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d1219;
}

.toc ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.toc a {
  color: var(--muted);
  font-size: 0.85rem;
}

.share-button {
  padding: 0;
}

.share-status {
  min-height: 1rem;
  margin: 0.5rem 0 0;
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.article-prose > section:first-child h2 {
  margin-top: 0;
}

.article-cta {
  margin-top: 4rem;
  padding: 2rem;
  border: 1px solid #345894;
  border-radius: var(--radius);
  background: #0d1728;
}

.article-cta h2 {
  margin-top: 0;
  font-size: 2rem;
}

.policy {
  max-width: 820px;
  margin-inline: auto;
}

.error-page {
  min-height: 70vh;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080c;
}

.footer-grid {
  display: grid;
  padding: 4.5rem 0 3rem;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.25fr;
  gap: 3rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-grid strong {
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 1.25rem;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #202732;
  color: #6f7988;
  font-size: 0.76rem;
}

.footer-bottom .text-button {
  color: #9aa5b4;
  font-size: 0.76rem;
}

.consent-banner {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: min(690px, calc(100% - 2rem));
  padding: 1.5rem;
  border: 1px solid #405575;
  border-radius: 14px;
  background: rgba(13, 18, 25, 0.98);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr;
  gap: 1.25rem;
  backdrop-filter: blur(16px);
}

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

.consent-banner h2 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.consent-banner p:not(.eyebrow) {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.consent-banner a {
  color: #8ab5ff;
  font-size: 0.84rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.consent-actions .button {
  min-height: 43px;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
}

@media (max-width: 1060px) {
  .menu-button {
    display: inline-flex;
  }

  .main-navigation {
    position: fixed;
    z-index: 90;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 78px);
    padding: 1rem 1.5rem 2rem;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #0a0e14;
    align-items: stretch;
    flex-direction: column;
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation > a,
  .service-menu > summary {
    width: 100%;
    min-height: 48px;
  }

  .service-menu-panel {
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    box-shadow: none;
  }

  .navigation-cta {
    margin-top: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1rem;
  }

  .network-visual {
    transform: translateX(13%);
    opacity: 0.75;
  }

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

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:last-child {
    border: 1px solid var(--line);
    border-radius: 12px;
  }

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

  .reference-project {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .reference-project:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .reference-project:nth-child(even) .reference-project-visual {
    order: initial;
  }

  .reference-project-copy {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .brand img,
  .footer-brand img {
    height: 40px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    display: block;
  }

  .hero-content {
    padding: 7rem 0 16rem;
    text-align: center;
  }

  .brand-icon {
    margin-inline: auto;
  }

  .hero-actions,
  .tag-list {
    justify-content: center;
  }

  .network-visual {
    position: absolute;
    right: -28%;
    bottom: -10%;
    left: -28%;
    min-height: 420px;
    transform: none;
    opacity: 0.45;
  }

  .visual-card {
    display: none;
  }

  .hero-geometry {
    right: -45%;
    width: 120%;
    height: 10%;
  }

  .process-overview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

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

  .process-kpis li:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.375rem);
    justify-self: center;
  }

  .section-heading,
  .split-grid,
  .proof-grid,
  .about-profile-grid,
  .article-grid,
  .content-grid,
  .faq-layout,
  .location-grid,
  .contact-layout,
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-grid h2,
  .content-grid h2,
  .faq-layout h2,
  .toc {
    position: static;
  }

  .service-grid,
  .post-grid,
  .related-grid,
  .reference-showcase-compact,
  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .reference-showcase {
    gap: 4.5rem;
  }

  .reference-project-compact .reference-preview-stack,
  .reference-preview-stack {
    aspect-ratio: 16 / 12;
  }

  .reference-preview-stack .reference-screen-primary {
    width: 91%;
  }

  .reference-preview-stack .reference-screen-secondary {
    width: 63%;
  }

  .reference-project-copy h2,
  .reference-project-copy h3 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .reference-gallery-item-wide {
    grid-column: auto;
  }

  .reference-gallery-item figcaption {
    min-height: 0;
  }

  .reference-detail-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .section-link-row {
    justify-content: flex-start;
  }

  .service-card,
  .service-card:nth-child(n) {
    min-height: 300px;
    grid-column: auto;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .map-mark {
    min-height: 240px;
  }

  .cta-panel {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel .button {
    width: 100%;
  }

  .inner-hero::after {
    top: 0;
    right: -50%;
    width: 120%;
    height: 16%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom {
    padding: 1.25rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-banner {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-form,
  .service-card,
  .post-card,
  .related-grid > article {
    padding: 1.25rem;
  }

  .reference-index {
    top: 0.6rem;
    left: 0.6rem;
    width: 36px;
    height: 36px;
  }

  .reference-screen,
  .reference-gallery-item {
    border-radius: 10px;
  }

  .reference-screen-secondary figcaption {
    display: none;
  }
}

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