@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #01474d;
  --bg-deep: #012d31;
  --bg-soft: #01383d;
  --line: #0b848f;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --accent: #eb5757;
  --accent-dark: #c84d4d;
  --steel: #415a6c;
  --gold: #d6a24a;
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
ul,
ol {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.4rem, 2.3vw, 2.35rem);
}

h3 {
  font-size: 1.02rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(11, 132, 143, 0.42);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  border-color: var(--accent);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

.menu-button span {
  display: block;
}

.menu-button span:not(.menu-label) {
  width: 18px;
  height: 2px;
  margin-bottom: 4px;
  background: currentColor;
}

.menu-label {
  margin-left: 0.25rem;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 36%;
  background: url("../images/cover-background.png") left center / cover no-repeat;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.82fr);
  gap: 2rem;
  align-items: end;
  min-height: 470px;
}

.hero-copy {
  position: relative;
  padding: 4.4rem 0 4rem;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  left: -120px;
  width: 467px;
  height: 36px;
  background: url("../images/cover-element-1.png") center / contain no-repeat;
}

.hero-copy::after {
  content: "";
  position: absolute;
  bottom: 3.5rem;
  left: 220px;
  width: 467px;
  height: 36px;
  background: url("../images/cover-element-2.png") center / contain no-repeat;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: #7ecad0;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.meta-list {
  display: grid;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.meta-list strong {
  color: #fff;
}

.meta-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 1rem 0 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1.25rem;
}

.action-row-left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

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

.button-secondary {
  background: transparent;
}

.button-ghost {
  background: var(--steel);
  border-color: var(--steel);
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--accent);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--steel);
}

.trust-strip,
.check-list,
.plain-list,
.source-list,
.number-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-strip li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel-card,
.panel,
.content-card,
.fact-card,
.note-card,
.side-quote,
.page-hero-card,
.sidebar-card,
.article-card,
.not-found-card {
  border: 1px solid rgba(11, 132, 143, 0.34);
  background: var(--bg-deep);
  box-shadow: none;
}

.hero-panel-card,
.panel,
.content-card,
.fact-card,
.note-card,
.side-quote,
.page-hero-card,
.sidebar-card,
.article-card {
  padding: 1.5rem;
}

.hero-panel-card {
  position: relative;
  min-height: 100%;
  background: rgba(1, 45, 49, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-panel-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-panel-card h2 {
  max-width: 9ch;
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
}

.hero-visual {
  width: min(100%, 380px);
  margin: 0 0 1rem auto;
}

.check-list li,
.plain-list li,
.source-list li,
.number-list li {
  position: relative;
  padding-left: 1.15rem;
}

.check-list li + li,
.plain-list li + li,
.source-list li + li,
.number-list li + li {
  margin-top: 0.8rem;
}

.check-list li::before,
.plain-list li::before,
.source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

.number-list {
  counter-reset: ordered;
}

.number-list li {
  padding-left: 2rem;
}

.number-list li::before {
  counter-increment: ordered;
  content: counter(ordered);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.microcopy,
.inline-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.sports-strip {
  padding: 0 0 1.4rem;
  background: var(--bg-deep);
}

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

.sports-strip-list li {
  flex: 1 1 170px;
  min-width: 170px;
}

.sports-strip-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 20px;
  background: url("../images/sports-frame.png") center / 100% 100% no-repeat;
  font-weight: 700;
  text-transform: uppercase;
}

.sports-strip-list img {
  width: 24px;
  height: 24px;
}

.section {
  padding: 3.25rem 0;
  background: var(--bg);
}

.section-soft {
  background: var(--bg-deep);
}

.section-head {
  max-width: 58rem;
  margin-bottom: 1.8rem;
}

.split-grid,
.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel-accent {
  background:
    linear-gradient(0deg, rgba(1, 45, 49, 0.92), rgba(1, 45, 49, 0.92)),
    url("../images/benefits-background.png") right center / cover no-repeat;
  border-color: rgba(235, 87, 87, 0.4);
}

.fact-card {
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(11, 132, 143, 0.06), rgba(1, 45, 49, 0.95));
}

.fact-card h3 {
  font-size: 0.98rem;
}

.fact-card-warning {
  border-top-color: #fff;
  background: linear-gradient(180deg, rgba(235, 87, 87, 0.1), rgba(1, 45, 49, 0.95));
}

.content-card {
  border-left: 3px solid var(--accent);
  min-height: 100%;
}

.content-card h2,
.panel h2,
.note-card h2,
.brand-banner-box h2,
.article-card h2,
.page-hero-card h1 {
  max-width: 18ch;
}

.brand-banner {
  padding: 1.5rem 0 3.25rem;
  background: var(--bg);
}

.brand-banner-box {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(0deg, rgba(1, 45, 49, 0.86), rgba(1, 45, 49, 0.86)),
    url("../images/bonus-background.png") center / cover no-repeat;
}

.brand-banner-box h2 {
  max-width: 18ch;
}

.note-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}

.note-card {
  background:
    linear-gradient(0deg, rgba(1, 45, 49, 0.92), rgba(1, 45, 49, 0.92)),
    url("../images/benefits-background.png") right top / cover no-repeat;
}

.side-quote {
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.side-quote img,
.sidebar-card img {
  width: min(260px, 80%);
  margin: 0 auto 1rem;
}

blockquote {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.panel-timeline {
  position: relative;
}

.panel-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  position: relative;
  border: 0;
  background: transparent;
}

.faq-item::before,
.faq-item::after {
  content: "";
  position: absolute;
  top: 0;
  width: 64px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-item::before {
  left: -15px;
  background-image: url("../images/faq-element-1.png");
}

.faq-item::after {
  right: -15px;
  background-image: url("../images/faq-element-2.png");
}

.faq-question {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1rem 4.5rem 1rem 6.5rem;
  border: 0;
  background: url("../images/faq-background.png") center / 100% 100% repeat-y;
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 4.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 9px;
  background: url("../images/answer-hidden.svg") center / contain no-repeat;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.faq-question[aria-expanded="true"]::before {
  background-image: url("../images/answer-visible.svg");
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-answer {
  padding: 1rem 1.5rem 1.4rem 6.5rem;
  border-left: 1px solid rgba(235, 87, 87, 0.5);
  color: rgba(255, 255, 255, 0.8);
  background: var(--bg-deep);
}

.source-list a,
.link-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.4;
}

.page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.page-breadcrumbs [aria-current="page"] {
  color: #fff;
}

.page-hero-card {
  background:
    linear-gradient(0deg, rgba(1, 45, 49, 0.85), rgba(1, 45, 49, 0.85)),
    url("../images/cover-background.png") right center / cover no-repeat;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
}

.article-stack {
  display: grid;
  gap: 1rem;
}

.article-card {
  border-left: 3px solid var(--accent);
}

.sidebar-card {
  align-self: start;
}

.status-card {
  background:
    linear-gradient(0deg, rgba(1, 45, 49, 0.84), rgba(1, 45, 49, 0.84)),
    url("../images/bonus-background.png") center / cover no-repeat;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.callout {
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
  color: #fff;
}

.link-list {
  display: grid;
  gap: 0.75rem;
}

.content-shell {
  min-height: 60vh;
  padding: 3rem 0 4rem;
  background: var(--bg);
}

.site-footer {
  padding: 2rem 0 1.5rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(11, 132, 143, 0.42);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 1.25rem;
  align-items: start;
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer-copy {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.not-found-card {
  max-width: 42rem;
  padding: 2rem;
}

@media (max-width: 1100px) {
  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }

  .editorial-grid,
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 1rem;
    background: var(--bg-deep);
    border: 1px solid rgba(11, 132, 143, 0.42);
  }

  .site-nav a {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .hero-grid,
  .split-grid,
  .sources-grid,
  .note-layout,
  .page-hero,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    inset: 0;
    opacity: 0.32;
    background-position: center right;
  }

  .hero-panel-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .hero-copy {
    padding: 2.5rem 0 2rem;
  }

  .hero-panel-card,
  .panel,
  .content-card,
  .fact-card,
  .note-card,
  .side-quote,
  .page-hero-card,
  .sidebar-card,
  .article-card,
  .not-found-card {
    padding: 1.2rem;
  }

  .editorial-grid,
  .facts-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem 3.5rem 1rem 4.6rem;
    font-size: 0.95rem;
  }

  .faq-question::before {
    left: 3rem;
  }

  .faq-answer {
    padding: 1rem 1.2rem 1.2rem 1.4rem;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 1rem), var(--wrap));
  }

  .sports-strip-list li {
    min-width: calc(50% - 5px);
    flex-basis: calc(50% - 5px);
  }

  .sports-strip-list span {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .meta-list-inline,
  .action-row,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
