/* Main page styles */

.skip {
  z-index: -100;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/**
 * =======================================
 * Buttons
 * =======================================
 */

.icon {
  transition: all 0.3s ease-in-out;
}

.btn {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  text-wrap: nowrap;
  font-size: 1.1rem;
  padding: 0.6rem 1.25rem 0.6rem 1.6rem;
  border-radius: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.btn > .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-sm {
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  gap: 0.75rem;
}

.btn-sm-no-icon {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
}

.btn-sm > .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  z-index: 1;
  background-color: var(--primary-brand-2);
  color: var(--white);
  border: 2px solid var(--primary-brand-2);
}

.btn-primary::before, .btn-secondary::before,
.btn-outline-1::before, .btn-outline-2::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 110%;
  height: 110%;
  border-radius: 6rem;
  transition: all 0.3s ease-in-out;
  transform: translateX(-110%);
}

.btn-primary:hover::before, .btn-primary:focus::before,
.btn-secondary:hover::before, .btn-secondary:focus::before,
.btn-outline-1:hover::before, .btn-outline-1:focus::before,
.btn-outline-2:hover::before, .btn-outline-2:focus::before {
  transform: translateX(0%);
}

.btn-primary::before {
  background-color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  color: var(--primary-brand-2);
}

.btn-primary > .icon {
  stroke: var(--white);
}

.btn-primary:hover > .icon, .btn-primary:focus > .icon {
  stroke: var(--primary-brand-2);
}

.btn-secondary {
  background-color: var(--white);
  border: 2px solid var(--white);
  color: var(--primary-brand-2);
}

.btn-secondary > .icon {
  stroke: var(--primary-brand-2);
}

.btn-secondary::before {
  background-color: var(--primary-brand-2);
  background: linear-gradient(to right, var(--secondary-brand-5), var(--secondary-brand-4) 60%, var(--secondary-brand-3), var(--secondary-brand-2));
}

.btn-secondary:hover, .btn-secondary:focus {
  color: var(--white);
}

.btn-secondary:hover > .icon, .btn-secondary:focus > .icon {
  stroke: var(--white);
}

.btn-outline-1 {
  background-color: transparent;
  border: 2px solid var(--primary-brand-1);
  color: var(--primary-brand-1);
}

.btn-outline-1 > .icon {
  stroke: var(--primary-brand-1);
}

.btn-outline-1::before {
  background-color: var(--primary-brand-1);
}

.btn-outline-1:hover, .btn-outline-1:focus {
  color: var(--primary-brand-2);
}

.btn-outline-1:hover > .icon, .btn-outline-1:focus > .icon {
  stroke: var(--primary-brand-2);
}

.btn-outline-2 {
  background-color: transparent;
  border: 2px solid var(--primary-brand-2);
  color: var(--primary-brand-2);
}

.btn-outline-2 > .icon {
  stroke: var(--primary-brand-2);
}

.btn-outline-2::before {
  background-color: var(--primary-brand-2);
}

.btn-outline-2:hover, .btn-outline-2:focus {
  color: var(--primary-brand-1);
}

.btn-outline-2:hover > .icon, .btn-outline-2:focus > .icon {
  stroke: var(--primary-brand-1);
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.icon-btn > .icon {
  stroke: var(--graphite);
  width: 2.5rem;
  height: 2.5rem;
}

.icon-btn.down-arrow > .icon-hidden {
  position: absolute;
  transform: translateY(-3.4rem);
}

.icon-btn.down-arrow:hover > .icon,
.icon-btn.down-arrow:focus > .icon {
  transform: translateY(3.4rem);
}

.icon-btn.down-arrow:hover > .icon-hidden,
.icon-btn.down-arrow:focus > .icon-hidden {
  transform: translateY(0rem);
}

.icon-btn.up-arrow > .icon-hidden {
  position: absolute;
  transform: translateY(3.4rem);
}

.icon-btn.up-arrow:hover > .icon,
.icon-btn.up-arrow:focus > .icon {
  transform: translateY(-3.4rem);
}

.icon-btn.up-arrow:hover > .icon-hidden,
.icon-btn.up-arrow:focus > .icon-hidden {
  transform: translateY(0rem);
}

/**
 * =======================================
 * Images
 * =======================================
 */

.img-zoom {
  transition: all 0.3s ease-in-out;
}

.img-zoom:hover {
  transform: scale(1.015);
}

/**
 * =======================================
 * Home section
 * =======================================
 */

#home {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 0;
}

#particles-js {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.h1 {
  z-index: 5;
  color: var(--primary-brand-2);
  font-size: 2.75rem;
  text-align: center;
}

.h1 > span {
  font-size: 2rem;
}

/**
 * =======================================
 * General section
 * =======================================
 */

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.overline {
  color: var(--primary-brand-2);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.h2 {
  z-index: 5;
  color: black;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
  text-align: center;
}

.section {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 350;
  color: var(--black);
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section-bold {
  font-weight: 500;
}

.section-lg {
  font-size: 2rem;
}

.section ul, .section ol {
  padding-left: 2rem;
  font-family: var(--font-body);
  font-weight: 350;
}

.section-highlight {
  background-color: var(--highlight);
}

.section-quote {
  font-size: 1.25rem;
  opacity: 0.5;
}

.section-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.5rem;
}

.section-btn-container.home {
  margin-top: 1rem;
}

.h2.bottom {
  margin-top: 2rem;
  opacity: 0.75;
  text-align: center;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/**
 * Venn diagram
 */

.venn {
  position: relative;
  font-family: var(--font-body);
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0 auto;
}

.circle {
  position: absolute;
  z-index: 0;
  width: 60%;
  height: auto; 
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--highlight);
  border: 1px solid var(--primary-brand-2);
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 35%;
}

.circle:hover {
  z-index: 1;
  background-color: var(--highlight-2);
  color: var(--primary-brand-1);
}

.c1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c2 {
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
}

.c3 {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
}

.c4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 35%;
  padding-bottom: 0;
}

.venn-center {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  text-align: center;
  font-weight: bold;
  color: white;
}

/**
 * Orbit
 */
.orbit-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  font-family: var(--font-body);
  margin: 1rem auto 0 auto;
}

.orbit-center {
  text-align: center;
}

.orbit-center-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  background-color: var(--primary-brand-2);
  border-radius: 999px;
  padding: 1rem 2rem;
}

.orbit-center-content h3 {
  color: var(--primary-brand-1);
  font-size: 1.25rem;
}

.orbit-center-content p {
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.75;
}

@keyframes float-drift {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(4px, -6px); }
  50%  { transform: translate(0px, -10px); }
  75%  { transform: translate(-4px, -6px); }
  100% { transform: translate(0px, 0px); }
}

.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform;
  animation: float-drift 8s ease-in-out infinite;
}

.orbit-item strong {
  font-size: 1.25rem;
}

.orbit-item span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.founders {
  top: 0;
  left: 42%;
  animation-delay: 0s;
}

.operators {
  top: 22%;
  right: 0;
  animation-delay: 1s;
}

.investors {
  bottom: 6%;
  left: 60%;
  animation-delay: 2s;
}

.creators {
  bottom: 16%;
  left: 0;
  animation-delay: 3s;
}

.professionals {
  top: 18%;
  left: 0;
  animation-delay: 4s;
}

.orbit-item:hover {
  opacity: 1;
  scale: 1.035;
  /* transform: scale(1.05); */
}

/**
 * Tiles
 */
.tile-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tile {
  width: 100%;
  padding: 0.5rem;
}

.tile-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--primary-brand-2);
  border-radius: 1rem;
  padding: 1rem;
}

.tile .icon {
  width: 3rem;
  height: 3rem;
  stroke: var(--highlight-2);
  margin-bottom: 0.75rem;
}

.tile h3 {
  font-weight: 600;
  font-size: 1.25rem;
}

.tile ul {
  font-size: 1rem;
}

.tile .chips-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-body);
  text-wrap: nowrap;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.tile .chips-header {
  font-size: 1rem;
  padding: 0.25rem;
}

.tile .chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tile .chip {
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 40rem;
  color: var(--primary-brand-1);
  background-color: var(--primary-brand-2);
}

.tile .chip:hover {
  background-color: var(--highlight-2);
}

/**
 * Counter grid
 */
#counter-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.counter {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
}

.counter .number {
  font-size: 3rem;
  font-weight: 600;
}

.counter .label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  text-wrap: balance;
}

.counter .label > .icon {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--primary-brand-2);
}

/**
 * Puzzle grid
 */
.puzzle-wrapper {
  width: 330px;
  margin: 2rem auto -60px auto;
  overflow: hidden;
}

.puzzle-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: -200px;
  padding: 3.5rem 2.5rem;
}

.puzzle-piece {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.puzzle-piece-inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--highlight-4);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  z-index: 3;
}

.puzzle-piece:nth-child(even) > .puzzle-piece-inner {
  padding: 5% 15%;
  mask-image:
    radial-gradient(circle 30px at left, transparent 100%, black 100%),
    radial-gradient(circle 30px at right, transparent 100%, black 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(circle 30px at left, transparent 100%, black 100%),
    radial-gradient(circle 30px at right, transparent 100%, black 100%);
  -webkit-mask-composite: intersect;
}

.puzzle-piece:nth-child(odd) > .puzzle-piece-inner {
  padding: 5% 5%;
  mask-image:
    radial-gradient(circle 30px at top, transparent 100%, black 100%),
    radial-gradient(circle 30px at bottom, transparent 100%, black 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(circle 30px at top, transparent 100%, black 100%),
    radial-gradient(circle 30px at bottom, transparent 100%, black 100%);
  -webkit-mask-composite: intersect;
}

.puzzle-piece-inner span {
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 500;
}

.puzzle-piece .edge {
  position: absolute;
  z-index: -1;
  background-color: var(--highlight-4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.puzzle-piece .edge.left {
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.puzzle-piece .edge.right {
  right: -35px;
  bottom: 50%;
  transform: translateY(50%);
}

.puzzle-piece .edge.top {
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
}

.puzzle-piece .edge.bottom {
  right: 50%;
  bottom: -35px;
  transform: translateX(50%);
}

.puzzle-piece:hover > .puzzle-piece-inner, .puzzle-piece:hover > .edge {
  background-color: var(--primary-brand-2);
  color: var(--primary-brand-1);
}

.puzzle-piece-inner.main {
  align-items: end;
}

.puzzle-piece-inner.main {
  background-color: var(--primary-brand-2);
}

.puzzle-piece.main:hover > .puzzle-piece-inner.main {
  background-color: var(--primary-brand-2);
}

.puzzle-piece-inner.main > span {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  color: var(--primary-brand-1);
}

/**
 * =======================================
 * Footer section
 * =======================================
 */

footer, .footer-inner {
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

footer {
  padding: 6rem 0;
}

.footer-h1 {
  position: absolute;
  bottom: 5rem;
  padding: 0;
  color: var(--primary-brand-1);
  font-size: 16vw;
  font-weight: 700;
  line-height: 1;
  z-index: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}

.footer-inner {
  position: absolute;
  bottom: 0;
  /* gap: 6rem; */
  padding: 6rem 1rem 1.5rem 1rem;
}

.footer {
  position: relative;
  max-width: none;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.footer-skyline {
  position: relative;
  z-index: -1;
  bottom: -4px;
  width: 100%;
  aspect-ratio: 5654 / 1505.32;
  pointer-events: none;
}

.footer-skyline-padding {
  background-color: var(--secondary-background);
  width: 100%;
  height: 10rem;
}

.footer-skyline > path {
  fill: var(--secondary-background);
  overflow: visible;
}

.footer-text-sm {
  color: var(--black);
  display: inline;
  text-align: center;
}

.footer-text-lg {
  color: var(--black);
  display: none;
}

.footer-text-sm > a, .footer-text-lg > a {
  color: var(--black);
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  color: var(--primary-brand-2);
}

.footer-link > .linkedin {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-link > .arrow {
  width: 2rem;
  height: 2rem;
}

.footer-inner .footer-text-sm, .footer-inner .footer-text-sm > a,
.footer-inner .footer-text-lg, .footer-inner .footer-text-lg > a,
.footer-inner .footer-link {
  color: var(--primary-brand-1);
}

/**
 * =======================================
 * Media queries
 * =======================================
 */

/* width >= 640px */
@media (min-width: 40rem) {
  .btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
  }

  .btn-sm {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    gap: 0.75rem;
  }

  .btn-sm-no-icon {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }

  .h1 {
    font-size: 4rem;
  }

  .section-btn-container {
    flex-direction: row;
  }

  .section {
    width: 38rem;
    font-size: 1.75rem;
    gap: 1.5rem;
  }

  .h2 {
    font-size: 1.5rem;
  }

  .section-quote {
    font-size: 1.35rem;
  }

  .row, .col {
    gap: 1.5rem;
  }

  .venn {
    width: 36rem;
    height: 32rem;
  }

  .circle {
    padding: 4rem 2rem;
  }

  .c1, .c4 {
    width: 16rem;
    height: 20rem;
  }

  .c2, .c3 {
    width: 24rem;
    height: 16rem;
  }

  .c1 {
    align-items: start;
  }

  .c2 {
    transform: translateY(-50%);
    justify-content: start;
  }

  .c3 {
    transform: translateY(-50%);
    justify-content: end;
  }

  .c4 {
    align-items: end;
  }

  .orbit-wrapper {
    width: 36rem;
    height: 24rem;
    aspect-ratio: auto;
    margin: 1rem auto;
  }

  .orbit-center-content h3 {
    font-size: 1.75rem;
  }

  .orbit-center-content p {
    font-size: 1rem;
  }

  .orbit-item strong {
    font-size: 1.5rem;
  }

  .orbit-item span {
    font-size: 1rem;
  }

  .founders {
    top: 0;
    left: 45%;
  }

  .operators {
    top: 25%;
    right: 0;
  }

  .investors {
    bottom: 0;
    left: 60%;
  }

  .tile-inner {
    padding: 1.5rem;
  }

  .tile .icon {
    margin-bottom: 0.5rem;
  }

  .tile h3 {
    font-size: 1.75rem;
  }

  .tile ul {
    font-size: 1.25rem;
  }

  .tile .chips-wrapper {
    margin-top: 1rem;
  }

  .counter .number {
    font-size: 4rem;
  }

  .counter .label {
    font-size: 1.25rem;
  }

  .counter .label > .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* width >= 768px */
@media (min-width: 48rem) {
  #home {
    padding: 6rem 4rem;
  }

  .h1 {
    font-size: 4rem;
  }

  .section {
    width: 40rem;
    gap: 2rem;
  }

  .row, .col {
    gap: 2rem;
  }

  .overline {
    font-size: 1.1rem;
  }

  .h2 {
    font-size: 1.75rem;
  }

  .tile-inner {
    gap: 0.5rem;
    padding: 1.75rem;
  }

  .tile .icon {
    margin-bottom: 1rem;
  }

  #counter-grid {
    flex-direction: row;
  }

  .counter .number {
    font-size: 5rem;
  }

  .counter .label {
    font-size: 1.125rem;
  }

  .counter .label > .icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer-skyline-padding {
    height: 8rem;
  }

  footer, .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  footer {
    padding: 8rem 0;
  }

  .footer-inner {
    padding: 8rem 2rem 1.5rem 2rem;
  }

  .footer-text-sm {
    display: none;
  }

  .footer-text-lg {
    display: inline;
  }
}

/* width >= 1024px */
@media (min-width: 64rem) {
  .h1 {
    font-size: 5rem;
  }

  .h1 > span {
    font-size: 3rem;
  }

  .section {
    width: 60rem;
    font-size: 2rem;
  }

  .section-quote {
    font-size: 1.5rem;
  }

  .section-lg {
    font-size: 4rem;
  }

  .venn {
    width: 42rem;
    height: 34rem;
  }

  .circle {
    font-size: 1.5rem;
    width: 24rem;
    height: 24rem;
    padding: 5rem 2rem;
  }

  .c1, .c4 {
    width: 16rem;
    height: 20rem;
  }

  .c2, .c3 {
    width: 24rem;
    height: 16rem;
  }

  .c1 {
    align-items: start;
  }

  .c2 {
    justify-content: start;
  }

  .c3 {
    justify-content: end;
  }

  .c4 {
    align-items: end;
  }

  .orbit-wrapper {
    width: 48rem;
    height: 28rem;
  }

  .orbit-center-content h3 {
    font-size: 2rem;
  }

  .orbit-center-content p {
    font-size: 1.25rem;
  }

  .orbit-item strong {
    font-size: 1.75rem;
  }

  .orbit-item span {
    font-size: 1.25rem;
  }

  .operators {
    top: 40%;
    right: 0;
  }

  .tile {
    width: 50%;
  }

  .puzzle-wrapper {
    width: 60rem;
    margin-bottom: -2rem;
  }

  .puzzle-piece {
    width: 32%;
  }

  .puzzle-piece.main .edge {
    background-color: var(--primary-brand-2);
  }

  .puzzle-piece.main:hover > .puzzle-piece.main .edge {
    background-color: var(--primary-brand-2);
  }
}

/* width >= 1280px */
@media (min-width: 80rem) {
  .section {
    width: 76rem;
    font-size: 2rem;
  }

  .h1 {
    font-size: 6rem;
  }

  .h1 > span {
    font-size: 4rem;
  }

  .row {
    flex-direction: row;
  }

  .venn {
    width: 42rem;
    height: 34rem;
    margin: 0rem auto;
  }

  .circle {
    font-size: 1.5rem;
    width: 24rem;
    height: 24rem;
    padding: 5rem 2rem;
  }

  .c1, .c4 {
    width: 16rem;
    height: 20rem;
  }

  .c2, .c3 {
    width: 24rem;
    height: 16rem;
  }

  .c1 {
    align-items: start;
  }

  .c2 {
    justify-content: start;
  }

  .c3 {
    justify-content: end;
  }

  .c4 {
    align-items: end;
  }

  .orbit-wrapper {
    width: 58rem;
    height: 28rem;
    margin: 1rem auto;
  }

  .orbit-center-content {
    padding: 1.5rem 2.5rem;
  }

  .orbit-center-content h3 {
    font-size: 2.5rem;
  }

  .orbit-center-content p {
    font-size: 1.5rem;
  }

  .orbit-item strong {
    font-size: 2rem;
  }

  .orbit-item span {
    font-size: 1.35rem;
  }

  .founders {
    top: 0;
    left: 45%;
  }

  .operators {
    top: 40%;
    right: 0;
  }

  .investors {
    bottom: 0;
    left: 60%;
  }

  .creators {
    bottom: 12%;
    left: 4%;
  }

  .professionals {
    top: 20%;
    left: 4%;
  }

  .tile .icon {
    width: 4rem;
    height: 4rem;
  }

  .tile .chips-wrapper {
    flex-direction: row;
  }

  #counter-grid {
    flex-direction: row;
    gap: 2rem;
    width: 72rem;
  }

  .counter .number {
    font-size: 6rem;
  }

  .counter .label {
    font-size: 1.35rem;
  }

  .counter .label > .icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .puzzle-wrapper {
    width: 70rem;
    margin-bottom: 0;
  }

  .puzzle-piece:nth-child(even) > .puzzle-piece-inner {
    mask-image:
      radial-gradient(circle 50px at left, transparent 100%, black 100%),
      radial-gradient(circle 50px at right, transparent 100%, black 100%);
    -webkit-mask-image:
      radial-gradient(circle 50px at left, transparent 100%, black 100%),
      radial-gradient(circle 50px at right, transparent 100%, black 100%);
  }

  .puzzle-piece:nth-child(odd) > .puzzle-piece-inner {
    padding: 5% 5%;
    mask-image:
      radial-gradient(circle 50px at top, transparent 100%, black 100%),
      radial-gradient(circle 50px at bottom, transparent 100%, black 100%);
    -webkit-mask-image:
      radial-gradient(circle 50px at top, transparent 100%, black 100%),
      radial-gradient(circle 50px at bottom, transparent 100%, black 100%);
  }

  .puzzle-piece .edge {
    width: 90px;
    height: 90px;
  }

  .puzzle-piece .edge.left {
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
  }

  .puzzle-piece .edge.right {
    right: -52px;
    bottom: 50%;
    transform: translateY(50%);
  }

  .puzzle-piece .edge.top {
    left: 50%;
    top: -52px;
    transform: translateX(-50%);
  }

  .puzzle-piece .edge.bottom {
    right: 50%;
    bottom: -52px;
    transform: translateX(50%);
  }

  .puzzle-piece-inner span {
    font-size: 1.75rem;
  }

  .puzzle-piece.main > .puzzle-piece-inner.main {
    padding-bottom: 2.5rem;
  }

  .puzzle-piece-inner.main > span {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .footer-h1 {
    padding: 5rem;
  }
}

/* width >= 1536px */
@media (min-width: 96rem) {
  .section {
    width: 80rem;
  }

  .section-lg {
    font-size: 5rem;
  }

  .orbit-wrapper {
    width: 64rem;
    height: 30rem;
  }
}

/* width >= 1920px */
@media (min-width: 120rem) {
  .tile {
    width: 25%;
  }
}
