:root {
  --blue: #123dd7;
  --blue-dark: #09257f;
  --lime: #c9f238;
  --ink: #10204a;
  --muted: #62708c;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dde4f1;
  --orange: #ff7b44;
  --shadow: 0 24px 80px rgba(14, 34, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 123, 68, 0.16), transparent 28%),
    linear-gradient(135deg, #eef3ff 0%, #f7f8fc 45%, #eef8fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
  display: grid;
  place-items: center;
}

.hero {
  width: min(100%, 1180px);
  min-height: min(760px, calc(100vh - 56px));
  padding: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(18, 61, 215, 0.96), rgba(9, 37, 127, 0.98)),
    var(--blue);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.topbar,
.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(128px, 15vw, 176px);
  height: auto;
  display: block;
}

.badge {
  padding: 8px 14px;
  color: var(--blue-dark);
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  /*letter-spacing: -0.08em;*/
}

.intro {
  max-width: 650px;
  margin: 26px 0 34px;
  color: #e9eeff;
  font-size: clamp(17px, 2vw, 20px);
}

.actions {
  max-width: 650px;
  display: grid;
  gap: 14px;
}

.test-cta {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(2, 14, 73, 0.2);
  backdrop-filter: blur(10px);
}

.test-cta-copy {
  min-width: 0;
}

.test-cta-label {
  margin-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-cta-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 242, 56, 0.14);
}

.test-cta p {
  margin: 0;
  color: #e9eeff;
  font-size: 15px;
  line-height: 1.45;
}

.test-cta strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.test-cta-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.club-cta {
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 14, 73, 0.16);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.club-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(2, 14, 73, 0.22);
}

.club-cta:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.club-cta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--lime);
  border-radius: 12px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.club-cta-copy {
  display: grid;
  line-height: 1.35;
}

.club-cta-label {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.club-cta-copy strong {
  margin-bottom: 2px;
  font-size: 17px;
}

.club-cta-copy > span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.club-cta-arrow {
  color: var(--blue);
  font-size: 24px;
  transition: transform 160ms ease;
}

.club-cta:hover .club-cta-arrow {
  transform: translateX(4px);
}

.button {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.button-primary {
  color: var(--blue-dark);
  background: var(--lime);
  box-shadow: 0 10px 26px rgba(201, 242, 56, 0.2);
}

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

.hero-side {
  width: 100%;
  display: grid;
  gap: 18px;
}

.sport-panel {
  width: 100%;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(3, 13, 48, 0.18);
}

.panel-header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.pulse {
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(201, 242, 56, 0.22);
}

.feature-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  min-height: 66px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
  font-weight: 800;
}

.feature-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.newsletter-card {
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--white), #f8ffe1);
  border: 1px solid rgba(201, 242, 56, 0.55);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(3, 13, 48, 0.16);
}

.newsletter-kicker {
  margin: 0 0 3px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.newsletter-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.newsletter-copy {
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8px;
}

.newsletter-fields label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-fields input {
  width: 100%;
  min-height: 43px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-size: 13px;
}

.newsletter-fields input:focus,
.newsletter-consent input:focus-visible {
  outline: 3px solid rgba(18, 61, 215, 0.18);
  border-color: var(--blue);
}

.newsletter-consent {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.newsletter-consent input {
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.newsletter-consent a {
  color: var(--blue);
  font-weight: 750;
}

.newsletter-button {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--blue-dark);
  background: var(--lime);
  border: 0;
  border-radius: 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.newsletter-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 242, 56, 0.28);
}

.newsletter-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.newsletter-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.newsletter-status.is-success {
  color: #387100;
}

.newsletter-status.is-error {
  color: #b42318;
}

.hero-footer {
  padding-top: 28px;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.hero-footer p {
  margin: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  align-items: start;
  gap: 32px;
}

.footer-location strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.footer-location p {
  margin-top: 3px;
}

.footer-tags {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-tags span {
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
}

.footer-contact {
  padding: 15px 18px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.footer-contact > span {
  font-size: 12px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 12px;
}

.footer-legal a,
.footer-legal button {
  color: rgba(255, 255, 255, 0.72);
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--white);
}

@media (max-width: 820px) {
  .page-shell {
    padding: 12px;
  }

  .hero {
    min-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .topbar,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .brand-logo {
    width: 132px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -0.08em;
  }

  .sport-panel {
    padding: 18px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .actions {
    width: 100%;
  }

  .test-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .club-cta {
    align-items: start;
  }
}
