@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Italic.ttf") format("truetype");
  font-style: italic;
}

:root {
  --fit-red: #f15162;
  --charcoal: #1d2228;
  --steel: #303740;
  --mint: #41d8b4;
  --mint-text: #1f9e81;
  --orange: #ff9d57;
  --orange-text: #e8842f;
  --midnight: #29294c;
  --muted: #657184;
  --line: #dfe5ec;
  --paper: #f6f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #dfe5ec;
  color: var(--midnight);
  font-family: "Poppins", Arial, sans-serif;
}

.deck {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 28px;
}

.slide {
  position: relative;
  width: min(96vw, 1280px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgb(19 27 36 / 24%);
}

.slide-cover {
  background:
    radial-gradient(circle at 76% 38%, rgb(65 216 180 / 18%), transparent 28%),
    linear-gradient(135deg, #1d2228 0%, #303740 100%);
  color: var(--white);
}

.slide-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/bg_main.png");
  background-size: cover;
  opacity: .28;
}

.slide-header,
.feature-top,
.cover-copy,
.football-scene,
.cover-footer,
.feature-grid,
.proof-strip,
.slide-footer {
  position: relative;
  z-index: 1;
}

.slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 58px 0;
}

.logo {
  display: block;
  width: 160px;
  height: auto;
}

.chip {
  border: 1px solid rgb(65 216 180 / 52%);
  border-radius: 999px;
  background: rgb(65 216 180 / 10%);
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 9px 17px;
}

.heart-mark {
  position: absolute;
  right: 58px;
  top: 118px;
  width: 440px;
  opacity: .35;
}

.cover-copy {
  max-width: 710px;
  padding: 82px 0 0 62px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mint {
  color: var(--mint);
}

.red {
  color: var(--fit-red);
}

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

h1 {
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--mint);
}

.subline {
  max-width: 640px;
  color: rgb(255 255 255 / 82%);
  font-size: 20px;
  line-height: 1.45;
}

.caption-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
  font-weight: 500;
}

.caption-row span + span::before {
  margin-right: 12px;
  color: var(--fit-red);
  content: "·";
}

.football-scene {
  position: absolute;
  right: 62px;
  bottom: 82px;
  width: 440px;
  height: 250px;
}

.pitch {
  position: absolute;
  inset: 0;
  border: 2px solid rgb(255 255 255 / 62%);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgb(65 216 180 / 18%) 0 44px, rgb(65 216 180 / 7%) 44px 88px),
    linear-gradient(135deg, rgb(65 216 180 / 16%), rgb(241 81 98 / 10%));
  transform: perspective(700px) rotateX(56deg) rotateZ(-8deg);
  transform-origin: center;
  box-shadow: 0 26px 70px rgb(0 0 0 / 28%);
}

.center-line,
.center-circle,
.goal,
.ball {
  position: absolute;
  display: block;
}

.center-line {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgb(255 255 255 / 48%);
}

.center-circle {
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  border: 2px solid rgb(255 255 255 / 52%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.goal {
  top: 34%;
  width: 38px;
  height: 80px;
  border: 2px solid rgb(255 255 255 / 52%);
}

.goal-left {
  left: -2px;
  border-left: 0;
}

.goal-right {
  right: -2px;
  border-right: 0;
}

.ball {
  right: 118px;
  bottom: 78px;
  width: 28px;
  height: 28px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--white) 0 22%, var(--fit-red) 23% 42%, var(--charcoal) 43% 100%);
  box-shadow: 0 9px 20px rgb(0 0 0 / 28%);
}

.cover-footer {
  position: absolute;
  left: 62px;
  bottom: 38px;
  display: grid;
  gap: 2px;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cover-footer strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.slide-feature {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 92%), rgb(246 248 251 / 96%)),
    url("assets/bg_light.png");
  background-size: cover;
}

.feature-top {
  padding: 34px 58px 0;
}

.dark-logo {
  position: absolute;
  top: 34px;
  right: 58px;
  width: 142px;
}

.feature-top .eyebrow {
  margin-bottom: 10px;
}

h2 {
  width: 760px;
  margin-bottom: 10px;
  color: var(--midnight);
  font-size: 39px;
  font-weight: 500;
  line-height: 1.12;
}

h2 span {
  color: var(--fit-red);
}

.selling-line {
  width: 690px;
  color: #526070;
  font-size: 16px;
  font-style: italic;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 58px 0;
}

.panel {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 12px 34px rgb(41 41 76 / 10%);
  padding: 24px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.icon-circle {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
}

.icon-circle img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.red-bg {
  background: var(--fit-red);
}

.mint-bg {
  background: var(--mint);
}

.orange-bg {
  background: var(--orange);
}

h3 {
  margin: 0;
  color: var(--midnight);
  font-size: 18px;
  font-weight: 600;
}

.panel p {
  min-height: 76px;
  color: #4f5c6c;
  font-size: 14px;
  line-height: 1.48;
}

.panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel li {
  position: relative;
  padding-left: 20px;
  color: var(--midnight);
  font-size: 13px;
  line-height: 1.35;
}

.panel li::before {
  position: absolute;
  top: .48em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.proof-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 58px 0;
  border: 1px solid rgb(241 81 98 / 20%);
  border-radius: 8px;
  background: rgb(241 81 98 / 7%);
  padding: 17px 20px;
}

.proof-strip img {
  width: 34px;
  height: 34px;
}

.proof-strip div {
  display: grid;
  gap: 3px;
}

.proof-strip strong {
  color: var(--midnight);
  font-size: 16px;
  font-weight: 600;
}

.proof-strip span {
  color: #596579;
  font-size: 13px;
}

.slide-footer {
  position: absolute;
  right: 58px;
  bottom: 30px;
  left: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #738094;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.slide-footer img {
  width: 100px;
}

.deck-nav {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.deck-nav button {
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  font: 600 13px "Poppins", Arial, sans-serif;
}

.deck-nav button.active {
  background: var(--fit-red);
}

@media (max-width: 900px) {
  .deck {
    padding: 12px;
  }

  .slide {
    width: 100%;
  }

  .slide-header,
  .feature-top {
    padding: 22px 28px 0;
  }

  .logo {
    width: 112px;
  }

  .chip {
    font-size: 9px;
    padding: 6px 10px;
  }

  .cover-copy {
    max-width: 58%;
    padding: 42px 0 0 30px;
  }

  h1 {
    font-size: 34px;
  }

  .subline {
    font-size: 12px;
  }

  .caption-row {
    font-size: 9px;
    gap: 6px;
  }

  .football-scene {
    right: 24px;
    bottom: 58px;
    width: 34%;
    height: 31%;
  }

  .heart-mark {
    width: 34%;
    right: 24px;
    top: 84px;
  }

  .cover-footer {
    left: 30px;
    bottom: 20px;
    font-size: 8px;
  }

  .cover-footer strong {
    font-size: 10px;
  }

  .dark-logo {
    top: 22px;
    right: 28px;
    width: 94px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h2 {
    width: 65%;
    font-size: 22px;
  }

  .selling-line {
    width: 60%;
    font-size: 10px;
  }

  .feature-grid {
    gap: 8px;
    padding: 12px 28px 0;
  }

  .panel {
    min-height: 142px;
    padding: 10px;
  }

  .panel-title {
    gap: 7px;
    margin-bottom: 7px;
  }

  .icon-circle {
    width: 28px;
    height: 28px;
  }

  .icon-circle img {
    width: 15px;
    height: 15px;
  }

  h3 {
    font-size: 10px;
  }

  .panel p,
  .panel li,
  .proof-strip span {
    font-size: 7px;
  }

  .panel p {
    min-height: 38px;
  }

  .panel ul {
    gap: 4px;
  }

  .panel li {
    padding-left: 11px;
  }

  .panel li::before {
    width: 5px;
    height: 5px;
  }

  .proof-strip {
    gap: 8px;
    margin: 10px 28px 0;
    padding: 8px 10px;
  }

  .proof-strip img {
    width: 18px;
    height: 18px;
  }

  .proof-strip strong {
    font-size: 9px;
  }

  .slide-footer {
    right: 28px;
    bottom: 14px;
    left: 28px;
    font-size: 7px;
  }

  .slide-footer img {
    width: 60px;
  }
}

@media print {
  @page {
    size: 16in 9in landscape;
    margin: 0;
  }

  body {
    background: white;
  }

  .deck {
    display: block;
    padding: 0;
  }

  .slide {
    width: 16in;
    height: 9in;
    border-radius: 0;
    box-shadow: none;
    page-break-after: always;
  }

  .deck-nav {
    display: none;
  }
}
