:root {
  --black: #080808;
  --graphite: #10100f;
  --graphite-soft: #171615;
  --warm-line: rgba(255, 255, 255, 0.12);
  --warm-line-soft: rgba(255, 255, 255, 0.075);
  --text: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.66);
  --quiet: rgba(247, 244, 239, 0.42);
  --accent: #8bd7d8;
  --max: 1000px;
  --ambient-y: 0px;
  --ambient-deep-y: 0px;
  --ambient-shift: 0px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background-color: #050505;
  background-image:
    radial-gradient(circle at calc(16% + var(--ambient-shift)) calc(12% + var(--ambient-y)), rgba(139, 215, 216, 0.045), transparent 45rem),
    radial-gradient(circle at calc(84% - var(--ambient-shift)) calc(48% + var(--ambient-deep-y)), rgba(247, 244, 239, 0.025), transparent 48rem),
    radial-gradient(circle at 44% calc(86% + var(--ambient-y)), rgba(50, 76, 78, 0.16), transparent 40rem),
    linear-gradient(180deg, #050505 0%, #080808 30%, #0a0a09 60%, #050505 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.018;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(5, 5, 5, 0.72) 98%),
    radial-gradient(circle at 100% 0%, rgba(226, 135, 67, 0.045) 0%, transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(139, 215, 216, 0.035) 0%, rgba(27, 54, 93, 0.045) 45%, transparent 75%),
    radial-gradient(circle at 75% 100%, rgba(184, 115, 51, 0.02) 0%, transparent 40%);
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-field span {
  position: absolute;
  width: 28vw;
  height: 28vw;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(139, 215, 216, 0.11), rgba(139, 215, 216, 0.02) 42%, transparent 68%);
  filter: blur(38px);
  opacity: 0.22;
  transform: translate3d(0, var(--ambient-y), 0);
  animation: floatLight 36s ease-in-out infinite alternate;
}

.ambient-field span:nth-child(1) {
  top: 8%;
  left: -12%;
}

.ambient-field span:nth-child(2) {
  top: 46%;
  right: -14%;
  animation-duration: 44s;
  opacity: 0.16;
}

.ambient-field span:nth-child(3) {
  bottom: -12%;
  left: 34%;
  animation-duration: 52s;
  opacity: 0.12;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 8, 0);
  color: rgba(247, 244, 239, 0.7);
  backdrop-filter: blur(0);
  transition:
    color 500ms ease,
    background 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease,
    backdrop-filter 500ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(247, 244, 239, 0.075);
  background: rgba(8, 8, 8, 0.42);
  color: rgba(247, 244, 239, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.88;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(247, 244, 239, 0.52);
  font-size: 12px;
  font-weight: 500;
}

nav a {
  transition: color 300ms ease;
}

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

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

/* Spacing handled by inheritance from .section */

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  place-items: end start;
  padding: 120px max(24px, calc((100% - var(--max)) / 2)) 64px;
  background: #050505;
}

.cinema-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.06) 48%, rgba(8, 8, 8, 0.12)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.12) 58%, rgba(8, 8, 8, 0.62)),
    url("assets/robotic-surgery-cinematic.webp") 64% center / cover;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(1.01);
  animation: cinematicDrift 28s ease-in-out infinite alternate;
}

.hero-content {
  width: min(600px, 100%);
  padding-bottom: 5vh;
}

.eyebrow,
.investment-kicker {
  margin: 0 0 22px;
  color: rgba(139, 215, 216, 0.78);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 580px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 560;
  line-height: 1.06;
}

.hero-subtitle {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(247, 244, 239, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid rgba(247, 244, 239, 0.24);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.24);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(18px);
  transition: border-color 300ms ease, background 300ms ease, transform 300ms ease;
}

.primary-button:hover {
  border-color: rgba(247, 244, 239, 0.44);
  background: rgba(247, 244, 239, 0.08);
  transform: translateY(-2px);
}

.hero-footer {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 28px;
  left: max(24px, calc((100% - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 244, 239, 0.11);
  padding-top: 16px;
  color: rgba(247, 244, 239, 0.38);
  font-size: 11px;
  font-weight: 500;
}

.objective-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
}

.objective-copy {
  width: 100%;
  margin: 0;
}

.objective-copy h2,
.section-heading h2 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(28px, 3.05vw, 44px);
  font-weight: 540;
  line-height: 1.14;
}

.objective-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.feature-media {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.11);
  border-radius: 22px;
  aspect-ratio: 16 / 12;
  background: #080808;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 36px 110px rgba(0, 0, 0, 0.28);
}

.feature-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1600ms ease;
}

.feature-media:hover img {
  transform: scale(1.045);
}

.feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(8, 8, 8, 0.28));
}

.feature-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.09), transparent 38%);
  opacity: 0;
  transform: translateX(-45%);
  animation: edgeReflection 11s ease-in-out infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.scope-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 86px);
  padding-top: 22px;
  border-top: 1px solid var(--warm-line-soft);
}

.scope-group {
  position: relative;
}

.scope-group span {
  display: block;
  margin-bottom: 36px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 650;
}

.scope-group h3 {
  margin-bottom: 28px;
  color: rgba(247, 244, 239, 0.9);
  font-size: 22px;
  font-weight: 560;
}

.scope-group ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-group li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.scope-group li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.36);
  content: "";
}

.delivery-card,
.investment-card,
.timeline {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(247, 244, 239, 0.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.015),
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 48px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.delivery-card::before,
.investment-card::before,
.timeline::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      520px circle at var(--mx, 50%) var(--my, 0%),
      rgba(139, 215, 216, 0.105),
      transparent 42%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%);
  opacity: 0;
  transition: opacity 650ms ease;
}

.delivery-card::after,
.investment-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 58%);
  opacity: 0.18;
  transform: translateX(-120%);
  animation: edgeReflection 12s ease-in-out infinite;
}

.delivery-card:hover::before,
.investment-card:hover::before,
.timeline:hover::before {
  opacity: 1;
}

.deliveries {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, transparent, rgba(247, 244, 239, 0.025) 42%, transparent);
}

.deliveries .section-heading {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: 0;
}

.deliveries-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.delivery-stack {
  display: grid;
  gap: 12px;
}

.delivery-card {
  min-height: 0;
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 215, 216, 0.055), transparent 18rem),
    linear-gradient(145deg, rgba(247, 244, 239, 0.042), rgba(247, 244, 239, 0.012));
  transition:
    border-color 600ms ease,
    box-shadow 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delivery-card.manifesto {
  min-height: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 215, 216, 0.06), transparent 18rem),
    linear-gradient(145deg, rgba(247, 244, 239, 0.048), rgba(247, 244, 239, 0.014));
}

.delivery-card.manifesto .delivery-media img {
  object-position: center 25%;
}

.delivery-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 28px rgba(255, 255, 255, 0.025),
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 24px 72px rgba(0, 0, 0, 0.52),
    0 72px 160px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.delivery-media {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.09);
  border-radius: 12px;
  aspect-ratio: 16 / 4.8;
  background: #0a0a09;
}

.delivery-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1600ms ease, filter 1600ms ease;
}

.delivery-card:hover .delivery-media img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.badge,
.episode-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid rgba(139, 215, 216, 0.15);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.32);
  color: rgba(247, 244, 239, 0.62);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(139, 215, 216, 0.04);
}

.delivery-card h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 540;
  line-height: 1.14;
}

.delivery-card p {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.timeline {
  position: sticky;
  top: 108px;
  min-height: 520px;
  padding: 32px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 215, 216, 0.04), transparent 18rem),
    rgba(247, 244, 239, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.015),
    0 16px 48px rgba(0, 0, 0, 0.32),
    0 48px 90px rgba(0, 0, 0, 0.2);
}

.timeline-line {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 43px;
  width: 1px;
  background: linear-gradient(180deg, rgba(139, 215, 216, 0.48), rgba(247, 244, 239, 0.08));
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 18px;
  margin-bottom: 52px;
}

.timeline-item span {
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(247, 244, 239, 0.14);
  border-radius: 50%;
  background: #0b0a09;
  color: rgba(247, 244, 239, 0.5);
  font-size: 10px;
  font-weight: 700;
}

.timeline-item.active span {
  border-color: rgba(139, 215, 216, 0.5);
  color: rgba(139, 215, 216, 0.9);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 560;
}

.timeline-item p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.55;
}

.differentials-list {
  display: grid;
  width: min(880px, 100%);
  margin-left: auto;
  border-top: 1px solid var(--warm-line-soft);
}

.differential-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--warm-line-soft);
}

.differential-item span {
  color: rgba(139, 215, 216, 0.58);
  font-size: 11px;
  font-weight: 650;
}

.differential-item p {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 244, 239, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 430;
  line-height: 1.48;
}

.authority-section {
  width: min(var(--max), calc(100% - 48px));
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.08fr);
  gap: clamp(68px, 8vw, 128px);
  align-items: center;
}

.authority-copy {
  max-width: 560px;
}

.authority-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.authority-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
  opacity: 0.94;
}

.authority-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.authority-name {
  margin: 0 0 2px;
  color: rgba(247, 244, 239, 0.92);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.2;
}

.authority-role {
  margin: 0;
  color: rgba(247, 244, 239, 0.48);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.authority-copy h2 {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(247, 244, 239, 0.94);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 540;
  line-height: 1.08;
}

.authority-copy h2 span {
  display: block;
  color: rgba(247, 244, 239, 0.56);
}

.authority-copy blockquote {
  position: relative;
  margin: 0 0 34px;
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(139, 215, 216, 0.42);
  color: rgba(247, 244, 239, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 480;
  line-height: 1.45;
}

.authority-text {
  max-width: 520px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 48px auto 0;
}

.skill-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(247, 244, 239, 0.105);
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.032);
  color: rgba(247, 244, 239, 0.66);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 300ms ease, color 300ms ease, background 300ms ease;
}

.skill-tags span:hover {
  border-color: rgba(139, 215, 216, 0.28);
  background: rgba(139, 215, 216, 0.045);
  color: rgba(247, 244, 239, 0.9);
}

.showreel-panel {
  position: relative;
  padding-top: 20px;
}

.showreel-panel > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(247, 244, 239, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.showreel-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.08);
  border-radius: 28px;
  aspect-ratio: 16 / 9.2;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 215, 216, 0.12), transparent 20rem),
    #090909;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 130px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.showreel-thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) saturate(0.82) brightness(0.82);
  transform: scale(1.01);
  transition: transform 1400ms ease, filter 700ms ease;
}

.showreel-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 8, 8, 0.54)),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(8, 8, 8, 0.22) 72%);
}

.showreel-thumb:hover img {
  filter: grayscale(0.08) saturate(0.95) brightness(0.92);
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(247, 244, 239, 0.28);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
  transition: border-color 300ms ease, transform 300ms ease, background 300ms ease;
}

.play-button::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(247, 244, 239, 0.88);
  content: "";
  transform: translate(-35%, -50%);
}

.showreel-thumb:hover .play-button {
  border-color: rgba(139, 215, 216, 0.42);
  background: rgba(8, 8, 8, 0.48);
  transform: translate(-50%, -50%) scale(1.04);
}

.client-proof {
  margin-top: 118px;
  padding-top: 38px;
  border-top: 1px solid var(--warm-line-soft);
}

.client-proof > p {
  margin-bottom: 34px;
  color: rgba(247, 244, 239, 0.38);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  animation: logoFloat 58s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track img {
  width: auto;
  max-width: 138px;
  height: clamp(22px, 3vw, 34px);
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.34;
  transform: translateY(0);
  transition: opacity 300ms ease, filter 300ms ease;
}

.client-track img:hover {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
}

.investment-section {
  display: grid;
  place-items: center;
  width: min(var(--max), calc(100% - 48px));
}

.investment-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 68% -14%, rgba(139, 215, 216, 0.12), transparent 22rem),
    radial-gradient(circle at 2% 100%, rgba(247, 244, 239, 0.06), transparent 25rem),
    linear-gradient(155deg, rgba(247, 244, 239, 0.054), rgba(247, 244, 239, 0.01) 58%);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 32px rgba(255, 255, 255, 0.02),
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 24px 80px rgba(0, 0, 0, 0.52),
    0 80px 180px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(139, 215, 216, 0.025);
  text-align: left;
}

.investment-card::before {
  opacity: 0.42;
}

.investment-card:hover::before {
  opacity: 0.72;
}

.investment-kicker {
  position: relative;
  z-index: 1;
  color: rgba(247, 244, 239, 0.52);
  margin-bottom: 34px;
}

.investment-total {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0 0;
}

.investment-total span {
  color: rgba(247, 244, 239, 0.38);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.investment-total strong {
  color: rgba(247, 244, 239, 0.58);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 560;
}

.investment-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin: 36px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.08) 80%, transparent);
}

.investment-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid var(--warm-line-soft);
  border-bottom: 1px solid var(--warm-line-soft);
  background: rgba(247, 244, 239, 0.06);
}

.investment-step {
  min-height: auto;
  padding: clamp(16px, 2.5vw, 28px);
  background:
    linear-gradient(145deg, rgba(8, 8, 8, 0.56), rgba(247, 244, 239, 0.026));
}

.investment-step span {
  display: block;
  margin-bottom: 14px;
  color: rgba(247, 244, 239, 0.44);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.investment-step strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 244, 239, 0.95);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 560;
  line-height: 1.1;
}

.investment-step p {
  max-width: 260px;
  margin: 0;
  color: rgba(247, 244, 239, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.investment-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  color: rgba(247, 244, 239, 0.52);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes logoFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.footer {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* Background card elements removed */

.footer-cta,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-cta {
  padding: 64px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta h2 {
  max-width: 680px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(247, 244, 239, 0.96);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 540;
  line-height: 1.04;
}

.footer-cta > p {
  max-width: 580px;
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(247, 244, 239, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 54px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.86);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 300ms ease, background 300ms ease, transform 300ms ease;
}

.footer-button.primary {
  border-color: rgba(139, 215, 216, 0.32);
  background: rgba(139, 215, 216, 0.11);
}

.footer-button.secondary {
  background: rgba(247, 244, 239, 0.035);
}

.footer-button:hover {
  transform: translateY(-2px);
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 18px;
  justify-content: center;
  margin: 0 auto;
}

.contact-blocks div {
  padding-top: 18px;
  border-top: 1px solid var(--warm-line-soft);
  text-align: center;
}

.contact-blocks span,
.footer-identity small {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 244, 239, 0.38);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-blocks strong {
  color: rgba(247, 244, 239, 0.8);
  font-size: 14px;
  font-weight: 560;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid rgba(247, 244, 239, 0.08);
}

.footer-identity {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-identity img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-identity strong,
.footer-identity span {
  display: block;
}

.footer-identity strong {
  margin-bottom: 4px;
  color: rgba(247, 244, 239, 0.9);
  font-size: 14px;
  font-weight: 620;
}

.footer-identity span {
  margin-bottom: 6px;
  color: rgba(247, 244, 239, 0.54);
  font-size: 12px;
}

.footer-identity small {
  margin-bottom: 0;
  text-transform: none;
}

.copy-contact {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.2);
  color: rgba(247, 244, 239, 0.62);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 300ms ease, color 300ms ease, background 300ms ease;
}

.copy-contact.is-copied,
.copy-contact:hover {
  border-color: rgba(139, 215, 216, 0.32);
  background: rgba(139, 215, 216, 0.07);
  color: rgba(247, 244, 239, 0.9);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: rgba(247, 244, 239, 0.46);
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(247, 244, 239, 0.1);
  border-radius: 50%;
  background: rgba(247, 244, 239, 0.025);
  transition: border-color 300ms ease, background 300ms ease, transform 300ms ease;
}

.social-icons a:hover {
  border-color: rgba(139, 215, 216, 0.28);
  background: rgba(139, 215, 216, 0.055);
  transform: translateY(-1px);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(247, 244, 239, 0.62);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.modal-frame {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(247, 244, 239, 0.13);
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #050505;
  box-shadow: 0 42px 160px rgba(0, 0, 0, 0.56);
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.42);
  color: rgba(247, 244, 239, 0.86);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1200ms ease, transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematicDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-0.9%, 0.7%, 0);
  }
}

@keyframes edgeReflection {
  0%,
  38% {
    opacity: 0;
    transform: translateX(-120%);
  }

  54% {
    opacity: 0.16;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes floatLight {
  from {
    transform: translate3d(0, var(--ambient-y), 0) scale(1);
  }

  to {
    transform: translate3d(34px, calc(var(--ambient-y) - 26px), 0) scale(1.08);
  }
}

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

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

@media (max-width: 920px) {
  .site-header {
    height: 68px;
  }

  nav {
    display: none;
  }

  .section {
    padding: 108px 0;
  }

  .hero {
    min-height: 94svh;
    padding-top: 96px;
  }

  .hero-content {
    width: min(620px, 100%);
  }

  h1 {
    font-size: clamp(38px, 11vw, 60px);
  }

  .hero-footer {
    display: none;
  }

  .objective-section,
  .authority-grid,
  .deliveries-layout,
  .scope-editorial {
    grid-template-columns: 1fr;
  }

  .objective-copy {
    max-width: 680px;
  }

  .feature-media {
    aspect-ratio: 16 / 10;
  }

  .scope-editorial {
    gap: 54px;
  }

  .timeline {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .differentials-list {
    width: 100%;
  }

  .authority-grid {
    gap: 68px;
  }

  .investment-main,
  .investment-flow {
    grid-template-columns: 1fr;
  }

  .investment-divider {
    margin: 38px 0;
  }

  .client-proof {
    margin-top: 72px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .section,
  .footer {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-image {
    background-position: 60% center;
  }

  .objective-copy h2,
  .authority-copy h2,
  .section-heading h2 {
    font-size: clamp(29px, 8.5vw, 40px);
  }

  .feature-media {
    aspect-ratio: 4 / 3;
  }

  .delivery-card,
  .investment-card {
    border-radius: 20px;
  }

  .delivery-card {
    min-height: auto;
    padding: 26px;
  }

  .delivery-card.manifesto {
    min-height: auto;
  }

  .delivery-media {
    margin-bottom: 22px;
    aspect-ratio: 16 / 8.5;
  }

  .differential-item {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .authority-header {
    margin-bottom: 24px;
  }

  .authority-logo {
    height: 28px;
  }

  .showreel-thumb {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .client-track {
    gap: 34px;
    animation-duration: 44s;
  }

  .client-track img {
    max-width: 120px;
    height: 26px;
  }

  .investment-card {
    padding: 38px 24px;
  }

  .investment-card h2 {
    font-size: clamp(40px, 10.5vw, 58px);
  }

  .investment-flow {
    gap: 0;
  }

  .investment-step {
    min-height: auto;
    padding: 24px 0;
    background: transparent;
    border-bottom: 1px solid var(--warm-line-soft);
  }

  .investment-step:last-child {
    border-bottom: 0;
  }

  .footer {
    width: min(100% - 32px, var(--max));
  }

  .footer-cta {
    padding: 48px 0;
  }

  .footer-cta h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

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

  .footer-bottom {
    padding: 24px 0;
  }

  .footer-identity {
    align-items: flex-start;
  }

  .modal-frame {
    border-radius: 16px;
  }

}
