:root {
  color-scheme: dark;
  --navy-950: #020a18;
  --navy-900: #06172c;
  --navy-850: #082340;
  --navy-800: #0c355e;
  --blue-500: #1e8fe8;
  --blue-100: #e8f7ff;
  --blue-150: #d7f0ff;
  --blue-200: #bce4ff;
  --ice-300: #8bd2ff;
  --ice-200: #d9f0ff;
  --white: #ffffff;
  --mist: #eff7ff;
  --muted: #b2c4d8;
  --line: rgba(151, 209, 255, 0.28);
  --red: #d71932;
  --gold: #c8a34a;
  --silver: #b8c6d5;
  --bronze: #b7774d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius: 4px;
  --header-h: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 10% 0%, rgba(30, 143, 232, 0.22), transparent 28rem),
    linear-gradient(180deg, #f6fbff, #d7f0ff 46%, #f4fbff),
    var(--blue-100);
}

a {
  color: inherit;
}

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

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

button,
a,
summary,
input,
select,
textarea {
  outline-color: var(--ice-300);
  outline-offset: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(200, 230, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ice-200);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--navy-950);
  background: var(--ice-200);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding: 0 1.5rem;
  background: rgba(2, 10, 24, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 52px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.65rem 0.58rem;
  color: var(--ice-200);
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(158, 216, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--navy-950);
  background: linear-gradient(180deg, #ffffff, var(--ice-200));
}

.button-ghost {
  color: var(--white);
  background: rgba(6, 23, 44, 0.78);
  border-color: var(--line);
}

.button-plain {
  color: var(--ice-200);
  background: transparent;
  border-color: rgba(158, 216, 255, 0.34);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(94vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 10, 24, 0.96), rgba(2, 10, 24, 0.68) 48%, rgba(2, 10, 24, 0.12)),
    linear-gradient(0deg, rgba(2, 10, 24, 0.98), rgba(2, 10, 24, 0.08) 44%);
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5.8rem 0 10.5rem;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  background: rgba(2, 10, 24, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-mark img {
  width: 54px;
  height: 66px;
  object-fit: contain;
}

.hero-mark span {
  color: var(--ice-200);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker,
.kicker {
  margin: 0 0 1rem;
  color: var(--ice-300);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--white);
  font-size: 5.05rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: var(--ice-200);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.proof-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  background: rgba(2, 10, 24, 0.9);
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 112px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

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

.proof-strip strong {
  display: block;
  color: var(--white);
  font-size: 2.45rem;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.section {
  padding: 6.5rem 0;
  border-top: 1px solid rgba(12, 53, 94, 0.12);
}

.section-dark {
  background:
    radial-gradient(circle at 86% 8%, rgba(30, 143, 232, 0.18), transparent 28rem),
    linear-gradient(180deg, #f5fbff, #d2efff),
    var(--blue-150);
}

.section-ice {
  color: var(--navy-950);
  background:
    linear-gradient(135deg, #e8f7ff, #c4e7fb),
    var(--blue-100);
}

.section-split {
  background:
    radial-gradient(circle at 18% 20%, rgba(30, 143, 232, 0.16), transparent 28rem),
    linear-gradient(180deg, #eef9ff, #d5f0ff);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.5rem;
  border-left: 6px solid var(--blue-500);
  padding-left: 1.35rem;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 3.65rem;
  line-height: 1.05;
  font-weight: 900;
}

.section-lead,
.section-heading p:not(.kicker),
.contact-copy p {
  color: #314762;
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-package .section-heading h2,
.section-package .section-heading p:not(.kicker),
.section-package .section-lead,
.section-contact .contact-copy h2,
.section-contact .contact-copy p,
.section-contact .section-heading h2,
.section-contact .section-heading p:not(.kicker) {
  color: var(--white);
}

.card-grid,
.three-card-grid,
.stats-grid,
.platform-grid,
.award-grid,
.campaign-grid,
.tier-grid,
.goal-grid,
.overview-grid,
.contact-card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.info-card,
.overview-card,
.goal-card,
.contact-card,
.platform-card,
.stat-card,
.tier-card {
  border-radius: var(--radius);
}

.info-card {
  position: relative;
  min-height: 190px;
  padding: 1.4rem;
  color: var(--ice-200);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.58), rgba(4, 18, 35, 0.9));
  border: 1px solid var(--line);
}

.card-line {
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 1rem;
  background: var(--blue-500);
}

.info-card h3,
.overview-card h3,
.goal-card h3,
.tier-card h3,
.platform-card strong,
.contact-card h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
}

.info-card p,
.overview-card p,
.goal-card p,
.tier-card p,
.platform-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-ice .info-card {
  color: var(--ice-200);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.58), rgba(4, 18, 35, 0.9));
  border-color: var(--line);
  box-shadow: none;
}

.section-ice .info-card h3,
.section-ice .platform-card strong {
  color: var(--white);
}

.section-ice .info-card p,
.section-ice .platform-card p {
  color: var(--muted);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  min-height: 154px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.76), rgba(4, 18, 35, 0.94));
  border: 1px solid var(--line);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.8rem;
  color: var(--ice-200);
  line-height: 1.45;
}

.wide-note,
.closing-line {
  margin: 2rem 0 0;
  padding: 1.2rem 1.4rem;
  color: var(--ice-200);
  line-height: 1.7;
  background: rgba(158, 216, 255, 0.1);
  border-left: 4px solid var(--blue-500);
}

.section-ice .wide-note,
.section-ice .closing-line {
  color: var(--ice-200);
  background: rgba(158, 216, 255, 0.1);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 3rem;
}

.split-grid.reverse {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
}

.image-panel {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-850);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 34, 0.02), rgba(3, 16, 34, 0.54));
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.league-proof {
  display: inline-flex;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.country-pill,
.award-chip,
.campaign-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.country-pill {
  color: var(--ice-200);
  background: rgba(255, 255, 255, 0.06);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.media-photo {
  min-height: 520px;
}

.platform-grid {
  grid-template-columns: repeat(2, 1fr);
}

.platform-card {
  padding: 1.35rem;
  color: var(--ice-200);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.76), rgba(4, 18, 35, 0.94));
  border: 1px solid var(--line);
}

.platform-card span {
  display: block;
  color: var(--blue-500);
  font-weight: 850;
}

.platform-card strong {
  color: var(--white);
  display: block;
  margin-top: 0.5rem;
  font-size: 1.55rem;
}

.media-value {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.5rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
}

.media-value h3 {
  margin: 0;
  font-size: 1.8rem;
}

.media-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.media-value-grid article {
  min-height: 108px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.media-value-grid strong {
  display: block;
  font-size: 1.4rem;
}

.media-value-grid span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

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

.award-chip {
  color: var(--ice-200);
  background: rgba(255, 255, 255, 0.07);
}

.campaign-chip {
  color: var(--ice-200);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  font-weight: 800;
}

.overview-grid {
  grid-template-columns: repeat(2, 1fr);
}

.overview-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.overview-card ul,
.tier-card ul,
.goal-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ice-200);
  line-height: 1.6;
}

.section-package {
  background:
    linear-gradient(180deg, rgba(3, 16, 34, 0.96), rgba(8, 32, 58, 0.98)),
    var(--navy-950);
}

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

.tier-card,
.goal-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    var(--navy-850);
}

.tier-card.gold {
  border-top: 4px solid var(--gold);
}

.tier-card.silver {
  border-top: 4px solid var(--silver);
}

.tier-card.bronze {
  border-top: 4px solid var(--bronze);
}

.tier-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--ice-300);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tier-status {
  min-height: 48px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 750;
}

.tier-price,
.goal-price {
  color: var(--white) !important;
  font-size: 1.55rem;
  font-weight: 900;
}

.tier-price small {
  color: var(--muted);
  font-size: 0.9rem;
}

.tier-value {
  margin-top: 1rem !important;
  color: var(--ice-200) !important;
}

details {
  margin: 1rem 0;
}

summary {
  cursor: pointer;
  color: var(--ice-200);
  font-weight: 850;
}

details[open] summary {
  margin-bottom: 0.75rem;
}

.comparison,
.price-shell {
  margin-top: 1.3rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.58), rgba(4, 18, 35, 0.9));
}

.table-wrap {
  overflow-x: auto;
}

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

.goal-card .button,
.tier-card .button {
  width: 100%;
  margin-top: 0.5rem;
}

.price-shell {
  color: var(--ice-200);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.7), rgba(4, 18, 35, 0.94));
  border-color: var(--line);
}

.price-shell summary {
  color: var(--white);
  font-size: 1.1rem;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.price-tab {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  color: var(--ice-200);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.price-tab.active {
  color: var(--white);
  background: var(--blue-500);
}

.price-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.price-table td,
.comparison td {
  color: var(--ice-200);
}

.section-contact {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(30, 143, 232, 0.16), transparent 26rem),
    linear-gradient(90deg, rgba(2, 10, 24, 0.98), rgba(8, 35, 64, 0.96)),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-copy a,
.contact-email,
.contact-card a {
  color: var(--ice-300);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.58), rgba(4, 18, 35, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--ice-200);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  color: var(--white);
  background: rgba(2, 10, 24, 0.88);
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--ice-200);
  font-weight: 800;
}

.contact-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 53, 94, 0.58), rgba(4, 18, 35, 0.9));
}

.contact-card span,
.site-footer span {
  display: block;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  color: var(--ice-200);
  background: #020b18;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.mobile-sticky-cta,
.back-to-top {
  position: fixed;
  z-index: 70;
}

.mobile-sticky-cta {
  display: none;
}

.back-to-top {
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background: var(--ice-200);
  border: 0;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    background: rgba(3, 16, 34, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .card-grid,
  .stats-grid,
  .tier-grid,
  .goal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .split-grid.reverse,
  .media-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 0.9rem;
  }

  .brand span {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 4.8rem;
  }

  .hero-inner {
    width: min(100% - 28px, 1160px);
    padding: 5.4rem 0 1rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .proof-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin: 0 auto;
    transform: none;
  }

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

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .proof-strip strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .card-grid,
  .three-card-grid,
  .stats-grid,
  .platform-grid,
  .award-grid,
  .campaign-grid,
  .tier-grid,
  .goal-grid,
  .overview-grid,
  .media-value,
  .media-value-grid,
  .country-grid,
  .contact-card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .media-photo {
    min-height: 320px;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-row,
  .form-row-full {
    grid-column: auto;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-sticky-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: var(--navy-950);
    background: var(--ice-200);
    border-radius: 6px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: var(--shadow);
  }

  .back-to-top {
    right: 1rem;
    bottom: 4.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* White-base redesign: PPT-like blue elements on a clean background. */
:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --paper: #ffffff;
  --pale-blue: #e9f7ff;
  --pale-blue-2: #d8f0ff;
  --ppt-blue: #0b3764;
  --ppt-blue-2: #144f86;
  --ppt-line: #8fd2ff;
  --text-dark: #071b31;
  --text-mid: #38536c;
  --soft-shadow: 0 18px 44px rgba(7, 27, 49, 0.12);
  --shadow: var(--soft-shadow);
  --line: rgba(11, 55, 100, 0.18);
}

html,
body {
  background: var(--page-bg);
}

body {
  color: var(--text-dark);
}

th {
  color: var(--ppt-blue);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 55, 100, 0.16);
  box-shadow: 0 8px 28px rgba(7, 27, 49, 0.08);
}

.brand strong {
  color: var(--ppt-blue);
}

.brand small,
.site-nav a {
  color: var(--text-mid);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ppt-blue);
  background: var(--pale-blue);
}

.nav-toggle {
  background: var(--pale-blue);
  border-color: rgba(11, 55, 100, 0.2);
}

.nav-toggle span:not(.sr-only) {
  background: var(--ppt-blue);
}

.header-cta,
.button-primary,
.mobile-sticky-cta,
.back-to-top {
  color: var(--white);
  background: var(--ppt-blue);
}

.button-ghost {
  color: var(--white);
  background: rgba(11, 55, 100, 0.88);
  border-color: rgba(143, 210, 255, 0.42);
}

.button-plain {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero {
  min-height: calc(88vh - var(--header-h));
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 18, 35, 0.9), rgba(6, 40, 75, 0.62) 50%, rgba(6, 40, 75, 0.1)),
    linear-gradient(0deg, rgba(3, 18, 35, 0.64), rgba(3, 18, 35, 0.04) 48%);
}

.hero-mark {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(143, 210, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.hero-mark span {
  color: var(--ppt-blue);
}

.hero-kicker,
.kicker {
  color: var(--blue-500);
}

.hero .hero-kicker {
  color: var(--ice-200);
}

.proof-strip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.proof-strip strong {
  color: var(--ppt-blue);
}

.proof-strip span {
  color: var(--text-mid);
}

.section,
.section-dark,
.section-ice,
.section-split,
.section-package,
.section-contact {
  color: var(--text-dark);
  background: var(--page-bg);
  border-top: 1px solid rgba(11, 55, 100, 0.1);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff, #f2fbff);
}

.section-heading {
  border-left-color: var(--ppt-line);
}

.section-heading h2,
.contact-copy h2,
.section-package .section-heading h2,
.section-contact .contact-copy h2,
.section-contact .section-heading h2 {
  color: var(--ppt-blue);
}

.section-lead,
.section-heading p:not(.kicker),
.contact-copy p,
.section-package .section-heading p:not(.kicker),
.section-package .section-lead,
.section-contact .contact-copy p,
.section-contact .section-heading p:not(.kicker) {
  color: var(--text-mid);
}

.info-card,
.section-ice .info-card,
.overview-card,
.goal-card,
.contact-card {
  overflow: hidden;
  color: var(--text-dark);
  background: var(--paper);
  border: 1px solid rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.info-card {
  padding: 0;
}

.card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 4px solid var(--ppt-line);
}

.card-line {
  width: 52px;
  height: 4px;
  margin: 1.15rem 1.25rem 1rem;
  background: var(--ppt-line);
}

.info-card h3,
.overview-card h3,
.goal-card h3,
.contact-card h3,
.section-ice .info-card h3 {
  color: var(--ppt-blue);
}

.info-card h3,
.info-card p {
  padding: 0 1.25rem;
}

.info-card p {
  padding-bottom: 1.3rem;
}

.info-card p,
.overview-card p,
.goal-card p,
.contact-card p,
.section-ice .info-card p {
  color: var(--text-mid);
}

.stats-grid {
  gap: 1.1rem;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff, var(--pale-blue));
  border: 1px solid rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.stat-card strong {
  color: var(--ppt-blue);
}

.stat-card span {
  color: var(--text-mid);
}

.wide-note,
.closing-line,
.section-ice .wide-note,
.section-ice .closing-line {
  color: var(--ppt-blue);
  background: var(--pale-blue);
  border-left-color: var(--ppt-line);
}

.image-panel {
  border-color: rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.league-proof,
.country-pill {
  color: var(--ppt-blue);
  background: var(--pale-blue);
  border-color: rgba(11, 55, 100, 0.16);
}

.platform-card {
  overflow: hidden;
  padding: 0;
  color: var(--text-dark);
  background: var(--paper);
  border: 1px solid rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.platform-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-bottom: 4px solid var(--ppt-line);
}

.platform-card span,
.platform-card strong,
.platform-card p {
  display: block;
  padding-inline: 1.2rem;
}

.platform-card span {
  margin-top: 1.05rem;
  color: var(--blue-500);
}

.platform-card strong,
.section-ice .platform-card strong {
  color: var(--ppt-blue);
}

.platform-card p,
.section-ice .platform-card p {
  color: var(--text-mid);
  padding-bottom: 1.25rem;
}

.media-value {
  color: var(--white);
  background: var(--ppt-blue);
  box-shadow: var(--soft-shadow);
}

.media-value .kicker {
  color: var(--ppt-line);
}

.media-value-grid article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.award-chip {
  color: var(--ppt-blue);
  background: var(--pale-blue);
  border-color: rgba(11, 55, 100, 0.16);
}

.ambassador-logo-grid,
.activation-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.ambassador-logo-grid figure,
.activation-gallery figure,
.campaign-chip {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.ambassador-logo-grid img,
.activation-gallery img,
.campaign-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambassador-logo-grid figcaption,
.activation-gallery figcaption,
.campaign-chip span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(6, 23, 44, 0.82);
  border-left: 4px solid var(--ppt-line);
  font-weight: 850;
}

.ambassador-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.ambassador-logo-grid figure {
  display: grid;
  min-height: 180px;
  margin: 0;
  padding: 1.05rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--pale-blue));
  box-shadow: var(--soft-shadow);
}

.ambassador-logo-grid img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(6, 23, 44, 0.13));
}

.ambassador-logo-grid figcaption {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  align-self: end;
  justify-self: stretch;
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  color: var(--ppt-blue);
  background: rgba(255, 255, 255, 0.82);
  border-left: 4px solid var(--ppt-line);
  font-weight: 850;
  text-align: center;
}

.activation-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.activation-gallery figure,
.campaign-chip {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.activation-gallery img,
.campaign-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activation-gallery figcaption,
.campaign-chip span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(6, 23, 44, 0.82);
  border-left: 4px solid var(--ppt-line);
  font-weight: 850;
}

.sportmarketing-context-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.sportmarketing-context-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.overview-card {
  background: var(--pale-blue);
}

.overview-card ul,
.goal-card ul {
  color: var(--text-mid);
}

.tier-card {
  background: var(--ppt-blue);
  border-color: rgba(143, 210, 255, 0.36);
  box-shadow: var(--soft-shadow);
}

.tier-card h3,
.tier-card p,
.tier-card ul {
  color: var(--white);
}

.tier-label,
.tier-value,
.tier-card ul,
.tier-price small,
summary {
  color: var(--ice-200) !important;
}

.goal-card {
  background: linear-gradient(180deg, #ffffff, var(--pale-blue));
}

.goal-card .button-ghost {
  background: var(--ppt-blue);
}

.comparison,
.price-shell {
  color: var(--text-dark);
  background: var(--paper);
  border-color: rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

.price-shell summary {
  color: var(--ppt-blue);
}

.price-tab {
  color: var(--ppt-blue);
  background: var(--pale-blue);
  border-color: rgba(11, 55, 100, 0.16);
}

.price-tab.active {
  color: var(--white);
  background: var(--ppt-blue);
}

.price-note,
.price-table td,
.comparison td {
  color: var(--text-mid);
}

.contact-form,
.contact-card {
  color: var(--text-dark);
  background: var(--pale-blue);
  border-color: rgba(11, 55, 100, 0.16);
  box-shadow: var(--soft-shadow);
}

label {
  color: var(--ppt-blue);
}

input,
select,
textarea {
  color: var(--text-dark);
  background: var(--white);
  border-color: rgba(11, 55, 100, 0.2);
}

.contact-copy a,
.contact-email,
.contact-card a {
  color: var(--ppt-blue);
}

.contact-card span,
.site-footer span {
  color: var(--text-mid);
}

.site-footer {
  color: var(--text-dark);
  background: var(--white);
  border-top-color: rgba(11, 55, 100, 0.14);
}

.footer-inner p {
  color: var(--text-mid);
}

.site-nav.open {
  background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1080px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }
}

@media (max-width: 760px) {
  .hero-mark {
    max-width: 100%;
  }

  .card-image,
  .platform-card img {
    height: 185px;
  }

  .ambassador-logo-grid,
  .activation-gallery {
    grid-template-columns: 1fr;
  }

  .campaign-chip {
    min-height: 220px;
  }
}

.sportmarketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 2.2rem;
  align-items: start;
}

.sportmarketing-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.sportmarketing-highlight {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff, var(--pale-blue));
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-top: 4px solid var(--ppt-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.sportmarketing-highlight span,
.sportmarketing-proof-grid span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportmarketing-highlight h3 {
  margin: 0 0 0.75rem;
  color: var(--ppt-blue);
  font-size: 1.28rem;
  line-height: 1.2;
}

.sportmarketing-highlight p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.65;
}

.sportmarketing-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding: 1.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 23, 44, 0.94), rgba(11, 55, 100, 0.88)),
    var(--ppt-blue);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.sportmarketing-proof-shell h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.08;
}

.sportmarketing-proof-shell p {
  margin: 0;
  color: var(--ice-200);
  line-height: 1.65;
}

.sportmarketing-proof-shell .kicker {
  color: var(--ppt-line);
}

.sportmarketing-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.sportmarketing-proof-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.sportmarketing-proof-grid h4 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1rem;
}

.sportmarketing-proof-grid p {
  color: rgba(217, 240, 255, 0.9);
  font-size: 0.94rem;
}

#elismeresek .award-grid {
  margin-top: 1.2rem;
}

@media (max-width: 1080px) {
  .sportmarketing-hero,
  .sportmarketing-proof-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sportmarketing-highlight-grid,
  .sportmarketing-proof-grid {
    grid-template-columns: 1fr;
  }

  .sportmarketing-proof-shell {
    padding: 1rem;
  }

  .sportmarketing-proof-shell h3 {
    font-size: 1.5rem;
  }
}

.hero .hero-mark {
  display: none !important;
}

@media (max-width: 760px) {
  .ambassador-logo-grid {
    grid-template-columns: 1fr;
  }

  .ambassador-logo-grid figure {
    min-height: 165px;
  }

  .sportmarketing-context-image img {
    min-height: 240px;
  }
}


#celcsomagok .goal-card {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(13, 53, 94, 0.72), rgba(4, 18, 35, 0.95)),
    var(--navy-850) !important;
  border-color: rgba(158, 216, 255, 0.22);
  box-shadow: none;
}

#celcsomagok .goal-card h3 {
  color: var(--white);
}

#celcsomagok .goal-card p,
#celcsomagok .goal-card ul {
  color: var(--ice-200) !important;
}

#celcsomagok .goal-price {
  display: block;
  margin: 0.3rem 0 0.95rem;
  padding: 0;
  color: var(--ppt-line) !important;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  font-size: 1.28rem;
  line-height: 1.25;
}

#celcsomagok .goal-card .button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(158, 216, 255, 0.34);
}

#celcsomagok .goal-card .button-ghost:hover {
  background: var(--ppt-blue);
}


.price-shell summary {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--white) !important;
  background: linear-gradient(180deg, #0b3764, #06172c);
  border: 1px solid rgba(158, 216, 255, 0.28);
  border-radius: var(--radius);
}

.price-shell[open] summary {
  border-color: rgba(158, 216, 255, 0.42);
}


.price-table a {
  color: var(--ppt-blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.experience-table-section {
  position: relative;
}

.experience-table-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}

.experience-table-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: 6px;
  background: var(--navy-900);
  box-shadow: var(--soft-shadow);
}

.experience-table-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.experience-table-limit {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  max-width: calc(100% - 2.4rem);
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(3, 17, 33, 0.9);
  border: 1px solid rgba(158, 216, 255, 0.28);
  border-radius: 6px;
}

.experience-table-limit span {
  display: block;
  color: var(--ice-200);
  font-size: 0.86rem;
  font-weight: 850;
}

.experience-table-limit strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.05;
}

.experience-table-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.experience-table-content .section-heading {
  margin-bottom: 1rem;
}

.experience-table-content p {
  color: var(--text-mid);
  line-height: 1.65;
}

.experience-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 1.2rem 0 1.35rem;
  list-style: none;
}

.experience-chip-grid li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.68rem 0.78rem;
  color: var(--ppt-blue);
  background: var(--pale-blue);
  border: 1px solid rgba(11, 55, 100, 0.16);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.25;
}

.experience-table-content .button {
  align-self: flex-start;
}

.experience-table-note {
  margin: 1rem 0 0;
  color: var(--text-soft) !important;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .experience-table-grid {
    grid-template-columns: 1fr;
  }

  .experience-table-media,
  .experience-table-media img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .experience-table-media,
  .experience-table-media img {
    min-height: 320px;
  }

  .experience-chip-grid {
    grid-template-columns: 1fr;
  }

  .experience-table-content .button {
    width: 100%;
  }
}
