/* Homepage challenge floor v2 — Figma Challenge-2-Step / 1-Step / Instant / Sprint */

#section-challenge {
  scroll-margin-top: 100px;
}

.app-model-challenge-wrap .challenge-floor-v2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.challenge-floor-v2 {
  --cv2-orange: #f98715;
  --cv2-cyan: #72d4f5;
  --cv2-text: #fcfcfc;
  --cv2-muted: #999;
  --cv2-dim: #ccc;
  --cv2-card: #1a1717;
  --cv2-panel: #0f0900;
  --cv2-border: rgba(255, 255, 255, 0.08);
  --cv2-radius: 20px;
  --cv2-tooltip-bg: #ffffff;
  --cv2-tooltip-text: #666666;
  --cv2-tooltip-width: 380px;
  padding: 80px 0;
  color: var(--cv2-text);
  font-family: Inter, system-ui, sans-serif;
}

.challenge-floor-v2 .container {
  max-width: 1128px;
}

.cv2-hero {
  text-align: center;
  margin-bottom: 40px;
}

.cv2-hero h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
}

.cv2-hero h2 .cv2-hero__accent {
  color: var(--cv2-orange);
}

.cv2-hero p {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--cv2-muted);
}

.cv2-progs {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 16px;
}

.cv2-prog {
  position: relative;
  flex: 1 1 0;
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-radius: var(--cv2-radius);
  background: var(--cv2-card);
  color: #fff;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    flex-grow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cv2-prog.is-active {
  flex-grow: 1.8;
  background: transparent;
  box-shadow: 0 16px 28.5px rgba(0, 0, 0, 0.05);
}

.cv2-prog__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.cv2-prog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(7, 4, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cv2-prog::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset -12px 1px 24px rgba(249, 135, 21, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cv2-prog.is-active::before,
.cv2-prog.is-active::after {
  opacity: 1;
}

.cv2-prog__glow {
  position: absolute;
  left: 7px;
  top: -87px;
  z-index: 0;
  width: 525px;
  height: 244.5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cv2-prog.is-active .cv2-prog__glow {
  opacity: 1;
}

.cv2-prog__glow-blob {
  position: absolute;
  top: -30.27%;
  right: -14.1%;
  bottom: -30.27%;
  left: -14.1%;
}

.cv2-prog__glow-blob img {
  display: block;
  width: 100%;
  height: 100%;
}

.cv2-prog__head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cv2-prog__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.24px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cv2-prog.is-active .cv2-prog__title,
.cv2-prog.is-active .cv2-prog__tag {
  color: var(--cv2-orange);
}

.cv2-prog__extras {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

.cv2-prog.is-active .cv2-prog__extras {
  max-width: 180px;
  opacity: 1;
}

.cv2-prog__pipe {
  width: 1px;
  height: 18px;
  background: var(--cv2-orange);
  opacity: 0.7;
  flex-shrink: 0;
}

.cv2-prog__tag {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cv2-prog__desc {
  position: relative;
  z-index: 3;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.14px;
  color: var(--cv2-dim);
  transition: color 0.3s ease;
}

.cv2-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.cv2-sheet {
  display: contents;
}

.cv2-sizes {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 8px;
  padding-top: 14px;
  min-width: 0;
  overflow: visible;
}

.cv2-panel {
  grid-column: 1;
  grid-row: 2;
}

.cv2-buy {
  grid-column: 2;
  grid-row: 1 / -1;
}

.cv2-size {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  border: 0;
  border-radius: var(--cv2-radius);
  background: var(--cv2-card);
  color: #fff;
  text-align: left;
  cursor: pointer;
  overflow: visible;
}

.cv2-size__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.cv2-size.is-active {
  background: transparent;
  box-shadow: 0 16px 28.5px rgba(0, 0, 0, 0.05);
}

.cv2-size.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(7, 4, 0, 0.2);
  pointer-events: none;
}

.cv2-size.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset -8px 1px 13px rgba(249, 135, 21, 0.6);
  pointer-events: none;
}

.cv2-size__glow {
  position: absolute;
  left: -24px;
  top: -79px;
  z-index: 0;
  width: 263.8px;
  height: 215.5px;
  pointer-events: none;
}

.cv2-size__glow-blob {
  position: absolute;
  top: -34.34%;
  right: -28.05%;
  bottom: -34.34%;
  left: -28.05%;
}

.cv2-size__glow-blob img {
  display: block;
  width: 100%;
  height: 100%;
}

.cv2-size__kicker,
.cv2-size__label,
.cv2-size__fee {
  position: relative;
  z-index: 1;
}

.cv2-size__kicker {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.12px;
  color: var(--cv2-muted);
}

.cv2-size__label {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.28px;
  line-height: 1.1;
  background-image: linear-gradient(180deg, #fffcf8 32.385%, #ffa041 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cv2-size.is-active .cv2-size__label {
  background-image: linear-gradient(180deg, #ffe13a 3.64%, #fb5600 100%);
}

.cv2-size__fee {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--cv2-cyan);
}

.cv2-best {
  position: absolute;
  top: -12px;
  right: 8px;
  z-index: 3;
  width: 48px;
  height: 46px;
  pointer-events: none;
  filter: drop-shadow(0 0 17px #f98715);
}

.cv2-best__img {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 46px;
  display: block;
  object-fit: cover;
}

.cv2-best__txt {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 29px;
  font-size: 9.1px;
  font-weight: 900;
  line-height: 10px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  font-feature-settings: "onum" 1, "pnum" 1;
  transform: translateX(-50%) rotate(3.81deg);
}

.cv2-panel {
  position: relative;
  flex: 1;
  padding: 20px;
  border: 1px solid var(--cv2-border);
  border-radius: 24px;
  background: var(--cv2-panel);
  overflow: visible;
}

.cv2-panel__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 4px 0 14px;
}

.cv2-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cv2-text);
  cursor: pointer;
}

.cv2-toggle__track {
  position: relative;
  width: 32px;
  height: 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.cv2-toggle.is-on .cv2-toggle__track {
  background: var(--cv2-orange);
}

.cv2-toggle__knob {
  position: absolute;
  top: 1.5px;
  left: 1.5px;
  width: 17px;
  height: 17px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 1.88px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.cv2-toggle.is-on .cv2-toggle__knob {
  transform: translateX(12px);
}

.cv2-toggle__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.cv2-pt {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cv2-pt__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
}

.cv2-pt__value {
  font-size: 13px;
  font-weight: 700;
  line-height: 19.5px;
  color: var(--cv2-cyan);
}

.cv2-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cv2-rules-grid.is-split {
  grid-template-columns: 1fr 1fr;
}

.cv2-rules-col {
  padding: 20px;
  border-radius: var(--cv2-radius);
  background-image: linear-gradient(245deg, rgba(80, 56, 34, 0.4) 0%, rgba(13, 7, 0, 0.4) 80%);
}

.cv2-rules-col__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--cv2-muted);
}

.cv2-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 0;
}

.cv2-rule__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cv2-rule__label,
.cv2-rule__value {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.12px;
  color: var(--cv2-muted);
}

.cv2-rule__value {
  text-align: right;
  flex-shrink: 0;
}

.cv2-rule.is-accent .cv2-rule__label,
.cv2-rule.is-accent .cv2-rule__value {
  color: var(--cv2-orange);
}

.cv2-buy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
  padding: 20px;
  border: 1px solid var(--cv2-border);
  border-radius: var(--cv2-radius);
  background-color: #070400;
  background-image: linear-gradient(256.16deg, rgba(79, 47, 17, 0.4) 0%, rgba(15, 9, 0, 0.4) 34.96%);
}

.cv2-buy__head,
.cv2-buy__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cv2-rule-tabs {
  display: none;
}

.cv2-buy__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.18px;
}

.cv2-buy__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.cv2-buy__now {
  font-size: 36px;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: -0.36px;
  color: var(--cv2-cyan);
}

.cv2-buy__was {
  padding-bottom: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #666;
  text-decoration: line-through;
}

.cv2-qty {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.cv2-qty-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: #666;
}

.cv2-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  opacity: 0.38;
}

.cv2-qty-row.is-on {
  opacity: 1;
}

.cv2-qty-row__left,
.cv2-qty-row__right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 16px;
}

.cv2-qty-row.is-on .cv2-qty-row__left {
  color: #f5f7fa;
}

.cv2-qty-row__right {
  font-weight: 600;
  color: #999;
}

.cv2-qty-row.is-on .cv2-qty-row__right {
  color: #f5f7fa;
}

.cv2-qty-badge {
  padding: 4px;
  border-radius: 4px;
  background: rgba(249, 135, 21, 0.12);
  color: var(--cv2-orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 10px;
}

.cv2-buy__actions {
  display: flex;
  gap: 8px;
}

.cv2-stepper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 50px;
  padding: 0 10px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 12px;
  flex-shrink: 0;
}

.cv2-stepper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(249, 135, 21, 0.35) 0%,
    rgba(249, 135, 21, 0.35) 30%,
    #ffc670 50%,
    rgba(249, 135, 21, 0.35) 70%,
    rgba(249, 135, 21, 0.35) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  animation: cv2-stepper-shimmer 2s ease-in-out infinite alternate;
}

.cv2-stepper::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: 0;
  pointer-events: none;
  border-radius: 10.5px;
  background: #0a0702;
}

.cv2-stepper > * {
  position: relative;
  z-index: 1;
}

@keyframes cv2-stepper-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv2-stepper::before {
    animation: none;
    background-position: 50% 0;
  }

  .cv2-prog,
  .cv2-prog__glow,
  .cv2-prog__extras,
  .cv2-prog::before,
  .cv2-prog::after,
  .cv2-prog__title,
  .cv2-prog__tag,
  .cv2-prog__desc {
    transition: none;
  }
}

.cv2-stepper__n {
  font-size: 14px;
  font-weight: 600;
  color: #f5f7fa;
}

.cv2-stepper__btn {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cv2-cta {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 50px;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--cv2-orange);
  box-shadow: inset 0 2px 6px rgba(254, 254, 254, 0.32);
  color: #fefefe;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.cv2-cta:hover {
  filter: brightness(1.06);
}

.cv2-addons__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: #666;
  margin-bottom: 8px;
}

.cv2-addon {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cv2-border);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.14px;
}

.cv2-pays {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.cv2-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 26px;
  overflow: hidden;
  border-radius: 6px;
  background-color: transparent;
  background-image: var(--cv2-pays-sprite, url("../images/challenge-v2/pays-sprite.svg"));
  background-repeat: no-repeat;
  background-size: 240px 26px;
}

.cv2-pay--visa {
  background-position: 0 0;
}

.cv2-pay--mc {
  background-position: -40px 0;
}

.cv2-pay--amex {
  background-position: -80px 0;
}

.cv2-pay--interac {
  background-position: -120px 0;
}

.cv2-pay--gpay {
  width: 39px;
  background-position: -160px 0;
}

.cv2-pay--apple {
  width: 39px;
  background-position: -200px 0;
}

.cv2-pay--more {
  width: auto;
  padding: 4.73px 5.68px;
  background-image: none;
  background-color: #231f20;
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: -0.1px;
  color: #ccc;
  white-space: nowrap;
}

/* Tooltip — same principle as Profit Target metric-help */
.cv2-help {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.cv2-help-btn {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cv2-help-btn__icon {
  width: 14px;
  height: 14px;
  display: block;
}

.cv2-ico {
  display: block;
  flex-shrink: 0;
}

.cv2-rules-col__head .cv2-ico,
.cv2-qty-row__left .cv2-ico {
  width: 18px;
  height: 18px;
}

.cv2-stepper__btn .cv2-ico {
  width: 14px;
  height: 14px;
}

.cv2-pt .cv2-help-btn,
.cv2-pt .cv2-help-btn__icon {
  width: 16px;
  height: 16px;
}

.cv2-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  width: var(--cv2-tooltip-width);
  max-width: min(var(--cv2-tooltip-width), calc(100vw - 48px));
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

.cv2-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: var(--cv2-tooltip-bg);
  border-radius: 3px;
  transform: rotate(45deg);
}

.cv2-rules-grid.is-split .cv2-rules-col:last-child .cv2-tooltip {
  left: auto;
  right: calc(100% + 10px);
}

.cv2-rules-grid.is-split .cv2-rules-col:last-child .cv2-tooltip::before {
  left: auto;
  right: -6px;
}

.cv2-tooltip__surface {
  display: block;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--cv2-tooltip-bg);
  color: var(--cv2-tooltip-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.cv2-tooltip--leverage {
  width: 191px;
}

.cv2-tooltip--leverage .cv2-tooltip__surface {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.12px;
}

.cv2-lev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  color: #666;
}

.cv2-lev-row strong {
  font-weight: 500;
  color: #070400;
}

.cv2-lev-row--end {
  justify-content: flex-end;
}

.cv2-help:hover,
.cv2-help.show {
  z-index: 50;
}

.cv2-help:hover .cv2-tooltip,
.cv2-help.show .cv2-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

@media (max-width: 1199.98px) {
  .cv2-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cv2-sizes,
  .cv2-panel,
  .cv2-buy {
    grid-column: 1;
    grid-row: auto;
  }

  .cv2-buy {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .challenge-floor-v2 {
    padding: 48px 0;
  }

  .cv2-hero {
    margin-bottom: 24px;
  }

  .cv2-progs,
  .cv2-sizes {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .cv2-progs::-webkit-scrollbar,
  .cv2-sizes::-webkit-scrollbar {
    display: none;
  }

  .cv2-prog__desc,
  .cv2-prog__glow {
    display: none;
  }

  .cv2-prog {
    flex: 0 0 auto;
    flex-grow: 0;
    gap: 0;
    padding: 10px 14px;
    min-height: 40px;
    justify-content: center;
    border: 1px solid transparent;
    transition:
      border-color 0.35s ease,
      background-color 0.35s ease,
      padding 0.35s ease;
  }

  .cv2-prog.is-active {
    flex: 0 0 auto;
    flex-grow: 0;
    padding: 10px 16px;
    box-shadow: none;
    background: rgba(7, 4, 0, 0.35);
    border-color: var(--cv2-orange);
  }

  .cv2-prog__extras {
    max-width: 0;
    opacity: 0;
  }

  .cv2-prog.is-active .cv2-prog__extras {
    max-width: 120px;
    opacity: 1;
  }

  .cv2-prog.is-active::before,
  .cv2-prog.is-active::after,
  .cv2-prog__glow {
    display: none;
  }

  .cv2-size.is-active::before,
  .cv2-size.is-active::after,
  .cv2-size__glow {
    display: none;
  }

  .cv2-size.is-active {
    box-shadow: inset -8px 1px 13px rgba(249, 135, 21, 0.6);
    background: rgba(7, 4, 0, 0.2);
  }

  .cv2-prog__title {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .cv2-prog__tag {
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
  }

  .cv2-prog__pipe {
    height: 14px;
  }

  .cv2-sizes {
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .cv2-size {
    flex: 0 0 132px;
    padding: 14px 12px;
    scroll-snap-align: start;
  }

  .cv2-size__label {
    font-size: 22px;
  }

  .cv2-size__fee {
    font-size: 15px;
    line-height: 20px;
  }

  .cv2-best {
    top: -11px;
    right: -2px;
    width: 39px;
    height: 37px;
    filter: drop-shadow(0 0 11px #f98715);
  }

  .cv2-best__img {
    width: 39px;
    height: 37px;
  }

  .cv2-best__txt {
    top: 12px;
    width: 25px;
    font-size: 7.5px;
    line-height: 8.2px;
  }

  .cv2-body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cv2-sizes {
    margin-bottom: 12px;
  }

  .cv2-sheet {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--cv2-border);
    border-radius: 20px;
    background-color: #070400;
    background-image: linear-gradient(
      180deg,
      rgba(79, 47, 17, 0.42) 0%,
      rgba(15, 9, 0, 0.5) 100%
    );
    overflow: visible;
  }

  .cv2-buy {
    display: contents;
  }

  .cv2-buy__head,
  .cv2-panel,
  .cv2-buy__body {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
  }

  .cv2-buy__head {
    order: 1;
    gap: 4px;
    padding: 14px 16px 8px;
  }

  .cv2-panel {
    order: 2;
    padding: 8px 16px 4px;
  }

  .cv2-buy__body {
    order: 3;
    padding: 8px 16px 16px;
    gap: 12px;
  }

  .cv2-buy__title {
    font-size: 16px;
    line-height: 20px;
  }

  .cv2-buy__now {
    font-size: 32px;
    line-height: 40px;
  }

  .cv2-panel__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 6px;
    row-gap: 6px;
    padding: 4px 0 12px;
  }

  .cv2-toggle,
  .cv2-pt {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }

  .cv2-toggle {
    gap: 6px;
  }

  .cv2-pt {
    gap: 4px;
  }

  .cv2-toggle__label,
  .cv2-pt__label {
    font-size: 12px;
    line-height: 16px;
  }

  .cv2-pt__value {
    font-size: 12px;
    line-height: 16px;
  }

  .cv2-rule-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .cv2-rule-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--cv2-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    cursor: pointer;
  }

  .cv2-rule-tab.is-active {
    border-color: #f98715;
    background: rgba(249, 135, 21, 0.12);
    color: #fff;
  }

  .cv2-rules-grid.is-split {
    grid-template-columns: 1fr;
  }

  .cv2-rules-grid.is-split .cv2-rules-col {
    display: none;
  }

  .cv2-rules-grid.is-split .cv2-rules-col.is-shown {
    display: block;
  }

  .cv2-rules-grid.is-split .cv2-rules-col__head {
    display: none;
  }

  .cv2-rules-col {
    padding: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
  }

  .cv2-rule {
    min-height: 32px;
    padding: 6px 0;
  }

  .cv2-qty {
    display: none;
  }

  .cv2-buy__actions {
    flex-direction: row;
    align-items: stretch;
  }

  .cv2-stepper {
    width: 100px;
    flex: none;
    height: 50px;
    min-height: 50px;
  }

  .cv2-cta {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 50px;
    min-height: 50px;
  }

  .cv2-tooltip {
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%);
    width: min(320px, calc(100vw - 32px));
  }

  .cv2-tooltip--leverage {
    left: 0;
    right: auto;
    transform: none;
    width: 191px;
    max-width: calc(100vw - 32px);
  }

  .cv2-tooltip--leverage::before {
    left: 8px;
    right: auto;
    top: -6px;
    margin-top: 0;
    margin-left: 0;
  }

  .cv2-rules-grid.is-split .cv2-rules-col:last-child .cv2-tooltip--leverage {
    left: 0;
    right: auto;
  }

  .cv2-rules-grid.is-split .cv2-rules-col:last-child .cv2-tooltip--leverage::before {
    left: 8px;
    right: auto;
    top: -6px;
    margin-top: 0;
  }

  .cv2-tooltip::before {
    left: 50%;
    top: -6px;
    margin-top: 0;
    margin-left: -7px;
  }

  .cv2-help:hover .cv2-tooltip {
    opacity: 0;
    visibility: hidden;
  }

  .cv2-help.show .cv2-tooltip {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 575.98px) {
  .cv2-hero p {
    font-size: 15px;
  }
}
