.hero {
  min-height: calc(100vh - 110px);
  padding: 140px 24px 80px;
  color: #fff;
  background: #07111f;
}

.hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(100%, 1200px);
  min-height: 570px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(44, 53, 67, .88), rgba(22, 29, 39, .97));
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .22);
}

.hero__shell::before {
  position: absolute;
  top: -9rem;
  left: -7rem;
  width: 28rem;
  height: 25rem;
  border-radius: 50%;
  background: rgba(245, 130, 10, .22);
  filter: blur(2rem);
  content: "";
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 2.5rem;
  height: 2px;
  background: var(--issell-orange);
  content: "";
}

.hero__eyebrow span { color: var(--issell-orange); }

.hero h1 {
  max-width: 680px;
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  font-weight: 700;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: var(--issell-muted);
}

.hero__lead {
  max-width: 620px;
  font-size: 1.15rem !important;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.25rem 0 2.5rem;
}

.hero__actions .btn-primary {
  --bs-btn-bg: var(--issell-orange);
  --bs-btn-border-color: var(--issell-orange);
  --bs-btn-hover-bg: #ff9b35;
  --bs-btn-hover-border-color: #ff9b35;
  padding: .8rem 1.25rem;
  border-radius: .45rem;
  font-weight: 700;
}

.hero__text-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.hero__text-link span {
  margin-left: .4rem;
  color: var(--issell-orange);
  font-size: 1.3rem;
}

.hero__text-link:hover { color: var(--issell-orange); }

.hero__notice {
  max-width: 620px;
  margin-top: 0 !important;
  padding-left: 1rem;
  border-left: 2px solid var(--issell-orange);
  color: #c4ccd7 !important;
  font-size: .92rem !important;
  line-height: 1.6;
}

.hero__visual {
  align-self: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}

.hero__visual-header,
.hero__feature {
  display: flex;
  align-items: center;
}

.hero__visual-header {
  position: relative;
  gap: .55rem;
  padding-bottom: 1.5rem;
  color: #b8c0cb;
  font-size: .8rem;
  font-weight: 600;
}

.hero__status {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #62d89c;
  box-shadow: 0 0 0 .25rem rgba(98, 216, 156, .12);
}

.hero__dots {
  width: 2.5rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: .4rem;
  color: #8792a0;
  background: transparent;
  letter-spacing: .15rem;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.hero__quick-nav {
  position: absolute;
  top: -.25rem;
  right: 0;
}

.hero__dots:hover,
.hero__dots:focus-visible,
.hero__quick-nav.show .hero__dots {
  color: #fff;
  background: rgba(245, 130, 10, .2);
}

.hero__dots:focus-visible {
  outline: 2px solid var(--issell-orange);
  outline-offset: 2px;
}

.hero__quick-nav .dropdown-menu {
  min-width: 12rem;
  padding: .45rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .7rem;
  background: #202a38;
  box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .3);
}

.hero__quick-nav .dropdown-item {
  border-radius: .4rem;
  color: #e7edf5;
  font-size: .85rem;
}

.hero__quick-nav .dropdown-item:hover,
.hero__quick-nav .dropdown-item:focus {
  color: #fff;
  background: var(--issell-orange);
}

.hero__metric {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hero__metric span,
.hero__metric small,
.hero__feature small {
  display: block;
  color: #aeb8c5;
  font-size: .8rem;
}

.hero__metric strong {
  display: block;
  margin: .5rem 0;
  color: #fff;
  font-size: 1.35rem;
}

.hero__feature {
  gap: .85rem;
  min-width: 0;
  padding: 1.25rem 0;
  color: #fff;
}

.hero__feature-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  place-items: center;
  border-radius: .7rem;
  background: rgba(245, 130, 10, .18);
  color: var(--issell-orange);
  font-size: 1.35rem;
}

.hero__feature strong {
  display: block;
  margin-bottom: .2rem;
  overflow-wrap: anywhere;
}

.hero__arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--issell-orange);
  font-size: 1.35rem;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  color: #fff;
  background: var(--issell-orange);
  transform: translate(2px, -2px);
}

.hero__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero__feature--muted { border-top: 1px solid rgba(255, 255, 255, .08); }

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 100px 14px 48px;
  }

  .hero__shell {
    display: block;
    min-height: 0;
    padding: 1.75rem 1.25rem;
    border-radius: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .hero p { font-size: 1rem; }
  .hero__eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: .68rem;
    letter-spacing: .08em;
  }

  .hero__eyebrow::before {
    display: inline-block;
    margin-right: .55rem;
    vertical-align: middle;
  }

  .hero__eyebrow span { margin-left: .25rem; }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }

  .hero__visual {
    margin-top: 3rem;
    padding: 1.15rem;
  }

  .hero__feature {
    gap: .6rem;
    align-items: flex-start;
  }

  .hero__feature > span:nth-child(2) {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero__metric strong { overflow-wrap: anywhere; }
}
