:root {
  --bg: #ffffff;
  --panel: #4D91C1;
  --text: #ffffff;
  --text-dark: #BADBEE;
  --accent: #4D91C1;
  --muted: #f6f6f6;
}

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

html,
body {
  min-height: 100svh;
}

body.cardio-connect-page {
  margin: 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eef2ff 55%,
    #BADBEE 100%
  );
}

.hero-panel {
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  background-color: #18355B;
}

.hero-title {
  width: 100%;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  visibility: hidden;
}

.hero-line {
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero-line-inner {
  display: flex;
  gap: 0.14em;
  width: 100%;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
  color: var(--text);
}

.brand-link {
  text-decoration: none;
}

.brand-logo {
  width: clamp(220px, 30vw, 600px);
  height: auto;
  display: block;
}

.mission-section {
  background-color: #ffffff;
  color: var(--text-dark);
}

.site-footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}

.partner-logo {
  max-width: 300px;
  height: auto;
  opacity: 0.95;
}

.secondary-cta {
  background: #ffffff;
  color: #4D91C1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: 2px solid #4D91C1;
  transition: all 0.25s ease;
}

.secondary-cta:hover {
  background: #4D91C1;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  border: 2px solid #4D91C1;
  color: #ffffff;
}

.primary-cta {
  background: #4D91C1;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: 2px solid #4D91C1;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.primary-cta:hover {
  background: #18355B;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  border-color: #18355B;
}

@media (prefers-reduced-motion: reduce) {
  .hero-word,
  .hero-line-inner,
  .hero-title {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 767px) {
  .hero-panel {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .hero-title br {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    line-height: 0.95;
  }

  .brand-logo {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    max-width: 100%;
    width: 100%;
  }
}

.lead {
  color: #699ab7;
}

.lead strong {
  color: #4D91C1;
  font-weight: 700;
}
