.portal-hero {
  min-height: calc(100vh - 160px);
  padding: 140px 6vw 42px;
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(198, 160, 74, .14), transparent 36%),
    linear-gradient(180deg, #f8f5ec 0%, #f5f1e7 100%);
}

.portal-copy h1 {
  margin: 8px 0 16px;
  font: clamp(42px, 6vw, 72px)/.95 "Libre Caslon Display";
  color: var(--navy);
}

.portal-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.portal-card {
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e1d6;
  box-shadow: 0 20px 50px rgba(10, 34, 48, .08);
}

.portal-badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #20384a, #0b2433);
  color: #fff;
  font: 700 18px "DM Sans";
  letter-spacing: 1px;
}

.portal-card h2 {
  margin: 0 0 14px;
  font: 30px "Libre Caslon Display";
  color: var(--navy);
}

.portal-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.portal-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--navy);
  line-height: 2;
}

.portal-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 6vw 86px;
}

.portal-feature {
  padding: 26px;
  background: #fff;
  border: 1px solid #e7e1d6;
  box-shadow: 0 14px 30px rgba(10, 34, 48, .05);
  text-align: center;
}

.feature-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #faf7f0, #f2ede3);
}

.feature-visual svg {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.portal-feature h3 {
  margin: 0 0 10px;
  font: 28px "Libre Caslon Display";
  color: var(--navy);
}

.portal-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.header .is-active {
  color: var(--gold2);
}

@media (max-width: 900px) {
  .portal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }

  .portal-features {
    grid-template-columns: 1fr;
  }
}
