/* O.CT V8 Coming Soon — Bold Gold Frame (G3) */

.oct-cs-orb {
  --oct-cs-size: 200px;
  position: relative;
  display: inline-block;
  width: var(--oct-cs-size);
  height: var(--oct-cs-size);
  flex-shrink: 0;
  vertical-align: middle;
  z-index: 6;
}

.oct-cs-orb__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.oct-cs-orb__svg .oct-cs-spin-cw {
  transform-origin: 100px 100px;
  animation: octCsSpinCW 18s linear infinite;
}

.oct-cs-orb__svg .oct-cs-spin-ccw {
  transform-origin: 100px 100px;
  animation: octCsSpinCCW 26s linear infinite;
}

.oct-cs-orb__svg .oct-cs-spin-ccw-slow {
  transform-origin: 100px 100px;
  animation: octCsSpinCCW 34s linear infinite;
}

@keyframes octCsSpinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes octCsSpinCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.oct-cs-orb__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 76%;
  height: 76%;
  /* Default (links: Verado / Fourstroke): nach links unten */
  transform: translate(-50%, -50%) rotate(-12deg);
  border-radius: 50%;
  background: #ffe200;
  color: #07111b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 226, 0, 0.35);
}

.oct-cs-orb__kicker {
  display: block;
  margin: 0 0 7px;
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.oct-cs-orb__title {
  display: block;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

/* Compact for motor-select cards */
.oct-cs-orb--sm {
  --oct-cs-size: 112px;
}

.oct-cs-orb--sm .oct-cs-orb__core {
  width: 78%;
  height: 78%;
  padding: 6px;
}

.oct-cs-orb--sm .oct-cs-orb__kicker {
  font-size: 9px;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}

.oct-cs-orb--sm .oct-cs-orb__title {
  font-size: 11px;
}

/* ── Home hero: im Textpanel horizontal zentriert, Schrift nach rechts unten ── */
.oct-home-hero-v20 .oct-cs-orb {
  --oct-cs-size: min(230px, 48vw);
  display: block;
  margin: 32px auto 0;
}

.oct-home-hero-v20 .oct-cs-orb__core,
.oct-home-select-hero-v3 .oct-cs-orb__core {
  transform: translate(-50%, -50%) rotate(12deg);
}

/* ── Verado hero: vor dem Text, Abstand nach unten ── */
.oct-verado-hero-v9 .oct-hero-left .oct-cs-orb,
.oct-verado-hero-v10 .oct-hero-left .oct-cs-orb,
.oct-verado-hero-v11 .oct-hero-left .oct-cs-orb,
.oct-verado-hero-v12 .oct-hero-left .oct-cs-orb {
  --oct-cs-size: min(190px, 40vw);
  display: block;
  margin: 0 0 22px;
}

/* ── Fourstroke hero: vor dem Text ── */
.oct-fs-hero .oct-cs-orb {
  --oct-cs-size: min(180px, 38vw);
  display: block;
  margin: 0 0 22px;
}

/* Fourstroke V8 showcase — rechts im Copy-Block + Schrift nach rechts unten */
.oct-fs-showcase--v8 .oct-fs-showcase__copy .oct-cs-orb {
  --oct-cs-size: min(150px, 36vw);
  display: block;
  margin: 0 0 18px auto;
}

.oct-fs-showcase--v8 .oct-fs-showcase__copy .oct-cs-orb__core {
  transform: translate(-50%, -50%) rotate(12deg);
}

/* Motor-select: Coming Soon ganz rechts außen, nicht über der Schrift */
.oct-select-choice-v3 {
  position: relative;
}

.oct-select-choice-v3 .oct-cs-orb {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 4;
}

.oct-select-choice-v3.oct-choice-verado {
  padding-right: 72px !important;
}

.oct-select-choice-v3.oct-choice-verado .oct-select-choice-text-v3 {
  padding-right: 8px;
  max-width: calc(100% - 4px);
}

@media (max-width: 1100px) {
  .oct-home-hero-v20 .oct-cs-orb {
    --oct-cs-size: min(196px, 50vw);
    margin-top: 26px;
  }

  .oct-verado-hero-v9 .oct-hero-left .oct-cs-orb,
  .oct-fs-hero .oct-cs-orb {
    --oct-cs-size: min(160px, 42vw);
    margin: 0 0 18px;
  }
}

@media (max-width: 900px) {
  .oct-select-choice-v3 .oct-cs-orb {
    right: -16px;
    --oct-cs-size: 92px;
  }

  .oct-select-choice-v3.oct-choice-verado {
    padding-right: 58px !important;
  }

  .oct-select-choice-v3 .oct-cs-orb .oct-cs-orb__kicker {
    font-size: 8px;
  }

  .oct-select-choice-v3 .oct-cs-orb .oct-cs-orb__title {
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .oct-home-hero-v20 .oct-cs-orb {
    --oct-cs-size: min(170px, 56vw);
    margin: 22px auto 0;
  }

  /* Links wie Textblock — nicht zentriert */
  .oct-verado-hero-v9 .oct-hero-left .oct-cs-orb,
  .oct-fs-hero .oct-cs-orb {
    --oct-cs-size: min(132px, 42vw);
    margin: 0 0 16px;
  }

  .oct-fs-showcase--v8 .oct-fs-showcase__copy .oct-cs-orb {
    --oct-cs-size: min(130px, 46vw);
    margin: 0 0 16px auto;
  }

  /* Motor-select mobile: kompakt oben rechts außen */
  .oct-select-choice-v3 .oct-cs-orb {
    right: -10px;
    top: 8px;
    transform: none;
    --oct-cs-size: 72px;
  }

  .oct-select-choice-v3.oct-choice-verado {
    padding-right: 52px !important;
  }

  .oct-select-choice-v3 .oct-cs-orb .oct-cs-orb__kicker {
    font-size: 7px;
    margin-bottom: 2px;
  }

  .oct-select-choice-v3 .oct-cs-orb .oct-cs-orb__title {
    font-size: 8px;
  }

  .oct-cs-orb__kicker {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .oct-cs-orb__title {
    font-size: 15px;
  }
}

/* Plain yellow circle only (no animated rings) — specs / right side */
.oct-cs-orb--plain .oct-cs-orb__svg {
  display: none !important;
}

.oct-cs-orb--plain {
  --oct-cs-size: 128px;
}

.oct-cs-orb--plain .oct-cs-orb__core {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(12deg);
}

.oct-cs-orb--plain .oct-cs-orb__kicker {
  font-size: 11px;
  margin-bottom: 5px;
}

.oct-cs-orb--plain .oct-cs-orb__title {
  font-size: 14px;
}

/* Fourstroke Specs — Coming Soon im V8-Tab-Balken (rechts) */
.oct-fs-tab--v8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: 18px;
}

.oct-fs-tab--v8 .oct-fs-tab__text {
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.oct-fs-tab--v8 .oct-cs-orb--specs {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
  margin: 0;
  pointer-events: none;
  --oct-cs-size: 108px;
}

.oct-fs-tab--v8 .oct-cs-orb--specs .oct-cs-orb__kicker {
  font-size: 10px;
  margin-bottom: 4px;
}

.oct-fs-tab--v8 .oct-cs-orb--specs .oct-cs-orb__title {
  font-size: 12px;
}

/* Verado Spezifikationen — rechts neben Headline */
.oct-specs-v2 .oct-verado-inner {
  position: relative;
}

.oct-specs-v2 .oct-cs-orb--specs {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  margin: 0;
}

@media (max-width: 900px) {
  .oct-cs-orb--plain {
    --oct-cs-size: 100px;
  }

  .oct-cs-orb--plain .oct-cs-orb__kicker {
    font-size: 9px;
  }

  .oct-cs-orb--plain .oct-cs-orb__title {
    font-size: 11px;
  }

  .oct-fs-tab--v8 .oct-cs-orb--specs {
    --oct-cs-size: 92px;
  }

  .oct-specs-v2 .oct-cs-orb--specs {
    top: -4px;
    right: 0;
  }
}

@media (max-width: 640px) {
  .oct-cs-orb--plain {
    --oct-cs-size: 88px;
  }

  .oct-fs-tab--v8 {
    padding-right: 14px;
    gap: 12px;
  }

  .oct-fs-tab--v8 .oct-cs-orb--specs {
    --oct-cs-size: 78px;
  }

  .oct-fs-tab--v8 .oct-cs-orb--specs .oct-cs-orb__kicker {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .oct-fs-tab--v8 .oct-cs-orb--specs .oct-cs-orb__title {
    font-size: 10px;
  }

  .oct-specs-v2 .oct-cs-orb--specs {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 0 0 16px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oct-cs-orb__svg .oct-cs-spin-cw,
  .oct-cs-orb__svg .oct-cs-spin-ccw,
  .oct-cs-orb__svg .oct-cs-spin-ccw-slow {
    animation: none !important;
  }
}
