.customer-login-main {
  min-height: calc(100vh - 8rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(31, 94, 174, 0.12), transparent 30rem),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 68%);
}

.customer-login-hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.customer-login-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.customer-login-hero h1 {
  max-width: 13ch;
  margin: 0.4rem 0 1.2rem;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.customer-login-hero h1 span {
  color: var(--accent);
}

.customer-login-lede {
  max-width: 39rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.customer-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.customer-login-note {
  max-width: 39rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.customer-login-card {
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(20, 43, 73, 0.13);
}

.customer-login-card h2 {
  margin: 0.25rem 0 1.2rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 12px;
  background: var(--surface-strong);
}

.journey-tabs button {
  min-height: 3rem;
  padding: 0.55rem 0.5rem;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.journey-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 3px 12px rgba(20, 43, 73, 0.09);
}

.journey-tabs button:focus-visible {
  outline: 3px solid rgba(31, 94, 174, 0.3);
  outline-offset: 2px;
}

.journey-state {
  min-height: 12rem;
  padding: 1.5rem 0.25rem 0.25rem;
}

.journey-state[hidden] {
  display: none;
}

.journey-state h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.journey-state p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.customer-login-trust {
  border-block: 1px solid var(--line);
  background: #fff;
}

.customer-login-trust .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-login-trust article {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-left: 1px solid var(--line);
}

.customer-login-trust article:last-child {
  border-right: 1px solid var(--line);
}

.customer-login-trust span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .customer-login-hero__grid,
  .customer-login-trust .container {
    grid-template-columns: 1fr;
  }

  .customer-login-trust article,
  .customer-login-trust article:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .journey-tabs {
    grid-template-columns: 1fr;
  }

  .journey-tabs button {
    min-height: 2.55rem;
  }

  .customer-login-actions .button {
    width: 100%;
  }
}
