.site-header {
  background: #22a6df;
  color: #fff;
  padding: 1rem 0;
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  background: #e5e7eb;
  color: #374151;
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.475rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.nav-brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.link {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.link:hover {
  color: var(--brand-orange);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.split-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-hero-media {
  background-image: url("../images/cover.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.4rem;
  background: var(--surface);
}

.split-hero-inner {
  width: min(560px, 100%);
  display: grid;
  align-content: center;
}

.hero-main-logo {
  display: block;
  width: min(300px, 88%);
  height: auto;
  margin-bottom: 1.5rem;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  margin-bottom: 1.75rem;
}

.brand-logo {
  height: 21px;
  width: auto;
  object-fit: contain;
}

.split-hero-content h1 {
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: #22a6de;
}

.hero-subhead {
  max-width: 58ch;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  margin-bottom: 1.65rem;
}

.split-hero-content .cta-row {
  margin-top: 1.1rem;
}

.member-access-row {
  margin-top: 18px;
}

.member-access-link {
  font-size: 0.88rem;
  color: #464c52;
  text-decoration: none;
}

.member-access-link:hover {
  color: #22a6de;
  text-decoration: underline;
}

.split-hero-content .btn-primary {
  background: #22a6de;
  color: #FFFFFF;
}

.split-hero-content .btn-primary:hover {
  background: #1c8fbe;
}

.split-hero-content .hero-cta-row {
  gap: 0.85rem;
}

.split-hero-content .hero-cta-row .btn {
  min-height: 46px;
  padding: 0.78rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.split-hero-content .hero-cta-row .btn-primary {
  box-shadow: 0 9px 18px rgba(34, 166, 222, 0.18);
}

.split-hero-content .hero-cta-row .btn-demo {
  background: #0f3e57;
  box-shadow: 0 10px 20px rgba(15, 62, 87, 0.2);
}

.split-hero-content .hero-cta-row .btn-access {
  border: 1px solid rgba(34, 166, 222, 0.55);
  background: #ffffff;
  color: #0f3e57;
}

.split-hero-content .hero-cta-row .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 24px rgba(15, 62, 87, 0.18);
}

.split-hero-content .hero-cta-row .btn-demo:hover {
  background: #0b3349;
}

.split-hero-content .hero-cta-row .btn-access:hover {
  border-color: #22a6de;
  background: #f5fbfe;
}

.page-stack {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.narrow-page {
  margin-top: 1.5rem;
  width: min(760px, 92%);
}

.narrow-card {
  width: min(560px, 100%);
}

.page-intro {
  margin-bottom: 1.1rem;
}

@media (max-width: 900px) {
  .split-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .split-hero-inner {
    margin: 0 auto;
    text-align: center;
  }

  .split-hero-media {
    min-height: 260px;
  }

  .split-hero-content {
    padding: 2rem 1.2rem 2.35rem;
  }

  .hero-main-logo {
    width: min(250px, 84%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.65rem;
  }

  .brand-logos {
    justify-content: center;
    margin-bottom: 1.9rem;
  }

  .split-hero-content h1 {
    margin-bottom: 0.95rem;
  }

  .hero-subhead {
    margin-top: 0.35rem;
    margin-bottom: 1.85rem;
  }

  .split-hero-content .cta-row {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.3rem;
  }

  .member-access-row {
    margin-top: 18px;
  }

  .split-hero-content .hero-cta-row .btn,
  .split-hero-content .btn-primary {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-align: center;
  }

  .split-hero-content .btn-primary {
    background: #22a6de;
    color: #FFFFFF;
  }
}
