@font-face {
  font-family: 'Amed Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amed Gilroy';
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amed Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amed Gilroy';
  src: url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #005b35;
  --forest-deep: #003d26;
  --ink: #071810;
  --cream: #f4f2e9;
  --paper: #e8e6dc;
  --red: #d8362f;
  --mint: #79c7a3;
  --line: rgba(7, 24, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Amed Gilroy', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1300px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.brand strong {
  color: var(--mint);
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 64px));
  overflow: hidden;
  background: var(--forest-deep);
  color: #ffffff;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(121, 199, 163, 0.35);
  content: '';
}

.hero::before {
  top: -210px;
  right: -150px;
  width: min(53vw, 760px);
  height: min(53vw, 760px);
  transform: rotate(45deg);
}

.hero::after {
  right: 7%;
  bottom: -256px;
  width: 420px;
  height: 420px;
  border-color: rgba(216, 54, 47, 0.6);
  transform: rotate(45deg);
}

.hero-red-line {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18px;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  align-self: center;
  width: min(1180px, calc(100% - 48px));
  padding: 124px 0 106px;
}

.hero-copy-column {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px 8px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest-deep);
}

.hero-title {
  max-width: 630px;
  margin: 0;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--mint);
}

.hero-copy {
  max-width: 440px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-link {
  display: inline-flex;
  width: max-content;
  min-height: 54px;
  transition: transform 160ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  transform: translateY(-3px);
}

.store-link img {
  display: block;
  width: 180px;
  height: 54px;
  object-fit: contain;
}

.availability {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.hero-match {
  position: relative;
  width: 100%;
  padding: 22px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 16, 0.18);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 18px 24px 0 rgba(216, 54, 47, 0.94), 0 24px 60px rgba(0, 0, 0, 0.3);
}

.hero-match::before {
  position: absolute;
  top: -76px;
  right: -76px;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(121, 199, 163, 0.45);
  content: '';
  transform: rotate(45deg);
}

.match-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(7, 24, 16, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.match-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
}

.match-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
}

.match-status.is-live {
  color: #ff817c;
}

.match-status.is-live i {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(216, 54, 47, 0.2);
  animation: live-pulse 1.45s infinite;
}

.match-competition {
  position: relative;
  z-index: 1;
  margin: 19px 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.match-teams {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(82px, 1fr) minmax(74px, auto) minmax(82px, 1fr);
  gap: 10px;
  align-items: start;
}

.match-team {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.team-crest {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 16, 0.18);
  border-radius: 50%;
  background: #ffffff;
}

.team-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-crest-letter {
  padding: 8px;
  background: var(--cream);
  color: var(--forest-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.match-center {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding-top: 11px;
}

.match-center strong {
  color: var(--forest-deep);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.match-center span {
  color: rgba(7, 24, 16, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.match-location {
  position: relative;
  z-index: 1;
  margin: 24px 0 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(7, 24, 16, 0.15);
  color: rgba(7, 24, 16, 0.65);
  font-size: 12px;
  text-align: center;
}

.watch-match {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 5px;
  background: var(--red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.watch-match:hover,
.watch-match:focus-visible {
  background: #ec443d;
  transform: translateY(-2px);
}

.watch-match b {
  font-size: 20px;
  line-height: 1;
}

.match-empty-mark {
  position: relative;
  z-index: 1;
  margin: 34px 0;
  color: var(--mint);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.74;
  text-align: center;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 36, 22, 0.7);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hero-rail i {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

.section-space {
  padding: 120px 0;
}

.intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.intro::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 34%;
  height: 42%;
  border-top: 1px solid rgba(216, 54, 47, 0.55);
  border-left: 1px solid rgba(216, 54, 47, 0.55);
  content: '';
  transform: skewX(-28deg) translateX(32%);
}

.intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 2fr 0.35fr;
  gap: 40px;
  align-items: start;
}

.section-kicker {
  color: var(--red);
}

.intro h2,
.momentum h2,
.download h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(7, 24, 16, 0.75);
  font-size: 20px;
  line-height: 1.48;
}

.intro-mark {
  margin: 2px 0 0;
  color: var(--forest);
  font-size: 23px;
  font-weight: 900;
  line-height: 0.83;
  text-align: right;
}

.showcase {
  background: var(--paper);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.showcase-heading p:last-child {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  text-align: right;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-rows: 455px auto;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 24, 16, 0.13);
  border-radius: 8px;
}

.feature-card-match {
  margin-top: 44px;
}

.feature-card-detail {
  margin-top: 88px;
}

.feature-no {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.feature-media {
  overflow: hidden;
  background: var(--forest-deep);
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms ease;
}

.feature-card:hover .feature-media img {
  transform: scale(1.035);
}

.feature-content {
  min-height: 178px;
  padding: 25px 24px 28px;
  border-top: 5px solid var(--forest);
}

.feature-card-feed .feature-content {
  border-color: var(--red);
}

.feature-content h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-content p {
  margin: 10px 0 0;
  color: rgba(7, 24, 16, 0.72);
  font-size: 16px;
  line-height: 1.36;
}

.momentum {
  position: relative;
  display: grid;
  min-height: 670px;
  overflow: hidden;
  background: var(--forest-deep);
  color: #ffffff;
  isolation: isolate;
}

.momentum::before,
.momentum::after {
  position: absolute;
  z-index: 0;
  content: '';
}

.momentum::before {
  top: 68px;
  right: 7%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(121, 199, 163, 0.52);
  transform: rotate(45deg);
}

.momentum::after {
  right: -230px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  border: 58px solid rgba(216, 54, 47, 0.9);
  border-radius: 50%;
}

.momentum-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 100px 0;
}

.light-kicker {
  color: var(--mint);
}

.momentum h2 {
  max-width: 680px;
  font-size: 64px;
}

.momentum p:last-child {
  max-width: 485px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.45;
}

.download {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #ffffff;
}

.download::before,
.download::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  content: '';
  transform: rotate(45deg);
}

.download::before {
  top: -208px;
  right: 8%;
}

.download::after {
  right: -180px;
  bottom: -180px;
}

.download-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.download .section-kicker {
  color: var(--cream);
}

.download h2 {
  font-size: 62px;
}

.download-action {
  padding-bottom: 5px;
}

.store-link-large {
  padding: 5px 8px;
  border-radius: 8px;
  background: #08150e;
}

.download-action p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.4;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0 92px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #ffffff;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-download {
  display: none;
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 355px);
    gap: 34px;
  }

  .hero-title {
    font-size: 68px;
  }

  .intro h2,
  .momentum h2,
  .download h2 {
    font-size: 52px;
  }

  .feature-card {
    grid-template-rows: 380px auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .page-width {
    width: min(100% - 32px, 560px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
    height: 72px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-red-line {
    width: 9px;
  }

  .hero-content {
    display: block;
    padding: 102px 0 88px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .eyebrow {
    padding: 8px 11px 7px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 0.86;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .store-link {
    display: none;
  }

  .availability {
    margin-top: 0;
    font-size: 13px;
  }

  .hero-match {
    margin-top: 30px;
    padding: 18px 16px 16px;
    box-shadow: 10px 13px 0 rgba(216, 54, 47, 0.94), 0 18px 45px rgba(0, 0, 0, 0.25);
  }

  .match-competition {
    margin: 16px 0 19px;
    font-size: 13px;
  }

  .match-teams {
    grid-template-columns: minmax(72px, 1fr) minmax(72px, auto) minmax(72px, 1fr);
  }

  .team-crest {
    width: 55px;
    height: 55px;
  }

  .match-team {
    font-size: 12px;
  }

  .match-center {
    padding-top: 8px;
  }

  .match-center strong {
    font-size: 26px;
  }

  .match-location {
    margin: 20px 0 12px;
  }

  .hero-rail {
    justify-content: flex-start;
    gap: 10px;
    min-height: 54px;
    overflow: hidden;
    padding-left: 22px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-rail i {
    width: 5px;
    height: 5px;
  }

  .section-space {
    padding: 76px 0;
  }

  .intro-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .intro h2,
  .momentum h2,
  .download h2 {
    font-size: 42px;
    line-height: 0.94;
  }

  .intro-copy {
    margin-top: 20px;
    font-size: 18px;
  }

  .intro-mark {
    display: none;
  }

  .showcase-heading {
    display: block;
    margin-bottom: 27px;
  }

  .showcase-heading p:last-child {
    margin: 0 0 18px;
    font-size: 20px;
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card,
  .feature-card-match,
  .feature-card-detail {
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr;
    min-height: 296px;
    margin-top: 0;
  }

  .feature-media {
    min-height: 296px;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 296px;
    padding: 23px 16px 18px;
    border-top: 0;
    border-left: 5px solid var(--forest);
  }

  .feature-card-feed .feature-content {
    border-left-color: var(--red);
  }

  .feature-content h3 {
    font-size: 22px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .momentum {
    min-height: 580px;
  }

  .momentum::before {
    top: 50px;
    right: -74px;
    width: 210px;
    height: 210px;
  }

  .momentum::after {
    right: -130px;
    bottom: -130px;
    width: 290px;
    height: 290px;
    border-width: 35px;
  }

  .momentum-content {
    padding: 88px 0;
  }

  .momentum h2 {
    font-size: 44px;
  }

  .momentum p:last-child {
    max-width: 345px;
    margin-top: 20px;
    font-size: 18px;
  }

  .download-layout {
    gap: 36px;
  }

  .download h2 {
    font-size: 45px;
  }

  .download-action {
    padding-bottom: 0;
  }

  .download-action p {
    font-size: 15px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 27px;
    font-size: 12px;
  }

  .mobile-download {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
  }

  .mobile-download img {
    display: block;
    width: 142px;
    height: 43px;
    object-fit: contain;
  }

  .mobile-download span {
    max-width: 106px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-reveal {
    animation: rise-in 700ms both;
  }

  .hero-reveal:nth-child(1) {
    animation-delay: 80ms;
  }

  .hero-reveal:nth-child(2) {
    animation-delay: 150ms;
  }

  .hero-reveal:nth-child(3) {
    animation-delay: 240ms;
  }

  .hero-reveal:nth-child(4) {
    animation-delay: 320ms;
  }

  .hero-reveal:nth-child(5) {
    animation-delay: 400ms;
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes live-pulse {
    50% {
      box-shadow: 0 0 0 8px rgba(216, 54, 47, 0);
    }
  }
}