:root {
  color-scheme: dark;
  --ink: #f6f5ee;
  --muted: #aeb8b6;
  --paper: #080b0d;
  --soft: #11181a;
  --line: rgba(255, 255, 255, 0.13);
  --teal: #15b8a8;
  --teal-dark: #071313;
  --amber: #f0ad3d;
  --white: #ffffff;
  --red: #b52832;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 0%, rgba(21, 184, 168, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(181, 40, 50, 0.16), transparent 26rem),
    var(--paper);
  line-height: 1.55;
}

body.no-motion,
body.no-motion * {
  scroll-behavior: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(12, 17, 17, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  background: rgba(8, 11, 13, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.76rem;
  background: linear-gradient(135deg, rgba(240, 173, 61, 0.24), rgba(21, 184, 168, 0.1));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92svh;
  padding: calc(var(--header-h) + 48px) clamp(20px, 5vw, 76px) 78px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  content: "";
  background:
    linear-gradient(0deg, var(--paper) 0%, rgba(8, 11, 13, 0) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
  opacity: 0.72;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  background: #16201f;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.92) 0%, rgba(5, 8, 10, 0.62) 43%, rgba(5, 8, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.9) 0%, rgba(8, 11, 13, 0.18) 54%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4rem, 12vw, 9.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #111616;
  background: linear-gradient(135deg, #ffd46c, var(--amber));
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contact-panel .button-primary {
  color: var(--white);
  background: var(--teal);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 0;
}

.hero-metrics span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(21, 184, 168, 0.1));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 750;
}

.video-status {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 22px;
  max-width: min(440px, calc(100% - 36px));
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(10, 14, 14, 0.54);
  font-size: 0.82rem;
}

.video-status.is-hidden {
  display: none;
}

.section,
.section-band {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 76px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.96), rgba(12, 20, 22, 0.94));
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.intro::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(240, 173, 61, 0.09) 34% 35%, transparent 35% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1.15fr) minmax(260px, 1fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.company-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child,
.company-copy p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.visual-reel {
  padding: clamp(30px, 5vw, 70px) clamp(20px, 5vw, 76px);
  background: #080b0d;
  overflow: hidden;
}

.reel-track {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  gap: 16px;
  align-items: stretch;
  transform: skewY(-1.2deg);
}

.reel-frame {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #11181a;
  box-shadow: var(--shadow);
}

.reel-frame-large {
  min-height: 460px;
}

.reel-frame-tall {
  min-height: 420px;
}

.reel-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 11, 13, 0.04), rgba(8, 11, 13, 0.78)),
    linear-gradient(90deg, rgba(21, 184, 168, 0.12), transparent 46%);
}

.reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.12);
  transform: scale(1.03);
}

.reel-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading.compact {
  max-width: 800px;
  display: block;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  position: relative;
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #0c1113;
  box-shadow: 0 1px 0 rgba(17, 22, 22, 0.04);
  overflow: hidden;
}

.offer-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(21, 184, 168, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(181, 40, 50, 0.14), transparent 44%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-number {
  position: relative;
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.offer-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.dark-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 19, 19, 0.94), rgba(8, 11, 13, 0.86)),
    url("../media/broadcast-poster.png") center / cover;
  overflow: hidden;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.9), rgba(8, 11, 13, 0.55));
}

.dark-section .section-inner {
  position: relative;
}

.tech-section {
  position: relative;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(8, 11, 13, 0.96), rgba(9, 15, 17, 0.94)),
    radial-gradient(circle at 72% 22%, rgba(21, 184, 168, 0.18), transparent 24rem);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.tech-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(240, 173, 61, 0.08) 48% 49%, transparent 49% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 68px);
  pointer-events: none;
}

.tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.tech-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.tech-copy p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.tech-stack {
  position: relative;
  min-height: clamp(500px, 54vw, 720px);
}

.tech-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #101719;
  box-shadow: var(--shadow);
}

.tech-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(8, 11, 13, 0.82)),
    linear-gradient(90deg, rgba(21, 184, 168, 0.12), transparent 48%);
  pointer-events: none;
}

.tech-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.12);
}

.tech-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-card-main {
  inset: 0 10% 19% 0;
}

.tech-card-float {
  right: 0;
  bottom: 5%;
  width: min(45%, 390px);
  aspect-ratio: 4 / 5;
  transform: translateY(7%) rotate(-1.5deg);
}

.tech-card-side {
  right: 9%;
  top: 5%;
  width: min(43%, 450px);
  aspect-ratio: 16 / 9;
  transform: rotate(1.2deg);
}

.dark-section .section-kicker {
  color: #f2b64a;
}

.company-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 6vw, 92px);
}

.company-copy {
  display: grid;
  gap: 20px;
}

.company-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.team-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 10%, rgba(21, 184, 168, 0.14), transparent 25rem),
    linear-gradient(180deg, #080b0d, #0c1113);
  border-block: 1px solid var(--line);
}

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

.team-card {
  position: relative;
  min-height: clamp(360px, 36vw, 540px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #11181a;
  box-shadow: var(--shadow);
}

.team-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 11, 13, 0.02), rgba(8, 11, 13, 0.86)),
    linear-gradient(90deg, rgba(21, 184, 168, 0.12), transparent 52%);
}

.team-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
}

.team-card figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 18px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.team-card span {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 230px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--soft);
}

.process-list span {
  display: block;
  margin-bottom: 70px;
  color: var(--teal);
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 11, 13, 0.56), rgba(8, 11, 13, 0.9)),
    url("../media/still-production-03.jpg") center / cover;
}

.contact-panel {
  padding: 28px;
  border: 1px solid rgba(17, 22, 22, 0.12);
  border-radius: 8px;
  background: rgba(8, 11, 13, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-bottom: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #080b0d;
  font-size: 0.92rem;
}

.image-band {
  position: relative;
  min-height: clamp(420px, 58vw, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.16);
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(8, 11, 13, 0.9), rgba(8, 11, 13, 0.12) 56%, rgba(8, 11, 13, 0.35)),
    linear-gradient(90deg, rgba(8, 11, 13, 0.9), transparent 72%);
}

.image-band-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 76px);
}

.image-band-copy h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.site-footer a {
  font-weight: 800;
  color: var(--teal);
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav {
    max-width: 360px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .intro-grid,
  .section-heading,
  .company-grid,
  .contact-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .process-list,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reel-track {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .reel-frame-large {
    grid-column: 1 / -1;
  }

  .tech-stack {
    min-height: 660px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 94px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: calc(var(--header-h) + 28px) 18px 74px;
  }

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

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .video-status {
    right: 18px;
    bottom: 16px;
    font-size: 0.76rem;
  }

  .section,
  .section-band {
    padding: 64px 18px;
  }

  .offer-grid,
  .process-list,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .reel-track {
    grid-template-columns: 1fr;
  }

  .reel-frame,
  .reel-frame-large,
  .reel-frame-tall {
    min-height: 280px;
  }

  .tech-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .tech-card,
  .tech-card-main,
  .tech-card-float,
  .tech-card-side {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 240px;
    transform: none;
  }

  .offer-card,
  .process-list li {
    min-height: auto;
  }

  .offer-number,
  .process-list span {
    margin-bottom: 28px;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
