.peh-hero {
  position: relative;
  overflow: hidden;
  background: #13254a;
  color: #ffffff;
}

.peh-hero__shell {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0px 10rem 3.25rem;
}

.peh-hero__journey-copy:hover .peh-hero__journey-title {
  color: #d1a647;
  text-decoration: underline;
  cursor: pointer;
}
.peh-hero__navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  margin-bottom: 5.8rem;
}

.peh-hero__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.peh-hero__brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.peh-hero__navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.35rem;
  flex: 1;
  min-width: 0;
}

.peh-hero__navlink {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.peh-hero__navlink:hover,
.peh-hero__navlink:focus {
  color: #d1a647;
}

.peh-hero__auth {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 170px;
}

.peh-hero__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  padding: 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.peh-hero__signin:hover,
.peh-hero__signin:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.peh-hero__signin-label {
  display: inline-block;
}

.userauth-profile {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hidden {
  display: none !important;
}

.peh-hero__signout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  padding: 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.peh-hero__menu-toggle {
  display: none;
}

.peh-hero__menu-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.peh-hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 452px);
  align-items: center;
  gap: 6rem;
  padding-top: 40px;
}

.peh-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  max-width: 610px;
}

.peh-hero__eyebrow {
  display: none;
}

.peh-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1a647;
  box-shadow: 0 0 10px rgba(209, 166, 71, 0.55);
}

.peh-hero__title {
  margin: 1.45rem 0 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.peh-hero__title-desktop {
  display: block;
}

.peh-hero__title-soft {
  display: block;
  color: #ffffff;
}

.peh-hero__title-accent {
  color: #c89a3e;
}

.peh-hero__title-mobile {
  display: none;
}

.peh-hero__copy {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.65;
}

.peh-hero__copy-desktop {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
  line-height: 1.75;
}

.peh-hero__copy-mobile {
  display: none;
}

.peh-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.peh-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 46px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.peh-hero__button--primary {
  background: #c89a3e;
  border: 1px solid #c89a3e;
  color: #122347;
}

.peh-hero__button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.peh-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 465px;
  margin-top: 1.75rem;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.peh-hero__stat {
  min-width: 0;
}

.peh-hero__stat-value {
  margin: 0;
  color: #c89a3e;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.peh-hero__stat-label {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.peh-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.peh-hero__media-glow {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(103, 123, 255, 0.15);
  filter: blur(55px);
  transform: translate(-50%, -50%);
}

.peh-hero__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 128, 227, 0.28);
  border-radius: 22px;
  background: linear-gradient(180deg, #364994 0%, #1c2b62 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.peh-hero__card--single {
  width: min(100%, 452px);
  height: 336px;
}

.peh-hero__card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 60%);
}

.peh-hero__journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 6.9rem;
  padding-top: 14rem;
}

.peh-hero__journey-track {
  position: absolute;
  top: 100px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(201, 154, 62, 0.22);
}

.peh-hero__journey-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.peh-hero__journey-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 154, 62, 0.45);
  border-radius: 50%;
  color: #c89a3e;
  background: #152752;
  font-size: 1.3rem;
  font-weight: 700;
}

.peh-hero__journey-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}

.peh-hero__journey-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.mobile-signin-pill {
  display: none;
}

.mobile-profile-trigger {
  display: none;
}

@media (max-width: 1900px) {
  .peh-hero__shell {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .peh-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 452px);
    align-items: center;
    gap: 6rem;
    padding: 0px 40px 0px 40px;
  }

  .peh-hero__navlinks {
    gap: 1.4rem;
  }
  .peh-hero__journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 6.9rem;
    padding-top: 7rem;
  }

  .peh-hero__journey-track {
    position: absolute;
    top: 50px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: rgba(201, 154, 62, 0.22);
  }

  .peh-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 452px);
    align-items: center;
    gap: 6rem;
  }
}

@media (max-width: 920px) {
  .peh-hero__shell {
    min-height: 90vh;
    padding-right: 1.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
  }

  .peh-hero__navbar {
    margin-bottom: 3rem;
  }

  .peh-hero__navlinks {
    display: none;
  }

  .peh-hero__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .peh-hero__menu-icon {
    filter: brightness(0) invert(1);
  }

  .peh-hero__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .peh-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    max-width: 100%;
  }

  .peh-hero__media {
    justify-content: flex-start;
  }

  .peh-hero__journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3rem;
  }

  .peh-hero__journey-track {
    display: none;
  }
}

@media (max-width: 640px) {

  .peh-hero__shell{
    min-height: 95vh;
  }
  .peh-hero__card-overlay {
    display: none;
  }

  .peh-hero__card--single {
    display: none;
  }

  .peh-hero__shell {
    padding: 1.3rem 1rem 2rem;
  }

  .peh-hero__navbar {
    margin-bottom: 2rem;
  }

  .peh-hero__brand-logo {
    width: 76px;
  }

  .peh-hero__signin {
    display: none;
  }

  .peh-hero__title {
    font-size: 2.65rem;
  }

  .peh-hero__title-desktop,
  .peh-hero__copy-desktop {
    display: none;
  }

  .peh-hero__title-mobile,
  .peh-hero__copy-mobile {
    display: block;
  }

  .peh-hero__copy {
    font-size: 0.98rem;
  }

  .peh-hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .peh-hero__button {
    width: calc(50% - 0.375rem);
    min-width: 0;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    text-align: center;
  }

  .peh-hero__stats {
    max-width: 100%;
    gap: 0.7rem;
  }

  .peh-hero__stat {
    text-align: center;
  }

  .peh-hero__card--single {
    height: 250px;
  }

  .peh-hero__journey {
    grid-template-columns: 1fr;
  }

  .peh-hero__journey-step {
    min-height: 62px;
  }
}

@media (max-width: 500px) {
  .peh-hero {
  }
  .peh-hero__copy-mobile {
    display: none;
  }
  .peh-hero__eyebrow {
    letter-spacing: 0.1em;
  }
  .peh-hero__title-soft {
    text-align: center;
  }

  .peh-hero__main {
    padding: 30px 20px 20px 20px;
  }

  .peh-hero__navbar {
    align-items: center;
  }

  .peh-hero__brand {
  }

  .peh-hero__brand-logo {
    display: block;
  }

  .peh-hero__menu-toggle {
    position: static;
    right: auto;
    top: auto;
    margin: 0;
    flex: 0 0 auto;
    align-self: center;
  }

  .header-menu-toggle {
    position: static;
    right: auto;
    top: auto;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .peh-hero__menu-icon {
    margin: 0;
    vertical-align: middle;
  }

  .peh-hero__content {
    gap: 3rem;
  }

  .peh-hero__stats {
    gap: 0;
    margin-top: 1.25rem;
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
  }

  .peh-hero__stat {
    padding: 0.95rem 0.35rem 0.9rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .peh-hero__stat:last-child {
    border-right: 0;
  }

  .peh-hero__journey {
    padding: 30px 0px 10px 0px;
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .peh-hero__journey-title {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .peh-hero__journey-step {
    display: flex;
    align-items: center;
  }
}
