/* ==========================================================================
   Welcome / landing pages (team.html for team, partner.html for partners)
   Simple centered hero: logo, blurb, and quick links into each tool.
   Also styles the index.html "chooser" page (below).
   ========================================================================== */

/* ---------------- index.html: team-vs-partner chooser ---------------- */
.chooser-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background: var(--hpi-black);
}

.chooser-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: var(--hpi-white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-elevated);
}

.chooser-title {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--hpi-black);
}

.chooser-blurb {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--hpi-gray-600);
}

.chooser-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chooser-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 20px;
  border-radius: 12px;
  background: var(--hpi-gray-100);
  border: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.chooser-option i {
  font-size: 24px;
  color: var(--hpi-red);
  margin-bottom: 4px;
}

.chooser-option-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 600;
  color: var(--hpi-black);
}

.chooser-option-hint {
  font-size: 13px;
  color: var(--hpi-gray-600);
}

.chooser-option:hover {
  background: var(--hpi-white);
  border-color: var(--hpi-red);
  transform: translateY(-2px);
}

.welcome-main {
  min-height: calc(100vh - var(--header-h) - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.welcome-hero {
  max-width: 720px;
  width: 100%;
  text-align: center;
  background: var(--hpi-white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.welcome-logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
  /* Logo is white-on-transparent (brand asset); give it a dark chip so it
     reads clearly against the white card background. */
  background: var(--hpi-black);
  padding: 12px 20px;
  border-radius: 8px;
}

.welcome-title {
  margin: 0 0 20px;
  font-size: 28px;
  color: var(--hpi-black);
}

.welcome-blurb {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hpi-gray-800);
}

.welcome-blurb strong {
  color: var(--hpi-red);
}

.welcome-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.welcome-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--hpi-gray-100);
  color: var(--hpi-black);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.welcome-cta:hover {
  background: var(--hpi-black);
  color: var(--hpi-white);
  transform: translateY(-1px);
}

.welcome-cta-primary {
  background: var(--hpi-red);
  color: var(--hpi-white);
}

.welcome-cta-primary:hover {
  background: var(--hpi-red-dark);
  color: var(--hpi-white);
}

@media (max-width: 600px) {
  .welcome-hero {
    padding: 36px 24px;
  }
  .welcome-title {
    font-size: 22px;
  }
}
