/* HOME PAGE */

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background:
    radial-gradient(circle at 75% 40%, rgba(74, 149, 64, 0.22), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(77, 140, 216, 0.16), transparent 36%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
  padding: 60px 0 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px 42px;
  align-items: start;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  font-size: clamp(3.35rem, 4.45vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin: 0 0 22px;
  max-width: 640px;
}

.green,
.hero h1 span.green {
  color: var(--lime);
}

.hero-sub {
  font-size: clamp(1.34rem, 2.25vw, 1.85rem);
  line-height: 1.23;
  color: #f0e7b4;
  font-weight: 800;
  max-width: 620px;
  margin: 0 0 18px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  margin: 0 0 22px;
  max-width: 540px;
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin-top: 22px;
}

.hero-btn {
  display: grid;
  grid-template-columns: 52px 1fr 38px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 24, 42, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: rgba(9, 39, 68, 0.82);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-btn.primary {
  border-color: rgba(91, 160, 67, 0.88);
  background:
    linear-gradient(135deg, rgba(68, 143, 55, 0.98), rgba(88, 154, 65, 0.94)),
    rgba(59, 127, 50, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 34px rgba(55, 130, 48, 0.28);
}

.hero-btn-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1;
}

.hero-btn-copy {
  display: block;
  min-width: 0;
}

.hero-btn-copy strong {
  display: block;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.hero-btn-copy small {
  display: block;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.22;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
}

.hero-btn-arrow {
  justify-self: end;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  opacity: 0.95;
}

/* HERO IMAGE */

.hero-visual-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.35));
}

/* HERO TRUST BAR */

.hero-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 20, 36, 0.38);
  border-radius: 16px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.hero-trust div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.2;
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust div:last-child {
  border-right: 0;
}

/* PATH SELECTOR */

.path-section {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
}

.path-section .section-subtitle {
  color: #f0e7b4;
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 38px;
}

.age-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.age-card h3 {
  font-size: 2.25rem;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.age-card p {
  color: rgba(255, 255, 255, 0.83);
  margin-bottom: 26px;
}

.check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}

/* SOLUTIONS */

.solutions {
  background: #fff;
}

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

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.solution-card {
  border: 1px solid #e5ebe6;
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(13, 39, 63, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.solution-card p {
  margin: 0 0 24px;
  color: rgba(16, 35, 58, 0.78);
}

.solution-card .btn {
  margin-top: auto;
  width: fit-content;
}


/* SPORTS BUSINESS HOME SECTION */

.sports-business-home {
  background:
    radial-gradient(circle at 84% 24%, rgba(77, 140, 216, 0.14), transparent 32%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

.sports-business-home-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.sports-business-home-copy .eyebrow {
  color: var(--lime);
}

.sports-business-home-copy .section-title {
  color: #fff;
  max-width: 720px;
}

.sports-business-home-copy .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
}

.sports-business-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sports-business-home-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.sports-business-home-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(143, 207, 95, 0.12);
  border: 1px solid rgba(143, 207, 95, 0.28);
  font-size: 2rem;
}

.sports-business-home-card h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sports-business-home-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sports-business-home-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.sports-business-home-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}


/* PROOF */

.proof {
  background: var(--navy);
  color: #fff;
}

.proof .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.proof-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-preview {
  height: 140px;
  border-radius: 16px;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, var(--green), var(--navy));
  position: relative;
  overflow: hidden;
}

.proof-preview::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 36%;
  height: 12px;
  border-radius: 99px;
  background: var(--navy);
  box-shadow: 0 24px 0 rgba(16, 35, 58, 0.25), 0 48px 0 rgba(16, 35, 58, 0.15);
}

.proof-preview::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  opacity: 0.9;
}

.quote {
  font-size: 1.1rem;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
}

.quote::before {
  content: "“";
  color: var(--green-2);
  font-size: 2rem;
  line-height: 0;
  margin-right: 4px;
}

.proof-role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-role::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(90, 157, 67, 0.4);
  border: 1px solid rgba(143, 207, 95, 0.35);
}

/* HOME TRUST IMAGE */

.trust-image-section {
  padding: 84px 0;
}

.home-trust-image {
  max-width: 1120px;
  margin: 42px auto 0;
}

.home-trust-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
  .home-trust-image {
    margin-top: 28px;
  }

  .home-trust-image img {
    border-radius: 16px;
  }
}

/* CREDIBILITY */

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

.cred-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.leader-card {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(3, 20, 36, 0.95), rgba(13, 47, 80, 0.94));
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(4, 21, 36, 0.18);
}

.leader-image {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0b2f50;
  position: relative;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* subtle overlay for consistency with design */
.leader-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 20, 36, 0.1),
    rgba(3, 20, 36, 0.35)
  );
  pointer-events: none;
}

.leader-card strong {
  color: var(--lime);
}

.cred-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.cred-copy p {
  font-size: 1.13rem;
  color: rgba(16, 35, 58, 0.82);
  max-width: 650px;
}

/* LEAD */

.lead {
  background: var(--olive);
  padding: 72px 0;
}

.lead-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.lead h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.lead p {
  margin: 0;
  max-width: 660px;
  font-size: 1.08rem;
}

.lead-form {
  display: flex;
  gap: 10px;
  min-width: 420px;
}

.lead-form input {
  flex: 1;
  border: 1px solid rgba(16, 35, 58, 0.25);
  padding: 15px 16px;
  border-radius: 8px;
  font-size: 1rem;
}

.lead-form button {
  border: 0;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .cred-grid,
  .sports-business-home-grid,
  .lead-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 9vw, 5rem);
    max-width: 100%;
  }

  .hero-visual-image img {
    max-width: 650px;
    margin: 0 auto;
  }

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

  .hero-trust div:nth-child(2) {
    border-right: 0;
  }

  .hero-trust div:nth-child(1),
  .hero-trust div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .solution-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .age-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    min-width: unset;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .nav {
    height: 72px;
  }

  .logo {
    width: 195px;
  }

  .hero {
    padding: 48px 0 42px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .hero-sub {
    font-size: 1.2rem;
  }

  .hero-note {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-buttons {
    gap: 10px;
    max-width: 100%;
  }

  .hero-btn {
    grid-template-columns: 42px 1fr 28px;
    gap: 12px;
    min-height: 70px;
    padding: 11px 14px;
  }

  .hero-btn-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    border-width: 2px;
  }

  .hero-btn-copy strong {
    font-size: 1.02rem;
    margin-bottom: 3px;
  }

  .hero-btn-copy small {
    font-size: 0.82rem;
  }

  .hero-btn-arrow {
    font-size: 1.65rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust div {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
  }

  .hero-trust div:last-child {
    border-bottom: 0;
  }

  .hero-visual-image img {
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .path-section {
    padding: 60px 0;
  }

  .age-card,
  .solution-card,
  .proof-card {
    padding: 24px;
  }

  .sports-business-home-actions {
    flex-direction: column;
  }

  .sports-business-home-actions .btn {
    width: 100%;
  }

  .sports-business-home-card {
    padding: 24px;
  }

  .lead-form {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 10px;
  font-size: 1rem;
}

.lead-form-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-success {
  margin-top: 16px;
  font-weight: 600;
}