@font-face {
  font-family: "QBEE Sans";
  src: url("assets/poppins.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: oklch(0.115 0.045 285);
  --bg-deep: oklch(0.075 0.028 285);
  --surface: oklch(0.175 0.055 285);
  --surface-raised: oklch(0.225 0.072 284);
  --ink: oklch(0.965 0.008 285);
  --muted: oklch(0.76 0.025 285);
  --primary: oklch(0.56 0.245 282);
  --primary-strong: oklch(0.49 0.24 282);
  --accent: oklch(0.78 0.18 282);
  --line: oklch(0.965 0.008 285 / 0.16);
  --line-strong: oklch(0.965 0.008 285 / 0.3);
  --danger: oklch(0.72 0.18 25);
  --header-height: 76px;
  --radius-card: 14px;
  --radius-control: 10px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: min(1440px, calc(100% - 80px));
  --z-sticky: 30;
  --z-backdrop: 50;
  --z-modal: 60;
  --z-float: 40;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "QBEE Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-modal) + 1);
  padding: 10px 16px;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--bg-deep);
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 6.2vw, 5.65rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 em {
  display: inline;
  color: var(--accent);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 164px) 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow,
.section-index {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.button:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.86rem;
}

.button-secondary {
  min-width: 210px;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 6px 22px;
  border: 1px solid var(--line-strong);
  background: oklch(0.12 0.05 285 / 0.78);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--bg-deep);
}

.button-secondary-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg-deep);
  font-size: 1rem;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.button-secondary:hover .button-secondary-icon {
  background: var(--primary);
  color: var(--ink);
  transform: translateY(2px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  transition: border-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-sticky);
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: minmax(180px, 1fr) auto minmax(400px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out);
}

.site-header.is-sticky {
  position: fixed;
  border-color: var(--line);
  background: oklch(0.09 0.035 285 / 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  display: inline-flex;
  width: 164px;
  height: 62px;
  align-items: center;
  overflow: hidden;
}

.brand img,
.mobile-menu-bar img,
.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-current,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-phone {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.header-phone strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--bg-deep);
  color: var(--ink);
}

.mobile-menu::backdrop {
  background: var(--bg-deep);
}

.mobile-menu[open] {
  display: grid;
  grid-template-rows: var(--header-height) 1fr auto;
}

.mobile-menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-bar img {
  width: 136px;
}

.mobile-menu-bar button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
}

.mobile-menu nav a {
  display: flex;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.7rem, 8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--accent);
}

.mobile-menu-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-network-x: 0px;
  --hero-network-y: 0px;
  position: relative;
  display: flex;
  min-height: 100dvh;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--bg-deep);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.075 0.028 285 / 0.98) 0%, oklch(0.075 0.028 285 / 0.87) 40%, oklch(0.075 0.028 285 / 0.2) 74%),
    linear-gradient(0deg, oklch(0.075 0.028 285 / 0.7), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  content: "";
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: paint;
  translate: var(--hero-shift-x) var(--hero-shift-y);
  scale: 1.025;
  animation: hero-curtain 1.25s var(--ease-out) both;
  transition: translate 900ms var(--ease-out);
  will-change: translate;
}

.hero-background::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -30%;
  width: 30%;
  background: linear-gradient(90deg, transparent, oklch(0.78 0.18 282 / 0.12), transparent);
  content: "";
  filter: blur(18px);
  transform: skewX(-14deg);
  animation: city-signal-sweep 9s var(--ease-out) 1.8s infinite;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-camera 24s ease-in-out infinite alternate;
  transform-origin: 62% 48%;
  will-change: transform;
}

.hero-glow {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 1%;
  width: min(54vw, 840px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.65 0.23 282 / 0.12), transparent 66%);
  pointer-events: none;
  animation: glow-drift 10s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--shell);
  min-height: calc(100dvh - var(--header-height));
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 820px;
  align-self: center;
  padding: clamp(44px, 7vh, 88px) 0;
  transform-origin: left center;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  gap: 10px 24px;
  list-style: none;
}

.hero-pillars li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-pillars li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px oklch(0.78 0.18 282 / 0.72);
  content: "";
}

.hero-summary {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-network {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  translate: var(--hero-network-x) var(--hero-network-y);
  transition: translate 900ms var(--ease-out);
  will-change: translate, opacity, transform;
}

.hero-wave {
  position: absolute;
  top: 7%;
  right: -1.5%;
  width: min(68vw, 1020px);
  height: 79%;
  overflow: visible;
}

.hero-wave.hero-wave--journey {
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 100%;
  animation: hero-camera 24s ease-in-out infinite alternate;
  transform-origin: 62% 48%;
  will-change: transform;
}

.hero-wave--mobile {
  display: none;
}

.wave-halo,
.wave-route,
.wave-stream {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.wave-halo {
  stroke: var(--accent);
  stroke-width: 16;
  opacity: 0.055;
}

.wave-route {
  stroke: url(#hero-wave-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: wave-draw 1.6s var(--ease-out) 520ms forwards;
}

.wave-route--mobile {
  stroke: url(#hero-wave-mobile-gradient);
}

.wave-stream {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0.045 0.038;
  animation: wave-stream-arrive 700ms var(--ease-out) 1.1s both, wave-flow 5.4s linear 1.1s infinite;
}

.wave-traveller,
.wave-signal {
  fill: var(--accent);
}

.wave-traveller,
.wave-signal {
  filter: drop-shadow(0 0 7px oklch(0.78 0.18 282 / 0.82));
}

.wave-traveller-small {
  opacity: 0.7;
}

.wave-checkpoint-ring,
.wave-checkpoint-core {
  transform-box: fill-box;
  transform-origin: center;
}

.wave-checkpoint-ring {
  fill: oklch(0.78 0.18 282 / 0.08);
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0.26;
}

.wave-checkpoint-core {
  fill: var(--ink);
  opacity: 0.64;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-wave--journey .wave-checkpoint-ring {
    animation: wave-stage-ring 7.2s linear var(--stage-delay) infinite;
  }

  .hero-wave--journey .wave-checkpoint-core {
    animation: wave-stage-core 7.2s linear var(--stage-delay) infinite;
  }

  .hero-pillars--journey li {
    --stage-delay: 2.20s;
    animation: hero-stage-focus 7.2s linear var(--stage-delay) infinite;
    opacity: 0.76;
  }

  .hero-pillars--journey li:nth-child(2) {
    --stage-delay: 3.39s;
  }

  .hero-pillars--journey li:nth-child(3) {
    --stage-delay: 6.14s;
  }

  .hero-pillars--journey li::before {
    animation: hero-stage-dot 7.2s linear var(--stage-delay) infinite;
  }
}

.service-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

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

.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-set span {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(56px, 8vw, 130px);
}

.intro-copy h2,
.section-heading h2 {
  max-width: 760px;
}

.intro-copy > p:not(.section-index),
.section-heading > p,
.audiences-sticky > p,
.process-heading > p,
.faq-heading > p,
.contact-copy > p,
.about-copy > p,
.platforms-inner > p {
  max-width: 68ch;
  color: var(--muted);
}

.intro-media {
  position: relative;
  margin: 0;
}

.intro-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.intro-media figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.services {
  background: var(--bg-deep);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.service-tabs {
  display: flex;
  flex-direction: column;
  padding-right: clamp(26px, 4vw, 64px);
  border-right: 1px solid var(--line-strong);
}

.service-tabs button {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 7px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 220ms var(--ease-out), padding-left 220ms var(--ease-out);
}

.service-tabs button strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.service-tabs button span {
  max-width: 36ch;
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-tabs button[aria-selected="true"] {
  padding-left: 18px;
  color: var(--accent);
}

.service-tabs button[aria-selected="true"] strong {
  color: var(--accent);
}

.service-panels {
  min-width: 0;
  padding: clamp(34px, 5vw, 72px) 0 clamp(34px, 5vw, 72px) clamp(34px, 6vw, 88px);
}

.service-panel {
  min-height: 540px;
}

.service-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.panel-copy > p {
  margin-bottom: 34px;
  color: var(--muted);
}

.panel-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.panel-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.91rem;
}

.panel-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 30% 20%, oklch(0.78 0.18 282 / 0.28), transparent 26%),
    linear-gradient(145deg, var(--primary-strong), oklch(0.2 0.09 285));
  isolation: isolate;
}

.panel-visual::before,
.panel-visual::after {
  position: absolute;
  border: 1px solid oklch(0.965 0.008 285 / 0.25);
  border-radius: 50%;
  content: "";
}

.panel-visual::before {
  width: 72%;
  aspect-ratio: 1;
}

.panel-visual::after {
  width: 46%;
  aspect-ratio: 1;
}

.panel-visual span {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--bg-deep);
  font-size: 0.76rem;
  font-weight: 600;
}

.panel-visual span:nth-child(1) { top: 18%; left: 14%; }
.panel-visual span:nth-child(2) { top: 48%; right: 12%; }
.panel-visual span:nth-child(3) { bottom: 15%; left: 24%; }

.visual-software { background: linear-gradient(145deg, oklch(0.26 0.12 266), oklch(0.17 0.08 302)); }
.visual-design { background: linear-gradient(145deg, oklch(0.56 0.18 314), oklch(0.18 0.07 285)); }
.visual-infrastructure { background: linear-gradient(145deg, oklch(0.3 0.1 274), oklch(0.16 0.06 285)); }
.visual-consulting { background: linear-gradient(145deg, oklch(0.47 0.2 282), oklch(0.14 0.05 285)); }

.audiences-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 150px);
}

.audiences-sticky {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.audience-list article {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(220px, 0.7fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list article:first-child {
  border-top: 1px solid var(--line);
}

.audience-list article > span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.audience-list article h3,
.audience-list article p {
  margin-bottom: 0;
}

.audience-list article p {
  color: var(--muted);
  font-size: 0.88rem;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 128px);
}

.about-media {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: oklch(0.95 0.018 285);
}

.about-media img {
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: contain;
}

.about-copy h3 {
  margin-top: 34px;
}

.values-mosaic {
  display: grid;
  margin-top: clamp(72px, 10vw, 144px);
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.values-mosaic article {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--bg);
}

.values-mosaic article:nth-child(2),
.values-mosaic article:nth-child(6) {
  background: var(--surface-raised);
}

.values-mosaic article:nth-child(3) {
  background: oklch(0.31 0.14 282);
}

.values-mosaic .value-feature {
  grid-column: span 2;
}

.values-mosaic p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.value-visual {
  display: grid;
  place-items: center;
  background: var(--primary) !important;
}

.value-visual img {
  width: 148px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 44px oklch(0.08 0.035 285 / 0.24);
}

.process {
  background: var(--bg-deep);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(64px, 10vw, 160px);
}

.process-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.process-heading .text-link {
  margin-top: 22px;
}

.process-route {
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-route li {
  position: relative;
  min-height: 190px;
  padding: 0 0 56px 88px;
  counter-increment: process;
}

.process-route li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--accent);
  content: counter(process, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 600;
}

.process-route li::after {
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.process-route li:last-child::after {
  display: none;
}

.process-route p {
  max-width: 56ch;
  color: var(--muted);
}

.platforms {
  padding-top: 0;
}

.platforms-inner {
  padding: clamp(48px, 7vw, 88px);
  border-radius: var(--radius-card);
  background: var(--primary-strong);
}

.platforms-inner h2 {
  max-width: 770px;
}

.platforms-inner > p {
  color: var(--ink);
  opacity: 0.84;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
  gap: 10px;
}

.platform-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid oklch(0.965 0.008 285 / 0.32);
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(64px, 10vw, 160px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 52px 22px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  transition: transform 220ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 64ch;
  margin: -4px 0 26px;
  color: var(--muted);
}

.contact {
  min-height: 920px;
  overflow: hidden;
  background: var(--bg-deep);
}

.contact-background {
  position: absolute;
  inset: 0;
}

.contact-background::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.075 0.028 285 / 0.97) 0%, oklch(0.075 0.028 285 / 0.83) 48%, oklch(0.075 0.028 285 / 0.62));
  content: "";
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 0.76fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 700px;
}

.contact-direct {
  display: grid;
  max-width: 600px;
  margin-top: 50px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}

.contact-direct a,
.contact-direct > p {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  border-bottom: 1px solid var(--line-strong);
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-direct strong {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-direct a:hover strong {
  color: var(--accent);
}

.contact-form {
  color-scheme: dark;
  overflow: hidden;
  border: 1px solid oklch(0.34 0.1 285);
  border-radius: var(--radius-card);
  background: oklch(0.105 0.038 285);
  color: var(--ink);
}

.form-intro {
  margin: 0;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3.4vw, 38px) clamp(22px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line);
  background: oklch(0.16 0.055 285);
}

.form-intro h3 {
  max-width: 22ch;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.form-intro > p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  color: oklch(0.79 0.022 285);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-assurance {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 650;
  gap: 8px;
}

.form-assurance span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--ink);
  font-size: 0.62rem;
}

.form-body {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3.4vw, 38px) clamp(24px, 3.4vw, 36px);
}

.form-required {
  margin-bottom: 15px;
  color: oklch(0.7 0.025 285);
  font-size: 0.68rem;
}

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

.field {
  display: grid;
  margin-bottom: 15px;
  gap: 7px;
}

.field label {
  color: oklch(0.9 0.012 285);
  font-size: 0.75rem;
  font-weight: 650;
  transition: color 180ms var(--ease-out);
}

.field:focus-within label {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid oklch(0.49 0.09 285);
  border-radius: var(--radius-control);
  background-color: oklch(0.14 0.045 285);
  color: var(--ink);
  caret-color: var(--accent);
  font-size: 0.875rem;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field select {
  padding-right: 42px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='m5 7 4 4 4-4' stroke='%23d7c6ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: oklch(0.69 0.025 285);
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background-color: oklch(0.18 0.06 285);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.78 0.18 282 / 0.16);
  outline: 0;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  background-color: oklch(0.16 0.055 25);
}

.field-help {
  color: oklch(0.72 0.02 285);
  font-size: 0.7rem;
  line-height: 1.5;
}

.field-error {
  min-height: 1.1rem;
  color: oklch(0.78 0.14 25);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 54px;
  justify-content: space-between;
  margin-top: 2px;
  padding: 7px 7px 7px 20px;
  font-size: 0.82rem;
}

.form-submit-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: oklch(0.18 0.06 285);
  color: var(--accent);
  font-size: 1rem;
  transition: transform 220ms var(--ease-out);
}

.form-submit:hover .form-submit-icon {
  transform: translate(2px, -2px);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 14px 0 0;
  color: oklch(0.72 0.02 285);
  font-size: 0.68rem;
  gap: 8px;
  text-align: left;
}

.form-privacy-icon {
  flex: 0 0 auto;
  color: oklch(0.78 0.14 145);
  font-weight: 700;
}

.form-privacy span:last-child {
  max-width: 36ch;
}

.form-status {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: var(--radius-control);
  color: oklch(0.86 0.03 282);
  background: oklch(0.17 0.055 282);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: oklch(0.82 0.14 25);
  background: oklch(0.17 0.055 25);
}

.form-status[data-state="success"] {
  color: oklch(0.82 0.12 145);
  background: oklch(0.17 0.05 145);
}

/* Standalone services and portfolio pages */
.inner-page .site-header:not(.is-sticky) {
  border-bottom-color: var(--line);
  background: linear-gradient(180deg, oklch(0.075 0.028 285 / 0.9), oklch(0.075 0.028 285 / 0.62));
}

.inner-hero {
  min-height: 84dvh;
}

.inner-hero .hero-grid {
  min-height: calc(84dvh - var(--header-height));
}

.inner-hero .hero-copy {
  max-width: 760px;
}

.inner-hero h1 {
  max-width: 720px;
}

.inner-hero .hero-background img {
  object-position: 64% center;
}

.portfolio-hero .hero-background img {
  object-position: center;
}

.inner-hero::after {
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
}

.page-jump-nav {
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  scrollbar-width: none;
}

.page-jump-nav::-webkit-scrollbar {
  display: none;
}

.page-jump-nav .section-shell {
  display: flex;
  width: max-content;
  min-width: var(--shell);
  align-items: stretch;
}

.page-jump-nav a {
  display: inline-flex;
  min-height: 66px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.page-jump-nav a:first-child {
  padding-left: 0;
}

.page-jump-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.service-guide,
.project-archive {
  background: var(--bg-deep);
}

.page-intro {
  max-width: 920px;
  margin-bottom: clamp(72px, 10vw, 140px);
}

.page-intro > p:last-child {
  max-width: 68ch;
  color: var(--muted);
}

.service-detail-list {
  border-top: 1px solid var(--line-strong);
}

.service-detail {
  display: grid;
  padding: clamp(72px, 9vw, 126px) 0;
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 130px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.service-detail-heading > p:first-child {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-detail-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.service-detail-heading > p:last-child {
  max-width: 46ch;
  color: var(--muted);
}

.service-detail-body {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(220px, 0.76fr) minmax(300px, 1.24fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
}

.service-detail-body-text {
  align-items: stretch;
}

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

.capability-list li {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.86rem;
}

.values-mosaic article,
.project-entry,
.capability-list li {
  transform-origin: center bottom;
}

.audience-list article,
.delivery-route li {
  transform-origin: right center;
}

@keyframes card-reveal-media {
  from {
    opacity: 0.28;
    clip-path: inset(8% 0 0 0 round var(--radius-card));
    filter: blur(6px) saturate(0.82);
    transform: translateY(var(--card-reveal-distance, 34px)) scale(0.975);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round var(--radius-card));
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes card-reveal-image {
  from { filter: saturate(0.78) contrast(0.96); transform: scale(1.075); }
  to { filter: saturate(1) contrast(1); transform: scale(1); }
}

@keyframes card-reveal-copy {
  from { opacity: 0.22; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes card-reveal-tile {
  from {
    opacity: 0.32;
    filter: blur(4px);
    transform: translateY(var(--card-tile-distance, 24px)) scale(0.985);
  }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@keyframes card-reveal-row {
  from {
    opacity: 0.3;
    clip-path: inset(0 0 0 7%);
    filter: blur(3px);
    transform: translateX(var(--card-reveal-distance, 34px));
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-card-reveal="media"].is-card-revealing {
    animation: card-reveal-media 780ms var(--ease-out) var(--card-reveal-delay, 0ms) backwards;
  }

  [data-card-reveal="media"].is-card-revealing figure img {
    animation: card-reveal-image 920ms var(--ease-out) calc(var(--card-reveal-delay, 0ms) + 40ms) backwards;
  }

  [data-card-reveal="media"].is-card-revealing .project-info > * {
    animation: card-reveal-copy 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--card-copy-delay, 150ms) backwards;
  }

  [data-card-reveal="tile"].is-card-revealing {
    animation: card-reveal-tile 620ms var(--ease-out) var(--card-reveal-delay, 0ms) backwards;
  }

  [data-card-reveal="row"].is-card-revealing {
    animation: card-reveal-row 620ms var(--ease-out) var(--card-reveal-delay, 0ms) backwards;
  }
}

.service-detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.service-detail-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.service-detail-media:hover img {
  transform: scale(1.025);
}

.service-detail-media.portrait-media img {
  aspect-ratio: 4 / 5;
  object-position: center 20%;
}

.service-principle {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 82% 12%, oklch(0.78 0.18 282 / 0.2), transparent 32%),
    var(--surface-raised);
}

.service-principle strong {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.service-principle p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
}

.delivery-section {
  background: var(--surface);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 10vw, 160px);
}

.delivery-heading,
.outcomes-heading {
  align-self: start;
}

.delivery-heading > p:last-child {
  max-width: 48ch;
  color: var(--muted);
}

.delivery-route {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.delivery-route li {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(150px, 0.52fr) 1fr;
  gap: 32px;
}

.delivery-route strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.delivery-route span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-cta {
  background:
    radial-gradient(circle at 86% 16%, oklch(0.78 0.18 282 / 0.18), transparent 28%),
    var(--bg);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
}

.page-cta-inner h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.page-cta-inner .button {
  margin-bottom: 8px;
}

.portfolio-disclosure {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.portfolio-disclosure .section-shell {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.portfolio-disclosure strong {
  color: var(--accent);
  font-size: 0.82rem;
}

.portfolio-disclosure p {
  max-width: 78ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(56px, 6vw, 76px) clamp(20px, 2.4vw, 32px);
}

.project-entry {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.project-entry:hover {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  transform: translateY(-3px);
}

.project-info {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.project-info > div:first-child {
  min-height: 82px;
}

.project-info > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.project-sector {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.project-info h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
}

.project-info p:not(.project-sector) {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  gap: 10px;
  margin-top: auto;
  transition: border-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.project-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  padding: 80px 40px 24px;
  border-top: 1px solid var(--line);
  background: oklch(0.055 0.018 285);
}

.footer-main {
  display: grid;
  width: min(1440px, 100%);
  margin-inline: auto;
  grid-template-columns: 1.3fr 0.6fr 0.8fr;
  gap: 72px;
}

.footer-brand img {
  width: 186px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-main nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.83rem;
}

.footer-main nav strong,
.footer-contact > strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.footer-main nav a,
.footer-contact a {
  color: var(--muted);
}

.footer-main nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  width: min(1440px, 100%);
  margin: 64px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.69rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-float);
  display: grid;
  width: 56px;
  min-width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid oklch(0.78 0.18 282 / 0.58);
  border-radius: 50%;
  background: var(--primary);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px oklch(0.965 0.008 285 / 0.12), 0 6px 8px oklch(0.055 0.018 285 / 0.3);
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.whatsapp-float:hover {
  border-color: var(--accent);
  background: var(--primary-strong);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
  pointer-events: none;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

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

@keyframes hero-curtain {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes hero-camera {
  from { transform: scale(1.065) translate3d(1.15%, -0.35%, 0); }
  to { transform: scale(1.015) translate3d(-0.65%, 0.45%, 0); }
}

@keyframes wave-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes wave-stream-arrive {
  from { opacity: 0; }
  to { opacity: 0.78; }
}

@keyframes wave-flow {
  to { stroke-dashoffset: -1; }
}

@keyframes wave-stage-ring {
  0% {
    opacity: 0.24;
    transform: scale(0.68);
  }
  5% {
    opacity: 0.86;
    transform: scale(1);
  }
  14% {
    opacity: 0;
    transform: scale(1.75);
  }
  15%,
  100% {
    opacity: 0.24;
    transform: scale(1);
  }
}

@keyframes wave-stage-core {
  0%,
  100% {
    fill: var(--ink);
    opacity: 0.64;
    transform: scale(1);
  }
  5%,
  13% {
    fill: var(--accent);
    opacity: 1;
    transform: scale(1.42);
  }
  20% {
    fill: var(--ink);
    opacity: 0.64;
    transform: scale(1);
  }
}

@keyframes hero-stage-focus {
  0%,
  100% {
    color: var(--ink);
    opacity: 0.76;
    transform: translate3d(0, 0, 0);
  }
  5%,
  14% {
    color: var(--accent);
    opacity: 1;
    transform: translate3d(0, -2px, 0);
  }
  21% {
    color: var(--ink);
    opacity: 0.76;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-stage-dot {
  0%,
  100% {
    box-shadow: 0 0 10px oklch(0.78 0.18 282 / 0.72);
    transform: scale(1);
  }
  5%,
  14% {
    box-shadow: 0 0 18px oklch(0.78 0.18 282 / 0.98);
    transform: scale(1.5);
  }
  21% {
    box-shadow: 0 0 10px oklch(0.78 0.18 282 / 0.72);
    transform: scale(1);
  }
}

@keyframes glow-drift {
  from { opacity: 0.48; transform: translate3d(-1.5%, -0.8%, 0) scale(0.97); }
  to { opacity: 0.88; transform: translate3d(2.5%, 1.5%, 0) scale(1.04); }
}

@keyframes city-signal-sweep {
  0%, 16% { opacity: 0; transform: translate3d(0, 0, 0) skewX(-14deg); }
  38% { opacity: 0.76; }
  72%, 100% { opacity: 0; transform: translate3d(560%, 0, 0) skewX(-14deg); }
}

@keyframes hero-copy-recede {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: 0.3; transform: translate3d(0, -52px, 0) scale(0.985); }
}

@keyframes hero-network-recede {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: 0; transform: translate3d(0, -26px, 0) scale(1.035); }
}

@supports (animation-timeline: scroll()) {
  .hero-copy {
    animation: hero-copy-recede linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 78vh;
  }

  .hero-network {
    animation: hero-network-recede linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 72vh;
  }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1180px); }

  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto minmax(190px, 1fr);
    padding-inline: 24px;
    gap: 18px;
  }

  .header-phone { display: none; }
  .service-panel.is-active { grid-template-columns: 1fr; }
  .panel-visual { min-height: 300px; }
  .service-panel { min-height: 0; }
  .audience-list article { grid-template-columns: 0.55fr 1fr; }
  .audience-list article p { grid-column: 2; }
  .values-mosaic { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 0.9fr; gap: 56px; }
  .service-detail { grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr); gap: 56px; }
  .service-detail-body { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 40px, 840px); }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions > .button { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 100dvh; }
  .hero-grid {
    min-height: calc(100dvh - var(--header-height));
    padding-top: 38px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero::before {
    background: linear-gradient(90deg, oklch(0.075 0.028 285 / 0.97), oklch(0.075 0.028 285 / 0.73) 68%, oklch(0.075 0.028 285 / 0.38));
  }
  .hero-background img { object-position: 62% center; }
  .hero-network { opacity: 0.78; }
  .hero-wave { right: -7%; width: min(74vw, 930px); }
  .intro-grid,
  .about-grid,
  .audiences-layout,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    gap: 36px;
  }

  .service-detail-heading {
    max-width: 720px;
  }

  .service-detail-body {
    grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  }

  .delivery-grid {
    gap: 54px;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .page-cta-inner .button {
    justify-self: start;
  }

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

  .intro-grid { gap: 52px; }
  .intro-media { order: -1; }
  .service-explorer { grid-template-columns: 1fr; }
  .service-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 0 16px;
    border-right: 0;
    scroll-snap-type: x mandatory;
  }

  .service-tabs button {
    min-width: 250px;
    padding: 18px 20px 18px 0;
    scroll-snap-align: start;
  }

  .service-tabs button[aria-selected="true"] { padding-left: 14px; }
  .service-panels { padding: 40px 0 0; }
  .audiences-sticky,
  .process-heading,
  .faq-heading { position: static; }
  .audience-list article { grid-template-columns: 0.4fr 1fr; }
  .values-mosaic { grid-template-columns: repeat(2, 1fr); }
  .values-mosaic .value-feature { grid-column: span 1; }
  .about-media { max-width: 650px; margin-inline: auto; }
  .process-grid,
  .faq-grid { gap: 54px; }
  .platforms-inner { padding-inline: 36px; }
  .contact-grid { gap: 72px; }
  .contact-copy { max-width: 720px; }
  .contact-form { max-width: 680px; }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 32px);
  }

  body { font-size: 15px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); line-height: 1.02; }
  h2 { font-size: clamp(2.15rem, 11vw, 3.4rem); }
  .section { padding: 84px 0; }
  .site-header { padding-inline: 16px; }
  .brand { width: 132px; height: 54px; }
  .hero-grid { padding-top: 0; }
  .hero-copy { padding: 54px 0 44px; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 0.66rem; }
  .hero-pillars { margin-bottom: 14px; font-size: 0.875rem; gap: 8px 18px; }
  .hero-summary { margin-bottom: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero::before {
    background: linear-gradient(90deg, oklch(0.075 0.028 285 / 0.97), oklch(0.075 0.028 285 / 0.8));
  }
  .hero-background img { object-position: 69% center; }
  .hero-network { display: none; }
  .hero-network.hero-network--journey {
    display: block;
    overflow: hidden;
    opacity: 0.72;
  }
  .hero-wave--desktop { display: none; }
  .hero-wave.hero-wave--mobile {
    display: block;
    opacity: 0.66;
  }
  .hero-wave--mobile .wave-halo {
    stroke-width: 10;
    opacity: 0.04;
  }
  .hero-pillars--journey li { --stage-delay: 3.47s; }
  .hero-pillars--journey li:nth-child(2) { --stage-delay: 5.78s; }
  .hero-pillars--journey li:nth-child(3) { --stage-delay: 6.91s; }
  .inner-hero { min-height: 100dvh; }
  .inner-hero .hero-grid { min-height: calc(100dvh - var(--header-height)); }
  .inner-hero .hero-background img { object-position: 64% center; }
  .portfolio-hero .hero-background img { object-position: 68% center; }
  .page-jump-nav .section-shell { min-width: max-content; }
  .page-jump-nav a { min-height: 58px; padding-inline: 20px; }
  .page-jump-nav a:first-child { padding-left: 16px; }
  .page-intro { margin-bottom: 64px; }
  .service-detail { padding: 64px 0; }
  .service-detail-body { grid-template-columns: 1fr; }
  .capability-list li { min-height: 50px; }
  .service-detail-media img,
  .service-detail-media.portrait-media img { aspect-ratio: 4 / 3; }
  .delivery-route li { grid-template-columns: 1fr; gap: 8px; }
  .delivery-route li { min-height: 96px; }
  .portfolio-disclosure { padding: 24px 0; }
  .portfolio-disclosure .section-shell { grid-template-columns: 1fr; gap: 8px; }
  .project-gallery { grid-template-columns: 1fr; gap: 56px; }
  .project-entry { min-height: 320px; }
  .project-info > div:first-child { min-height: 0; }
  .page-cta-inner .button { width: 100%; }
  .service-marquee { margin-top: -1px; }
  .marquee-set span { min-height: 58px; padding-inline: 22px; }
  .section-heading { margin-bottom: 46px; }
  .service-tabs button { min-width: 220px; }
  .service-panel.is-active { gap: 36px; }
  .panel-visual { min-height: 290px; }
  .audience-list article { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .audience-list article p { grid-column: auto; }
  .values-mosaic { grid-template-columns: 1fr; }
  .values-mosaic article { min-height: 190px; }
  .value-visual { min-height: 240px !important; }
  .process-route li { min-height: 0; padding: 0 0 44px 66px; }
  .process-route li::before { width: 42px; height: 42px; }
  .process-route li::after { top: 42px; left: 20px; }
  .platforms-inner { padding: 34px 24px; }
  .platform-list { margin-top: 28px; }
  .platform-list span { min-height: 42px; padding-inline: 14px; font-size: 0.8rem; }
  .faq-list summary { min-height: 78px; padding-right: 38px; font-size: 0.92rem; }
  .contact { min-height: auto; }
  .contact-background::after { background: oklch(0.075 0.028 285 / 0.9); }
  .contact-direct { grid-template-columns: 1fr; }
  .contact-direct a,
  .contact-direct > p { min-height: 74px; }
  .form-intro,
  .form-body { padding-inline: 18px; }
  .form-intro { padding-block: 22px 20px; }
  .form-body { padding-block: 20px 24px; }
  .form-intro > p:last-child { font-size: 0.82rem; }
  .form-assurance,
  .form-required,
  .field label,
  .field-help,
  .field-error,
  .form-privacy,
  .form-status { font-size: 0.875rem; }
  .field input,
  .field select,
  .field textarea { font-size: 1rem; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 64px 20px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 48px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .marquee-set[aria-hidden="true"] { display: none; }
  .hero-background { animation: none; }
  .hero-background::after { animation: none; }
  .hero-background img { animation: none; }
  .hero-wave--journey { animation: none; }
  .hero-glow { animation: none; }
  .hero-copy,
  .hero-network { animation: none; }
  .hero-background,
  .hero-network {
    translate: 0 0;
    scale: 1;
  }
  .wave-route,
  .wave-stream { animation: none; }
  .wave-route { stroke-dashoffset: 0; }
  .wave-stream { opacity: 0.58; }
  .wave-traveller,
  .wave-signal { display: none; }
  .wave-checkpoint-ring,
  .wave-checkpoint-core,
  .hero-pillars--journey li,
  .hero-pillars--journey li::before { animation: none; }
  .hero-pillars--journey li { opacity: 1; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-sticky {
    background: var(--bg-deep);
    backdrop-filter: none;
  }
}
