:root {
  --ink: #122029;
  --muted: #63717b;
  --line: #d8e2e6;
  --paper: #f5f8f7;
  --white: #ffffff;
  --navy: #0a2b3d;
  --teal: #00a6a6;
  --lime: #b9d850;
  --coral: #f05d4f;
  --shadow: 0 18px 50px rgba(12, 32, 42, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  font-size: 15px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--lime), #f6f7d5 55%, #5ed1c7);
  border-radius: 6px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav-item {
  position: relative;
  padding: 13px 0;
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.75;
}

.nav-home::after {
  display: none;
}

.nav-cta {
  padding: 11px 16px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 6px;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(720px, calc(100vw - 40px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 226, 230, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel,
.nav-item.is-active .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.nav-panel-grid a {
  display: grid;
  min-height: 104px;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.nav-panel-grid a:hover {
  border-color: rgba(0, 166, 166, 0.45);
  background: #edf8f5;
}

.nav-panel-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.nav-panel-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-panel {
  width: min(620px, calc(100vw - 40px));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 8px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 70px) 34px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 27, 38, 0.9), rgba(7, 27, 38, 0.42) 54%, rgba(7, 27, 38, 0.2)),
    linear-gradient(0deg, rgba(7, 27, 38, 0.72), rgba(7, 27, 38, 0.06) 42%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
  padding-bottom: 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 102px);
  line-height: 0.96;
  max-width: 860px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

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

.hero-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(18px, 2vw, 23px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.primary {
  color: var(--navy);
  background: var(--lime);
}

.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 25, 34, 0.56);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 25px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

section {
  padding: 84px clamp(20px, 5vw, 70px);
}

.band {
  background: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
}

.sport-coverage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 43, 61, 0.96), rgba(0, 101, 116, 0.9)),
    url("./assets/stadium-hero.jpeg") center / cover;
}

.sport-coverage h2,
.sport-coverage h3 {
  color: var(--white);
}

.sport-coverage-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.sport-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sport-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.media-feature {
  background: #eaf1ef;
}

.media-feature .section-heading p:last-child {
  max-width: 760px;
}

.video-showcase {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-showcase video,
.showcase-animation {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  background: #071923;
}

.video-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
}

.video-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.narration-player {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.narration-player span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.narration-player audio {
  width: 100%;
  max-width: 360px;
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--white);
}

.visual-gallery article {
  overflow: hidden;
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-gallery img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  background: var(--navy);
}

.visual-gallery article div {
  padding: 22px;
}

.visual-gallery article > .hardware-stack-thumb {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
  min-height: 246px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 166, 166, 0.12), transparent 34%),
    linear-gradient(145deg, #edf5f2, #d9e7e4);
}

.hardware-stack-thumb img {
  width: 100%;
  max-height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(10, 43, 61, 0.16));
}

.hardware-stack-thumb img:first-child {
  max-height: 170px;
}

.visual-gallery p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.compact {
  max-width: 760px;
}

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

.workflow article,
.solutions article {
  min-height: 245px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--navy);
  background: #dff2ee;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
}

.showcase,
.data-layout,
.contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hardware {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.showcase,
.data-section {
  background: var(--white);
}

.media-card,
.broadcast-console,
.analysis-panel,
.hardware-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.media-card img,
.hardware-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide {
  aspect-ratio: 16 / 9;
}

.broadcast-console {
  min-height: 480px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.console-top,
.console-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.console-top span:first-child {
  font-weight: 850;
}

.console-top span:last-child {
  color: var(--navy);
  background: var(--lime);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.field-view {
  position: relative;
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 50%, transparent 50%),
    linear-gradient(180deg, #3aa35f, #247848);
  background-size: 72px 100%, 100% 100%;
}

.pitch-lines,
.mini-pitch {
  position: absolute;
  inset: 38px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.pitch-lines::before,
.mini-pitch::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.62);
}

.pitch-lines::after,
.mini-pitch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.tag {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.wide-angle {
  left: 24px;
  top: 22px;
}

.directed {
  right: 24px;
  bottom: 22px;
  background: var(--lime);
}

.player,
.ball {
  position: absolute;
  border-radius: 50%;
}

.player {
  width: 18px;
  height: 18px;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 32, 41, 0.2);
}

.p1 {
  left: 32%;
  top: 42%;
}

.p2 {
  left: 58%;
  top: 34%;
  background: #1ed4dc;
}

.p3 {
  left: 68%;
  top: 62%;
  background: #ff7b68;
}

.ball {
  width: 10px;
  height: 10px;
  left: 51%;
  top: 48%;
  background: var(--lime);
}

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

.console-row div {
  padding: 2px;
}

.console-row strong,
.console-row span {
  display: block;
}

.console-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.solutions {
  background: #eaf1ef;
}

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

.hardware {
  background: var(--navy);
  color: var(--white);
}

.hardware p,
.hardware span {
  color: rgba(255, 255, 255, 0.72);
}

.hardware-suite-panel {
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 166, 166, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hardware-suite-head {
  max-width: 560px;
  margin-bottom: 22px;
}

.hardware-suite-head h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.12;
}

.hardware-suite-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.suite-card {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.suite-card.camera-card {
  grid-row: span 2;
  min-height: 454px;
}

.suite-card img {
  width: 100%;
  max-height: 150px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.34));
}

.suite-card.camera-card img {
  max-height: 310px;
}

.suite-card strong {
  color: var(--white);
  font-size: 17px;
}

.suite-card span {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.spec-grid,
.metric-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec-grid div,
.metric-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.spec-grid strong,
.metric-list strong {
  display: block;
  margin-bottom: 8px;
}

.spec-grid span,
.metric-list span {
  line-height: 1.55;
  font-size: 14px;
}

.data-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.analysis-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 390px;
  color: var(--white);
  background: #091923;
}

.analysis-video {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 50%, transparent 50%),
    linear-gradient(180deg, #3d9a5b, #226f45);
  background-size: 62px 100%, 100% 100%;
}

.analysis-video .tag {
  left: 18px;
  top: 18px;
}

.mini-pitch {
  inset: 54px 30px 34px;
}

.analysis-stats {
  padding: 24px;
  background: rgba(0, 0, 0, 0.28);
}

.analysis-stats h3 {
  color: var(--white);
}

.analysis-stats dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.analysis-stats div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.analysis-stats dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.analysis-stats dd {
  margin: 5px 0 0;
  color: var(--white);
  font-weight: 850;
}

.metric-list {
  grid-template-columns: 1fr;
}

.metric-list div {
  background: #f6faf9;
  border-color: var(--line);
}

.venues {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.venue-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(185, 216, 80, 0.24), transparent 25%),
    linear-gradient(135deg, #061823, #0d3b48 52%, #173b28);
}

.venue-grid {
  position: absolute;
  inset: 9% 5%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 84px 84px;
  transform: perspective(640px) rotateX(56deg);
  transform-origin: bottom;
}

.venue-screen {
  position: absolute;
  right: clamp(22px, 8vw, 120px);
  top: 16%;
  width: min(420px, 50vw);
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-screen strong {
  display: block;
  color: var(--navy);
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.9;
  font-weight: 950;
  text-align: center;
}

.venue-screen span {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.venues::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 34, 0.92), rgba(8, 24, 34, 0.28));
}

.venue-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.venue-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.contact {
  align-items: start;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: max-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.76);
  background: #081923;
  font-size: 14px;
}

.detail-page {
  background: var(--paper);
}

.detail-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.detail-hero {
  padding-top: 150px;
  padding-bottom: 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 38, 0.94), rgba(7, 27, 38, 0.56)),
    url("./assets/stadium-hero.jpeg") center / cover;
}

.detail-hero h1 {
  max-width: 980px;
}

.detail-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.detail-band {
  background: var(--white);
}

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

.detail-card,
.product-card,
.capability-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card p,
.product-card p,
.capability-card p {
  margin-bottom: 0;
}

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

.product-card {
  display: grid;
  grid-template-columns: 0.62fr 0.64fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.product-photo {
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 166, 166, 0.18), transparent 36%),
    #071923;
  border-radius: 8px;
}

.product-photo img {
  width: 100%;
  height: 100%;
  max-height: 230px;
  object-fit: contain;
  padding: 12px;
}

.product-code {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--navy);
  background: #dff2ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.5;
}

.product-specs li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.detail-media-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-media-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: #071923;
}

.detail-media-card div {
  padding: 20px;
}

.detail-media-card p {
  margin-bottom: 0;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-nav a {
  padding: 10px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--navy);
  background: #eaf1ef;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.detail-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.detail-cta p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    color: inherit;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-item {
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-panel {
    position: static;
    width: 100%;
    display: none;
    padding: 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-item:hover .nav-panel,
  .nav-item:focus-within .nav-panel {
    display: none;
  }

  .nav-item.is-active .nav-panel {
    display: block;
  }

  .nav-panel-grid {
    grid-template-columns: 1fr;
  }

  .nav-panel-grid a {
    min-height: auto;
    padding: 14px;
  }

  .intro,
  .sport-coverage,
  .video-showcase,
  .showcase,
  .hardware,
  .data-layout,
  .contact,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .solution-grid,
  .visual-gallery,
  .spec-grid,
  .analysis-panel,
  .detail-grid,
  .capability-grid,
  .detail-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .analysis-panel {
    grid-template-columns: 1fr;
  }

  .hardware-suite-grid {
    grid-template-columns: 1fr;
  }

  .suite-card.camera-card {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero-panel,
  .workflow-grid,
  .solution-grid,
  .visual-gallery,
  .spec-grid,
  .console-row,
  .detail-grid,
  .capability-grid,
  .detail-media-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

  .sport-photo-strip {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .sport-photo-strip img {
    min-height: 170px;
  }

  .broadcast-console,
  .analysis-panel {
    min-height: auto;
  }

  .field-view,
  .analysis-video {
    min-height: 260px;
  }

  .venue-screen {
    width: min(310px, 78vw);
    top: 14%;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

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

  section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
}
