.hero04 {
  background: var(--color-brand);
  color: var(--color-brand-ink);
  overflow: hidden;
}
.hero04__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}
.hero04__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: var(--space-6);
  padding: var(--section-y) 0 var(--space-5);
  min-height: 37.1875rem;
}
.hero04__eyebrow {
  margin: 0 0 var(--space-5);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9ced6;
}
.hero04__title {
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.hero04__lead {
  max-width: 33.75rem;
  margin-top: var(--space-5);
  font-size: 1.1875rem;
  line-height: 1.6;
  color: #e2e7ee;
}
.hero04__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.hero04__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 3.25rem;
  padding: var(--btn-pad);
  background: var(--color-bg);
  color: var(--color-brand);
  border: var(--line) solid var(--color-bg);
  border-radius: var(--btn-radius);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease);
}
.hero04__btn:hover {
  background: var(--color-surface);
}
.hero04__btn span:last-child {
  font-size: 1.1875rem;
}
.hero04__text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-ink);
}
.hero04__text:hover {
  text-decoration: underline;
}
.hero04__note {
  max-width: 28.125rem;
  margin-top: var(--space-5);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #c9ced6;
}
.hero04__provider {
  display: block;
  max-width: 100%;
  padding: var(--space-5) 0;
  border-top: var(--line) solid #506077;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #e2e7ee;
}
.hero04__provider a {
  display: inline-block;
  margin-left: var(--space-5);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero04__globe {
  position: relative;
  display: grid;
  place-items: center;
  height: 27.5rem;
}
.hero04__core {
  width: 23.125rem;
  position: relative;
  z-index: 1;
  transform: rotate(-22deg);
}
.hero04__orbit {
  position: absolute;
  border: var(--line) solid #6b81974f;
  border-radius: 50%;
  width: 30rem;
  height: 20.625rem;
  transform: rotate(-30deg);
}
.hero04__orbit--two {
  width: 33.125rem;
  height: 25.625rem;
  transform: rotate(40deg);
}
.hero04__orbit--three {
  width: 25rem;
  height: 28.125rem;
  transform: rotate(-60deg);
}
.hero04__label {
  position: absolute;
  z-index: 2;
  background: #16304c;
  border: var(--line) solid #56708a;
  color: #d5dfe9;
  padding: 0.5625rem 1.0625rem;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.hero04__label--one { top: 2.1875rem; right: 1.875rem; }
.hero04__label--two { bottom: 4.625rem; left: 0; }
.hero04__label--three { bottom: 1.5625rem; right: 2.5rem; }
.hero04__caption {
  position: absolute;
  right: 0;
  bottom: -0.9375rem;
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a6b6c6;
}
@media (max-width: 1024px) {
  .hero04__title { font-size: 3.625rem; }
  .hero04__globe { transform: scale(0.85); transform-origin: center; }
}
@media (max-width: 768px) {
  .hero04__inner {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }
  .hero04__grid {
    display: contents;
    min-height: 0;
  }
  .hero04__grid > div:first-child { order: 1; }
  .hero04__provider { order: 2; margin-top: var(--space-5); }
  .hero04__globe { order: 3; height: 18.4375rem; transform: none; max-width: 21.875rem; width: 100%; margin: var(--space-4) auto 0; }
  .hero04__title { font-size: 2.75rem; line-height: 1.08; }
  .hero04__lead { font-size: 1rem; }
  .hero04__actions { flex-wrap: wrap; gap: var(--space-5); }
  .hero04__core { width: 16.5625rem; }
  .hero04__orbit { width: 19.6875rem; height: 15rem; }
  .hero04__orbit--two { width: 21.5625rem; height: 16.875rem; }
  .hero04__orbit--three { width: 18.4375rem; height: 19.375rem; }
  .hero04__caption { display: none; }
  .hero04__provider a { display: block; margin: var(--space-3) 0 0; }
}
