@font-face {
  font-family: 'Servima Sans';
  src: local('Inter'), local('Segoe UI'), local('Arial');
  font-display: swap;
}

:root {
  color-scheme: dark;
  --color-black: #080808;
  --color-black-soft: #111114;
  --color-graphite: #18181d;
  --color-steel: #26262d;
  --color-white: #ffffff;
  --color-ash: #f4f4f5;
  --color-muted: #b8b8c2;
  --color-red: #e50914;
  --color-red-dark: #990711;
  --color-red-soft: #ff3b45;
  --font-body: 'Servima Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: min(1120px, calc(100% - 32px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-red: 0 24px 80px rgba(229, 9, 20, 0.25);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-black);
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body), sans-serif;
  color: var(--color-white);
  background:
    radial-gradient(circle at top left, rgba(229, 9, 20, 0.22), transparent 30rem),
    radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #080808 0%, #101013 48%, #080808 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-red-soft);
  outline-offset: 4px;
}

::selection {
  background: var(--color-red);
  color: var(--color-white);
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.mobile-nav-shell {
  display: none;
}

.nav-scroll-hint {
  display: none;
}

.nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav a {
  padding: 0 14px;
  color: var(--color-muted);
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  padding: 0 20px;
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 14px 36px rgba(229, 9, 20, 0.35);
}

main {
  overflow: hidden;
}

.section-grid,
.section,
.metrics,
.contact,
.footer {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(56px, 8vw, 112px) 0 48px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-red-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7.5vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  box-shadow: var(--shadow-red);
}

.button-ghost {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.highlight-list li,
.sector-grid span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--color-ash);
  background: rgba(255, 255, 255, 0.06);
}

.highlight-list li {
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.8), transparent 40%, rgba(255, 255, 255, 0.18));
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.9);
}

.status-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(16px);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

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

.metrics article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metrics span {
  color: var(--color-muted);
  font-weight: 800;
}

.trust-strip {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
  padding: 0 0 30px;
}

.trust-strip article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.trust-title {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.trust-strip p {
  margin-bottom: 0;
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 560px;
}

.cards,
.client-wall,
.gallery,
.process-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

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

.service-card,
.client-card,
.process-grid article,
details,
.contact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card p {
  margin-bottom: auto;
}

.service-title,
.tech-title,
.process-title {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-card .service-title,
.tech-list .tech-title,
.process-grid .process-title {
  margin-bottom: 10px;
}

.service-card small {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(229, 9, 20, 0.18);
}

.technology-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.technology-copy {
  max-width: 620px;
}

.technology-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 16px;
}

.tech-device,
.tech-list article,
.client-portal,
.careers-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-card);
}

.tech-device {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.18), rgba(8, 8, 8, 0.1)),
    rgba(255, 255, 255, 0.06);
}

.tech-device::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 78%);
}

.route-map,
.tech-device-caption {
  position: relative;
  z-index: 1;
}

.route-map {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(229, 9, 20, 0.24), transparent 16%),
    radial-gradient(circle at 68% 68%, rgba(255, 255, 255, 0.12), transparent 18%),
    rgba(8, 8, 8, 0.68);
  overflow: hidden;
}

.route-line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 48%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-red), rgba(255, 255, 255, 0.75), var(--color-red));
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.65);
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(8, 8, 8, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.map-pin::before {
  content: '';
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.9);
}

.map-pin-start {
  left: 9%;
  top: 22%;
}

.map-pin-middle {
  left: 38%;
  top: 43%;
}

.map-pin-end {
  right: 9%;
  bottom: 20%;
}

.tech-device strong {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.tech-device small {
  color: var(--color-muted);
  font-weight: 900;
}

.tech-list {
  display: grid;
  gap: 16px;
}

.tech-list article {
  padding: 22px;
}

.client-portal h3 {
  margin-bottom: 8px;
}

.tech-list p,
.client-portal p {
  margin-bottom: 0;
}

.client-portal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.28), rgba(255, 255, 255, 0.045)),
    var(--color-black-soft);
}

.client-portal span {
  color: var(--color-red-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-grid span {
  padding: 12px 16px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 900;
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding-top: 0;
}

.coverage-panel,
.coverage-map {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-card);
}

.coverage-panel {
  padding: clamp(24px, 4vw, 42px);
}

.coverage-panel .section-heading {
  margin-bottom: 24px;
}

.coverage-notes {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-notes li {
  display: flex;
  gap: 10px;
  color: var(--color-ash);
  font-weight: 800;
}

.coverage-notes li::before {
  content: '';
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.8);
}

.coverage-map {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
}

.coverage-map::before {
  content: '';
  position: absolute;
  inset: 12%;
  z-index: -1;
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.24), transparent 62%);
  filter: blur(1px);
}

.coverage-map span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(8, 8, 8, 0.74);
  font-weight: 950;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.clients-section {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.client-wall {
  grid-template-columns: repeat(6, 1fr);
}

.client-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.55);
  background: rgba(255, 255, 255, 0.085);
}

.client-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--color-white);
  padding: 9px;
}

.client-card span {
  display: block;
}

.client-name {
  color: var(--color-white);
  font-weight: 950;
}

.client-card span {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-steel);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 280ms ease, filter 280ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.1);
}

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.gallery-actions span {
  color: var(--color-muted);
  font-weight: 800;
}

.featured-photo {
  grid-column: span 2;
  grid-row: span 2;
}

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

.process-grid article {
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--color-red-soft);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 72px);
}

.faq-list {
  align-content: start;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--color-white);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.careers-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.careers-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

.careers-form label {
  display: grid;
  gap: 8px;
  color: var(--color-ash);
  font-size: 0.9rem;
  font-weight: 900;
}

.careers-form input,
.careers-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--color-white);
  background: rgba(8, 8, 8, 0.62);
  font: inherit;
}

.careers-form input {
  min-height: 48px;
  padding: 0 14px;
}

.careers-form textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.careers-form input:focus,
.careers-form textarea:focus {
  border-color: rgba(255, 59, 69, 0.85);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.15);
}

.full-field,
.form-footer {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-footer small {
  color: var(--color-muted);
}

.form-footer .button {
  border: 0;
  cursor: pointer;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-block: clamp(64px, 9vw, 118px);
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.24), rgba(255, 255, 255, 0.04)),
    var(--color-black-soft);
}

.contact h2 {
  margin-bottom: 12px;
}

.contact p {
  max-width: 620px;
  margin-bottom: 0;
}

.contact-card {
  max-width: 370px;
  justify-content: flex-end;
}

.contact-card small {
  color: var(--color-muted);
  text-align: right;
}

code {
  color: var(--color-white);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
}

.footer a {
  color: var(--color-white);
  font-weight: 900;
}

.footer-share {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-share a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--color-ash);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  width: var(--container);
  margin-inline: auto;
  padding: 48px 0;
}

.thanks-card {
  max-width: 760px;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.24), rgba(255, 255, 255, 0.04)),
    var(--color-black-soft);
  box-shadow: var(--shadow-card);
}

.thanks-card h1 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
}

.thanks-card p {
  margin-bottom: 10px;
}

.thanks-card .button {
  width: fit-content;
}

.gallery-header,
.media-page {
  width: var(--container);
  margin-inline: auto;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.media-page {
  padding-bottom: clamp(64px, 9vw, 118px);
}

.media-hero {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding: clamp(54px, 8vw, 104px) 0 clamp(36px, 6vw, 72px);
}

.media-hero h1 {
  margin-bottom: 0;
}

.media-hero p {
  max-width: 720px;
}

.media-summary {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 8px 12px;
  align-items: baseline;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.media-summary strong {
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
}

.media-summary span {
  color: var(--color-muted);
  font-weight: 900;
}

.media-section {
  padding: clamp(44px, 7vw, 84px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media-photo-grid,
.video-grid {
  display: grid;
  gap: 16px;
}

.media-photo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.media-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-steel);
}

.media-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.video-card video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.video-placeholder {
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-weight: 900;
}

.video-card-content {
  padding: 18px;
}

.video-card-content span {
  color: var(--color-red-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card-content h3 {
  margin: 8px 0;
}

.video-card-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: center;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-nav-shell {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 60;
    max-width: calc(100vw - 28px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    padding-right: 76px;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(18px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-nav-visible .mobile-nav-shell {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-shell::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 92px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, transparent, rgba(8, 8, 8, 0.96) 42%);
    pointer-events: none;
  }

  .nav-scroll-hint {
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 2;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--color-white);
    background: rgba(229, 9, 20, 0.92);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 26px rgba(229, 9, 20, 0.32);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split,
  .technology-section,
  .careers-section,
  .coverage-section,
  .faq-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

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

  .client-wall {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .technology-copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: none;
    justify-content: flex-start;
  }

  .contact-card small {
    text-align: left;
  }

  .footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(100% - 24px, 1120px);
    min-height: 70px;
    padding: 12px 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav-visible .site-header {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 128px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 28px;
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero-content .eyebrow,
  .section-heading .eyebrow,
  .technology-copy .eyebrow {
    justify-content: center;
  }

  .hero-actions,
  .highlight-list {
    justify-content: center;
  }

  .highlight-list li {
    text-align: center;
  }

  .hero-actions .button,
  .client-portal .button,
  .contact-card .button {
    width: 100%;
  }

  .status-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .metrics,
  .trust-strip,
  .services-grid,
  .client-wall,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    min-height: auto;
  }

  .trust-strip article {
    min-height: auto;
  }

  .coverage-map {
    min-height: 320px;
    justify-content: flex-start;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card p {
    margin-bottom: 14px;
  }

  .service-card small {
    margin-top: 0;
  }

  .technology-panel,
  .careers-form {
    grid-template-columns: 1fr;
  }

  .client-portal,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .client-card {
    min-height: auto;
    grid-template-columns: 82px 1fr;
    justify-items: start;
    text-align: left;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-actions,
  .gallery-header {
    align-items: stretch;
    flex-direction: column;
  }

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

  .media-summary {
    width: 100%;
    grid-template-columns: auto 1fr;
    border-radius: var(--radius-md);
  }

  .media-photo-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .featured-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

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







