:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #62615d;
  --paper: #f7f5ef;
  --paper-strong: #fffdf7;
  --line: rgba(18, 18, 18, 0.14);
  --red: #c9222f;
  --green: #087f5b;
  --yellow: #f1b92d;
  --black: #111111;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

* {
  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", Arial, sans-serif;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.86rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.82;
}

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

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
}

.nav-action {
  font-size: 0.84rem;
}

.button {
  border-radius: 0;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  min-height: min(760px, 88svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(92px, 14svh, 160px) clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.04rem, 2vw, 1.34rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 18px;
  width: min(520px, calc(100% - 36px));
  padding: 18px;
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.hero-panel strong {
  font-size: 0.88rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.metric-strip div {
  min-height: 116px;
  padding: 28px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 3.8vw, 3.8rem);
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: clamp(66px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

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

.section-copy p,
.contact-copy p,
.process-list p,
.dash-side p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

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

.intro-grid article,
.football-cards article,
.trust-grid article,
.dash-side article {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 8px;
}

.chip {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.media-band .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.image-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-tile.tall img {
  min-height: 620px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.process-list div {
  display: grid;
  grid-template-columns: 44px 160px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span {
  color: var(--yellow);
  font-weight: 900;
}

.football-section {
  background: #ffffff;
}

.football-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  margin-top: 40px;
  align-items: stretch;
}

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

.football-cards article {
  min-height: 160px;
}

.football-cards strong,
.football-cards span,
.trust-grid strong,
.trust-grid span {
  display: block;
}

.football-cards strong {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.football-cards span,
.trust-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.tech-section {
  background: #ece7dc;
}

.section-copy.narrow {
  max-width: 840px;
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(340px, 1.12fr) minmax(320px, 0.88fr);
  gap: 16px;
  margin-top: 42px;
}

.dash-main {
  min-height: 430px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.dash-header strong {
  color: var(--yellow);
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 260px) 34px;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.bar-row span {
  color: rgba(255, 255, 255, 0.72);
}

.bar-row i {
  display: block;
  height: 12px;
  background:
    linear-gradient(90deg, var(--green), var(--yellow) 62%, var(--red)) left / var(--value) 100% no-repeat,
    rgba(255, 255, 255, 0.14);
}

.bar-row strong {
  text-align: right;
}

.mode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.mode-buttons button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-weight: 800;
}

.mode-buttons button.active {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.dash-side {
  display: grid;
  gap: 14px;
}

.dash-side span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dash-side strong {
  font-size: 1.3rem;
}

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

.product-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 58%);
}

.product-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}

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

.product-card span {
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  font-size: 1.5rem;
}

.product-card.highlight {
  min-height: 500px;
  transform: translateY(-36px);
}

.trust-section {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.trust-grid article {
  min-height: 132px;
}

.trust-grid strong {
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 30px;
  align-items: end;
  color: var(--white);
  background: var(--black);
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-copy {
  max-width: 780px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.copy-button {
  color: var(--white);
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .intro-section,
  .media-band,
  .football-layout,
  .dashboard,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .visual-products,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 230px;
  }

  .hero-panel {
    right: 16px;
    bottom: 22px;
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .intro-grid,
  .football-cards,
  .visual-products,
  .trust-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list div,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .bar-row strong {
    text-align: left;
  }

  .image-tile.tall img,
  .image-tile img {
    min-height: 360px;
  }

  .product-card,
  .product-card.highlight {
    min-height: 360px;
    transform: none;
  }

  .button.primary[href^="mailto"] {
    width: 100%;
    padding-inline: 12px;
    font-size: clamp(0.82rem, 4vw, 0.98rem);
  }
}
