:root {
  color-scheme: dark;
  --bg: #05070c;
  --surface: rgba(12, 16, 25, 0.72);
  --surface-strong: rgba(16, 21, 32, 0.9);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8fafc;
  --muted: #aab3c5;
  --soft: #717b91;
  --accent: #62e8ff;
  --accent-2: #9b7cff;
  --accent-3: #ff5fb7;
  --good: #8dffbf;
  --shadow: rgba(0, 0, 0, 0.34);
  --scroll-progress: 0;
  --scroll-velocity: 0;
  --cursor-scale: 1;
  --cinema-black: #020307;
  --glass-edge: rgba(255, 255, 255, 0.18);
  --gold: #ffdf9a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(98, 232, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 14%, rgba(155, 124, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 55% 80%, rgba(255, 95, 183, 0.1), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  transform: translateX(-100%);
  animation: scan 8s linear infinite;
  z-index: 1;
}

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

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

::selection {
  color: #020307;
  background: var(--accent);
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(98, 232, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 70% 62%, rgba(255, 95, 183, 0.1), transparent 28rem),
    #020307;
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.75s;
}

body.is-ready .preloader {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  pointer-events: none;
}

.preloader-orbit {
  position: absolute;
  width: clamp(210px, 30vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    conic-gradient(from 180deg, transparent, rgba(98, 232, 255, 0.82), transparent 36%, rgba(255, 95, 183, 0.7), transparent 72%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 62%);
  filter: drop-shadow(0 0 38px rgba(98, 232, 255, 0.24));
  animation: loaderSpin 2.8s linear infinite;
}

.preloader-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  text-align: center;
}

.preloader-copy span {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.preloader-copy strong {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader-progress {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 8vw, 80px);
  width: min(340px, calc(100vw - 48px));
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

.preloader-progress span,
.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3), var(--gold));
}

.preloader-progress span {
  width: 100%;
  transform-origin: left;
  animation: loaderBar 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  width: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  box-shadow: 0 0 22px rgba(98, 232, 255, 0.48);
}

.cinema-grain {
  position: fixed;
  inset: -20%;
  z-index: 75;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  animation: grainShift 0.8s steps(2) infinite;
}

.section-orbiter {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.58);
  color: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.section-orbiter span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #020307;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.section-orbiter strong {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#starfield,
.ambient,
.mesh,
.cursor-glow,
.cursor-ring {
  position: fixed;
  pointer-events: none;
}

#starfield {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.ambient {
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.32;
  z-index: -2;
  animation: float 12s ease-in-out infinite alternate;
}

.ambient-a {
  left: -12rem;
  top: 18rem;
  background: var(--accent);
}

.ambient-b {
  right: -12rem;
  top: 42rem;
  background: var(--accent-2);
  animation-delay: -4s;
}

.mesh {
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.cursor-glow {
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.25s ease;
}

.cursor-ring {
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  z-index: 90;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(248, 250, 252, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--cursor-scale));
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.22s ease,
    background 0.22s ease;
  mix-blend-mode: difference;
}

body.is-interacting .cursor-ring {
  border-color: rgba(98, 232, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px var(--shadow);
}

.brand,
.nav-cta,
.hero-actions a,
.contact-form button,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #05070c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 28px rgba(98, 232, 255, 0.32);
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button,
.menu-close,
.reel-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.menu-button {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 7vw, 86px);
  background:
    radial-gradient(circle at 80% 20%, rgba(98, 232, 255, 0.18), transparent 32rem),
    rgba(3, 4, 7, 0.94);
  color: #f8fafc;
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-panel.is-open {
  transform: translateY(0);
}

body.menu-active .site-header {
  transform: translateY(-120%);
}

.menu-panel a {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.menu-panel p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
}

.nav-cta {
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: 54px;
  padding-top: 48px;
}

.hero::after {
  content: "TENZEFO";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 8%, transparent);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: translate(-50%, -48%);
  opacity: 0.5;
}

.eyebrow,
.pill {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pill {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7.4vw, 7.15rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 em,
h2 em {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent) 52%, var(--text));
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.24rem, 1.7vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 700px;
  font-size: 1.08rem;
}

.hero-actions,
.trust-row,
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.primary-button,
.ghost-button,
.reel-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-button {
  color: #03050a;
  background: linear-gradient(135deg, var(--accent), var(--good));
  box-shadow: 0 0 44px rgba(98, 232, 255, 0.22);
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
}

.reel-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reel-button span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--accent);
}

.trust-row {
  margin-top: 24px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-cue span {
  position: relative;
  width: 26px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

.nexus-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  perspective: 1280px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
}

.nexus-grid {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(98, 232, 255, 0.18), transparent 58%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  transform: translateZ(-120px) rotateX(62deg) rotateZ(45deg);
  transform-style: preserve-3d;
  animation: gridDrift 8s ease-in-out infinite alternate;
  box-shadow: 0 0 100px rgba(98, 232, 255, 0.13);
}

.beam {
  position: absolute;
  width: 540px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-3), transparent);
  opacity: 0.62;
  transform-style: preserve-3d;
  animation: beamSweep 4s ease-in-out infinite;
}

.beam-a {
  transform: translateZ(-60px) rotateX(72deg) rotate(28deg);
}

.beam-b {
  transform: translateZ(-60px) rotateX(72deg) rotate(-38deg);
  animation-name: beamSweepB;
  animation-delay: -1.8s;
}

.nexus-core {
  position: relative;
  width: 235px;
  height: 235px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle, rgba(98, 232, 255, 0.25), transparent 62%),
    var(--surface-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 52px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(98, 232, 255, 0.18),
    inset 0 0 42px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transform: translateZ(38px) rotateX(9deg) rotateY(-5deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: coreFloat3d 4.8s ease-in-out infinite;
}

.nexus-core span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nexus-core strong {
  display: block;
  max-width: 165px;
  font-size: 2rem;
  line-height: 1;
}

.nexus-node {
  position: absolute;
  width: 164px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(98, 232, 255, 0.08);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.nexus-node span,
.ai-stack span,
.timeline span,
.work-grid span,
.service-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nexus-node strong {
  display: block;
  margin-top: 6px;
}

.node-one {
  left: 0;
  top: 92px;
  transform: translate3d(8px, 0, 72px) rotateY(14deg) rotateX(5deg);
  animation: nodeFloat3dOne 5.2s ease-in-out infinite;
}

.node-two {
  right: 10px;
  top: 126px;
  transform: translate3d(0, 0, 96px) rotateY(-16deg) rotateX(4deg);
  animation: nodeFloat3dTwo 5.4s ease-in-out infinite;
  animation-delay: -1.1s;
}

.node-three {
  bottom: 96px;
  left: 6%;
  transform: translate3d(0, 0, 58px) rotateY(10deg) rotateX(-5deg);
  animation: nodeFloat3dThree 5.6s ease-in-out infinite;
  animation-delay: -2.1s;
}

.node-four {
  right: 4%;
  bottom: 74px;
  transform: translate3d(-6px, 0, 88px) rotateY(-12deg) rotateX(-4deg);
  animation: nodeFloat3dFour 5.3s ease-in-out infinite;
  animation-delay: -3.2s;
}

.marquee-band {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  backdrop-filter: blur(16px);
}

.marquee-band div {
  display: flex;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-band span {
  padding: 24px 34px;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 3rem);
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee-band span::after {
  content: "/";
  margin-left: 34px;
  color: var(--accent);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.about-copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.contact-section {
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(36px, 5vw, 52px);
  background:
    radial-gradient(circle at 0% 0%, rgba(98, 232, 255, 0.14), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(155, 124, 255, 0.12), transparent 38%),
    var(--surface-strong);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 110px var(--shadow);
}

.contact-intro h2 {
  max-width: 16ch;
}

.contact-intro > p {
  max-width: 52ch;
  margin-bottom: 28px;
}

.statement-section {
  min-height: 72vh;
  display: grid;
  align-content: center;
  text-align: center;
}

.statement-section p {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 7vw, 7rem);
  font-style: italic;
  line-height: 0.9;
}

.statement-section h2 {
  max-width: 980px;
  margin-inline: auto;
}

.visual-sync {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 48px;
  align-items: center;
  padding-top: 28px;
}

.sync-copy {
  position: relative;
  z-index: 2;
}

.sync-copy h2 {
  max-width: 680px;
}

.sync-copy p:last-child {
  max-width: 560px;
}

.sync-wall {
  position: relative;
  min-height: clamp(440px, 46vw, 560px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 40px);
  overflow: visible;
}

.sync-wall::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(88%, 500px);
  height: 82%;
  border-radius: 32px;
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translate(-54%, -50%) rotate(-3deg);
}

.sync-wall::after {
  display: none;
}

.sync-figure {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  margin: 0;
  transform: rotate(6deg);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
}

.sync-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.sync-word {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.word-one {
  left: clamp(8px, 8%, 48px);
  top: 10%;
}

.word-two {
  right: clamp(0px, 4%, 24px);
  top: 44%;
}

.word-three {
  left: clamp(16px, 14%, 64px);
  bottom: 10%;
}

.delivery-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 20px;
  padding-top: 24px;
}

.delivery-shot {
  position: relative;
  min-height: clamp(360px, 45vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.delivery-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(3, 5, 10, 0.82)),
    radial-gradient(circle at 20% 18%, rgba(98, 232, 255, 0.18), transparent 34%);
}

.delivery-shot::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  pointer-events: none;
}

.delivery-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.08);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.delivery-shot:hover img {
  filter: saturate(1.18) contrast(1.12);
  transform: scale(1.14) rotate(1deg);
}

.delivery-shot figcaption {
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  right: clamp(24px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 40px);
  z-index: 3;
}

.delivery-shot span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-shot strong {
  display: block;
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.7rem, 3.3vw, 3.25rem);
  line-height: 0.98;
}

.shot-light {
  margin-top: 54px;
}

.shot-light::before {
  background:
    linear-gradient(180deg, transparent 24%, rgba(3, 5, 10, 0.72)),
    radial-gradient(circle at 76% 22%, rgba(255, 95, 183, 0.18), transparent 34%);
}

.image-zoom-section {
  --zoom-track: 52vh;
  height: calc(100vh + var(--zoom-track));
  width: 100%;
  margin-top: -30px;
  margin-bottom: 0;
}

.image-zoom-section + .section-pad {
  padding-top: 56px;
}

.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.growth-visual {
  position: relative;
  width: min(74vw, 1040px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(24px, 4vw, 48px);
  background: var(--surface-strong);
  box-shadow: 0 40px 140px var(--shadow);
}

.growth-visual:hover {
  box-shadow: 0 54px 170px var(--shadow);
}

.growth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(98, 232, 255, 0.18), transparent 28rem);
}

.growth-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(var(--inner-image-scale, 1.12));
  filter: saturate(1.14) contrast(1.05);
}

.growth-visual figcaption {
  position: absolute;
  left: clamp(20px, 4vw, 46px);
  right: clamp(20px, 4vw, 46px);
  bottom: clamp(20px, 4vw, 42px);
  z-index: 1;
  display: grid;
  gap: 8px;
}

.growth-visual figcaption span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.growth-visual figcaption strong {
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 4.8rem);
  line-height: 0.95;
}

.services-grid,
.why-grid,
.work-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.why-grid div,
.work-grid article,
.quote-card,
.timeline div {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card {
  isolation: isolate;
  min-height: 285px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.025) 44%, rgba(255, 255, 255, 0.075)),
    radial-gradient(circle at 18% 18%, rgba(98, 232, 255, 0.16), transparent 30%),
    rgba(10, 13, 20, 0.86);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform:
    translateY(46px)
    rotateX(14deg)
    rotateZ(var(--card-rotate, -4deg))
    scale(0.92);
  transform-origin: center bottom;
  transition:
    opacity 0.85s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--card-index, 0) * 80ms);
}

.service-card:nth-child(2n) {
  --card-rotate: 3deg;
}

.service-card:nth-child(3n) {
  --card-rotate: -2deg;
}

.service-card:nth-child(4n) {
  --card-rotate: 5deg;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at 82% 18%, rgba(255, 95, 183, 0.11), transparent 28%);
  opacity: 0.82;
}

.service-card h3 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 0.98;
}

.service-card p {
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.62;
}

.services-grid.cards-ready .service-card {
  opacity: 1;
  transform: translateY(0) rotateX(0) rotateZ(0) scale(1);
}

.service-card:hover,
.why-grid div:hover,
.work-grid article:hover,
.quote-card:hover,
.timeline div:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 52%, transparent);
}

.services-grid.cards-ready .service-card:hover {
  transform: translateY(-18px) rotateZ(var(--card-hover-rotate, -1.5deg)) scale(1.025);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(98, 232, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.services-grid.cards-ready .service-card:nth-child(2n):hover {
  --card-hover-rotate: 1.5deg;
}

.service-card::after,
.work-grid article::after,
.quote-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -46% 18%;
  height: 70%;
  background: radial-gradient(circle, rgba(155, 124, 255, 0.24), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover::after,
.work-grid article:hover::after,
.quote-card:hover::after {
  opacity: 1;
  transform: translateY(-16px);
}

.service-card span {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card span::before {
  content: "";
  position: absolute;
  right: -210%;
  top: 50%;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
}

.service-card.wide {
  grid-column: span 3;
  min-height: 250px;
}

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

.why-grid div {
  min-height: 210px;
}

.why-grid strong,
.timeline strong,
.quote-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.ai-awards-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0 90px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 72% 32%, rgba(98, 232, 255, 0.08), transparent 30rem),
    #000;
}

.ai-awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--ai-hover-x, 50%) var(--ai-hover-y, 50%),
      rgba(98, 232, 255, 0.3),
      rgba(155, 124, 255, 0.13) 18%,
      transparent 38%
    );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.28s ease;
}

.ai-awards-section.is-hovered::before {
  opacity: 1;
}

.ai-awards-bg {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: clamp(34px, 6vw, 82px);
  z-index: 0;
  opacity: 0.7;
}

.ai-awards-bg span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  font-size: clamp(6rem, 18vw, 21rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.06em;
  white-space: nowrap;
  animation: ghostDrift 18s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 0 rgba(98, 232, 255, 0));
  transition:
    filter 0.32s ease,
    opacity 0.32s ease,
    -webkit-text-stroke-color 0.32s ease;
}

.ai-awards-section.is-hovered .ai-awards-bg span {
  opacity: 0.96;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  filter:
    drop-shadow(0 0 16px rgba(98, 232, 255, 0.32))
    drop-shadow(0 0 42px rgba(155, 124, 255, 0.18));
}

.ai-awards-bg span:nth-child(2) {
  transform: translateX(7vw);
  animation-delay: -5s;
  -webkit-text-stroke-color: rgba(98, 232, 255, 0.08);
}

.ai-awards-bg span:nth-child(3) {
  transform: translateX(-5vw);
  animation-delay: -9s;
  -webkit-text-stroke-color: rgba(255, 95, 183, 0.08);
}

.ai-awards-section.is-hovered .ai-awards-bg span:nth-child(2) {
  -webkit-text-stroke-color: rgba(98, 232, 255, 0.32);
}

.ai-awards-section.is-hovered .ai-awards-bg span:nth-child(3) {
  -webkit-text-stroke-color: rgba(255, 95, 183, 0.28);
}

.ai-awards-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 70vh;
  margin: 0 auto;
  display: grid;
  align-content: end;
}

.ai-awards-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.ai-awards-title h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.ai-total {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 18px;
  color: #f8fafc;
}

.ai-total strong {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

.ai-bloom {
  width: 46px;
  height: 46px;
  background: conic-gradient(from 0deg, #fff 0 8%, transparent 8% 14%, #fff 14% 22%, transparent 22% 28%, #fff 28% 36%, transparent 36% 42%, #fff 42% 50%, transparent 50% 56%, #fff 56% 64%, transparent 64% 70%, #fff 70% 78%, transparent 78% 84%, #fff 84% 92%, transparent 92% 100%);
  border-radius: 50%;
  animation: bloomSpin 5s linear infinite;
}

.ai-awards-table {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-awards-table article {
  display: grid;
  grid-template-columns: 1fr 120px minmax(280px, 1.15fr);
  gap: 42px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  transition: background 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.ai-awards-table article:last-child {
  border-bottom: 0;
}

.ai-awards-table article:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(12px);
}

.ai-awards-table span {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.ai-awards-table strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 500;
}

.ai-awards-table p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  line-height: 1.2;
}

.process {
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  text-align: left;
}

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

.work-grid article,
.quote-card {
  min-height: 260px;
}

.work-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 72%, transparent)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(98, 232, 255, 0.22), transparent 34%),
    var(--surface);
}

.work-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 72%, transparent)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(255, 95, 183, 0.2), transparent 34%),
    var(--surface);
}

.work-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 72%, transparent)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(141, 255, 191, 0.18), transparent 34%),
    var(--surface);
}

.final-cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 64px 28px;
  margin-bottom: clamp(40px, 6vw, 88px);
  background:
    radial-gradient(circle at top, rgba(98, 232, 255, 0.2), transparent 52%),
    var(--surface-strong);
  backdrop-filter: blur(18px);
}

.final-cta .primary-button {
  margin-top: 18px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    color-mix(in srgb, var(--bg) 36%, transparent);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 48%, transparent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.contact-card-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--text);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
}

.contact-card-hint {
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-quick-link {
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--good) 42%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--good) 10%, transparent);
  color: color-mix(in srgb, var(--good) 72%, var(--text));
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contact-quick-link:hover {
  transform: translateY(-2px);
  border-color: var(--good);
  background: color-mix(in srgb, var(--good) 18%, transparent);
  color: var(--text);
}

.contact-form-panel {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent),
    color-mix(in srgb, var(--bg) 48%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: start;
}

.contact-form-head {
  margin-bottom: 4px;
}

.contact-form-eyebrow {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-form-head p:last-child {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: color-mix(in srgb, var(--bg) 40%, transparent);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.contact-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: #03050a;
  background: linear-gradient(135deg, var(--accent), var(--good));
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(98, 232, 255, 0.28);
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.85s ease;
}

.reveal-fade.in-view {
  opacity: 1;
}

main {
  position: relative;
  z-index: 2;
}

.site-header {
  top: 14px;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

body.has-scrolled .site-header {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(5, 7, 12, 0.68);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(98, 232, 255, 0.06) inset;
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.8), transparent 65%);
  transform: translateX(-120%) rotate(18deg);
  animation: brandGlint 5s ease-in-out infinite;
}

nav a,
.contact-quick-link {
  position: relative;
}

nav a::after,
.contact-quick-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover::after,
.contact-quick-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-button,
.ghost-button,
.reel-button,
.nav-cta,
.contact-form button,
.menu-button,
.menu-close {
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.primary-button::before,
.ghost-button::before,
.reel-button::before,
.nav-cta::before,
.contact-form button::before,
.menu-button::before,
.menu-close::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 58%);
  transform: translateX(-115%) rotate(14deg);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-button:hover::before,
.ghost-button:hover::before,
.reel-button:hover::before,
.nav-cta:hover::before,
.contact-form button:hover::before,
.menu-button:hover::before,
.menu-close:hover::before {
  transform: translateX(115%) rotate(14deg);
}

.hero {
  min-height: calc(100svh - 82px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4% -8% 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 24% 32%, rgba(98, 232, 255, 0.2), transparent 34%),
    radial-gradient(ellipse at 78% 44%, rgba(255, 95, 183, 0.14), transparent 34%),
    linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.04), transparent 58%);
  filter: blur(4px);
}

.hero h1 {
  text-wrap: balance;
  filter: drop-shadow(0 24px 80px rgba(98, 232, 255, 0.1));
}

.hero h1 em {
  text-shadow: 0 0 34px rgba(98, 232, 255, 0.34);
}

.nexus-stage {
  filter: drop-shadow(0 40px 120px rgba(98, 232, 255, 0.14));
}

.nexus-stage::before,
.nexus-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.nexus-stage::before {
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: conic-gradient(from 180deg, transparent, rgba(98, 232, 255, 0.18), transparent 38%, rgba(255, 95, 183, 0.16), transparent 72%);
  animation: orbitSpin 18s linear infinite;
  transform: translateZ(-160px);
}

.nexus-stage::after {
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(98, 232, 255, 0.24), transparent 66%);
  filter: blur(30px);
  animation: breathe 4.8s ease-in-out infinite;
}

.marquee-band {
  position: relative;
  transform: rotate(-1deg) scale(1.02);
}

.about-section,
.visual-sync,
.delivery-gallery,
#services,
.why-section,
.process,
#work,
.testimonials,
.contact-section {
  position: relative;
}

.about-section::before,
.visual-sync::before,
.delivery-gallery::before,
#services::before,
.why-section::before,
.process::before,
#work::before,
.testimonials::before,
.contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: min(980px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 232, 255, 0.34), rgba(255, 95, 183, 0.18), transparent);
  transform: translateX(-50%);
}

.about-copy,
.service-card,
.why-grid div,
.work-grid article,
.quote-card,
.timeline div,
.contact-form-panel,
.contact-card {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
}

.about-copy {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 92% 10%, rgba(255, 223, 154, 0.1), transparent 34%),
    rgba(9, 12, 19, 0.72);
}

.statement-section {
  position: relative;
  overflow: hidden;
}

.statement-section::before {
  content: "TENZEFO";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 900;
  transform: translate(-50%, -50%) skewY(-4deg);
  animation: ghostDrift 12s ease-in-out infinite alternate;
}

.sync-word {
  z-index: 2;
  animation: none;
}

.delivery-gallery {
  gap: 20px;
}

.delivery-shot:nth-child(1) {
  transform: rotateZ(-1.5deg);
}

.delivery-shot:nth-child(2) {
  transform: rotateZ(1.5deg);
}

.service-card {
  min-height: 310px;
}

.why-grid div:nth-child(odd) {
  transform: translateY(28px);
}

.ai-awards-section {
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 80px 180px rgba(0, 0, 0, 0.4);
}

.timeline div {
  min-height: 270px;
}

.timeline div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 0%, rgba(98, 232, 255, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline div:hover::before {
  opacity: 1;
}

.work-grid article {
  min-height: 440px;
}

.work-grid article h3,
.work-grid article p,
.work-grid article span {
  position: relative;
  z-index: 2;
}

.work-grid article::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-grid article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.quote-card {
  min-height: 310px;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    conic-gradient(from 120deg, transparent, rgba(98, 232, 255, 0.18), transparent 28%, rgba(255, 95, 183, 0.12), transparent 58%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 42%);
  animation: orbitSpin 16s linear infinite;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.contact-section {
  overflow: hidden;
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 232, 255, 0.16), transparent 64%);
  filter: blur(16px);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}


@keyframes scan {
  to {
    transform: translateX(100%);
  }
}

@keyframes float {
  to {
    transform: translate3d(8rem, -3rem, 0) scale(1.1);
  }
}

@keyframes gridDrift {
  from {
    transform: translateZ(-120px) rotateX(62deg) rotateZ(42deg) translateY(16px);
  }
  to {
    transform: translateZ(-120px) rotateX(62deg) rotateZ(49deg) translateY(-12px);
  }
}

@keyframes beamSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateZ(-60px) rotateX(72deg) rotate(28deg) scaleX(0.78);
  }
  50% {
    opacity: 0.78;
    transform: translateZ(-60px) rotateX(72deg) rotate(28deg) scaleX(1);
  }
}

@keyframes beamSweepB {
  0%,
  100% {
    opacity: 0.18;
    transform: translateZ(-60px) rotateX(72deg) rotate(-38deg) scaleX(0.78);
  }
  50% {
    opacity: 0.78;
    transform: translateZ(-60px) rotateX(72deg) rotate(-38deg) scaleX(1);
  }
}

@keyframes coreFloat3d {
  0%,
  100% {
    transform: translateZ(38px) rotateX(9deg) rotateY(-5deg) translateY(0);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 24px 52px rgba(0, 0, 0, 0.52),
      0 0 90px rgba(98, 232, 255, 0.18),
      inset 0 0 42px rgba(255, 255, 255, 0.04);
  }
  50% {
    transform: translateZ(64px) rotateX(15deg) rotateY(-11deg) translateY(-10px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.14) inset,
      0 36px 72px rgba(0, 0, 0, 0.58),
      0 0 130px rgba(98, 232, 255, 0.28),
      inset 0 0 44px rgba(255, 255, 255, 0.06);
  }
}

@keyframes nodeFloat3dOne {
  0%,
  100% {
    transform: translate3d(8px, 0, 72px) rotateY(14deg) rotateX(5deg);
  }
  50% {
    transform: translate3d(8px, -16px, 88px) rotateY(18deg) rotateX(7deg);
  }
}

@keyframes nodeFloat3dTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 96px) rotateY(-16deg) rotateX(4deg);
  }
  50% {
    transform: translate3d(0, -18px, 112px) rotateY(-20deg) rotateX(6deg);
  }
}

@keyframes nodeFloat3dThree {
  0%,
  100% {
    transform: translate3d(0, 0, 58px) rotateY(10deg) rotateX(-5deg);
  }
  50% {
    transform: translate3d(0, -14px, 78px) rotateY(14deg) rotateX(-7deg);
  }
}

@keyframes nodeFloat3dFour {
  0%,
  100% {
    transform: translate3d(-6px, 0, 88px) rotateY(-12deg) rotateX(-4deg);
  }
  50% {
    transform: translate3d(-6px, -17px, 104px) rotateY(-16deg) rotateX(-6deg);
  }
}

@keyframes ghostDrift {
  from {
    translate: -2vw 0;
  }
  to {
    translate: 2vw 0;
  }
}

@keyframes bloomSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

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

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes grainShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, 1%, 0);
  }
  100% {
    transform: translate3d(1%, -2%, 0);
  }
}

@keyframes brandGlint {
  0%,
  72% {
    transform: translateX(-120%) rotate(18deg);
  }
  100% {
    transform: translateX(120%) rotate(18deg);
  }
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.45;
    scale: 0.92;
  }
  50% {
    opacity: 0.9;
    scale: 1.08;
  }
}

@keyframes syncGrid {
  from {
    transform: rotateX(63deg) rotateZ(-21deg) translateY(48px);
  }
  to {
    transform: rotateX(63deg) rotateZ(-14deg) translateY(24px);
  }
}

@keyframes syncImageA {
  0%,
  100% {
    transform: translateY(0) rotate(9deg);
  }
  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

@keyframes syncImageB {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(20px) rotate(-11deg);
  }
}

@keyframes syncImageC {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@keyframes labelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

}

@media (max-width: 1060px) {
  .hero,
  .about-section,
  .contact-section,
  .visual-sync,
  .delivery-gallery {
    grid-template-columns: 1fr;
  }

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

  .service-card.wide {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.8rem;
  }

  .section-pad {
    padding: 68px 0;
  }

  .image-zoom-section {
    --zoom-track: 40vh;
    height: calc(100vh + var(--zoom-track));
    margin-bottom: 0;
  }

  .image-zoom-section + .section-pad {
    padding-top: 40px;
  }

  .hero {
    padding-top: 42px;
  }

  .services-grid,
  .work-grid,
  .testimonial-grid,
  .why-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .nexus-stage {
    min-height: 410px;
    transform: scale(0.8);
    transform-origin: center top;
  }

  .visual-sync {
    gap: 12px;
  }

  .sync-wall {
    min-height: clamp(400px, 70vw, 520px);
  }

  .sync-figure {
    width: min(88vw, 360px);
  }

  .shot-light {
    margin-top: 0;
  }

  .growth-visual {
    width: min(92vw, 1040px);
  }

  .hero::after {
    top: 34%;
  }

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

  .about-copy,
  .service-card,
  .why-grid div,
  .work-grid article,
  .quote-card,
  .timeline div {
    padding: 24px;
    border-radius: 20px;
  }

  .contact-section {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .contact-form-panel {
    padding: 22px 18px;
  }

  .ai-awards-title,
  .ai-awards-table article {
    grid-template-columns: 1fr;
  }

  .ai-awards-table article {
    gap: 8px;
    padding: 22px 0;
  }

  footer {
    flex-direction: column;
  }
}

.site-header,
.hero,
.nexus-stage,
.sync-image,
.delivery-shot,
.growth-visual,
.service-card,
.work-grid article,
.quote-card,
.timeline div,
.contact-card {
  backface-visibility: hidden;
}

.service-card,
.why-grid div,
.work-grid article,
.quote-card,
.timeline div,
.contact-card,
.contact-form-panel {
  transition:
    transform 0.24s cubic-bezier(0.2, 0, 0, 1),
    box-shadow 0.24s cubic-bezier(0.2, 0, 0, 1),
    background 0.24s cubic-bezier(0.2, 0, 0, 1),
    border-color 0.24s cubic-bezier(0.2, 0, 0, 1);
}

.reveal,
.reveal-fade {
  transition: opacity 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.growth-visual figcaption {
  transform: translateZ(0);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .about-copy,
  .service-card,
  .why-grid div,
  .work-grid article,
  .quote-card,
  .timeline div,
  .contact-form-panel,
  .contact-card,
  .delivery-shot,
  .growth-visual {
    transform: none !important;
  }
}

@media (max-width: 440px) {
  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 0 13px;
  }

  nav a {
    font-size: 0.76rem;
  }

  .sync-wall {
    min-height: 420px;
    padding: 16px;
  }

  .sync-figure {
    width: min(92vw, 320px);
    transform: rotate(4deg);
  }

  .sync-word {
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .word-one {
    left: 4%;
    top: 8%;
  }

  .word-two {
    right: 2%;
  }

  .word-three {
    left: 8%;
    bottom: 8%;
  }

  .delivery-shot {
    min-height: 360px;
    border-radius: 22px;
  }
}

/* Apple-inspired refinement layer */
:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(0, 0, 0, 0.09);
  --text: #1d1d1f;
  --muted: #515154;
  --soft: #86868b;
  --accent: #0071e3;
  --accent-2: #2997ff;
  --accent-3: #a855f7;
  --good: #34c759;
  --shadow: rgba(0, 0, 0, 0.12);
}

body {
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Manrope, system-ui, sans-serif;
}

body::before,
#starfield,
.ambient,
.mesh,
.cursor-glow,
.cursor-ring,
.cinema-grain,
.section-orbiter,
.preloader {
  display: none;
}

body.is-loading {
  overflow: auto;
}

.preloader {
  background: #f5f5f7;
}

.preloader-orbit {
  display: none;
}

.preloader-copy span {
  color: #1d1d1f;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  text-transform: none;
}

.preloader-copy strong {
  color: #86868b;
  letter-spacing: 0;
  text-transform: none;
}

.preloader-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.preloader-progress span,
.scroll-progress span {
  background: #0071e3;
  box-shadow: none;
}

.scroll-progress {
  height: 3px;
  background: transparent;
}

.site-header {
  width: min(1080px, calc(100% - 28px));
  min-height: 46px;
  margin-top: 12px;
  padding: 6px 10px 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(251, 251, 253, 0.76);
  color: #1d1d1f;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(22px);
}

body.has-scrolled .site-header {
  background: rgba(251, 251, 253, 0.86);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  color: #fff;
  background: #1d1d1f;
  box-shadow: none;
}

nav {
  color: #424245;
  font-size: 0.82rem;
  font-weight: 500;
}

.menu-button,
.menu-close,
.reel-button,
.ghost-button {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: #1d1d1f;
}

.nav-cta,
.primary-button,
.contact-form button,
.final-cta a {
  color: #fff;
  background: #0071e3;
  box-shadow: none;
}

.primary-button:hover,
.nav-cta:hover,
.contact-form button:hover,
.final-cta a:hover {
  background: #0077ed;
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.22);
}

.section-pad {
  width: min(1120px, calc(100% - 36px));
  padding: 96px 0;
}

.hero {
  width: min(1440px, calc(100% - 28px));
  min-height: calc(100svh - 84px);
  margin-top: 22px;
  padding: clamp(48px, 7vw, 92px);
  border-radius: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 74% 38%, rgba(41, 151, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 38% 72%, rgba(255, 255, 255, 0.1), transparent 22rem),
    #000;
  color: #f5f5f7;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.hero::before {
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
  filter: none;
}

.hero::after {
  color: rgba(255, 255, 255, 0.035);
  -webkit-text-stroke: 0;
  letter-spacing: -0.08em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 8.4vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  filter: none;
}

.hero h1 em {
  color: #f5f5f7;
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  text-shadow: none;
}

.hero-lede,
.hero p {
  color: rgba(245, 245, 247, 0.72);
}

.eyebrow,
.pill {
  color: #0071e3;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero .eyebrow {
  color: #2997ff;
}

.pill {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
}

h2 {
  color: #1d1d1f;
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h3 {
  color: #1d1d1f;
  letter-spacing: -0.035em;
}

p {
  color: #515154;
}

.nexus-stage {
  min-height: 560px;
  filter: none;
}

.nexus-grid {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(41, 151, 255, 0.18), transparent 58%);
  box-shadow: none;
}

.nexus-core,
.nexus-node {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.nexus-core strong,
.nexus-node strong {
  color: #f5f5f7;
}

.nexus-core span,
.nexus-node span,
.ai-stack span,
.timeline span,
.work-grid span,
.service-card span {
  color: #2997ff;
}

.marquee-band {
  transform: none;
  border: 0;
  background: #fff;
  color: #1d1d1f;
  backdrop-filter: none;
}

.marquee-band span {
  color: #1d1d1f;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  letter-spacing: -0.06em;
  text-transform: none;
}

.marquee-band span::after {
  color: #d2d2d7;
}

.about-section,
.visual-sync,
#services,
.why-section,
.process,
#work,
.testimonials {
  background: transparent;
}

.about-copy,
.service-card,
.why-grid div,
.work-grid article,
.quote-card,
.timeline div,
.contact-card,
.contact-form-panel {
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: #1d1d1f;
  box-shadow: none;
  backdrop-filter: none;
}

.about-section::before,
.visual-sync::before,
.delivery-gallery::before,
#services::before,
.why-section::before,
.process::before,
#work::before,
.testimonials::before,
.contact-section::before {
  background: transparent;
}

.statement-section {
  width: min(1440px, calc(100% - 28px));
  min-height: 72svh;
  border-radius: clamp(28px, 4vw, 54px);
  background: #fff;
}

.statement-section p {
  color: #6e6e73;
  font-family: inherit;
  font-style: normal;
  letter-spacing: -0.06em;
}

.visual-sync {
  width: min(1440px, calc(100% - 28px));
  padding: clamp(64px, 8vw, 110px);
  border-radius: clamp(28px, 4vw, 54px);
  background: #fff;
}

.sync-copy p:last-child {
  font-size: 1.15rem;
}

.sync-wall::before {
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: translate(-54%, -50%) rotate(-3deg);
  animation: none;
}

.sync-figure {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.12);
}

.sync-image {
  filter: none;
}

.sync-word {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  animation: none;
}

.delivery-gallery {
  width: min(1440px, calc(100% - 28px));
  gap: 16px;
}

.delivery-shot {
  border: 0;
  border-radius: clamp(28px, 4vw, 46px);
  box-shadow: none;
}

.delivery-shot::before {
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.62));
}

.delivery-shot::after {
  display: none;
}

.delivery-shot strong,
.delivery-shot span {
  color: #fff;
}

.image-zoom-section {
  background: #000;
}

.growth-visual {
  border: 0;
  border-radius: clamp(26px, 4vw, 50px);
  box-shadow: none;
}

.services-grid {
  gap: 16px;
}

.service-card {
  min-height: 330px;
  padding: 30px;
}

.service-card::before,
.service-card::after {
  display: none;
}

.service-card h3 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  color: #1d1d1f;
}

.service-card p {
  color: #6e6e73;
}

.service-card span {
  border: 0;
  background: #f5f5f7;
  color: #0071e3;
}

.service-card span::before {
  display: none;
}

.why-grid div {
  min-height: 260px;
}

.ai-awards-section {
  background: #000;
}

.ai-awards-bg span {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
}

.timeline div,
.work-grid article,
.quote-card {
  background: #fff;
}

.work-grid article {
  min-height: 420px;
}

.work-grid article h3,
.quote-card strong,
.timeline strong,
.why-grid strong {
  color: #1d1d1f;
}

.work-grid article p,
.quote-card p,
.timeline p,
.why-grid p {
  color: #6e6e73;
}

.final-cta {
  width: min(1440px, calc(100% - 28px));
  border: 0;
  border-radius: clamp(28px, 4vw, 54px);
  background: #000;
  box-shadow: none;
}

.final-cta h2 {
  color: #f5f5f7;
}

.contact-section {
  width: min(1120px, calc(100% - 36px));
  border: 0;
  border-radius: 34px;
  background: #fff;
  box-shadow: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0;
  background: #f5f5f7;
  color: #1d1d1f;
}

footer {
  color: #6e6e73;
  border-top-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(251, 251, 253, 0.92);
  }

  .hero,
  .visual-sync,
  .delivery-gallery,
  .statement-section,
  .final-cta {
    width: min(100% - 20px, 1440px);
    border-radius: 28px;
  }

  .hero {
    padding: 46px 22px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
}

/* Final Apple-style polish: smooth, calm, product-focused */
html {
  scroll-padding-top: 84px;
}

.primary-button,
.ghost-button,
.reel-button,
.nav-cta,
.contact-form button,
.contact-card,
.contact-quick-link,
.service-card,
.work-grid article,
.quote-card,
.timeline div,
.delivery-shot,
.growth-visual {
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.about-copy,
.service-card,
.why-grid div,
.work-grid article,
.quote-card,
.timeline div,
.contact-form-panel,
.contact-card,
.delivery-shot,
.growth-visual {
  will-change: auto;
}

.image-zoom-section {
  height: auto;
  min-height: unset;
  margin: 0;
  padding: clamp(72px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 151, 255, 0.22), transparent 34rem),
    #000;
}

.zoom-sticky {
  position: relative;
  top: auto;
  height: auto;
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
  overflow: visible;
}

.growth-visual {
  width: 100%;
  max-width: 1240px;
  min-height: clamp(560px, 70vw, 820px);
  margin: 0 auto;
  border-radius: clamp(30px, 4vw, 58px);
  background: #050505;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: none !important;
}

.growth-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  z-index: 2;
  width: min(440px, 42%);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.growth-visual::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 28%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 24%, rgba(41, 151, 255, 0.32), transparent 36rem);
}

.growth-visual img {
  transform: scale(1.04) !important;
  filter: saturate(1.12) contrast(1.05) brightness(0.92);
}

.growth-visual figcaption {
  left: clamp(26px, 6vw, 86px);
  right: clamp(26px, 6vw, 86px);
  bottom: clamp(28px, 6vw, 82px);
  max-width: 860px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(160%);
}

.growth-visual figcaption span {
  color: #2997ff;
  letter-spacing: 0;
  text-transform: none;
}

.growth-visual figcaption strong {
  max-width: 780px;
  color: #f5f5f7;
  font-size: clamp(2.4rem, 6vw, 5.9rem);
  letter-spacing: -0.07em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  width: min(1240px, calc(100% - 36px));
  padding: clamp(28px, 4vw, 52px);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, #fff, #fbfbfd),
    #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.contact-section::after {
  width: min(520px, 70vw);
  opacity: 0.45;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.18), transparent 68%);
}

.contact-intro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-intro h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.contact-intro > p:not(.pill) {
  max-width: 520px;
  font-size: 1.08rem;
}

.contact-info {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 28px;
}

.contact-card {
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 8px 18px;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #f5f5f7;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.contact-card-label {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  min-width: 64px;
  min-height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #0071e3;
  letter-spacing: 0;
  text-transform: none;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.contact-card-hint {
  margin-top: -2px;
}

.contact-quick {
  gap: 8px;
}

.contact-quick-link {
  border: 0;
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
}

.contact-form-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background: #f5f5f7;
}

.contact-form-head {
  padding-bottom: 4px;
}

.contact-form-eyebrow {
  color: #1d1d1f;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.contact-form label {
  gap: 9px;
  color: #6e6e73;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 56px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form button {
  min-height: 56px;
  margin-top: 2px;
}

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

  .contact-info {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .image-zoom-section {
    padding: 56px 0;
  }

  .growth-visual {
    min-height: 560px;
    border-radius: 28px;
  }

  .growth-visual figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 22px;
  }

  .contact-section {
    width: min(100% - 20px, 1240px);
    padding: 20px;
  }

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

  .contact-card-label {
    grid-row: auto;
    place-self: start;
  }
}
