:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #030914;
  --surface: #0a1727;
  --surface-strong: #0d1b2a;
  --line: rgba(132, 174, 222, 0.18);
  --line-strong: rgba(45, 140, 255, 0.52);
  --text: #ffffff;
  --muted: #d9e2ec;
  --soft: rgba(217, 226, 236, 0.68);
  --faint: rgba(217, 226, 236, 0.48);
  --accent: #2D8CFF;
  --accent-bright: #2D8CFF;
  --max: 1320px;
  --gutter: clamp(1.5rem, 4vw, 3.5rem);
  --radius: 6px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

section[id],
footer[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 8%, rgba(45, 140, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #030914 0%, var(--bg) 32%, #050d18 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

@media (pointer: fine) {
  body.has-orbit-cursor,
  body.has-orbit-cursor a,
  body.has-orbit-cursor button {
    cursor: none;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.studio-site {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.orbit-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 2.45rem;
  height: 2.8rem;
  pointer-events: none;
  opacity: 0;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-hotspot-x: 0.1rem;
  --cursor-hotspot-y: 0.1rem;
  --cursor-scale: 0.78;
  transform: translate3d(calc(var(--cursor-x) - var(--cursor-hotspot-x)), calc(var(--cursor-y) - var(--cursor-hotspot-y)), 0) scale(var(--cursor-scale));
  transform-origin: var(--cursor-hotspot-x) var(--cursor-hotspot-y);
  transition:
    opacity 180ms ease,
    transform 160ms ease;
  mix-blend-mode: screen;
}

.orbit-cursor.is-visible {
  opacity: 0.5 !important;
}

.orbit-cursor.is-active {
  --cursor-scale: 0.86;
}

.orbit-cursor__ship {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 0.18rem rgba(45, 140, 255, 0.34))
    drop-shadow(0 0 0.54rem rgba(45, 140, 255, 0.14));
  transform-origin: var(--cursor-hotspot-x) var(--cursor-hotspot-y);
  animation: cursor-ship-pulse 2.9s ease-in-out infinite;
}

.section-shell {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  grid-template-columns: minmax(24rem, 0.42fr) 1fr auto;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3rem);
  padding-block: 1.25rem;
  transform: translateX(-50%);
  transition: padding 220ms ease;
}

.site-nav::before {
  position: absolute;
  inset: 0 -2rem auto;
  z-index: -1;
  height: 8.8rem;
  content: "";
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.94), rgba(3, 9, 20, 0.36) 66%, rgba(3, 9, 20, 0));
  pointer-events: none;
}

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

.brand img {
  display: block;
  width: clamp(19.2rem, 25.6vw, 27.2rem);
  height: auto;
  object-fit: contain;
  transition:
    filter 220ms ease,
    transform 220ms ease,
    width 220ms ease;
}

.site-nav.is-scrolled {
  padding-block: 0.65rem;
}

.site-nav.is-scrolled::before {
  height: 7.4rem;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.94), rgba(3, 9, 20, 0.72) 68%, rgba(3, 9, 20, 0));
}

.site-nav.is-scrolled .brand img {
  width: clamp(14.4rem, 19.2vw, 20rem);
  filter: drop-shadow(0 0.8rem 1.4rem rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.6rem);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-menu-toggle,
.mobile-nav {
  display: none;
}

.nav-menu-toggle {
  width: 3rem;
  min-height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(8, 21, 38, 0.48);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.nav-menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    color 220ms ease;
}

.nav-menu-toggle span + span {
  margin-top: 0.42rem;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible,
.site-nav.is-mobile-open .nav-menu-toggle {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 1.4rem rgba(45, 140, 255, 0.16);
}

.site-nav.is-mobile-open .nav-menu-toggle span:first-child {
  transform: translateY(0.215rem) rotate(45deg);
}

.site-nav.is-mobile-open .nav-menu-toggle span:last-child {
  transform: translateY(-0.215rem) rotate(-45deg);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.85rem 1.35rem;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg,
.card-link:hover svg,
.card-link:focus-visible svg {
  transform: translateX(0.22rem);
}

.button-primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #1264e8);
  box-shadow: 0 1rem 2.4rem rgba(45, 140, 255, 0.22);
}

.button-outline {
  background: rgba(8, 21, 38, 0.5);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(45, 140, 255, 0.1);
  box-shadow: 0 1rem 2.4rem rgba(45, 140, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: clamp(42rem, 82svh, 54rem);
  align-items: start;
  padding-block: clamp(9rem, 11vw, 12rem) clamp(3.4rem, 5vw, 4.6rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin-top: clamp(1rem, 3svh, 2.8rem);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 9.2vw, 9.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  opacity: 0;
  transform: translate3d(0, -0.22em, 0) scale(1.065);
  transform-origin: left center;
  animation: hero-word-stamp 680ms cubic-bezier(0.18, 0.84, 0.24, 1) forwards;
  will-change: transform, opacity, filter;
}

.hero h1 span:nth-child(1) {
  animation-delay: 120ms;
}

.hero h1 span:nth-child(2) {
  animation-delay: 430ms;
}

.hero h1 span:nth-child(3) {
  animation-delay: 740ms;
}

.hero h1 span:last-child {
  color: var(--accent-bright);
}

.hero p {
  width: min(100%, 30rem);
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.infinity-mark {
  position: absolute;
  top: 47%;
  right: -20%;
  z-index: 1;
  width: min(94vw, 84rem);
  aspect-ratio: 2.55 / 1;
  opacity: 1;
  filter:
    drop-shadow(0 0 4rem rgba(45, 140, 255, 0.2))
    drop-shadow(0 2.4rem 4rem rgba(0, 0, 0, 0.34));
  transform-origin: 56% 54%;
  animation: infinity-breathe 10.5s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.infinity-mark img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-1deg);
}

.scroll-cue {
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: end;
  margin-top: clamp(2rem, 4vw, 3.4rem);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 2.3rem;
  content: "";
  background: var(--accent);
  animation: scroll-line 1.9s ease-in-out infinite;
}

.trust-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(5, 13, 24, 0.64);
}

.trust-strip::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 28%, rgba(45, 140, 255, 0.13) 46%, rgba(124, 211, 255, 0.08) 52%, transparent 70% 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.trust-strip.is-active::before {
  animation: trust-strip-wave 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-inline: auto;
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 7.2rem;
  align-items: center;
  gap: 1.35rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--line);
  background: transparent;
  transform: translateY(0);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip.is-active .trust-item {
  animation: trust-item-wave 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--trust-index, 0) * 150ms);
}

.trust-item svg,
.pillar svg {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--accent);
  padding: 0.42rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    filter 240ms ease;
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
  transition:
    color 240ms ease,
    text-shadow 240ms ease;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 240ms ease;
}

.trust-strip.is-active .trust-item svg,
.trust-item:hover svg {
  border-color: rgba(45, 140, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(45, 140, 255, 0.08),
    0 0 1rem rgba(45, 140, 255, 0.22);
  filter: drop-shadow(0 0 0.45rem rgba(45, 140, 255, 0.24));
}

.trust-strip.is-active .trust-item strong,
.trust-item:hover strong {
  color: var(--text);
  text-shadow: 0 0 0.7rem rgba(45, 140, 255, 0.18);
}

.trust-strip.is-active .trust-item span,
.trust-item:hover span {
  color: rgba(255, 255, 255, 0.82);
}

.trust-item:hover {
  border-color: rgba(45, 140, 255, 0.34);
  background:
    radial-gradient(circle at 24% 50%, rgba(45, 140, 255, 0.09), transparent 9rem),
    linear-gradient(180deg, rgba(45, 140, 255, 0.025), transparent);
  box-shadow: inset 0 0 0 1px rgba(45, 140, 255, 0.04);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section-copy {
  max-width: 21rem;
}

.section-label,
.project-type {
  color: var(--accent);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-copy h2,
.why-copy h2,
.final-cta h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-copy p,
.why-copy p,
.pillar p,
.project-card p,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer small {
  color: var(--soft);
}

.section-copy p {
  margin: 1.7rem 0 0;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.8rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link svg,
.card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

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

.service-row {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(15rem, 0.8fr) auto;
  align-items: center;
  gap: 2rem;
  min-height: 5.1rem;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease,
    transform 180ms ease;
}

.service-row:hover {
  padding-inline: 1rem;
  border-color: rgba(45, 140, 255, 0.38);
  background: rgba(45, 140, 255, 0.055);
  transform: translateX(0.35rem);
}

.service-main {
  display: flex;
  align-items: baseline;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.service-main span {
  color: var(--accent);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 500;
}

.service-main h3,
.project-card h3,
.process-card h3,
.pillar h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
}

.service-row p {
  margin: 0;
  color: var(--faint);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(0.75rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-row:hover p,
.service-row:focus-within p {
  opacity: 1;
  transform: translateX(0);
}

.service-row > svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--muted);
}

.work-section {
  padding-top: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.project-card,
.process-card,
.testimonial {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 100%, rgba(45, 140, 255, 0.16), transparent 15rem),
    linear-gradient(145deg, rgba(13, 27, 42, 0.92), rgba(5, 13, 24, 0.92));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 2rem 1.6rem 1.6rem;
}

.project-card::after {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 1px solid rgba(45, 140, 255, 0.34);
  border-radius: 50%;
  box-shadow: -2.2rem -2.2rem 0 -2.25rem rgba(45, 140, 255, 0.42);
  transition:
    opacity 220ms ease,
    transform 360ms ease;
  pointer-events: none;
  z-index: 0;
}

.project-card::before,
.process-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 240ms ease,
    transform 640ms ease;
  pointer-events: none;
  z-index: 0;
}

.project-card:hover,
.project-card:focus-within,
.process-card:hover,
.process-card:focus-within {
  border-color: rgba(45, 140, 255, 0.48);
  box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.26), 0 0 2.8rem rgba(45, 140, 255, 0.08);
  transform: translateY(-0.35rem);
}

.project-card:hover::before,
.project-card:focus-within::before,
.process-card:hover::before,
.process-card:focus-within::before {
  opacity: 1;
  transform: translateX(45%);
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 0.9;
  transform: translate(-0.7rem, -0.7rem) scale(1.06);
}

.project-card > *,
.process-card > *,
.testimonial > * {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  margin-top: 0.7rem;
}

.project-card p {
  min-height: 3.6rem;
  margin: 1rem 0 2.2rem;
  font-size: 0.9rem;
}

.project-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.metric-label {
  display: block;
  max-width: 13rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.card-link {
  margin-top: auto;
  padding-top: 1.6rem;
}

.process-section {
  padding-top: 0;
}

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

.process-card {
  min-height: 18rem;
  padding: 0;
}

.process-card strong,
.code-card-top strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.code-card {
  display: grid;
  grid-template-rows: auto 1fr;
  opacity: 0;
  background:
    radial-gradient(circle at 85% 100%, rgba(45, 140, 255, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(14, 26, 45, 0.96), rgba(6, 16, 30, 0.96));
  transform: translateY(1.2rem);
  will-change: opacity, transform;
}

.process-section.is-typing .code-card {
  animation: process-card-enter 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--card-delay);
}

.code-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(45, 140, 255, 0.22);
}

.code-card-top > * {
  opacity: 0;
  transform: translateY(0.35rem);
}

.process-section.is-typing .code-card-top > * {
  animation: process-header-enter 480ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--card-delay) + 120ms);
}

.process-section.is-typing .code-card-top span {
  animation-delay: calc(var(--card-delay) + 180ms);
}

.process-section.is-typing .code-card-top i {
  animation-delay: calc(var(--card-delay) + 240ms);
}

.code-card-top span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.code-card-top i,
.code-card-top i::before,
.code-card-top i::after {
  display: block;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #1f8f50;
  content: "";
}

.code-card-top i {
  position: relative;
  margin-right: 1.4rem;
}

.code-card-top i::before,
.code-card-top i::after {
  position: absolute;
  top: 0;
}

.code-card-top i::before {
  left: -1rem;
  background: #b48118;
}

.code-card-top i::after {
  left: -2rem;
  background: #b9344b;
}

.code-card pre {
  margin: 0;
  padding: 1.3rem 1.15rem 1.45rem;
  color: var(--soft);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.82;
}

.code-card code {
  display: grid;
  gap: 0.06rem;
}

.code-line {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
  min-width: 0;
  opacity: 0.28;
  transition: opacity 220ms ease;
}

.process-section.is-typing .code-line {
  opacity: 1;
  transition-delay: calc(var(--card-delay) + var(--line-delay));
}

.line-number {
  color: rgba(132, 174, 222, 0.34);
  font-size: 0.78em;
  user-select: none;
}

.code-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 0;
  max-width: 100%;
  white-space: nowrap;
}

.process-section.is-typing .code-text {
  animation: type-code var(--line-duration) steps(var(--chars), end) forwards;
  animation-delay: calc(var(--card-delay) + var(--line-delay) + 360ms);
}

.code-text::after {
  position: absolute;
  top: 0.18em;
  right: -0.38ch;
  width: 1px;
  height: 1.2em;
  content: "";
  background: var(--accent);
  opacity: 0;
}

.process-section.is-typing .code-text::after {
  animation:
    code-caret-blink 750ms steps(1) infinite,
    code-caret-hide 1ms linear forwards;
  animation-delay:
    calc(var(--card-delay) + var(--line-delay) + 360ms),
    calc(var(--card-delay) + var(--line-delay) + var(--line-duration) + 360ms);
}

.process-section.is-typing .code-line--milestone .code-text {
  animation:
    type-code var(--line-duration) steps(var(--chars), end) forwards,
    milestone-pulse 1500ms ease-out forwards;
  animation-delay:
    calc(var(--card-delay) + var(--line-delay) + 360ms),
    calc(var(--card-delay) + var(--line-delay) + var(--line-duration) + 520ms);
}

.code-purple {
  color: #c795ff;
}

.code-cyan {
  color: #00d8ff;
}

.code-pink {
  color: #ff6b9a;
}

.code-blue {
  color: #54a6ff;
}

.code-muted {
  color: #a9bad2;
}

.why-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(20rem, 0.66fr) minmax(44rem, 1.7fr);
  gap: clamp(2rem, 4.5vw, 4.8rem);
  align-items: start;
  min-height: clamp(54rem, 78vw, 66rem);
  padding-block: clamp(5.8rem, 9vw, 8.8rem);
  isolation: isolate;
}

.why-section::before,
.why-section::after {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.why-section::before {
  inset: 0 -10%;
  background:
    radial-gradient(circle at 67% 50%, rgba(45, 140, 255, 0.18), transparent 33%),
    linear-gradient(rgba(45, 140, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 140, 255, 0.048) 1px, transparent 1px);
  background-size: 100% 100%, 4.2rem 4.2rem, 4.2rem 4.2rem;
  mask-image: radial-gradient(ellipse at 63% 50%, #000 0 54%, transparent 82%);
}

.why-section::after {
  right: -8%;
  bottom: 4%;
  width: min(38rem, 44vw);
  aspect-ratio: 1;
  border: 1px solid rgba(45, 140, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2rem rgba(45, 140, 255, 0.012),
    inset 0 0 0 5rem rgba(45, 140, 255, 0.008);
  opacity: 0.8;
}

.why-copy {
  max-width: 35rem;
  opacity: 0;
  transform: translateY(1rem);
}

.why-section.is-active .why-copy {
  animation: dna-copy-reveal 760ms ease forwards;
}

.why-copy h2 {
  margin-top: 1.2rem;
  font-size: clamp(4.4rem, 7.8vw, 8.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.why-copy h2 > span {
  color: var(--accent);
}

.why-manifesto {
  display: grid;
  gap: 0.28rem;
  padding: 0;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  color: var(--soft);
  font-size: clamp(1.28rem, 2.2vw, 1.95rem);
  line-height: 1.25;
  list-style: none;
}

.why-manifesto li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  opacity: 0;
  transform: translateY(0.45rem);
  will-change: opacity, transform;
}

.why-manifesto li:nth-child(1) {
  --manifesto-delay: 520ms;
}

.why-manifesto li:nth-child(2) {
  --manifesto-delay: 700ms;
}

.why-manifesto li:nth-child(3) {
  --manifesto-delay: 880ms;
}

.why-manifesto li:nth-child(4) {
  --manifesto-delay: 1060ms;
}

.why-section.is-active .why-manifesto li {
  animation: manifesto-row-reveal 420ms cubic-bezier(0.18, 0.82, 0.28, 1) forwards;
  animation-delay: var(--manifesto-delay);
}

.manifesto-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: clamp(1rem, 1.35vw, 1.22rem);
  aspect-ratio: 1;
  background: #2D8CFF;
  opacity: 0.92;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.manifesto-icon--think {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M9 18h6M10 22h4M8.2 14.7C6.8 13.5 6 11.8 6 10a6 6 0 1 1 9.8 4.7c-.9.8-1.3 1.7-1.5 3.3H9.7c-.2-1.6-.6-2.5-1.5-3.3Z'/%3E%3C/svg%3E");
}

.manifesto-icon--create {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='m8 9-4 3 4 3m8-6 4 3-4 3M14 4l-4 16'/%3E%3C/svg%3E");
}

.manifesto-icon--partner {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M16 19v-1.2c0-1.7-1.4-3.1-3.1-3.1H8.1C6.4 14.7 5 16.1 5 17.8V19m12.5-4.7c1.4.4 2.5 1.7 2.5 3.2V19M10.5 11.5a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4Zm6.3-1.1a2.5 2.5 0 1 0 0-5'/%3E%3C/svg%3E");
}

.manifesto-icon--launch {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5C16.8 5 19 7.2 19.5 10.5L14 16l-4-4 3.5-7.5ZM8 13l-3 3v3h3l3-3m-4-1 2 2m6.5-9.5h.01M5 11l3-1 6 6-1 3'/%3E%3C/svg%3E");
}

.why-copy > p:not(.section-label) {
  max-width: 29rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding-top: 2.1rem;
  border-top: 2px solid rgba(45, 140, 255, 0.86);
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.dna-system {
  position: relative;
  min-height: clamp(50rem, 70vw, 60rem);
  display: block;
}

.dna-ambient {
  position: absolute;
  inset: -1% -2% -2%;
  z-index: -1;
  opacity: 0.88;
  background:
    radial-gradient(circle at 48% 78%, rgba(45, 140, 255, 0.32), transparent 12%),
    radial-gradient(circle at 48% 47%, rgba(45, 140, 255, 0.2), transparent 29%),
    radial-gradient(circle at 47% 14%, rgba(45, 140, 255, 0.14), transparent 24%);
  filter: blur(0.2px);
}

.dna-ambient::before,
.dna-ambient::after {
  position: absolute;
  content: "";
}

.dna-ambient::before {
  right: 8%;
  bottom: 1%;
  left: 22%;
  height: 10rem;
  border: 1px solid rgba(45, 140, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1.2rem rgba(45, 140, 255, 0.018),
    0 0 3rem rgba(45, 140, 255, 0.08);
}

.dna-ambient::after {
  inset: 10% 6%;
  background-image: radial-gradient(circle, rgba(45, 140, 255, 0.38) 0 1px, transparent 1.5px);
  background-size: 1.45rem 1.45rem;
  mask-image: linear-gradient(90deg, transparent, #000 34%, transparent 78%);
  opacity: 0.25;
}

.dna-rocket {
  position: absolute;
  top: 12%;
  left: 13%;
  z-index: 2;
  width: clamp(3rem, 5vw, 4.4rem);
  height: auto;
  opacity: 0;
  filter:
    drop-shadow(0 0 0.4rem rgba(124, 211, 255, 0.72))
    drop-shadow(0 0 1.25rem rgba(45, 140, 255, 0.32));
  transform: rotate(-16deg) translateY(0.8rem);
  pointer-events: none;
}

.why-section.is-active .dna-rocket {
  animation: dna-rocket-drift 2200ms ease forwards 820ms;
}

.dna-helix {
  position: absolute;
  top: -0.6rem;
  left: 49%;
  z-index: 1;
  width: min(31.5rem, 47vw);
  height: auto;
  overflow: visible;
  transform: translateX(-50%);
}

.dna-grid path,
.dna-grid circle,
.dna-rings ellipse,
.dna-ladders path {
  fill: none;
  stroke: rgba(45, 140, 255, 0.2);
  stroke-width: 1;
}

.dna-grid circle {
  fill: rgba(45, 140, 255, 0.54);
  stroke: none;
}

.dna-rings ellipse {
  stroke-width: 1.2;
  opacity: 0.7;
}

.dna-ladders path {
  stroke: rgba(134, 197, 255, 0.35);
  stroke-dasharray: 0.01 1;
  stroke-linecap: round;
  opacity: 0;
}

.dna-strand {
  fill: none;
  stroke: url(#strandGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: url(#dnaGlow);
}

.dna-strand--back {
  stroke-width: 5;
  opacity: 0.52;
}

.dna-flow-pulse {
  fill: none;
  stroke: rgba(126, 213, 255, 0.95);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0.055 1;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: drop-shadow(0 0 0.9rem rgba(45, 140, 255, 0.8));
}

.dna-particles circle {
  fill: #4ab3ff;
  opacity: 0;
  filter: drop-shadow(0 0 0.42rem rgba(45, 140, 255, 0.8));
}

.dna-particles circle:nth-child(1) {
  --particle-index: 1;
}

.dna-particles circle:nth-child(2) {
  --particle-index: 2;
}

.dna-particles circle:nth-child(3) {
  --particle-index: 3;
}

.dna-particles circle:nth-child(4) {
  --particle-index: 4;
}

.dna-particles circle:nth-child(5) {
  --particle-index: 5;
}

.dna-particles circle:nth-child(6) {
  --particle-index: 6;
}

.dna-particles circle:nth-child(7) {
  --particle-index: 7;
}

.dna-particles circle:nth-child(8) {
  --particle-index: 8;
}

.dna-core-node {
  fill: url(#nodeGradient);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter:
    drop-shadow(0 0 0.5rem rgba(45, 140, 255, 0.82))
    drop-shadow(0 0 1.4rem rgba(45, 140, 255, 0.42));
}

.why-section.is-active .dna-strand {
  animation: dna-strand-draw 1750ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.why-section.is-active .dna-strand--back {
  animation-delay: 180ms;
}

.why-section.is-active .dna-ladders path {
  animation: dna-fade-in 720ms ease forwards;
  animation-delay: 900ms;
}

.why-section.is-active .dna-flow-pulse {
  animation: dna-flow-travel 3300ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards 700ms;
}

.why-section.is-active .dna-particles circle {
  animation: dna-particle-rise 2400ms ease forwards;
  animation-delay: calc(780ms + (var(--particle-index, 1) * 90ms));
}

.why-section.is-active .dna-core-node {
  animation: dna-core-activate 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(1020ms + (var(--node-index) * 650ms));
}

.dna-node-list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.dna-stage {
  position: absolute;
  display: grid;
  grid-template-columns: auto minmax(11rem, 18rem);
  gap: 1.05rem;
  align-items: center;
  opacity: 0;
  transform: translateY(0.85rem);
  pointer-events: auto;
}

.dna-node--imagine {
  top: 21%;
  right: -1%;
}

.dna-node--build {
  top: 39%;
  left: 2%;
}

.dna-node--collaborate {
  top: 58%;
  right: -1%;
}

.dna-node--launch {
  top: 76%;
  left: 1%;
}

.dna-stage::before {
  position: absolute;
  top: 50%;
  width: clamp(4.2rem, 7.4vw, 7.8rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(45, 140, 255, 0.94), rgba(255, 255, 255, 0.56));
  opacity: 0;
  transform: scaleX(0);
}

.dna-node--imagine::before,
.dna-node--collaborate::before {
  right: calc(100% - 0.15rem);
  transform-origin: right center;
}

.dna-node--build::before,
.dna-node--launch::before {
  left: calc(100% - 0.15rem);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(45, 140, 255, 0.94));
  transform-origin: left center;
}

.dna-stage-marker {
  position: relative;
  display: grid;
  width: 4.85rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(101, 170, 245, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(45, 140, 255, 0.12), transparent 62%),
    rgba(5, 15, 29, 0.78);
  box-shadow:
    inset 0 0 0 0.7rem rgba(45, 140, 255, 0.035),
    0 0 0 rgba(45, 140, 255, 0);
}

.dna-stage-marker::after {
  position: absolute;
  inset: 0.7rem;
  content: "";
  border: 1px solid rgba(104, 190, 255, 0.18);
  border-radius: inherit;
}

.dna-icon {
  width: 1.8rem;
  height: 1.8rem;
  background: var(--accent);
  filter: drop-shadow(0 0 0.7rem rgba(45, 140, 255, 0.54));
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.dna-icon--idea {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M9 18h6M10 22h4M8.2 14.7C6.8 13.5 6 11.8 6 10a6 6 0 1 1 9.8 4.7c-.9.8-1.3 1.7-1.5 3.3H9.7c-.2-1.6-.6-2.5-1.5-3.3Z'/%3E%3C/svg%3E");
}

.dna-icon--code {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='m8 9-4 3 4 3m8-6 4 3-4 3M14 4l-4 16'/%3E%3C/svg%3E");
}

.dna-icon--team {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M16 19v-1.2c0-1.7-1.4-3.1-3.1-3.1H8.1C6.4 14.7 5 16.1 5 17.8V19m12.5-4.7c1.4.4 2.5 1.7 2.5 3.2V19M10.5 11.5a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4Zm6.3-1.1a2.5 2.5 0 1 0 0-5'/%3E%3C/svg%3E");
}

.dna-icon--launch {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5C16.8 5 19 7.2 19.5 10.5L14 16l-4-4 3.5-7.5ZM8 13l-3 3v3h3l3-3m-4-1 2 2m6.5-9.5h.01M5 11l3-1 6 6-1 3'/%3E%3C/svg%3E");
}

.dna-stage-content > span {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.dna-stage h3 {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0;
}

.dna-stage p {
  margin: 0.55rem 0 0;
  color: var(--soft);
  font-size: clamp(0.92rem, 1.18vw, 1.04rem);
  line-height: 1.55;
}

.why-section.is-active .dna-stage {
  animation: dna-stage-reveal 680ms ease forwards;
  animation-delay: calc(1040ms + (var(--stage-index) * 650ms));
}

.why-section.is-active .dna-stage-marker {
  animation: dna-marker-activate 840ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(1040ms + (var(--stage-index) * 650ms));
}

.why-section.is-active .dna-stage::before {
  animation: dna-connector-draw 620ms ease forwards;
  animation-delay: calc(1180ms + (var(--stage-index) * 650ms));
}

.why-section.is-active .dna-system {
  animation: dna-system-glow 1700ms ease forwards 3800ms;
}

.dna-stage:hover .dna-stage-marker {
  border-color: rgba(45, 140, 255, 0.74);
  box-shadow:
    inset 0 0 0 0.7rem rgba(45, 140, 255, 0.05),
    0 0 2rem rgba(45, 140, 255, 0.32);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.why-section {
  display: block;
  min-height: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.why-section::before,
.why-section::after {
  display: none;
}

.dna-mockup {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(45, 140, 255, 0.08);
  background:
    radial-gradient(circle at 55% 52%, rgba(45, 140, 255, 0.14), transparent 42%),
    var(--bg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    0 2rem 5rem rgba(0, 0, 0, 0.22);
}

.dna-mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dna-shimmer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 0 12%, rgba(126, 213, 255, 0.12) 18%, transparent 27%),
    radial-gradient(ellipse at 55% 44%, rgba(45, 140, 255, 0.18), transparent 18%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-24%);
}

.why-section.is-active .dna-shimmer {
  animation: dna-image-shimmer 4200ms ease forwards 450ms;
}

.dna-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dna-stage-hotspot {
  position: absolute;
  display: block;
  opacity: 0;
  transform: translateY(0.6rem);
}

.dna-stage--imagine {
  top: 22.3%;
  left: 53.8%;
  width: 30.6%;
  --line-origin: left;
}

.dna-stage--build {
  top: 39.8%;
  left: 35.4%;
  width: 30.1%;
  --line-origin: right;
}

.dna-stage--collaborate {
  top: 57.2%;
  left: 54.9%;
  width: 30%;
  --line-origin: left;
}

.dna-stage--launch {
  top: 74.2%;
  left: 34.2%;
  width: 31.6%;
  --line-origin: right;
}

.dna-stage-node {
  position: absolute;
  top: 50%;
  width: clamp(1.1rem, 2.15vw, 2rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0 18%, #80d3ff 34%, #2d8cff 70%);
  box-shadow:
    0 0 0 rgba(45, 140, 255, 0),
    0 0 0 rgba(45, 140, 255, 0);
  transform: translateY(-50%) scale(0.72);
}

.dna-stage--imagine .dna-stage-node,
.dna-stage--collaborate .dna-stage-node {
  left: 0;
}

.dna-stage--build .dna-stage-node,
.dna-stage--launch .dna-stage-node {
  right: 0;
}

.dna-stage-line {
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(45, 140, 255, 0.92));
  opacity: 0;
  transform: scaleX(0);
}

.dna-stage--imagine .dna-stage-line,
.dna-stage--collaborate .dna-stage-line {
  left: 1.35rem;
  width: 42%;
  transform-origin: left center;
}

.dna-stage--build .dna-stage-line,
.dna-stage--launch .dna-stage-line {
  right: 1.35rem;
  width: 46%;
  transform-origin: right center;
}

.dna-stage-label {
  position: absolute;
  top: -1.2rem;
  display: grid;
  gap: 0.12rem;
  color: rgba(255, 255, 255, 0.01);
  font-size: 0.1rem;
}

.dna-stage-label span,
.dna-stage-label strong {
  color: inherit;
}

.why-section.is-active .dna-stage-hotspot {
  animation: dna-overlay-stage 700ms ease forwards;
  animation-delay: calc(700ms + (var(--stage-index) * 420ms));
}

.why-section.is-active .dna-stage-line {
  animation: dna-overlay-line 780ms ease forwards;
  animation-delay: calc(880ms + (var(--stage-index) * 420ms));
}

.why-section.is-active .dna-stage-node {
  animation: dna-overlay-node 1300ms ease forwards;
  animation-delay: calc(780ms + (var(--stage-index) * 420ms));
}

.why-section--helix {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(36rem, 1.42fr);
  gap: clamp(2rem, 4.6vw, 5rem);
  align-items: center;
  min-height: clamp(50rem, 76vw, 68rem);
  padding-block: clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 63% 52%, rgba(45, 140, 255, 0.13), transparent 32rem),
    linear-gradient(180deg, rgba(3, 11, 22, 0), rgba(3, 11, 22, 0.38) 50%, rgba(3, 11, 22, 0));
}

.why-section--helix::before,
.why-section--helix::after {
  display: block;
}

.why-section--helix .why-copy {
  position: relative;
  z-index: 3;
  max-width: 29rem;
}

.why-section--helix .why-copy h2 {
  margin-top: 1.1rem;
  font-size: clamp(3rem, 5.35vw, 5.9rem);
  line-height: 0.9;
}

.why-section--helix .dna-word {
  color: var(--accent);
}

.helix-showcase {
  position: relative;
  z-index: 1;
  min-height: clamp(48rem, 70vw, 64rem);
  margin: 0;
  isolation: isolate;
}

.helix-field,
.helix-shimmer,
.helix-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.helix-field {
  z-index: -1;
  background:
    linear-gradient(rgba(45, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 140, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, rgba(45, 140, 255, 0.18), transparent 24rem);
  background-size: 4.2rem 4.2rem, 4.2rem 4.2rem, auto;
  mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 88%, transparent 100%);
  opacity: 0.74;
}

.helix-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: min(100%, 64rem);
  max-width: min(40vw, 27rem);
  object-fit: contain;
  filter:
    drop-shadow(0 0 1.4rem rgba(45, 140, 255, 0.32))
    drop-shadow(0 0 4.5rem rgba(45, 140, 255, 0.12));
  transform: translate(-50%, -50%);
}

.helix-shimmer {
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0 39%, rgba(255, 255, 255, 0.22) 45%, rgba(126, 213, 255, 0.14) 49%, transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 140, 255, 0.1), transparent 22%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 18%, transparent 38%);
  mix-blend-mode: screen;
  transform: translate(-24%, -34%);
}

.why-section.is-active .helix-shimmer {
  animation: helix-glass-shimmer 6200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards 420ms;
}

.helix-overlay {
  z-index: 3;
}

.helix-stage {
  position: absolute;
  display: block;
  min-height: 6rem;
  opacity: 0;
  transform: translateY(0.7rem);
}

.helix-stage--imagine {
  top: 21.4%;
  left: 50.5%;
  width: min(45%, 31rem);
}

.helix-stage--build {
  top: 39.2%;
  right: 51.2%;
  width: min(38%, 27rem);
}

.helix-stage--collaborate {
  top: 58.8%;
  left: 52.4%;
  width: min(43%, 31rem);
}

.helix-stage--launch {
  top: 75.5%;
  right: 53.5%;
  width: min(37%, 26rem);
}

.helix-node {
  position: absolute;
  top: 1.75rem;
  width: clamp(1.35rem, 2.1vw, 2.05rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0 17%, #9bddff 33%, #2d8cff 70%, #0060d7 100%);
  box-shadow:
    0 0 0 rgba(45, 140, 255, 0),
    0 0 0 rgba(45, 140, 255, 0);
  transform: translateY(-50%) scale(0.72);
}

.helix-stage--imagine .helix-node,
.helix-stage--collaborate .helix-node {
  left: 0;
}

.helix-stage--build .helix-node,
.helix-stage--launch .helix-node {
  right: 0;
}

.helix-line {
  position: absolute;
  top: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(45, 140, 255, 0.92));
  opacity: 0;
  transform: scaleX(0);
}

.helix-stage--imagine .helix-line,
.helix-stage--collaborate .helix-line {
  left: clamp(1.7rem, 2.6vw, 2.35rem);
  width: clamp(5rem, 10vw, 8.5rem);
  transform-origin: left center;
}

.helix-stage--build .helix-line,
.helix-stage--launch .helix-line {
  right: clamp(1.7rem, 2.6vw, 2.35rem);
  width: clamp(4.6rem, 9vw, 7.6rem);
  transform-origin: right center;
}

.helix-stage-content {
  position: absolute;
  top: -0.5rem;
  display: grid;
  gap: 0.42rem;
  max-width: 18.8rem;
}

.helix-stage--imagine .helix-stage-content,
.helix-stage--collaborate .helix-stage-content {
  left: clamp(7.2rem, 13vw, 11rem);
}

.helix-stage--build .helix-stage-content,
.helix-stage--launch .helix-stage-content {
  right: clamp(7rem, 12vw, 10rem);
}

.helix-stage-content > span:first-child {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.helix-stage-content strong {
  color: var(--text);
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.helix-stage-content > span:last-child {
  color: var(--soft);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.5;
}

.why-section.is-active .helix-stage {
  animation: dna-overlay-stage 700ms ease forwards;
  animation-delay: calc(680ms + (var(--stage-index) * 430ms));
}

.why-section.is-active .helix-line {
  animation: dna-overlay-line 780ms ease forwards;
  animation-delay: calc(850ms + (var(--stage-index) * 430ms));
}

.why-section.is-active .helix-node {
  animation: dna-overlay-node 1300ms ease forwards;
  animation-delay: calc(760ms + (var(--stage-index) * 430ms));
}

.why-section--process-visual {
  display: block;
  min-height: auto;
  padding-block: clamp(2.4rem, 6vw, 5rem);
}

.why-section--process-visual::before,
.why-section--process-visual::after {
  display: none;
}

.dna-process-visual {
  position: relative;
  overflow: hidden;
  width: min(100%, 78rem);
  aspect-ratio: 1000 / 970;
  margin: 0 auto;
  background:
    radial-gradient(circle at 47% 44%, rgba(45, 140, 255, 0.14), transparent 31rem),
    linear-gradient(180deg, #020914 0%, #03101d 58%, #020914 100%);
  box-shadow:
    inset 0 0 0 1px rgba(45, 140, 255, 0.06),
    0 2rem 5rem rgba(0, 0, 0, 0.22);
}

.dna-process-lottie,
.dna-process-visual .lottie-animation__fallback {
  width: 100%;
  height: 100%;
}

.dna-process-visual .lottie-animation__fallback {
  object-fit: cover;
}

.testimonial {
  isolation: isolate;
  overflow: visible;
  border: 0;
  background: none;
  transition: none;
}

.client-impact-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 45vw, 45rem);
  border: 1px solid rgba(45, 140, 255, 0.48);
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at 86% 13%, rgba(45, 140, 255, 0.34), transparent 25rem),
    radial-gradient(circle at 10% 92%, rgba(45, 140, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(5, 14, 27, 0.98), rgba(4, 12, 24, 0.96) 48%, rgba(6, 21, 42, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    0 2rem 6.5rem rgba(0, 0, 0, 0.36),
    0 0 4rem rgba(45, 140, 255, 0.11);
}

.client-impact-panel::before,
.client-impact-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.client-impact-panel::before {
  z-index: 0;
  background-image: radial-gradient(circle, rgba(45, 140, 255, 0.16) 1px, transparent 1.4px);
  background-position: 100% 50%;
  background-size: 1.05rem 1.05rem;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent 40%, black 76%, black);
}

.client-impact-panel::after {
  z-index: 2;
  background: linear-gradient(112deg, transparent 28%, rgba(255, 255, 255, 0.11) 46%, rgba(45, 140, 255, 0.08) 51%, transparent 68%);
  opacity: 0;
  transform: translateX(-78%) skewX(-9deg);
}

.client-impact-panel:hover,
.client-impact-panel:focus-within {
  border-color: rgba(45, 140, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 2rem 6.5rem rgba(0, 0, 0, 0.36),
    0 0 4.6rem rgba(45, 140, 255, 0.14);
}

.client-impact-panel:hover::after,
.client-impact-panel:focus-within::after {
  animation: testimonial-shimmer 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.client-impact-ribbon {
  position: absolute;
  right: clamp(-22rem, -13vw, -8rem);
  bottom: clamp(-16rem, -10vw, -7rem);
  z-index: 0;
  width: min(58rem, 58vw);
  aspect-ratio: 1.45;
  background: url("/images/hero-infinity-mark.png") center / contain no-repeat;
  opacity: 0.26;
  filter: drop-shadow(0 0 2rem rgba(45, 140, 255, 0.28));
  transform: rotate(-7deg);
  pointer-events: none;
}

.client-impact-quote-mark {
  position: absolute;
  right: clamp(2.2rem, 4.6vw, 4.8rem);
  bottom: clamp(5.2rem, 6vw, 6.4rem);
  z-index: 1;
  color: rgba(45, 140, 255, 0.1);
  font-size: clamp(7rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.5;
  pointer-events: none;
}

.client-impact-slides {
  position: relative;
  z-index: 1;
}

.client-impact-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(19rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
  width: 100%;
  padding: clamp(2.2rem, 5vw, 4.8rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.85rem);
  transition:
    opacity 440ms ease,
    transform 440ms ease,
    visibility 440ms ease;
}

.client-impact-slide:not(.is-active) {
  position: absolute;
  inset: 0;
}

.client-impact-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.client-impact-copy {
  max-width: 47rem;
}

.client-impact-copy .section-label {
  margin-bottom: clamp(1.4rem, 2.4vw, 2rem);
}

.client-impact-copy h3 {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.client-impact-copy h3 span {
  color: var(--accent);
}

.client-impact-quote {
  max-width: 41rem;
  margin: clamp(1.7rem, 3vw, 2.4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.85vw, 1.55rem);
  line-height: 1.52;
}

.client-impact-rule {
  width: 3.4rem;
  height: 2px;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(45, 140, 255, 0.34);
}

.client-impact-client {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
}

.client-impact-avatar {
  display: grid;
  place-items: center;
  width: clamp(4.6rem, 7vw, 6rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(45, 140, 255, 0.22), rgba(4, 12, 24, 0.98));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow:
    inset 0 0 1.2rem rgba(45, 140, 255, 0.16),
    0 0 1.4rem rgba(45, 140, 255, 0.18);
}

.client-impact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-impact-client-text {
  display: grid;
  gap: 0.18rem;
}

.client-impact-client-text strong {
  color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.client-impact-client-text span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.client-impact-client-text em {
  color: var(--soft);
  font-size: 0.96rem;
  font-style: normal;
}

.client-impact-divider {
  display: block;
  align-self: stretch;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(126, 166, 210, 0.38), transparent);
}

.client-impact-benefits {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}

.client-impact-benefit {
  display: grid;
  grid-template-columns: clamp(4.8rem, 6vw, 5.6rem) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  max-width: 31rem;
}

.client-impact-benefit-icon {
  position: relative;
  display: block;
  width: clamp(4.8rem, 6vw, 5.6rem);
  height: clamp(4.8rem, 6vw, 5.6rem);
  padding: 0;
  border: 1px solid rgba(45, 140, 255, 0.46);
  border-radius: 0.55rem;
  background: rgba(45, 140, 255, 0.045);
  color: var(--accent);
  box-shadow:
    inset 0 0 1rem rgba(45, 140, 255, 0.08),
    0 0 1.4rem rgba(45, 140, 255, 0.08);
}

.client-impact-benefit-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 3.3rem;
  height: 3.3rem;
  transform: translate(-50%, -50%);
}

.client-impact-benefit strong,
.client-impact-benefit span {
  display: block;
}

.client-impact-benefit strong {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
}

.client-impact-benefit span {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.45;
}

.testimonial-controls {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 2.7vw, 2.2rem);
  z-index: 3;
  display: flex;
  gap: 0.8rem;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(45, 140, 255, 0.28);
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.42);
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: rgba(45, 140, 255, 0.62);
  background: rgba(45, 140, 255, 0.08);
  color: var(--accent);
  box-shadow: 0 0 1rem rgba(45, 140, 255, 0.16);
}

.testimonial-controls button:first-child svg {
  transform: rotate(180deg);
}

.testimonial-dots {
  position: absolute;
  left: clamp(2.2rem, 5vw, 4.8rem);
  bottom: clamp(1.85rem, 3vw, 2.75rem);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(126, 166, 210, 0.34);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.testimonial-dots button.is-active,
.testimonial-dots button:hover,
.testimonial-dots button:focus-visible {
  width: 1.5rem;
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(45, 140, 255, 0.32);
}
.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 1.35fr) minmax(12rem, 0.5fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(1.2rem, 3vw, 2rem);
  padding-block: clamp(2.6rem, 5vw, 4rem);
}

.final-cta h2 {
  margin: 0;
}

.final-cta h2 span {
  color: var(--accent);
}

.final-cta p {
  max-width: 14rem;
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(22rem, 40fr) minmax(6rem, 12fr) minmax(11rem, 20fr) minmax(18rem, 28fr);
  column-gap: clamp(2.6rem, 5.6vw, 6.4rem);
  row-gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 4.6rem) 2.5rem;
  border-bottom: 2px solid var(--accent);
}

.footer-brand img {
  display: block;
  width: min(100%, 32rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: clamp(0.72rem, 1.15vw, 1.15rem);
  width: min(100%, 32rem);
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  color: var(--text);
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(45, 140, 255, 0.14), transparent);
}

.footer-brand p span {
  color: var(--text);
}

.footer-brand p span:nth-child(2) {
  color: var(--accent-bright);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 0.48rem;
  font-style: normal;
  min-width: 0;
}

.footer-company a,
.footer-services a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-left: 0.95rem;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.footer-company a::before,
.footer-services a::before {
  position: absolute;
  left: 0;
  content: "›";
  color: var(--accent-bright);
  opacity: 0;
  transform: translateX(-0.4rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.footer-company a:hover,
.footer-company a:focus-visible,
.footer-services a:hover,
.footer-services a:focus-visible {
  color: var(--accent-bright);
  text-shadow: 0 0 0.85rem rgba(45, 140, 255, 0.28);
}

.footer-company a:hover::before,
.footer-company a:focus-visible::before,
.footer-services a:hover::before,
.footer-services a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  font-size: 1.02rem;
}

.footer-contact-row {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.68rem;
  min-width: 0;
  color: var(--muted);
  cursor: pointer;
  overflow: hidden;
  transition:
    color 240ms ease,
    text-shadow 240ms ease;
}

a.footer-contact-row::after {
  position: absolute;
  inset: -0.25rem -0.5rem;
  z-index: 0;
  content: "";
  background: linear-gradient(105deg, transparent 18%, rgba(124, 211, 255, 0.11) 48%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-110%);
}

a.footer-contact-row:hover,
a.footer-contact-row:focus-visible {
  color: var(--accent-bright);
  text-shadow:
    0 0 0.55rem rgba(45, 140, 255, 0.38),
    0 0 1.15rem rgba(45, 140, 255, 0.18);
}

a.footer-contact-row:hover::after,
a.footer-contact-row:focus-visible::after {
  animation: footer-contact-shimmer 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.footer-contact-row svg {
  position: relative;
  z-index: 1;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  color: var(--accent);
  opacity: 0.88;
  transform: translateY(0.16em);
  transition:
    filter 240ms ease,
    opacity 240ms ease,
    color 240ms ease;
}

.footer-contact-row span {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

a.footer-contact-row:hover svg,
a.footer-contact-row:focus-visible svg {
  opacity: 1;
  filter:
    brightness(1.16)
    drop-shadow(0 0 0.42rem rgba(45, 140, 255, 0.54))
    drop-shadow(0 0 0.95rem rgba(45, 140, 255, 0.24));
}

.site-footer small {
  grid-column: 1 / -1;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.enquiry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 20, 0.78);
  backdrop-filter: blur(18px);
}

.enquiry-modal__panel {
  position: relative;
  z-index: 1;
  overflow: hidden auto;
  width: min(100%, 62rem);
  max-height: min(90svh, 56rem);
  padding: clamp(1.35rem, 3vw, 2.3rem);
  border: 1px solid rgba(45, 140, 255, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 10%, rgba(45, 140, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 6% 100%, rgba(45, 140, 255, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(10, 23, 39, 0.98), rgba(3, 9, 20, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2.5rem 7rem rgba(0, 0, 0, 0.42),
    0 0 5rem rgba(45, 140, 255, 0.12);
  opacity: 0;
  transform: translateY(1rem) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.enquiry-modal.is-open .enquiry-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.enquiry-modal__panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(45, 140, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 140, 255, 0.03) 1px, transparent 1px);
  background-size: 3.8rem 3.8rem;
  opacity: 0.45;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 0 32%, transparent 76%);
}

.enquiry-modal__close {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.1rem);
  right: clamp(0.8rem, 2vw, 1.1rem);
  z-index: 3;
  display: grid;
  width: 2.45rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(45, 140, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(8, 21, 38, 0.68);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.enquiry-modal__close:hover,
.enquiry-modal__close:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 1.1rem rgba(45, 140, 255, 0.18);
}

.enquiry-modal__close span,
.enquiry-modal__close span::after {
  display: block;
  width: 1rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

.enquiry-modal__close span::after {
  transform: rotate(90deg);
}

.enquiry-modal__intro,
.enquiry-form,
.enquiry-success {
  position: relative;
  z-index: 2;
}

.enquiry-modal__intro {
  max-width: 39rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.enquiry-modal__intro h2,
.enquiry-success h3 {
  margin: 0.85rem 0 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.enquiry-modal__intro p,
.enquiry-success p {
  margin: 1rem 0 0;
  color: var(--soft);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.enquiry-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

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

.form-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.form-field > span,
.form-consent {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-field b {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(132, 174, 222, 0.24);
  border-radius: var(--radius);
  background: rgba(3, 12, 23, 0.7);
  color: var(--text);
  font: inherit;
  outline: 0;
  padding: 0.9rem 0.95rem;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(45, 140, 255, 0.74);
  background: rgba(5, 16, 30, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(45, 140, 255, 0.08),
    0 0 1.2rem rgba(45, 140, 255, 0.12);
}

.form-field small,
.form-consent-error {
  min-height: 1rem;
  color: #ff9fb4;
  font-size: 0.76rem;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: rgba(255, 107, 154, 0.7);
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.16rem;
  accent-color: var(--accent);
}

.enquiry-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form__status {
  min-height: 1.2rem;
  color: var(--soft);
  font-size: 0.86rem;
}

.enquiry-form__status.is-error {
  color: #ff9fb4;
}

.enquiry-form__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.3rem;
}

.enquiry-form.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.enquiry-form.is-loading button[type="submit"] span::after {
  content: "...";
}

.enquiry-success {
  display: grid;
  gap: 1rem;
  min-height: 24rem;
  align-content: center;
  max-width: 38rem;
}

.enquiry-success[hidden],
.enquiry-form[hidden] {
  display: none;
}

body.enquiry-open {
  overflow: hidden;
}

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

.reveal {
  animation: reveal-up both;
  animation-timeline: view();
  animation-range: entry 0% cover 26%;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-card-enter {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-header-enter {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonial-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-72%) skewX(-10deg);
  }
  18% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translateX(72%) skewX(-10deg);
  }
}

@keyframes footer-contact-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  22% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-1.5rem, 0.5rem, 0);
  }
}

@keyframes infinity-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      drop-shadow(0 0 3.6rem rgba(45, 140, 255, 0.16))
      drop-shadow(0 2.4rem 4rem rgba(0, 0, 0, 0.34));
  }
  50% {
    transform: translate3d(0.45rem, 0.25rem, 0) scale(1.015);
    filter:
      drop-shadow(0 0 4.35rem rgba(45, 140, 255, 0.22))
      drop-shadow(0 2.55rem 4.2rem rgba(0, 0, 0, 0.36));
  }
}

@keyframes hero-word-stamp {
  0% {
    opacity: 0;
    filter: blur(0.035em);
    transform: translate3d(0, -0.22em, 0) scale(1.065);
  }
  58% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0.018em, 0) scale(0.992);
  }
  72% {
    filter:
      drop-shadow(0 0 0.08em rgba(255, 255, 255, 0.16))
      drop-shadow(0 0 0.16em rgba(45, 140, 255, 0.14));
    transform: translate3d(0, 0, 0) scale(1.004);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.65);
    transform-origin: top;
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes trust-strip-wave {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  22% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes trust-item-wave {
  0% {
    background: transparent;
    border-color: var(--line);
    box-shadow: inset 0 0 0 0 rgba(45, 140, 255, 0);
    opacity: 0.86;
    transform: translateY(0.5rem);
  }
  42% {
    background:
      radial-gradient(circle at 24% 50%, rgba(45, 140, 255, 0.1), transparent 9rem),
      linear-gradient(180deg, rgba(45, 140, 255, 0.035), transparent);
    border-color: rgba(45, 140, 255, 0.38);
    box-shadow: inset 0 0 0 1px rgba(45, 140, 255, 0.05);
    opacity: 1;
    transform: translateY(-0.18rem);
  }
  100% {
    background: transparent;
    border-color: var(--line);
    box-shadow: inset 0 0 0 0 rgba(45, 140, 255, 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes type-code {
  from {
    width: 0;
  }
  to {
    width: calc(var(--chars) * 1ch);
  }
}

@keyframes code-caret-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@keyframes code-caret-hide {
  to {
    opacity: 0;
  }
}

@keyframes milestone-pulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(45, 140, 255, 0));
    text-shadow: 0 0 0 rgba(45, 140, 255, 0);
  }
  35% {
    filter: drop-shadow(0 0 0.65rem rgba(45, 140, 255, 0.38));
    text-shadow: 0 0 1rem rgba(45, 140, 255, 0.38);
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(45, 140, 255, 0));
    text-shadow: 0 0 0 rgba(45, 140, 255, 0);
  }
}

@keyframes dna-stage-reveal {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dna-copy-reveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes manifesto-row-reveal {
  0% {
    opacity: 0;
    transform: translateY(0.45rem) scale(0.985);
  }
  68% {
    opacity: 1;
    transform: translateY(-0.05rem) scale(1.006);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes dna-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes dna-flow-travel {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }
  12%,
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes dna-core-activate {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  52% {
    opacity: 1;
    transform: scale(1.22);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dna-marker-activate {
  0% {
    box-shadow:
      inset 0 0 0 0.7rem rgba(45, 140, 255, 0.035),
      0 0 0 rgba(45, 140, 255, 0);
    transform: scale(1);
  }
  55% {
    box-shadow:
      inset 0 0 0 0.7rem rgba(45, 140, 255, 0.065),
      0 0 2.4rem rgba(45, 140, 255, 0.38);
    transform: scale(1.04);
  }
  100% {
    box-shadow:
      inset 0 0 0 0.7rem rgba(45, 140, 255, 0.045),
      0 0 1.4rem rgba(45, 140, 255, 0.24);
    transform: scale(1);
  }
}

@keyframes dna-connector-draw {
  to {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes dna-rocket-drift {
  0% {
    opacity: 0;
    transform: rotate(-16deg) translate(-0.6rem, 0.8rem) scale(0.92);
  }
  42% {
    opacity: 0.86;
  }
  100% {
    opacity: 0.68;
    transform: rotate(-16deg) translate(0, 0) scale(1);
  }
}

@keyframes dna-particle-rise {
  0% {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  28%,
  72% {
    opacity: 0.82;
  }
  100% {
    opacity: 0.22;
    transform: translateY(-0.5rem);
  }
}

@keyframes dna-system-glow {
  0% {
    filter: drop-shadow(0 0 0 rgba(45, 140, 255, 0));
  }
  45% {
    filter: drop-shadow(0 0 1.25rem rgba(45, 140, 255, 0.2));
  }
  100% {
    filter: drop-shadow(0 0 0.75rem rgba(45, 140, 255, 0.12));
  }
}

@keyframes dna-image-shimmer {
  0% {
    opacity: 0;
    transform: translateY(-24%);
  }
  18%,
  72% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateY(42%);
  }
}

@keyframes helix-glass-shimmer {
  0% {
    opacity: 0;
    transform: translate(-30%, -38%);
  }
  18% {
    opacity: 0.42;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translate(28%, 36%);
  }
}

@keyframes dna-overlay-stage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dna-overlay-line {
  to {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes dna-overlay-node {
  0% {
    transform: translateY(-50%) scale(0.72);
    box-shadow:
      0 0 0 rgba(45, 140, 255, 0),
      0 0 0 rgba(45, 140, 255, 0);
  }
  42% {
    transform: translateY(-50%) scale(1.18);
    box-shadow:
      0 0 1rem rgba(126, 213, 255, 0.78),
      0 0 2.2rem rgba(45, 140, 255, 0.46);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 0.7rem rgba(126, 213, 255, 0.58),
      0 0 1.55rem rgba(45, 140, 255, 0.28);
  }
}

@keyframes cursor-ship-pulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 0.16rem rgba(45, 140, 255, 0.3))
      drop-shadow(0 0 0.48rem rgba(45, 140, 255, 0.12));
  }
  50% {
    filter:
      drop-shadow(0 0 0.24rem rgba(45, 140, 255, 0.42))
      drop-shadow(0 0 0.68rem rgba(45, 140, 255, 0.18));
  }
}

@media (max-width: 1050px) {
  section[id],
  footer[id] {
    scroll-margin-top: 100px;
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - (var(--gutter) * 2)));
    gap: 0.2rem;
    border: 1px solid rgba(45, 140, 255, 0.3);
    background:
      radial-gradient(circle at 100% 0%, rgba(45, 140, 255, 0.16), transparent 12rem),
      rgba(4, 12, 24, 0.96);
    box-shadow:
      0 1.2rem 3rem rgba(0, 0, 0, 0.36),
      0 0 2.2rem rgba(45, 140, 255, 0.1);
    padding: 0.55rem;
    opacity: 0;
    transform: translateY(-0.45rem);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .mobile-nav:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 0.82rem 0.9rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
      color 180ms ease,
      background 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(45, 140, 255, 0.08);
    color: var(--text);
    transform: translateX(0.12rem);
  }

  .split-section,
  .why-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 38rem;
  }

  .why-section {
    min-height: auto;
    padding-block: clamp(2.4rem, 6vw, 4rem);
  }

  .why-copy {
    max-width: 42rem;
  }

  .why-section--helix {
    min-height: auto;
    padding-block: clamp(3rem, 7vw, 5rem);
  }

  .helix-showcase {
    width: min(100%, 78rem);
    min-height: clamp(42rem, 86vw, 58rem);
    margin-inline: auto;
  }

  .helix-art {
    max-width: min(50vw, 26rem);
  }

  .dna-visual {
    width: min(100%, 78rem);
    min-height: clamp(42rem, 86vw, 58rem);
    margin-inline: auto;
  }

  .dna-lottie {
    width: min(48vw, 31rem);
  }

  .brand img {
    width: clamp(14.4rem, 33.6vw, 19.2rem);
  }

  .site-nav.is-scrolled .brand img {
    width: clamp(12rem, 27.2vw, 15.2rem);
  }

  .site-footer {
    grid-template-columns: minmax(18rem, 40fr) minmax(5.5rem, 12fr) minmax(10rem, 20fr) minmax(15rem, 28fr);
    column-gap: clamp(1.8rem, 3.6vw, 3.2rem);
    row-gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .dna-system {
    min-height: 52rem;
  }

  .dna-helix {
    left: 50%;
    width: min(31rem, 58vw);
  }

  .dna-node--imagine,
  .dna-node--collaborate {
    right: 0;
  }

  .dna-node--build,
  .dna-node--launch {
    left: 0;
  }

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

  .project-card,
  .process-card {
    min-height: 16rem;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding-right: clamp(4rem, 12vw, 7rem);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.2rem;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 86px;
  }

  .site-nav {
    padding-block: 1rem;
    gap: 0.75rem;
  }

  .brand img {
    width: clamp(10.4rem, 38.4vw, 12.8rem);
  }

  .site-nav.is-scrolled .brand img {
    width: clamp(8.8rem, 33.6vw, 10.4rem);
  }

  .nav-cta {
    width: 3rem;
    min-height: 2.6rem;
    padding: 0.75rem;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 8.2rem 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.8vw, 4rem);
  }

  .infinity-mark {
    top: 50%;
    right: -78%;
    width: 150vw;
    opacity: 1;
  }

  .scroll-cue {
    display: none;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: auto;
    padding: 1.3rem 0;
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-block: 1.2rem;
  }

  .service-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .service-row p {
    grid-column: 1 / -1;
    opacity: 1;
    transform: none;
  }

  .code-card pre {
    overflow: hidden;
    font-size: 0.74rem;
  }

  .process-section.is-typing .code-text {
    animation-duration: var(--mobile-line-duration);
  }

  .process-section.is-typing .code-text::after {
    animation-delay:
      calc(var(--card-delay) + var(--line-delay) + 360ms),
      calc(var(--card-delay) + var(--line-delay) + var(--mobile-line-duration) + 360ms);
  }

  .process-section.is-typing .code-line--milestone .code-text {
    animation-duration: var(--mobile-line-duration), 1500ms;
    animation-delay:
      calc(var(--card-delay) + var(--line-delay) + 360ms),
      calc(var(--card-delay) + var(--line-delay) + var(--mobile-line-duration) + 520ms);
  }

  .why-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .why-section--helix .why-copy h2 {
    font-size: clamp(2.2rem, 9.6vw, 3.2rem);
  }

  .why-manifesto {
    font-size: clamp(1.18rem, 5vw, 1.5rem);
  }

  .why-manifesto li {
    gap: 0.58rem;
  }

  .why-copy > p:not(.section-label) {
    max-width: 100%;
  }

  .final-cta {
    padding-right: 0;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 8vw, 3.25rem);
    line-height: 1.08;
  }

  .final-cta p {
    max-width: 100%;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 32rem);
  }

  .cta-actions .button {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  }

  .why-section--helix {
    gap: 1.7rem;
    padding-block: 3.2rem;
  }

  .helix-showcase {
    display: grid;
    gap: 1.15rem;
    min-height: auto;
    margin-top: 0.75rem;
    overflow: visible;
  }

  .helix-field {
    inset: -0.5rem 0 auto;
    height: clamp(18rem, 74vw, 28rem);
    min-height: 0;
    mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    opacity: 0.55;
  }

  .helix-art {
    position: relative;
    top: auto;
    left: auto;
    width: min(78vw, 17.5rem);
    height: auto;
    max-width: none;
    margin-inline: auto;
    transform: none;
  }

  .helix-shimmer {
    display: none;
  }

  .helix-overlay {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.1rem;
  }

  .helix-stage {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .helix-node,
  .helix-line {
    display: none;
  }

  .helix-stage-content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
    display: grid;
    gap: 0.24rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(45, 140, 255, 0.18);
    background:
      radial-gradient(circle at 100% 0%, rgba(45, 140, 255, 0.08), transparent 11rem),
      rgba(7, 17, 31, 0.56);
  }

  .helix-stage--imagine .helix-stage-content,
  .helix-stage--collaborate .helix-stage-content,
  .helix-stage--build .helix-stage-content,
  .helix-stage--launch .helix-stage-content {
    left: auto;
    right: auto;
  }

  .helix-stage-content > span:first-child {
    font-size: 0.72rem;
  }

  .helix-stage-content strong {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .helix-stage-content > span:last-child {
    max-width: 24rem;
    font-size: 0.9rem;
  }

  .dna-visual {
    display: grid;
    gap: 1rem;
    min-height: auto;
    margin-top: 0.75rem;
  }

  .dna-visual::before {
    inset: 0;
    min-height: 30rem;
    mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }

  .dna-lottie {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 25rem);
    height: min(78vw, 36rem);
    max-width: none;
    margin-inline: auto;
    transform: none;
  }

  .dna-architecture,
  .dna-shimmer {
    display: none;
  }

  .dna-overlay {
    position: relative;
    display: grid;
    gap: 0.9rem;
    margin-top: 0.25rem;
  }

  .dna-stage-hotspot {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    padding: 1rem 0 1rem 4.6rem;
  }

  .dna-stage-node {
    top: 2.15rem;
    left: 0;
    right: auto;
    width: 1rem;
  }

  .dna-stage--build .dna-stage-node,
  .dna-stage--launch .dna-stage-node {
    right: auto;
  }

  .dna-stage-line {
    top: 2.15rem;
    left: 1.25rem;
    right: auto;
    width: 2.25rem;
    transform-origin: left center;
    opacity: 0.45;
  }

  .dna-stage--build .dna-stage-line,
  .dna-stage--launch .dna-stage-line {
    right: auto;
    transform-origin: left center;
  }

  .dna-stage-icon {
    top: 0.35rem;
    left: 2.6rem;
    right: auto;
    width: 3.5rem;
    transform: translateX(-50%);
  }

  .dna-stage--imagine .dna-stage-icon,
  .dna-stage--collaborate .dna-stage-icon,
  .dna-stage--build .dna-stage-icon,
  .dna-stage--launch .dna-stage-icon {
    left: 2.6rem;
    right: auto;
  }

  .dna-stage-icon span {
    width: 1.25rem;
  }

  .dna-stage-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
  }

  .dna-stage--imagine .dna-stage-panel,
  .dna-stage--collaborate .dna-stage-panel,
  .dna-stage--build .dna-stage-panel,
  .dna-stage--launch .dna-stage-panel {
    left: auto;
    right: auto;
  }

  .dna-system {
    min-height: 66rem;
    margin-top: 1.5rem;
    justify-items: start;
  }

  .dna-ambient {
    inset: -2% -20%;
    opacity: 0.72;
  }

  .dna-helix {
    position: absolute;
    top: 1rem;
    left: 50%;
    width: min(27rem, 82vw);
    opacity: 0.84;
    transform: translateX(-50%);
  }

  .dna-rocket {
    top: 5rem;
    left: 8%;
    width: 3.2rem;
  }

  .dna-node-list {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 1.65rem;
    width: 100%;
    padding-top: 24rem;
  }

  .dna-stage {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-template-columns: auto 1fr;
    width: min(100%, 25.5rem);
    min-height: 8rem;
    padding-left: 0;
    transform: translateY(0.85rem);
  }

  .dna-node--imagine,
  .dna-node--collaborate,
  .dna-node--build,
  .dna-node--launch {
    top: auto;
    right: auto;
    left: auto;
  }

  .dna-node--build,
  .dna-node--launch {
    justify-self: end;
  }

  .dna-stage::before {
    display: block;
    width: 2.5rem;
    opacity: 0;
  }

  .dna-node--imagine::before,
  .dna-node--collaborate::before {
    right: calc(100% + 0.35rem);
  }

  .dna-node--build::before,
  .dna-node--launch::before {
    left: calc(100% + 0.35rem);
  }

  .dna-stage-marker {
    width: 4.6rem;
  }

  .dna-stage h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .client-impact-panel {
    min-height: 0;
  }

  .client-impact-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 6.2rem;
  }

  .client-impact-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126, 166, 210, 0.36), transparent);
  }

  .client-impact-benefits {
    max-width: 40rem;
  }

  .client-impact-ribbon {
    width: min(44rem, 92vw);
    right: -17rem;
    bottom: -11rem;
    opacity: 0.18;
  }

  .client-impact-quote-mark {
    right: 2rem;
    bottom: 5.9rem;
  }

  .enquiry-modal {
    padding: 0.8rem;
  }

  .enquiry-modal__panel {
    max-height: 92svh;
  }

  .form-grid--two,
  .form-grid--three {
    grid-template-columns: 1fr;
  }

  .enquiry-form__actions {
    justify-content: stretch;
  }

  .enquiry-form__actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img,
  .footer-brand p {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .client-impact-slide {
    padding: 1.55rem 1.35rem 5.9rem;
  }

  .client-impact-copy h3 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .client-impact-benefit {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 1rem;
  }

  .client-impact-benefit-icon {
    width: 3.8rem;
    height: 3.8rem;
  }

  .client-impact-benefit-icon svg {
    width: 2.75rem;
    height: 2.75rem;
  }

  .testimonial-controls {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .testimonial-dots {
    left: 1.35rem;
    bottom: 2rem;
  }

  .final-cta {
    padding-right: 0;
    gap: 1.35rem;
    padding-block: 2.4rem 3rem;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.75rem);
    line-height: 1.08;
  }

  .final-cta p {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
    min-height: 3.15rem;
    padding-inline: 0.7rem;
    font-size: clamp(0.68rem, 3.25vw, 0.8rem);
    white-space: nowrap;
  }

  .button {
    width: 100%;
  }

  .site-nav .nav-cta {
    width: 3rem;
  }

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

}

@media (max-width: 360px) {
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-actions .button {
    white-space: normal;
  }
}

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

  .client-impact-panel:hover::after,
  .client-impact-panel:focus-within::after {
    animation: none;
  }

  a.footer-contact-row:hover::after,
  a.footer-contact-row:focus-visible::after {
    animation: none;
  }

  .trust-strip::before,
  .trust-strip.is-active::before,
  .trust-strip.is-active .trust-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

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

  .hero h1 span {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }

  .infinity-mark {
    animation: none;
    transform: none;
  }

  .why-copy,
  .why-manifesto li,
  .dna-stage,
  .dna-rocket,
  .dna-stage-hotspot,
  .dna-shimmer {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .dna-stage-line {
    opacity: 0.5;
    transform: scaleX(1);
  }

  .dna-stage-node {
    transform: translateY(-50%) scale(1);
  }

  .dna-strand,
  .dna-flow-pulse {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .dna-ladders path,
  .dna-core-node,
  .dna-particles circle {
    opacity: 1;
  }

  .orbit-cursor {
    display: none;
  }
}
