:root {
  --orbital-animation-duration: 16s;
  --orbital-center-ring-blur: 60px;
  --orbital-center-ring-size: 150px;
  --orbital-middle-ring-blur: 80px;
  --orbital-middle-ring-size: 350px;
  --orbital-outer-ring-blur: 80px;
  --orbital-outer-ring-size: 550px;
  --orbital-ring-color: var(--primary-dark);
  /* #0d3b7a; */
}

.section-about {
  background: transparent;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-about::before,
.section-about::after,
.fit-content::before {
  display: none;
}

.section-about h2 {
  color: var(--text-light);
}

.section-about .next-section-button-container {
  position: relative;
  z-index: 10;
}

#about .container {
  display: flex;
  justify-content: space-between;
}

.about-content {
  /* display: grid; */
  /* grid-template-columns: 300px auto; */
  /* gap: 64px; */
  align-items: center;
  /* margin-top: 48px; */
  position: relative;
  top: -100px;
  width: 620px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-copy {
  max-width: 500px;
  width: 100%;
  z-index: 100;
}

#about .next-section-button-container.desktop-button {
  display: block;
}

#about .next-section-button-container.mobile-button {
  display: none;
}

@media (max-width: 1024px) {
  #about .container {
    flex-direction: column;
  }

  .about-copy {
    max-width: 100%;
  }

  .about-content {
    margin: 0 auto;
    top: 0;
  }

  #about .next-section-button-container.desktop-button {
    display: none;
  }

  #about .next-section-button-container.mobile-button {
    display: block;
  }
}

@media (max-width: 992px) {
  .about-copy {
    /* width: 90%; */
  }
  .about-content {
    /* display: block; */
    /* grid-template-columns: 1fr; */
    max-width: 100%;
    text-align: center;
  }

  .about-visual {
    /* margin-top: 75px; */
    position: relative;
    left: -50%;
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .about-copy {
    max-width: 800px;
    /* padding-top: 200px; */
    left: 50%;
    /* position: absolute; */
    margin: 0 auto;
    text-align: center;
    /* transform: translateX(-50%); */
    width: 100%;
    z-index: 100;
  }
}

@media (max-width: 411px) {
  .about-visual {
    /* margin-top: 75px; */
  }
}

.about-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-bottom: 24px;
}

.about-copy p.emphasized-copy {
  color: rgb(14, 192, 216, 0.9);
  font-weight: 700;
}

/* Orbital Visual */
.orbital-container {
  align-items: center;
  aspect-ratio: 1/1;
  /* background: rgba(255, 0, 0, 0.3); */
  display: flex;
  height: var(--orbital-outer-ring-size);
  justify-content: center;
  margin: 0 auto;
  max-height: var(--orbital-outer-ring-size);
  max-width: var(--orbital-outer-ring-size);
  position: relative;
  width: min(100vw, var(--orbital-outer-ring-size));
}

.ring {
  border-radius: 50%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ring.outer {
  /* border: 2px solid rgba(13, 59, 122, 0.15); */
  box-shadow:
    0 0 var(--orbital-outer-ring-blur) var(--orbital-ring-color),
    0 0 var(--orbital-outer-ring-blur) var(--orbital-ring-color) inset;
  height: var(--orbital-outer-ring-size);
  width: var(--orbital-outer-ring-size);
}
.ring.middle {
  /* border: 2px solid rgba(13, 59, 122, 0.12); */
  box-shadow:
    0 0 var(--orbital-middle-ring-blur) var(--orbital-ring-color),
    0 0 var(--orbital-middle-ring-blur) var(--orbital-ring-color) inset;
  height: var(--orbital-middle-ring-size);
  width: var(--orbital-middle-ring-size);
}
.ring.center {
  align-items: center;
  /* background-color: rgba(13, 59, 122, 0.3); */
  border: 12px solid rgba(51, 96, 242, 0.25);
  /* background-color: rgb(14, 192, 216, 0.9); */
  /* box-shadow:
    0 0 var(--orbital-center-ring-blur) var(--orbital-ring-color),
    0 0 var(--orbital-center-ring-blur) var(--orbital-ring-color) inset; */
  box-shadow:
    0 8px 32px rgba(26, 95, 180, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 1.6rem;
  height: var(--orbital-center-ring-size);
  justify-content: center;
  width: var(--orbital-center-ring-size);
  z-index: 2;
}

.ring-center-inner {
  align-items: center;
  background-color: rgb(41 72 168);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: calc(var(--orbital-center-ring-size) - 24px);
  /* justify-content: center; */
  padding-top: 16px;
  width: calc(var(--orbital-center-ring-size) - 24px);
}

.center-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  /* color: var(--primary-light-blue); */
  color: var(--text-light);
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.sphere {
  align-items: center;
  /* border-radius: 50%; */
  /* box-shadow: 0 4px 24px 0 rgba(13, 59, 122, 0.1); */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 0.5em;
  position: absolute;
  text-align: center;
  transition: box-shadow 0.2s;
  will-change: transform;
  z-index: 1;
}
.sphere svg {
  display: block;
  /* height: 40px; */
  margin: 0 auto 0.25em auto;
  /* width: 40px; */
}

.sphere.middle-sphere {
  min-width: 185px;
}

.sphere.middle-sphere.sphere-1 svg {
  width: 60%;
}

.sphere.middle-sphere.sphere-2 svg {
  height: 50%;
  width: 50%;
}

.sphere.middle-sphere.sphere-3 svg {
  width: 60%;
}

.sphere.outer-sphere.sphere-1 svg {
  width: 80%;
}

.sphere.outer-sphere.sphere-2 svg {
  width: 60%;
}

.sphere.outer-sphere.sphere-3 svg {
  width: 70%;
}

.sphere svg path {
  fill: rgb(14, 192, 216, 0.9);
}

.orbital-sphere-icon {
  width: 70%;
}

.sphere-copy {
  color: var(--text-light);
  font-size: 1.4rem; /*2.4rem;*/
  font-weight: 500;
  line-height: 1.1;
  margin-top: 1.6rem;
  padding: 0 0.5em;
  word-break: break-word;
}

.sphere-inner {
  align-items: center;
  backface-visibility: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* border: 3px solid rgba(255, 255, 255, 0.25); */
  /* box-shadow: 0 8px 32px rgba(26, 95, 180, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  /* position: absolute; */
  text-align: center;
  width: 100%;
}
