@media (max-width: 768px) {

/* =========================
   HERO — FULL MOBILE OPENER
========================= */

.cc-hero {
  min-height: 100svh;
  margin: 0;
  display: flex;
  align-items: stretch;
}

.cc-hero-inner {
  width: 100%;
  min-height: 100svh;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;

  overflow: visible;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cc-hero-inner::before,
.cc-hero-inner::after,
.cc-hero-right::before,
.cc-hero-right::after {
  display: none !important;
}

/* =========================
   HERO VISUAL — SHIFTED SPHERE
========================= */

.cc-hero-right {
  order: 1;
  position: relative;
  z-index: 2;

  height: 280px;
  min-height: 280px;

  display: grid;
  place-items: center;

  overflow: visible;
  margin-top: -58px;
}

.cc-hero-three-wrap {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 280px;
  min-height: 280px;

  display: grid;
  place-items: center;

  overflow: visible;
  transform: translateY(-18px);
}

#ccHeroSphere {
  position: relative;
  z-index: 6;

  width: min(390px, 108vw);
  max-width: 390px;

  transform: translateY(-18px);
}

/* =========================
   ORBIT LABELS — FORCE FRONT LAYER
========================= */

.cc-hero-orbit-labels {
  position: absolute;
  inset: 0;
  z-index: 20;

  pointer-events: none;
  transform: translateY(-18px);
}

.cc-three-label {
  z-index: 30 !important;
  font-size: 19px;
}

.cc-three-label.is-front {
  z-index: 40 !important;
}

.cc-three-label i {
  font-size: 18px;
}

.cc-three-label-one   { top: 16%; left: 41%; }
.cc-three-label-two   { top: 26%; right: 20%; }
.cc-three-label-three { top: 48%; right: 15%; }
.cc-three-label-four  { bottom: 18%; right: 28%; }
.cc-three-label-five  { top: 49%; left: 16%; }
.cc-three-label-six   { bottom: 24%; left: 24%; }
.cc-three-label-seven { top: 30%; left: 22%; }
.cc-three-label-eight { bottom: 32%; right: 18%; }

/* =========================
   HERO TEXT
========================= */

.cc-hero-left {
  order: 2;

  min-height: auto;
  margin-top: 44px;
  padding: 28px 12px 118px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.cc-hero-kicker {
  width: fit-content;
  max-width: calc(100% - 20px);

  margin: 0 auto 28px;
  padding: 8px 13px;

  border-radius: 999px;

  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0.095em;
}

.cc-hero-left h1 {
  max-width: 430px;

  margin: 0 0 36px;

  font-size: clamp(44px, 12.5vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.cc-hero-sub {
  max-width: 390px;

  margin: 0;

  font-size: 16px;
  line-height: 1.68;
}

.cc-hero-trust,
.cc-hero-card-stack {
  display: none !important;
}

/* =========================
   SMALL PHONE TUNING
========================= */

@media (max-width: 390px) {
  .cc-hero-right,
  .cc-hero-three-wrap {
    height: 260px;
    min-height: 260px;
  }

  .cc-hero-right {
    margin-top: -50px;
  }

  .cc-hero-three-wrap,
  #ccHeroSphere,
  .cc-hero-orbit-labels {
    transform: translateY(-14px);
  }

  #ccHeroSphere {
    width: min(350px, 110vw);
    max-width: 350px;
  }

  .cc-three-label {
    font-size: 18px;
  }

  .cc-three-label i {
    font-size: 17px;
  }

  .cc-hero-left {
    margin-top: 12px;
    padding: 24px 12px 104px;
  }

  .cc-hero-kicker {
    margin-bottom: 26px;
  }

  .cc-hero-left h1 {
    font-size: 41px;
    line-height: 0.95;
    margin-bottom: 32px;
  }

  .cc-hero-sub {
    font-size: 14.75px;
    line-height: 1.62;
  }
}

@media (max-width: 768px) {
  .cc-hero-right {
    margin-top: -38px !important;
    margin-bottom: -44px !important;
  }

  .cc-hero-three-wrap {
    transform: translateY(-8px);
  }
}

}