@font-face {
  font-family: "Geist";
  src: url("../fonts/geist.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --ink: #050608;
  --ink-soft: #0a0c10;
  --panel: #0e1117;
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(255, 255, 255, 0.25);
  --white: #f4f8ff;
  --muted: rgba(244, 248, 255, 0.8);
  --blue: #31b7ff;
  --blue-hot: #74d3ff;
  --blue-deep: #0077ff;
  --button-radius: 0.25rem;
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--blue);
  color: #00111c;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  border-radius: var(--button-radius);
  background: var(--blue);
  color: #00121e;
  padding: 0.8rem 1.1rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.25rem;
  background: #020304;
  animation: boot-away 1s cubic-bezier(.76, 0, .24, 1) 2.05s forwards;
  pointer-events: none;
}

.boot-mark {
  animation: boot-flicker 0.18s steps(2, end) 3;
}

.boot-mark .logo-art {
  width: clamp(15rem, 32vw, 30rem);
}

.boot-track {
  width: min(24rem, 70vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.boot-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: left;
  animation: boot-load 1.7s cubic-bezier(.5, 0, .2, 1) forwards;
}

.boot-screen p {
  margin: 0;
  color: #64707e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
}

.site-shell {
  opacity: 0;
  animation: site-in 0.55s ease 1.95s forwards;
}

.nav-wrap {
  position: fixed;
  z-index: 90;
  top: 1.25rem;
  left: 50%;
  width: min(1340px, calc(100% - 2rem));
  transform: translateX(-50%);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.8rem, 1.25vw, 1.3rem);
  min-height: 4.25rem;
  padding: 0.55rem 0.6rem 0.55rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0 auto 0 0;
  width: max-content;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.logo-art {
  display: block;
  width: 10rem;
  height: auto;
  aspect-ratio: 533 / 90;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo-art image {
  mix-blend-mode: screen;
}

.nav-links {
  position: absolute;
  top: 50%;
  left: 50%;
  align-self: center;
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  gap: clamp(0.7rem, 1.15vw, 1.2rem);
  transform: translate(-50%, -50%);
}

.nav-links a,
.nav-links .nav-future {
  position: relative;
  color: var(--white);
  font-size: clamp(0.63rem, 0.68vw, 0.72rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a::after,
.nav-links .nav-future::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: var(--blue);
  transition: right 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links .nav-future:hover::after {
  right: 0;
}

.nav-future {
  cursor: default;
}

.nav-cta {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.05rem;
  border-radius: var(--button-radius);
  background: var(--white);
  color: #050608;
  padding: 0 1.25rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
}

.mobile-menu {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-left: auto;
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  padding: 9.2rem max(5vw, calc((100vw - 1440px) / 2)) 5rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 28%, rgba(0, 119, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 10% 92%, rgba(49, 183, 255, 0.1), transparent 30rem),
    linear-gradient(135deg, #050608 0%, #05080d 52%, #07162a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 18rem;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(49, 183, 255, 0.1), transparent 34rem),
    linear-gradient(120deg, transparent 15%, rgba(0, 119, 255, 0.06) 100%);
}

.hero-grid::before {
  display: none;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow-one {
  width: 42vw;
  height: 42vw;
  right: -12vw;
  top: 5vh;
  background: var(--blue-deep);
  animation: glow-drift 9s ease-in-out infinite alternate;
}

.hero-glow-two {
  width: 24vw;
  height: 24vw;
  left: 8vw;
  bottom: -10vw;
  background: var(--blue);
  animation: glow-drift 7s ease-in-out -2s infinite alternate-reverse;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 850px;
  padding-left: clamp(0rem, 1.5vw, 1.5rem);
}

.eyebrow,
.kicker {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  animation: fade-up 0.7s ease 2.3s both;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--blue);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5.3vw, 6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  animation: fade-up 0.85s cubic-bezier(.16, 1, .3, 1) 2.38s both;
}

.hero h1 span {
  display: block;
}

.outline-line {
  color: var(--white);
}

.blue-line {
  color: var(--blue);
}

.hero-copy > p {
  max-width: 41rem;
  margin: 2rem 0 0;
  color: #9aa4b2;
  font-size: clamp(0.98rem, 1.3vw, 1.14rem);
  line-height: 1.7;
  animation: fade-up 0.85s ease 2.5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  animation: fade-up 0.85s ease 2.58s both;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.6rem;
  border: 1px solid var(--line-bright);
  border-radius: var(--button-radius);
  padding: 0 1.35rem;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-hot);
  transform: translateY(102%);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}

.button:hover,
.button:focus-visible {
  color: #041019;
  transform: translateY(-2px);
  border-color: var(--blue-hot);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateY(0);
}

.button-primary {
  z-index: 0;
  background: var(--blue);
  border-color: var(--blue);
  color: #03131d;
}

.button-ghost {
  z-index: 0;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}

.showreel-wrap {
  position: relative;
  z-index: 2;
  width: min(38vw, 34rem);
  justify-self: end;
  aspect-ratio: 4 / 5;
  animation: hero-media-in 1.2s cubic-bezier(.16, 1, .3, 1) 2.28s both;
}

.showreel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0.4rem;
  background: #080a0e;
}

.showreel::before {
  display: none;
}

.showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.58), transparent 25%, transparent 68%, rgba(0,0,0,.82));
  pointer-events: none;
}

.showreel-top,
.showreel-bottom {
  position: absolute;
  z-index: 4;
  left: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.76);
  font-family: var(--font-geist-mono), monospace;
  font-size: .54rem;
  letter-spacing: .11em;
}

.showreel-top {
  top: 1.35rem;
}

.showreel-bottom {
  bottom: 1.35rem;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--blue-hot);
}

.live-badge::before {
  content: "";
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--blue);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(49,183,255,.25);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--blue);
}

.orbit-one {
  inset: -1%;
  animation: orbit-spin 12s linear infinite;
}

.orbit-one::after {
  top: 10%;
  left: 13%;
}

.orbit-two {
  inset: 3%;
  border-style: dashed;
  opacity: .55;
  animation: orbit-spin 18s linear infinite reverse;
}

.orbit-two::after {
  bottom: 4%;
  right: 23%;
}

.hero-index {
  position: absolute;
  z-index: 5;
  left: max(5vw, calc((100vw - 1440px) / 2));
  right: max(5vw, calc((100vw - 1440px) / 2));
  bottom: 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: #5f6876;
  font-family: var(--font-geist-mono), monospace;
  font-size: .55rem;
  letter-spacing: .12em;
}

.hero-index div {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(255,255,255,.1));
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--blue);
  color: #00121e;
  transform: rotate(-1deg) scale(1.01);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-size: clamp(.78rem, 1.25vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.ticker i {
  font-style: normal;
}

.section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(7rem, 11vw, 11rem) 5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: .4fr 1.5fr .65fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading h2,
.pricing-head h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.section-heading h2 span,
.manifesto h2 span,
.work-copy h2 span,
.contact-section h2 span {
  color: var(--blue);
}

.heading-copy,
.pricing-head > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: .22fr .6fr 1.3fr 1.35fr 1fr .2fr;
  gap: clamp(1rem, 2.8vw, 3rem);
  align-items: center;
  min-height: 9.5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding .35s ease, background .35s ease;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(49,183,255,.14), rgba(49,183,255,.025) 55%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.service-row:hover,
.service-row:focus-within {
  padding-left: 1rem;
}

.service-row:hover::before,
.service-row:focus-within::before {
  transform: scaleX(1);
}

.service-index {
  color: #697382;
  font-family: var(--font-geist-mono), monospace;
  font-size: .68rem;
}

.service-thumb {
  overflow: hidden;
  height: 4.75rem;
  border: 1px solid var(--line);
  border-radius: .35rem;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) contrast(1.08);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.service-row:hover .service-thumb img {
  transform: scale(1.12);
  filter: saturate(1.2);
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 2.4rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.service-row > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.service-tags span {
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  color: #aab3bf;
  padding: .42rem .65rem;
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-arrow {
  color: var(--blue);
  font-size: 1.25rem;
  transition: transform .3s ease;
}

.service-row:hover .service-arrow {
  transform: translateX(4px);
}

.work-section {
  background:
    radial-gradient(circle at 75% 10%, rgba(49,183,255,.13), transparent 30rem),
    #080a0e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(7rem, 11vw, 11rem) 5vw;
}

.work-sticky {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(3rem, 7vw, 9rem);
  align-items: end;
}

.work-copy h2 {
  margin: 1.4rem 0 1.5rem;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.07em;
}

.work-copy h2 span {
  display: block;
}

.work-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid rgba(49,183,255,.5);
  padding-bottom: .4rem;
  color: var(--blue-hot);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.work-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0.4rem;
  background: #020304;
}

.player-corners {
  display: none;
}

.work-player::after {
  content: "FULL REEL";
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(10px);
  padding: .45rem .65rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: .52rem;
  letter-spacing: .13em;
}

.work-player video {
  width: 100%;
  aspect-ratio: 16/9;
}

.player-corners span {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: var(--blue);
  pointer-events: none;
}

.player-corners span:nth-child(1) {
  top: .5rem;
  left: .5rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.player-corners span:nth-child(2) {
  top: .5rem;
  right: .5rem;
  border-top: 1px solid;
  border-right: 1px solid;
}

.player-corners span:nth-child(3) {
  bottom: .5rem;
  left: .5rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.player-corners span:nth-child(4) {
  bottom: .5rem;
  right: .5rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.work-grid {
  width: min(1440px, 100%);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}

.work-card {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020304;
}

.work-card-2,
.work-card-3 {
  min-height: 23rem;
}

.work-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(.7);
  transition: transform .85s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.work-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,3,4,.95), transparent 55%);
}

.work-card-meta {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem 1rem;
  align-items: end;
}

.work-card-meta > span {
  grid-row: 1/3;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: .65rem;
}

.work-card-meta h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.work-card-meta p {
  margin: 0;
  color: #9da7b4;
  font-family: var(--font-geist-mono), monospace;
  font-size: .55rem;
  letter-spacing: .08em;
}

.manifesto {
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
}

.manifesto h2 {
  margin: 2rem 0 0;
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.075em;
}

.manifesto h2 span {
  display: block;
}

.manifesto-copy {
  border-left: 1px solid var(--blue);
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 7rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat-grid div {
  min-height: 12rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.stat-grid strong {
  color: var(--blue);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.08em;
}

.stat-grid span {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-section {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 11rem) max(2vw, calc((100vw - 1560px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(49,183,255,.12), transparent 30rem),
    #080a0e;
}

.team-section::before {
  display: none;
}

.team-heading {
  position: relative;
  z-index: 2;
  width: min(1440px, 90vw);
  margin: 0 auto clamp(3.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: .45fr 1.25fr .65fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.team-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.07em;
}

.team-heading h2 span {
  display: block;
  color: var(--blue);
}

.team-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.team-cards {
  position: relative;
  z-index: 2;
  width: min(1540px, 96vw);
  min-height: 36rem;
  margin: 0 auto;
  display: flex;
  gap: .8rem;
  align-items: stretch;
}

.team-card {
  --card-a: #0d1823;
  --card-b: #0a4c72;
  --card-hot: #31b7ff;
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  min-width: 0;
  min-height: 36rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11rem 11rem 1.35rem 1.35rem;
  outline: none;
  background:
    radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--card-hot) 42%, transparent), transparent 29%),
    linear-gradient(155deg, var(--card-a), var(--card-b));
  cursor: default;
  transition:
    flex-grow .75s cubic-bezier(.16, 1, .3, 1),
    border-radius .75s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    transform .35s ease;
}

.team-card:hover,
.team-card:focus-visible {
  flex-grow: 2.65;
  border-radius: 5rem 5rem 1.35rem 1.35rem;
  border-color: color-mix(in srgb, var(--card-hot) 65%, white 8%);
  transform: translateY(-.65rem);
}

.team-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.team-visual-direction {
  --card-a: #07111c;
  --card-b: #07577c;
  --card-hot: #72d8ff;
}

.team-visual-ai {
  --card-a: #0d0b1c;
  --card-b: #173985;
  --card-hot: #4a83ff;
}

.team-visual-cgi {
  --card-a: #061221;
  --card-b: #075a92;
  --card-hot: #31b7ff;
}

.team-visual-post {
  --card-a: #030b14;
  --card-b: #09406d;
  --card-hot: #4ebeff;
}

.team-visual-strategy {
  --card-a: #050a11;
  --card-b: #0a2f55;
  --card-hot: #8bdcff;
}

.team-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 150%;
  aspect-ratio: 1;
  left: -25%;
  top: 5%;
  border: 1px solid color-mix(in srgb, var(--card-hot) 38%, transparent);
  border-radius: 46% 54% 61% 39% / 42% 33% 67% 58%;
  animation: team-orbit 14s linear infinite;
}

.team-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(2,3,5,.16) 56%, rgba(2,3,5,.94) 100%);
  pointer-events: none;
}

.team-card-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .5;
  background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--card-hot) 24%, transparent), transparent 58%);
  transition: opacity .4s ease, transform .75s cubic-bezier(.16, 1, .3, 1);
}

.team-card:hover .team-card-grid,
.team-card:focus-visible .team-card-grid {
  opacity: .8;
  transform: scale(1.08);
}

.team-card-scan {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  height: 1px;
  top: 15%;
  opacity: .75;
  background: linear-gradient(90deg, transparent, var(--card-hot), transparent);
  animation: team-scan 4.8s ease-in-out infinite;
}

.team-card-top {
  position: absolute;
  z-index: 3;
  top: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.63);
  font-family: var(--font-geist-mono), monospace;
  font-size: .52rem;
  letter-spacing: .1em;
}

.team-card-top span:last-child {
  opacity: 0;
  transform: translateX(-.5rem);
  transition: opacity .35s ease .12s, transform .35s ease .12s;
}

.team-card:hover .team-card-top span:last-child,
.team-card:focus-visible .team-card-top span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.team-symbol {
  position: absolute;
  z-index: 2;
  top: 23%;
  left: 50%;
  width: clamp(6.5rem, 10vw, 10rem);
  aspect-ratio: 1;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  transition: width .75s cubic-bezier(.16, 1, .3, 1), top .75s cubic-bezier(.16, 1, .3, 1);
}

.team-card:hover .team-symbol,
.team-card:focus-visible .team-symbol {
  top: 19%;
  width: clamp(9rem, 14vw, 14rem);
}

.team-symbol i {
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--card-hot) 62%, transparent);
  border-radius: 50%;
  animation: team-ring 7s linear infinite;
}

.team-symbol i:nth-child(2) {
  inset: 13%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 11s;
}

.team-symbol i::after {
  content: "";
  position: absolute;
  width: .5rem;
  height: .5rem;
  top: 8%;
  left: 17%;
  border-radius: 50%;
  background: var(--card-hot);
}

.team-symbol strong {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: -.08em;
}

.team-card-copy {
  position: absolute;
  z-index: 3;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.4rem;
}

.team-card-copy > p {
  margin: 0 0 .6rem;
  color: var(--card-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: .55rem;
  line-height: 1.4;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.team-card-copy h3 {
  margin: 0;
  max-width: 18rem;
  font-size: clamp(1.15rem, 2vw, 2.05rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.team-card-copy > span {
  display: block;
  max-width: 30rem;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: #aeb8c5;
  font-size: .82rem;
  line-height: 1.6;
  transform: translateY(.75rem);
  transition:
    opacity .4s ease .15s,
    transform .4s ease .15s,
    max-height .5s ease,
    margin-top .4s ease;
}

.team-card:hover .team-card-copy > span,
.team-card:focus-visible .team-card-copy > span {
  max-height: 5rem;
  margin-top: .85rem;
  opacity: 1;
  transform: translateY(0);
}

.team-expand {
  position: absolute;
  z-index: 4;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--card-hot);
  opacity: 0;
  transform: translate(-.5rem, .5rem);
  transition: opacity .35s ease .18s, transform .35s ease .18s;
}

.team-card:hover .team-expand,
.team-card:focus-visible .team-expand {
  opacity: 1;
  transform: translate(0, 0);
}

.team-footer {
  position: relative;
  z-index: 2;
  width: min(1440px, 90vw);
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #68727f;
  font-family: var(--font-geist-mono), monospace;
  font-size: .57rem;
  letter-spacing: .1em;
}

.team-footer p {
  margin: 0;
}

.process-section {
  position: relative;
  background: #080a0e;
  border: 1px solid var(--line);
  border-radius: 2rem 2rem 0 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-card {
  position: relative;
  min-height: 27rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  transition: background .35s ease;
}

.process-card:hover {
  background: rgba(49,183,255,.065);
}

.process-number {
  color: #68727f;
  font-family: var(--font-geist-mono), monospace;
  font-size: .65rem;
}

.process-icon {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 4rem auto 4.5rem;
  transform: rotate(45deg);
}

.process-icon span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(49,183,255,.5);
  animation: process-pulse 3s ease-in-out infinite;
}

.process-icon span:nth-child(2) {
  inset: .8rem;
  animation-delay: -.8s;
}

.process-icon span:nth-child(3) {
  inset: 1.6rem;
  background: rgba(49,183,255,.1);
  animation-delay: -1.6s;
}

.process-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.65;
}

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

.pricing-head {
  display: grid;
  grid-template-columns: 1.2fr .5fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.pricing-head h2 {
  margin-top: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 36rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.04), transparent 45%), #080a0d;
  padding: 2rem;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.price-card:hover {
  transform: translateY(-.6rem);
  border-color: rgba(49,183,255,.5);
}

.price-card.featured {
  border-color: var(--blue);
  background:
    radial-gradient(circle at 80% 0, rgba(49,183,255,.18), transparent 16rem),
    #0b1118;
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue);
  color: #00121e;
  padding: .65rem .85rem;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.price-name {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 2.8rem 0 .3rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.08em;
}

.price-label {
  color: var(--muted);
  margin: 0 0 2rem;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.price-card li {
  display: flex;
  gap: .75rem;
  color: #b9c2cd;
  padding: .58rem 0;
  font-size: .84rem;
}

.price-card li span {
  color: var(--blue);
}

.price-card > a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.5rem;
  border: 1px solid var(--line-bright);
  border-radius: var(--button-radius);
  padding: 0 1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.price-card > a:hover {
  background: var(--blue);
  color: #00121e;
}

.pricing-note {
  margin: 1.5rem 0 0;
  color: #67717e;
  font-size: .72rem;
}

.faq-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-heading h2 {
  margin-top: 1.5rem;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 5.4rem;
  cursor: pointer;
  list-style: none;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 650;
}

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

.faq-list summary > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: .6rem;
}

.faq-list summary i {
  font-style: normal;
  font-size: 1.2rem;
  transition: transform .3s ease, color .3s ease;
}

.faq-list details[open] summary i {
  color: var(--blue);
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: 0;
  padding: 0 3rem 1.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 8rem 5vw;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0,119,255,.26), transparent 34rem),
    #05070a;
  isolation: isolate;
}

.contact-section::before {
  display: none;
}

.contact-noise {
  display: none;
}

.contact-section h2 {
  margin: 2rem auto 1.5rem;
  max-width: 1150px;
  font-size: clamp(2.8rem, 4.7vw, 5.4rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.08em;
}

.contact-section h2 span {
  display: block;
}

.contact-section > p:not(.kicker) {
  max-width: 42rem;
  margin: 0 auto;
  color: #9aa5b4;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-button {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--button-radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(15px);
  min-height: 3.6rem;
  padding: 0 1.4rem;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.contact-button i {
  color: var(--blue);
  font-style: normal;
  font-size: 1.1rem;
}

.contact-button:hover {
  background: var(--white);
  color: #050608;
  transform: scale(1.03);
}

.contact-orbit {
  position: absolute;
  z-index: -1;
  width: min(70vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(49,183,255,.15);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite;
}

.contact-orbit::after {
  content: "";
  position: absolute;
  width: .6rem;
  height: .6rem;
  top: 13%;
  left: 16%;
  border-radius: 50%;
  background: var(--blue);
}

.contact-orbit-two {
  width: min(52vw, 680px);
  animation-direction: reverse;
  animation-duration: 22s;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 5vw;
  border-top: 1px solid var(--line);
  background: #030405;
}

.footer-brand {
  width: max-content;
}

.footer-brand .logo-art {
  width: 12rem;
}

footer > p,
footer small {
  margin: 0;
  color: #66707c;
  font-family: var(--font-geist-mono), monospace;
  font-size: .55rem;
  letter-spacing: .1em;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

footer > div a {
  color: #aab3bf;
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

footer > div a:hover {
  color: var(--blue);
}

footer small {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(2rem);
    animation: reveal-up both linear;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }
}

@keyframes boot-load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes boot-away {
  to { transform: translateY(-105%); visibility: hidden; }
}

@keyframes boot-flicker {
  25% { opacity: .45; transform: translateX(-3px); }
  50% { opacity: 1; transform: translateX(3px); }
}

@keyframes site-in {
  to { opacity: 1; }
}

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

@keyframes hero-media-in {
  from { opacity: 0; transform: translateX(4rem) scale(.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes pulse {
  from { transform: scale(.5); opacity: .8; }
  to { transform: scale(1.8); opacity: 0; }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes grid-pulse {
  50% { opacity: .2; }
}

@keyframes glow-drift {
  to { transform: translate(4rem, 3rem) scale(1.15); }
}

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

@keyframes process-pulse {
  50% { transform: scale(.88); border-color: rgba(49,183,255,.16); }
}

@keyframes team-orbit {
  to { transform: rotate(360deg); }
}

@keyframes team-ring {
  to { transform: rotate(360deg); }
}

@keyframes team-scan {
  0%, 100% { top: 16%; opacity: 0; }
  14% { opacity: .8; }
  50% { top: 72%; opacity: .65; }
  78% { opacity: .8; }
  90% { top: 88%; opacity: 0; }
}

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.65rem;
  }

  .nav-links a,
  .nav-links .nav-future {
    font-size: 0.6rem;
    letter-spacing: 0.055em;
  }

  .nav-cta {
    padding-inline: 0.9rem;
    font-size: 0.66rem;
  }

  .hero {
    grid-template-columns: 1fr .72fr;
    gap: 1.5rem;
  }

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

  .showreel-wrap {
    width: min(38vw, 470px);
  }

  .section-heading {
    grid-template-columns: .35fr 1.4fr;
  }

  .section-heading .heading-copy {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: .2fr .55fr 1.1fr 1.2fr .2fr;
  }

  .service-tags {
    display: none;
  }

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

  .process-card {
    min-height: 24rem;
  }
}

@media (max-width: 1180px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    margin-right: auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-content: center;
    gap: .4rem;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    display: block;
    width: 1.35rem;
    height: 1px;
    background: var(--white);
    transition: transform .3s ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(.2rem) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-.2rem) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 3.7rem;
    right: -.25rem;
    width: min(20rem, calc(100vw - 2rem));
    display: grid;
    border: 1px solid var(--line);
    border-radius: 0.4rem;
    background: rgba(4,6,8,.96);
    backdrop-filter: blur(20px);
    padding: .75rem;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel .nav-future {
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu-panel a:last-child {
    border: 0;
    border-radius: var(--button-radius);
    background: var(--blue);
    color: #00121e;
    margin-top: .6rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3rem;
    padding-top: 8.5rem;
    padding-bottom: 7rem;
  }

  .hero-copy {
    padding: 0;
  }

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

  .showreel-wrap {
    width: min(92vw, 590px);
    justify-self: center;
  }

  .hero-index {
    bottom: 1.5rem;
  }

  .section-heading,
  .work-sticky,
  .manifesto-grid,
  .team-heading,
  .pricing-head,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading .heading-copy {
    grid-column: auto;
  }

  .service-row {
    grid-template-columns: .2fr .65fr 1.4fr .2fr;
    min-height: 8rem;
  }

  .service-row > p {
    grid-column: 2 / -1;
    padding: 0 2rem 1.2rem 0;
  }

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

  .work-card {
    min-height: 22rem;
  }

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

  .team-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-heading {
    width: 100%;
  }

  .team-cards {
    width: 100%;
    min-height: 32rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    padding: .75rem 0 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) rgba(255,255,255,.08);
  }

  .team-card,
  .team-card:hover,
  .team-card:focus-visible {
    flex: 0 0 min(72vw, 27rem);
    min-height: 30rem;
    border-radius: 8rem 8rem 1.35rem 1.35rem;
    scroll-snap-align: center;
  }

  .team-card-copy > span {
    max-height: 5rem;
    margin-top: .85rem;
    opacity: 1;
    transform: none;
  }

  .team-card-top span:last-child,
  .team-expand {
    opacity: 1;
    transform: none;
  }

  .team-footer {
    width: 100%;
  }

  .stat-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    order: -1;
  }

  .faq-heading {
    position: static;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    top: .7rem;
    width: calc(100% - 1rem);
  }

  .nav {
    min-height: 3.8rem;
    padding-left: 1rem;
  }

  .brand .logo-art {
    width: 8.25rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: .84;
  }

  .hero-copy > p {
    font-size: .9rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .showreel-wrap {
    width: 100%;
  }

  .showreel-bottom span:nth-child(2) {
    display: none;
  }

  .hero-index span:last-child {
    display: none;
  }

  .section,
  .work-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-heading h2,
  .pricing-head h2,
  .faq-heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
  }

  .service-row {
    grid-template-columns: auto 5.5rem 1fr auto;
    gap: .75rem;
  }

  .service-thumb {
    height: 4rem;
  }

  .service-row h3 {
    font-size: 1.1rem;
  }

  .service-row > p {
    font-size: .78rem;
  }

  .work-card,
  .work-card-2,
  .work-card-3 {
    min-height: 18rem;
  }

  .manifesto h2 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .team-heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
  }

  .team-card,
  .team-card:hover,
  .team-card:focus-visible {
    flex-basis: 84vw;
    min-height: 28rem;
  }

  .team-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }

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

  .stat-grid div {
    min-height: 8.5rem;
  }

  .process-card {
    min-height: 22rem;
  }

  .price-card {
    min-height: 33rem;
    padding: 1.4rem;
  }

  .faq-list details > p {
    padding-left: 0;
    padding-right: 1rem;
  }

  .contact-section {
    min-height: 70vh;
    padding-inline: 1rem;
  }

  .contact-section h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  footer > div {
    justify-content: flex-start;
  }
}

/* Results, story, contact, FAQ, and footer refinement */
.kicker,
.portfolio-hint,
.production-note,
.testimonial-meta,
.form-microcopy,
.site-footer > p,
.footer-links a {
  color: rgba(244, 248, 255, 0.78);
}

.results-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 9vw, 9rem) 5vw;
  background:
    radial-gradient(circle at 50% 15%, rgba(49, 183, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #05070a, #07111d 55%, #05070a);
}

.results-section::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(49, 183, 255, 0.35) 1px, transparent 1.5px),
    linear-gradient(110deg, transparent 48%, rgba(49, 183, 255, 0.05) 49%, transparent 50%);
  background-size: 8rem 8rem, 13rem 13rem;
  opacity: 0.3;
  pointer-events: none;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.results-heading {
  position: relative;
  z-index: 1;
  width: min(92vw, 64rem);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.results-heading h2 {
  max-width: 58rem;
  margin: 1rem auto;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.results-heading h2 span {
  color: var(--blue);
}

.results-heading > p:last-child {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(244, 248, 255, 0.82);
  font-weight: 520;
  line-height: 1.65;
}

.results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(94vw, 1280px);
  margin: 0 auto;
}

.result-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 14rem;
  border: 1px solid rgba(136, 218, 255, 0.28);
  border-radius: 0.6rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(49, 183, 255, 0.17), transparent 48%),
    rgba(14, 23, 35, 0.7);
  padding: 1.6rem;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, background 0.35s ease;
  animation: result-card-drift 7s ease-in-out infinite;
}

.result-card:nth-child(2) {
  animation-delay: -1.5s;
}

.result-card:nth-child(3) {
  animation-delay: -3s;
}

.result-card:nth-child(4) {
  animation-delay: -4.5s;
}

.result-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(49, 183, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 183, 255, 0.07) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  opacity: 0.35;
  content: "";
}

.result-card:hover {
  transform: translateY(-0.55rem);
  border-color: rgba(49, 183, 255, 0.8);
  background:
    radial-gradient(circle at 20% 15%, rgba(49, 183, 255, 0.3), transparent 52%),
    rgba(14, 23, 35, 0.85);
}

.result-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.45rem;
  background: rgba(244, 248, 255, 0.94);
  color: #042136;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.result-card strong {
  display: block;
  margin: 2.1rem 0 0.45rem;
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.result-card p {
  max-width: 15rem;
  margin: 0;
  color: rgba(244, 248, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(94vw, 1400px);
}

.about-story-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 31rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
  animation: story-card-drift 9s ease-in-out infinite;
}

.about-story-grid article:nth-child(2) {
  animation-delay: -3s;
}

.about-story-grid article:nth-child(3) {
  animation-delay: -6s;
}

.about-story-grid article::before {
  position: absolute;
  inset: -50% 35% 35% -45%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(49, 183, 255, 0.14);
  filter: blur(32px);
  content: "";
  transition: transform 0.6s ease, background 0.4s ease;
}

.about-story-grid article::after {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1px solid rgba(49, 183, 255, 0.7);
  border-right: 1px solid rgba(49, 183, 255, 0.7);
  content: "";
}

.about-story-grid article:hover {
  transform: translateY(-0.55rem);
  border-color: rgba(49, 183, 255, 0.72);
}

.about-story-grid article:hover::before {
  transform: translate(2rem, 2rem) scale(1.2);
  background: rgba(49, 183, 255, 0.24);
}

.about-story-grid h3 {
  margin-top: clamp(3.5rem, 5vw, 5rem);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.about-story-grid p {
  color: rgba(244, 248, 255, 0.82);
}

.about-cta {
  position: relative;
  isolation: isolate;
  justify-content: space-between;
  width: min(94vw, 1180px);
  overflow: hidden;
  border: 1px solid rgba(49, 183, 255, 0.45);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(49, 183, 255, 0.24), transparent 20rem),
    rgba(8, 16, 26, 0.86);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  text-align: left;
  backdrop-filter: blur(20px);
}

.about-cta::before {
  position: absolute;
  inset: auto -8rem -12rem auto;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(49, 183, 255, 0.2);
  filter: blur(55px);
  content: "";
  animation: cta-glow 5s ease-in-out infinite alternate;
}

.about-cta > div > span {
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.about-cta h3 {
  margin: 0.6rem 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about-cta p {
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.86rem;
}

.about-cta .button-primary {
  min-width: 15rem;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(105deg, #67cbff, #31b7ff 55%, #7bd7ff);
  box-shadow: 0 0 2rem rgba(49, 183, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.about-cta .button-primary:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0 2.8rem rgba(49, 183, 255, 0.48);
  filter: brightness(1.1);
}

.about-cta .button-primary span {
  transition: transform 0.3s ease;
}

.about-cta .button-primary:hover span {
  transform: translateX(0.25rem);
}

.about-section .team-card {
  isolation: isolate;
}

.team-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.about-section .team-card::after {
  z-index: 1;
  background: linear-gradient(to top, rgba(1, 5, 10, 0.98), rgba(1, 5, 10, 0.08) 72%);
}

.about-section .team-card-grid {
  z-index: 2;
  opacity: 0.22;
}

.about-section .team-card-scan,
.about-section .team-card-top,
.about-section .team-card-copy {
  z-index: 3;
}

.about-section .team-symbol {
  opacity: 0;
}

.about-section .team-card:hover .team-photo,
.about-section .team-card:focus-visible .team-photo {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}

.contact-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
}

.contact-form {
  max-width: 45rem;
  justify-self: end;
  gap: 1rem;
  border-color: rgba(49, 183, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.08), transparent 45%),
    rgba(7, 11, 17, 0.88);
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.contact-form label,
.contact-form legend {
  color: rgba(244, 248, 255, 0.9);
  font-weight: 720;
}

.contact-form label {
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.78rem 0.88rem;
}

.contact-form textarea {
  min-height: 7.5rem;
}

.service-dropdown {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-dropdown[open] {
  border-color: rgba(49, 183, 255, 0.62);
  background: rgba(49, 183, 255, 0.055);
}

.service-dropdown > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 0.85rem 0.95rem;
  color: rgba(244, 248, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 720;
  cursor: pointer;
}

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

.service-dropdown > summary i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(49, 183, 255, 0.45);
  border-radius: 50%;
  color: var(--blue-hot);
  font-style: normal;
  font-size: 1.1rem;
  transition: transform 0.35s ease, background 0.3s ease;
}

.service-dropdown[open] > summary i {
  transform: rotate(45deg);
  background: rgba(49, 183, 255, 0.12);
}

.contact-form .service-dropdown fieldset {
  padding: 0 0.95rem 0.95rem;
}

.contact-form .service-dropdown legend {
  margin-bottom: 0.7rem;
}

.service-options {
  gap: 0.5rem;
}

.service-options span {
  padding: 0.68rem 0.75rem;
  color: rgba(244, 248, 255, 0.8);
}

.faq-list details {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.faq-list details:hover {
  transform: translateX(0.35rem);
  border-color: rgba(49, 183, 255, 0.5);
  background: rgba(49, 183, 255, 0.035);
}

.faq-list details[open] {
  border-color: rgba(49, 183, 255, 0.72);
  background:
    linear-gradient(90deg, rgba(49, 183, 255, 0.1), transparent 70%),
    rgba(255, 255, 255, 0.025);
}

.faq-list summary {
  color: rgba(244, 248, 255, 0.94);
}

.faq-list summary i {
  color: var(--blue-hot);
  transition: transform 0.35s ease, color 0.3s ease;
}

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

.faq-list details > p {
  color: rgba(244, 248, 255, 0.8);
  animation: faq-answer-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.social-links a {
  border-radius: 0.45rem;
}

.social-links a svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-email {
  color: rgba(244, 248, 255, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.footer-legal summary,
.footer-legal p,
.site-footer small {
  color: rgba(244, 248, 255, 0.75);
}

@keyframes result-card-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.22rem);
  }
}

@keyframes story-card-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.28rem);
  }
}

@keyframes cta-glow {
  to {
    transform: translate(-2rem, -1rem) scale(1.12);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    width: min(90vw, 760px);
  }

  .about-story-grid article {
    min-height: 25rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 48rem;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: 12rem;
  }

  .about-cta {
    justify-content: center;
    text-align: center;
  }

  .about-cta .button-primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .result-card,
  .about-story-grid article,
  .about-cta::before,
  .faq-list details > p {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .boot-screen {
    display: none;
  }

  .site-shell {
    opacity: 1;
  }
}

/* Update 2.0: full-bleed hero, expandable services, and looping portfolio */
.hero {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100svh;
  padding: 9rem 5vw 6rem;
  background: #050608;
  text-align: center;
}

.hero::after {
  z-index: 1;
  height: 22rem;
  background: linear-gradient(transparent, rgba(5, 6, 8, 0.82));
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #050608;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-video-breathe 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.48) 0%, rgba(2, 5, 10, 0.36) 46%, rgba(2, 5, 10, 0.78) 100%),
    radial-gradient(circle at center, rgba(0, 16, 35, 0.08), rgba(0, 4, 10, 0.46) 72%);
}

.hero-copy {
  z-index: 4;
  width: min(100%, 72rem);
  max-width: 72rem;
  padding: 0;
  display: grid;
  justify-items: center;
}

.hero h1 {
  max-width: 68rem;
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  word-spacing: 0.04em;
  text-wrap: balance;
}

.hero-copy > h2 {
  max-width: 52rem;
  margin: 2rem auto 0;
  color: rgba(244, 248, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 450;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-actions {
  justify-content: center;
}

.ticker {
  transform: none;
  background: var(--blue);
}

.ticker-track {
  gap: 0;
  padding: 1.2rem 0;
  animation: ticker-seamless 30s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  font-size: clamp(0.9rem, 1.45vw, 1.2rem);
}

.ticker i {
  color: #00121e;
}

.services-intro {
  max-width: 58rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.services-intro h2,
.portfolio-heading h2 {
  margin: 1.4rem 0 1.3rem;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.services-intro h2 span,
.portfolio-heading h2 span {
  color: var(--blue);
}

.services-intro .heading-copy {
  max-width: 42rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.service-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  background: #050608;
  isolation: isolate;
}

.service-card:nth-child(3n + 2) {
  margin-top: 2rem;
}

.service-card summary {
  position: absolute;
  inset: 0;
  cursor: pointer;
  list-style: none;
}

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

.service-card summary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 0.7s cubic-bezier(.16, 1, .3, 1), filter 0.45s ease;
}

.service-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2, 4, 8, 0.97) 3%, rgba(2, 5, 10, 0.48) 54%, rgba(2, 5, 10, 0.22) 100%);
}

.service-card-index,
.service-card-action {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.service-card-index {
  left: 1.2rem;
  color: var(--blue-hot);
}

.service-card-action {
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--button-radius);
  color: var(--white);
  font-size: 1rem;
  transition: color 0.3s ease, background 0.3s ease, transform 0.4s ease;
}

.service-card h3 {
  position: absolute;
  z-index: 2;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.45rem;
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: bottom 0.5s cubic-bezier(.16, 1, .3, 1);
}

.service-card-details {
  position: absolute;
  z-index: 3;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.4rem;
  background: rgba(3, 8, 14, 0.72);
  backdrop-filter: blur(18px);
  padding: 0 1rem;
  transform: translateY(1rem);
  transition:
    max-height 0.55s cubic-bezier(.16, 1, .3, 1),
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(.16, 1, .3, 1),
    padding 0.35s ease;
}

.service-card-details > p {
  margin: 0 0 1rem;
  color: rgba(244, 248, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-card:hover summary img,
.service-card[open] summary img,
.service-card:focus-within summary img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.08);
}

.service-card:hover h3,
.service-card[open] h3,
.service-card:focus-within h3 {
  bottom: 12.6rem;
}

.service-card:hover .service-card-details,
.service-card[open] .service-card-details,
.service-card:focus-within .service-card-details {
  max-height: 11rem;
  opacity: 1;
  padding: 1rem;
  transform: translateY(0);
}

.service-card:hover .service-card-action,
.service-card[open] .service-card-action {
  background: var(--blue);
  color: #00121e;
  transform: rotate(45deg);
}

.work-section {
  overflow: hidden;
  padding: clamp(7rem, 10vw, 10rem) 0;
}

.portfolio-heading {
  width: min(58rem, 90vw);
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}

.portfolio-heading > p:last-child {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-rail {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(255, 255, 255, 0.08);
  padding: 0 0 1rem;
  cursor: grab;
}

.portfolio-rail:active {
  cursor: grabbing;
}

.portfolio-rail:focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: 0.4rem;
}

.portfolio-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: portfolio-seamless 46s linear infinite;
  will-change: transform;
}

.portfolio-set {
  display: flex;
  flex: 0 0 auto;
  gap: 0.8rem;
  padding-left: 0.8rem;
}

.portfolio-rail:hover .portfolio-track,
.portfolio-rail:focus-within .portfolio-track,
.portfolio-rail:active .portfolio-track {
  animation-play-state: paused;
}

.portfolio-card {
  position: relative;
  flex: 0 0 clamp(18rem, 26vw, 24rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: #020304;
  scroll-snap-align: center;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.75s cubic-bezier(.16, 1, .3, 1), filter 0.45s ease;
}

.portfolio-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 4, 8, 0.98) 3%, rgba(2, 5, 10, 0.12) 65%);
}

.portfolio-card-number,
.portfolio-play {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-card-number {
  left: 1.2rem;
  color: var(--blue-hot);
}

.portfolio-play {
  right: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card-copy {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
}

.portfolio-card-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.portfolio-card-copy > p,
.portfolio-tags {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(.16, 1, .3, 1),
    margin 0.35s ease;
}

.portfolio-card-copy > p {
  color: rgba(244, 248, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.55;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.portfolio-tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--button-radius);
  padding: 0.35rem 0.5rem;
  color: var(--white);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.portfolio-card:hover .portfolio-card-copy > p,
.portfolio-card:focus-visible .portfolio-card-copy > p {
  max-height: 5rem;
  margin-top: 0.8rem;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover .portfolio-tags,
.portfolio-card:focus-visible .portfolio-tags {
  max-height: 4rem;
  margin-top: 0.8rem;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover .portfolio-play,
.portfolio-card:focus-visible .portfolio-play {
  opacity: 1;
  transform: translateX(0.2rem);
}

.portfolio-hint {
  width: min(90vw, 1440px);
  margin: 1.1rem auto 0;
  color: rgba(244, 248, 255, 0.48);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  text-align: center;
}

@keyframes hero-video-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.06); }
}

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

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0;
  }

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

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

  .service-card:nth-child(3n + 2) {
    margin-top: 0;
  }

  .service-card:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding: 7.5rem 1rem 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
  }

  .hero-copy > h2 {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: min(100%, 24rem);
  }

  .ticker-track {
    padding: 1rem 0;
  }

  .services-intro h2,
  .portfolio-heading h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(even) {
    min-height: 29rem;
    margin-top: 0;
  }

  .portfolio-card {
    flex-basis: 78vw;
  }

  .portfolio-hint {
    line-height: 1.6;
  }
}

/* Update 3: brand proof, matched card reveals, testimonials and production system */
.brand-proof {
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 4.6rem) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 50% 100%, rgba(49, 183, 255, 0.12), transparent 55%),
    #050608;
}

.brand-proof-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.8rem;
  width: min(90vw, 58rem);
  margin: 0 auto 1.8rem;
  color: rgba(244, 248, 255, 0.72);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  line-height: 1.5;
  text-align: center;
}

.brand-proof-line strong {
  color: var(--white);
  font-weight: 750;
}

.brand-ticker {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-seamless 28s linear infinite;
  will-change: transform;
}

.brand-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

.brand-chip {
  display: grid;
  place-items: center;
  min-width: clamp(12.5rem, 19vw, 18rem);
  min-height: 5.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 248, 255, 0.86);
  backdrop-filter: blur(16px);
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  font-weight: 720;
  letter-spacing: 0.015em;
  transition:
    transform 0.4s cubic-bezier(.16, 1, .3, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.brand-chip:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(116, 211, 255, 0.55);
  background: rgba(49, 183, 255, 0.12);
  color: #fff;
}

.brand-lili {
  font-family: Georgia, serif;
  letter-spacing: 0.08em;
}

.brand-digifuel,
.brand-ganmoma {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-kling {
  letter-spacing: -0.03em;
}

.brand-switch {
  font-weight: 520;
}

.services-intro {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-intro .heading-copy {
  margin-right: auto;
  margin-left: auto;
}

.service-card-copy {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.3rem;
  left: 1.3rem;
  text-align: left;
}

.service-card .service-card-copy h3 {
  position: static;
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: none;
}

.service-card-copy > p,
.service-card-copy .service-tags {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(.16, 1, .3, 1),
    margin 0.35s ease;
}

.service-card-copy > p {
  color: rgba(244, 248, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-card:hover .service-card-copy > p,
.service-card[open] .service-card-copy > p,
.service-card:focus-within .service-card-copy > p {
  max-height: 5rem;
  margin-top: 0.8rem;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-copy .service-tags,
.service-card[open] .service-card-copy .service-tags,
.service-card:focus-within .service-card-copy .service-tags {
  max-height: 4rem;
  margin-top: 0.8rem;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-action,
.service-card[open] .service-card-action {
  transform: translateX(0.2rem);
}

.portfolio-card {
  appearance: none;
  padding: 0;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.testimonials-section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) 5vw clamp(7rem, 10vw, 10rem);
}

.testimonials-heading {
  max-width: 58rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.testimonials-heading h2,
.production-heading h2 {
  margin: 1.35rem 0 0;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.testimonials-heading h2 span,
.production-heading h2 span {
  color: var(--blue);
}

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

.testimonial-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.1), rgba(255, 255, 255, 0.025) 44%),
    rgba(8, 12, 18, 0.78);
  padding: clamp(1.4rem, 2.3vw, 2.2rem);
  backdrop-filter: blur(18px);
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(116, 211, 255, 0.5);
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  margin: 2rem 0;
  color: var(--white);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.testimonial-card footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.testimonial-card footer strong {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.72rem;
}

.production-system {
  overflow: hidden;
  max-width: none;
  width: 100%;
  background:
    radial-gradient(circle at 50% 58%, rgba(49, 183, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #050608, #070b12 55%, #050608);
}

.production-heading {
  width: min(90vw, 62rem);
  margin: 0 auto 1.5rem;
  text-align: center;
}

.production-heading > p:last-child {
  max-width: 44rem;
  margin: 1.3rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.production-stage {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 4rem;
  align-items: center;
  width: min(96vw, 1100px);
  min-height: 34rem;
  margin: 0 auto;
}

.production-stack {
  position: relative;
  height: 30rem;
}

.production-card {
  --stack-x: 0%;
  --stack-y: 0%;
  --stack-r: 0deg;
  --stack-s: 1;
  --stack-z: 10;
  --stack-o: 1;
  --stack-blur: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--stack-z);
  width: min(68vw, 42rem);
  min-height: 25rem;
  overflow: hidden;
  transform:
    translate(calc(-50% + var(--stack-x)), calc(-50% + var(--stack-y)))
    rotate(var(--stack-r))
    scale(var(--stack-s));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 45% 45% 0.65rem 0.65rem / 20% 20% 0.65rem 0.65rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 183, 255, 0.26), transparent 43%),
    linear-gradient(145deg, rgba(19, 31, 46, 0.98), rgba(5, 8, 13, 0.98));
  color: var(--white);
  padding: 2rem clamp(1.6rem, 4vw, 3.8rem);
  opacity: var(--stack-o);
  filter: blur(var(--stack-blur));
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.7s cubic-bezier(.16, 1, .3, 1),
    opacity 0.5s ease,
    filter 0.5s ease,
    border-color 0.4s ease;
}

.production-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  pointer-events: none;
}

.production-card:hover,
.production-card:focus-visible {
  border-color: rgba(116, 211, 255, 0.6);
  filter: blur(0);
}

.production-card.is-active {
  border-color: rgba(116, 211, 255, 0.5);
}

.production-card-number,
.production-card-status {
  position: absolute;
  z-index: 2;
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.production-card-number {
  top: 1.7rem;
  left: 2rem;
}

.production-card-status {
  right: 2rem;
  bottom: 1.7rem;
  color: rgba(244, 248, 255, 0.46);
}

.production-card-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 5.4rem;
  height: 5.4rem;
  margin: 2.6rem auto 2rem;
  border: 1px solid rgba(116, 211, 255, 0.7);
  border-radius: 50%;
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.15rem;
  font-weight: 800;
}

.production-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.production-card-copy strong {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.production-card-copy > span {
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(244, 248, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.production-arrow {
  position: relative;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.35rem;
  background: rgba(5, 9, 14, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.production-arrow:hover,
.production-arrow:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #00121e;
}

.production-progress {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: -1rem;
}

.production-progress span {
  width: 1.8rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease, background 0.4s ease;
}

.production-progress span.is-active {
  width: 4rem;
  background: var(--blue);
}

.production-note {
  margin: 1.8rem auto 0;
  color: rgba(244, 248, 255, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 2, 5, 0.9);
  backdrop-filter: blur(14px);
}

.portfolio-modal-panel {
  position: relative;
  width: min(92vw, 1100px);
  overflow: hidden;
  border: 1px solid rgba(116, 211, 255, 0.35);
  border-radius: 0.55rem;
  background: #000;
}

.portfolio-modal-panel video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.portfolio-modal-close {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
}

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

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 17rem;
  }

  .production-stage {
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
    width: 100%;
  }

  .production-card {
    width: min(72vw, 37rem);
  }
}

@media (max-width: 560px) {
  .brand-chip {
    min-width: 11rem;
    min-height: 4.7rem;
  }

  .production-system {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .production-stage {
    grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
    min-height: 31rem;
  }

  .production-stack {
    height: 28rem;
  }

  .production-card {
    width: 72vw;
    min-height: 23rem;
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .production-card-copy strong {
    font-size: 1.65rem;
  }

  .production-arrow {
    width: 2.6rem;
    height: 2.6rem;
  }

  .production-card-number {
    left: 1.25rem;
  }

  .production-card-status {
    right: 1.25rem;
  }
}

/* Update 4: live media, tool stack, About, Contact, Blog and footer */
.brand-group {
  gap: clamp(3rem, 7vw, 7rem);
  padding-right: clamp(3rem, 7vw, 7rem);
}

.brand-logo-mark {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: rgba(244, 248, 255, 0.82);
  font-size: clamp(1.2rem, 2.25vw, 2rem);
  font-weight: 720;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(.16, 1, .3, 1);
}

.brand-logo-mark:hover {
  color: var(--blue-hot);
  transform: translateY(-0.2rem) scale(1.03);
}

.brand-logo-mark.brand-lili {
  font-family: Georgia, serif;
}

.brand-logo-mark.brand-digifuel,
.brand-logo-mark.brand-ganmoma {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-logo-mark.brand-kling {
  letter-spacing: -0.04em;
}

.service-card {
  appearance: none;
  padding: 0;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-card > video,
.portfolio-card > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
  transition:
    transform 0.75s cubic-bezier(.16, 1, .3, 1),
    filter 0.45s ease;
}

.service-card:hover > video,
.service-card:focus-visible > video,
.portfolio-card:hover > video,
.portfolio-card:focus-visible > video {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06);
}

.service-card:focus-visible,
.portfolio-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.service-card-action {
  width: auto;
  min-width: 3.7rem;
  padding: 0 0.65rem;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.portfolio-card > video + .portfolio-card-shade {
  pointer-events: none;
}

.tool-stack {
  width: 100vw;
  margin: clamp(5rem, 9vw, 8rem) calc(50% - 50vw) 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #123a52;
}

.tool-stack-heading {
  width: min(90vw, 50rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  text-align: center;
}

.tool-stack-heading h3 {
  margin: 0.8rem 0 0;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.tool-stack-ticker {
  display: flex;
  align-items: center;
  min-height: clamp(6.25rem, 8vw, 7.5rem);
  overflow: hidden;
  background: var(--blue);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.tool-stack-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tool-stack-seamless 42s linear infinite;
  will-change: transform;
}

.tool-stack-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(3.5rem, 6vw, 7.5rem);
  padding-right: clamp(3.5rem, 6vw, 7.5rem);
}

.tool-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: max-content;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #03111a;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition:
    transform 0.35s cubic-bezier(.16, 1, .3, 1),
    opacity 0.3s ease;
}

.tool-logo img {
  display: block;
  width: auto;
  max-width: clamp(7.5rem, 12vw, 11rem);
  height: clamp(1.75rem, 3vw, 2.7rem);
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.tool-logo:hover {
  transform: translateY(-0.16rem) scale(1.04);
  color: #03111a;
  opacity: 0.72;
}

.about-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  width: 100%;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 8%, rgba(49, 183, 255, 0.13), transparent 30rem),
    #07090d;
}

.about-hero {
  width: min(90vw, 66rem);
  margin: 0 auto clamp(4rem, 7vw, 6.5rem);
  text-align: center;
}

.about-hero h2,
.blog-heading h2 {
  margin: 1.35rem 0 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-hero h2 span,
.blog-heading h2 span {
  color: var(--blue);
}

.about-hero > p:not(.kicker) {
  max-width: 54rem;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.25vw, 1.06rem);
  line-height: 1.75;
}

.about-hero .about-lead {
  color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 620;
  line-height: 1.55;
}

.about-hero .about-mission {
  color: var(--blue-hot);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(90vw, 1200px);
  margin: 0 auto clamp(7rem, 10vw, 10rem);
}

.about-story-grid article {
  min-height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.1), rgba(255, 255, 255, 0.025) 48%),
    rgba(7, 11, 17, 0.82);
  padding: clamp(1.5rem, 3vw, 3rem);
  backdrop-filter: blur(16px);
}

.about-story-grid article > span {
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.about-story-grid h3 {
  margin: clamp(4rem, 7vw, 7rem) 0 1.4rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-story-grid p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.about-team-heading {
  display: block;
  width: min(90vw, 62rem);
  margin-bottom: 4rem;
  text-align: center;
}

.about-team-heading h2 {
  margin: 1.2rem 0 1.1rem;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about-team-heading h2 span {
  display: inline;
}

.about-team-heading > p:last-child {
  max-width: 42rem;
  margin: 0 auto;
}

.about-section .team-cards {
  width: min(94vw, 1180px);
  min-height: 32rem;
}

.about-section .team-card {
  min-height: 32rem;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.3rem 2rem;
  margin: 3rem auto 0;
  text-align: center;
}

.about-cta p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  place-items: start;
  align-content: start;
  gap: clamp(3rem, 7vw, 8rem);
  min-height: 0;
  padding: clamp(7rem, 11vw, 11rem) 5vw;
  text-align: left;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 119, 255, 0.22), transparent 30rem),
    #05070a;
}

.contact-heading {
  position: sticky;
  top: 8rem;
  width: 100%;
}

.contact-heading h2 {
  margin: 1.4rem 0 1.5rem;
  max-width: 42rem;
  font-size: clamp(2.8rem, 4.8vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.contact-heading h2 span {
  color: var(--blue);
}

.contact-heading > p {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(7, 11, 17, 0.82);
  padding: clamp(1.4rem, 3vw, 2.7rem);
  backdrop-filter: blur(18px);
}

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

.contact-form label,
.contact-form legend {
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.35rem;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.85rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form select option {
  background: #080b11;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  background: rgba(49, 183, 255, 0.06);
}

.contact-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-form legend {
  margin-bottom: 0.9rem;
}

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

.service-options label {
  position: relative;
}

.service-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.service-options span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-options input:checked + span {
  border-color: var(--blue);
  background: rgba(49, 183, 255, 0.14);
  color: var(--blue-hot);
}

.service-options input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 3.5rem;
  border: 1px solid var(--blue);
  border-radius: var(--button-radius);
  background: var(--blue);
  color: #00121e;
  padding: 0 1.4rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-microcopy {
  margin: -0.5rem 0 0;
  color: rgba(244, 248, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.blog-section {
  max-width: none;
  width: 100%;
  background: #07090d;
}

.blog-heading {
  width: min(90vw, 62rem);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.blog-heading > p:last-child {
  max-width: 43rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(90vw, 1200px);
  margin: 0 auto;
}

.blog-grid article {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.1), transparent 56%),
    rgba(7, 11, 17, 0.82);
  padding: 1.6rem;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), border-color 0.3s ease;
}

.blog-grid article:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(116, 211, 255, 0.45);
}

.blog-grid article > span,
.blog-grid article > p {
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: auto 0 1rem;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.blog-grid article > p {
  margin: 0;
  color: rgba(244, 248, 255, 0.45);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(4rem, 7vw, 6rem) 5vw 2rem;
  text-align: center;
}

.site-footer .footer-brand {
  margin: 0 auto;
}

.site-footer > p {
  color: rgba(244, 248, 255, 0.45);
}

.footer-email {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-email:hover {
  color: var(--blue-hot);
}

.footer-strategy {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--blue);
  border-radius: var(--button-radius);
  background: var(--blue);
  color: #00121e;
  padding: 0.95rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer > .social-links {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #00121e;
}

.footer-legal {
  width: min(90vw, 52rem);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.footer-legal summary {
  color: rgba(244, 248, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legal p {
  margin: 1rem auto 0;
  color: rgba(244, 248, 255, 0.45);
  font-size: 0.72rem;
  line-height: 1.7;
}

.site-footer > .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
}

.footer-links a {
  color: rgba(244, 248, 255, 0.62);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--blue-hot);
}

.site-footer small {
  grid-column: auto;
  width: min(90vw, 52rem);
  margin-top: 0.8rem;
}

@keyframes tool-stack-seamless {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .about-story-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    position: static;
    text-align: center;
  }

  .contact-heading h2,
  .contact-heading > p {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-heading .button {
    margin: 0 auto;
  }

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

  .blog-grid article {
    min-height: 17rem;
  }
}

@media (max-width: 560px) {
  .brand-group {
    gap: 2.8rem;
    padding-right: 2.8rem;
  }

  .brand-logo-mark {
    font-size: 1.2rem;
  }

  .tool-stack {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .tool-logo {
    min-width: max-content;
    min-height: 0;
    font-size: 1.1rem;
  }

  .tool-stack-ticker {
    min-height: 5.5rem;
  }

  .tool-stack-group {
    gap: 3rem;
    padding-right: 3rem;
  }

  .about-story-grid {
    width: 100%;
  }

  .about-story-grid article {
    min-height: 0;
  }

  .about-story-grid h3 {
    margin-top: 4rem;
  }

  .about-section .team-cards {
    width: 100%;
  }

  .contact-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .form-grid,
  .service-options {
    grid-template-columns: 1fr;
  }
}

/* Final cascade layer for the latest refinement pass */
body .about-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(94vw, 1400px);
}

body .about-story-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 31rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
  animation: story-card-drift 9s ease-in-out infinite;
}

body .about-story-grid article:nth-child(2) {
  animation-delay: -3s;
}

body .about-story-grid article:nth-child(3) {
  animation-delay: -6s;
}

body .about-story-grid article:hover {
  transform: translateY(-0.55rem);
  border-color: rgba(49, 183, 255, 0.72);
}

body .about-story-grid h3 {
  margin-top: clamp(3.5rem, 5vw, 5rem);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

body .about-story-grid p {
  color: rgba(244, 248, 255, 0.82);
}

body .about-cta {
  justify-content: space-between;
  width: min(94vw, 1180px);
  overflow: hidden;
  border: 1px solid rgba(49, 183, 255, 0.45);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(49, 183, 255, 0.24), transparent 20rem),
    rgba(8, 16, 26, 0.86);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  text-align: left;
  backdrop-filter: blur(20px);
}

body .about-cta h3 {
  margin: 0.6rem 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

body .about-cta p {
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.86rem;
}

body .contact-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
}

body .contact-form {
  max-width: 45rem;
  justify-self: end;
  gap: 1rem;
  border-color: rgba(49, 183, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.08), transparent 45%),
    rgba(7, 11, 17, 0.88);
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
}

body .contact-form textarea {
  min-height: 7.5rem;
}

body .service-dropdown {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.035);
}

body .service-dropdown > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 0.85rem 0.95rem;
  color: rgba(244, 248, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 720;
  cursor: pointer;
}

body .contact-form .service-dropdown fieldset {
  padding: 0 0.95rem 0.95rem;
}

body .faq-list details {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

body .faq-list details:hover {
  transform: translateX(0.35rem);
  border-color: rgba(49, 183, 255, 0.5);
  background: rgba(49, 183, 255, 0.035);
}

body .faq-list details[open] {
  border-color: rgba(49, 183, 255, 0.72);
  background: linear-gradient(90deg, rgba(49, 183, 255, 0.1), transparent 70%);
}

body .faq-list details > p {
  color: rgba(244, 248, 255, 0.8);
  animation: faq-answer-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

body .site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

body .social-links a {
  border-radius: 0.45rem;
}

body .footer-email {
  color: rgba(244, 248, 255, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  text-transform: none;
}

body .footer-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.7rem;
  color: rgba(244, 248, 255, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  line-height: 1.6;
  text-transform: none;
}

body .footer-details address {
  margin: 0;
  color: var(--blue-hot);
  font: inherit;
  font-style: normal;
  text-transform: none;
}

body .footer-details-separator {
  color: rgba(244, 248, 255, 0.36);
}

body .site-footer > .footer-links {
  align-items: center;
}

body .footer-links .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .footer-links .menu li,
body .footer-links > a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  body .about-story-grid {
    grid-template-columns: 1fr;
    width: min(90vw, 760px);
  }

  body .about-story-grid article {
    min-height: 25rem;
  }

  body .contact-section {
    grid-template-columns: 1fr;
  }

  body .contact-form {
    max-width: 48rem;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  body .about-cta {
    justify-content: center;
    text-align: center;
  }

  body .about-cta .button-primary {
    width: 100%;
  }

  body .footer-details {
    flex-direction: column;
  }

  body .footer-details-separator {
    display: none;
  }
}

/* Final refinement: contrast, proof, team links, and closing-section order */
.site-shell {
  display: flex;
  flex-direction: column;
}

.blog-section {
  order: 1;
}

.faq-section {
  order: 2;
}

.contact-section {
  order: 3;
}

.site-footer {
  order: 4;
}

.nav-links {
  gap: clamp(0.75rem, 1.35vw, 1.35rem);
}

.kicker {
  color: var(--blue-hot) !important;
  font-weight: 820;
  opacity: 1;
}

.heading-copy,
.portfolio-heading > p,
.production-heading > p:last-child,
.production-note,
.about-team-heading > p:last-child,
.contact-heading > p,
.faq-list details > p,
.blog-heading > p,
.form-microcopy,
.footer-legal p,
.site-footer > p,
.footer-links a,
.testimonial-card footer span,
.team-card-copy > span {
  color: rgba(244, 248, 255, 0.83);
}

.hero-index,
.portfolio-hint,
.production-card-status,
.blog-grid article > p {
  color: rgba(244, 248, 255, 0.72);
}

.testimonials-section {
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

.testimonials-heading {
  width: min(90vw, 58rem);
}

.testimonial-rail {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonial-right 38s linear infinite;
  will-change: transform;
}

.testimonial-rail:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-set {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
  padding-right: 1rem;
}

.testimonial-card {
  width: clamp(19rem, 31vw, 28rem);
  min-height: 20rem;
}

.results-section {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.results-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.results-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.results-grid {
  gap: 0.8rem;
  width: min(92vw, 1040px);
}

.result-card {
  display: flex;
  min-height: 11.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
  text-align: center;
}

.result-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.65rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(196, 236, 255, 0.9));
  color: #0878b7;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.9),
    0 0 1.4rem rgba(49, 183, 255, 0.16);
}

.result-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-card strong {
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  letter-spacing: -0.045em;
}

.result-card p {
  max-width: 12rem;
  margin: 0 auto;
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: center;
}

.production-card-mark {
  width: 4.8rem;
  height: 4.8rem;
  border-color: rgba(116, 211, 255, 0.55);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(49, 183, 255, 0.17), rgba(255, 255, 255, 0.055)),
    rgba(7, 13, 22, 0.72);
  backdrop-filter: blur(14px);
}

.production-card-mark svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero > p:not(.kicker) {
  width: min(100%, 54rem);
  margin-right: auto;
  margin-left: auto;
  color: rgba(244, 248, 255, 0.84);
  text-align: left;
}

.about-hero .about-lead {
  color: var(--white);
}

.team-card-scan {
  display: none;
}

.team-card-copy > p {
  color: var(--blue-hot);
  font-size: 0.68rem;
  font-weight: 800;
}

.team-socials {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.team-socials a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(116, 211, 255, 0.4);
  border-radius: 0.4rem;
  background: rgba(7, 13, 22, 0.68);
  color: var(--blue-hot);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.team-socials a:hover,
.team-socials a:focus-visible {
  transform: translateY(-0.18rem);
  background: var(--blue);
  color: #00121e;
}

.team-socials svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.team-socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

body .about-cta {
  display: grid;
  place-items: center;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
  width: min(92vw, 54rem);
  margin-right: auto;
  margin-left: auto;
  margin-top: 2.5rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  opacity: 1;
  text-align: center;
  transform: none;
  backdrop-filter: none;
  animation: none;
}

body .about-cta::before {
  display: none;
}

body .about-cta h3 {
  justify-self: center;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  text-align: center;
}

body .about-cta .button-primary {
  justify-self: center;
  min-width: 14rem;
  margin-right: auto;
  margin-left: auto;
}

.production-card-copy > span,
.production-card-status,
.testimonial-card footer span,
.result-card p,
.team-card-copy > span,
.portfolio-hint,
.contact-heading > p:last-of-type,
.form-microcopy,
.faq-list details > p,
.blog-heading > p:last-child,
.blog-grid article > p,
.site-footer p,
.site-footer small,
.footer-legal p {
  color: rgba(244, 248, 255, 0.86);
}

.team-card-copy > p {
  font-size: 0.75rem;
}

.footer-location {
  margin: -0.65rem 0 0;
  color: var(--blue-hot) !important;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .testimonial-card {
    width: min(82vw, 25rem);
    min-height: 18rem;
  }

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

@media (max-width: 560px) {
  .results-grid {
    grid-template-columns: 1fr;
    width: min(88vw, 23rem);
  }

  .result-card {
    min-height: 10.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

/* WordPress integration */
body.admin-bar .nav-wrap {
  top: calc(1.25rem + 32px);
}

.site-main {
  min-height: 65vh;
}

.site-shell {
  min-height: 100vh;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  border-radius: var(--button-radius);
  background: var(--blue);
  color: #00121e;
  padding: 0.8rem 1.1rem;
}

.brand-logo-image {
  display: block;
  width: 10rem;
  height: auto;
}

.brand .custom-logo-link {
  display: inline-flex;
}

.brand .custom-logo {
  width: 10rem;
  max-height: 3rem;
  object-fit: contain;
}

.nav-links .menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--blue-hot);
}

.mobile-menu-panel .menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 55vh;
  overflow: hidden;
  padding: 10rem 6vw 5rem;
  background:
    radial-gradient(circle at 78% 25%, rgba(49, 183, 255, 0.2), transparent 30rem),
    linear-gradient(135deg, #050608, #07162a);
  text-align: center;
}

.inner-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(transparent, var(--ink));
  content: "";
  pointer-events: none;
}

.inner-hero-copy {
  position: relative;
  z-index: 1;
  width: min(92vw, 72rem);
}

.inner-hero h1 {
  margin: 1rem 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 880;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.inner-hero h1 span {
  color: var(--blue);
}

.inner-hero-copy > p:last-child {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  color: rgba(244, 248, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.content-shell {
  width: min(92vw, 78rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.entry-content {
  color: rgba(244, 248, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

.entry-content > * {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 72rem;
}

.entry-content > .alignfull {
  max-width: none;
}

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

.archive-card {
  position: relative;
  display: flex;
  min-height: 26rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(116, 211, 255, 0.22);
  border-radius: 0.8rem;
  background: rgba(7, 13, 22, 0.82);
  padding: 1.3rem;
}

.archive-card img,
.archive-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(1, 5, 10, 0.98));
  content: "";
}

.archive-card-copy {
  position: relative;
  z-index: 1;
}

.archive-card-copy h2,
.archive-card-copy h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
}

.archive-card-copy p {
  color: rgba(244, 248, 255, 0.84);
}

.archive-card-copy .kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.single-project-media {
  width: min(92vw, 78rem);
  margin: -2rem auto 5rem;
  overflow: hidden;
  border: 1px solid rgba(116, 211, 255, 0.3);
  border-radius: 1rem;
  background: #020304;
}

.single-project-media video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.post-meta {
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pagination,
.nav-links.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  color: var(--white);
}

.pagination .current,
.pagination a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #00121e;
}

.aified-notice {
  margin: 1rem 0;
  border: 1px solid rgba(116, 211, 255, 0.34);
  border-radius: 0.5rem;
  background: rgba(49, 183, 255, 0.08);
  color: var(--white);
  padding: 1rem;
}

.aified-notice.is-success {
  border-color: rgba(103, 255, 194, 0.45);
}

.aified-notice.is-error {
  border-color: rgba(255, 96, 96, 0.5);
}

.contact-form .aified-honeypot {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.portfolio-card button,
.service-card button {
  font: inherit;
}

.portfolio-card {
  text-align: left;
}

.portfolio-modal[hidden] {
  display: none;
}

.page-template-default .site-footer,
.single .site-footer,
.archive .site-footer,
.blog .site-footer,
.search .site-footer,
.error404 .site-footer {
  order: initial;
}

body:not(.aified-front-page) .site-shell {
  opacity: 1;
  animation: none;
}

html.modal-open,
html.modal-open body {
  overflow: hidden;
}

.service-card-trigger,
.portfolio-card-trigger {
  width: auto;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.16);
}

.services-cards .service-card-trigger {
  width: 100%;
}

.footer-links .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  flex-wrap: wrap;
}

.inner-hero .button {
  margin-top: 1.5rem;
}

.archive-description {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  color: rgba(244, 248, 255, 0.86);
  line-height: 1.7;
}

.archive-card-copy .text-link,
.entry-content .text-link {
  color: var(--blue-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  max-width: 46rem;
  margin: 0 auto 3rem;
}

.search-form label {
  display: block;
}

.search-form .search-field {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--button-radius);
  background: rgba(8, 14, 24, 0.76);
  color: var(--white);
  padding: 0 1rem;
}

.search-form .search-submit {
  border: 1px solid var(--blue);
  border-radius: var(--button-radius);
  background: var(--blue);
  color: #00121e;
  padding: 0 1.2rem;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  body.admin-bar .nav-wrap {
    top: calc(0.75rem + 46px);
  }

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

  .footer-links .menu {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 48vh;
    padding-top: 8rem;
  }
}
