.titan-wheel {
  position: relative;
  margin-top: clamp(64px, 7vw, 112px);
  overflow: clip;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.34), transparent 28%),
    var(--titan-accent);
  color: var(--titan-bg);
}

.titan-wheel::before {
  content: "";
  position: absolute;
  top: -26%;
  left: -8%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(12, 13, 15, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(12, 13, 15, 0.035),
    0 0 0 104px rgba(12, 13, 15, 0.025);
  pointer-events: none;
}

.titan-wheel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(68px, 7vw, 108px) clamp(24px, 4vw, 64px);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.titan-wheel__copy {
  max-width: 720px;
}

.titan-wheel__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font: 700 11px/1.5 "Roboto Mono", monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.titan-wheel__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.titan-wheel__title {
  max-width: 10ch;
  margin: 0;
  font: 600 clamp(48px, 6.2vw, 88px)/0.92 Oswald, sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.titan-wheel__title span {
  display: block;
  margin-top: 0.1em;
  color: rgba(12, 13, 15, 0.56);
}

.titan-wheel__lede {
  max-width: 540px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.titan-wheel__stage {
  min-width: 0;
  min-height: 612px;
  padding: clamp(10px, 1.6vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(12, 13, 15, 0.18);
  border-radius: 36px;
  background: #f8f8f6;
  box-shadow: 0 34px 80px -44px rgba(12, 13, 15, 0.68);
}

.titan-wheel__embed {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 564px;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.titan-wheel__embed iframe {
  max-width: 100%;
  border: 0;
}

@media (min-width: 901px) {
  .titan-wheel__embed .widster-wrapper,
  .titan-wheel__embed iframe {
    width: 858px !important;
    height: 564px !important;
    max-width: 100% !important;
  }
}

@media (min-width: 1320px) {
  .titan-wheel__inner {
    grid-template-columns: minmax(270px, 0.56fr) minmax(858px, 1.44fr);
  }

  .titan-wheel__copy {
    align-self: center;
  }
}

@media (max-width: 900px) {
  .titan-wheel__embed .widster-wrapper,
  .titan-wheel__embed iframe {
    width: 100% !important;
    height: 844px !important;
    max-width: 100% !important;
  }

  .titan-wheel__inner {
    padding-block: clamp(60px, 8vw, 84px);
  }

  .titan-wheel__stage {
    min-height: 884px;
  }

  .titan-wheel__embed {
    min-height: 840px;
  }
}

@media (max-width: 520px) {
  .titan-wheel__inner {
    padding-inline: 18px;
    gap: 30px;
  }

  .titan-wheel__title {
    font-size: clamp(42px, 14vw, 60px);
  }

  .titan-wheel__lede {
    margin-top: 22px;
    font-size: 16px;
  }

  .titan-wheel__stage {
    min-height: 862px;
    padding: 8px;
    border-radius: 28px;
  }

  .titan-wheel__embed {
    min-height: 844px;
    border-radius: 22px;
  }
}
