.godlike-new-seed-calculator {
  --gsc-bg: #0d111f;
  --gsc-panel: #141b2d;
  --gsc-border: rgba(92, 77, 255, 0.35);
  --gsc-text: #ffffff;
  --gsc-muted: #a0a0a0;
  --gsc-input: #1a2235;
  --gsc-gradient: linear-gradient(90deg, #5c4dff 0%, #2e8bff 100%);
  --gsc-gradient-main: linear-gradient(267.71deg, #007cee -37.36%, #5f39cb 98.08%);
  --gsc-red: #ff4d4d;
  --gsc-figma-200: #24253c;
  --gsc-figma-300: #33354a;
  --gsc-figma-400: #42455f;
  --gsc-figma-100: #1b1b2c;
  --gsc-figma-500: #5f6382;
  --gsc-figma-600: #8d8fac;
  --gsc-figma-700: #f6f9ff;
  padding: 2.5rem 0 1rem;
}

.godlike-new-seed-calculator__wrapper {
  /*max-width: 1200px;*/
}

.godlike-new-seed-calculator__grid {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 900px) {
  .godlike-new-seed-calculator__grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Calculator panel (Figma) ----- */
.godlike-new-seed-calculator__panel--calc {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  width: 100%;
  max-width: 596px;
  flex: 1 1 auto;
  box-sizing: border-box;
  background: var(--gsc-figma-200);
  border-radius: 24px;
  border: none;
  font-family: 'Gilroy', sans-serif;
}

.godlike-new-seed-calculator__panel--calc > .godlike-new-seed-calculator__title {
  margin: 0;
  width: 100%;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 4px;
  margin: 0;
  width: 100%;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__field--seed {
  gap: 10px;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__label {
  margin: 0;
  width: 100%;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: var(--gsc-figma-700);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__select-wrap {
  position: relative;
  width: 100%;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__select {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  appearance: none;
  display: flex;
  align-items: center;
  padding: 10px 36px 10px 12px;
  gap: 12px;
  background: var(--gsc-figma-300);
  border: none;
  border-radius: 4px;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--gsc-figma-700);
  cursor: pointer;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
  opacity: 0.5;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__search-wrap {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 12px;
  gap: 12px;
  background: var(--gsc-figma-300);
  border: none;
  border-radius: 4px;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__search-wrap.is-open {
  outline: 1px solid rgba(0, 124, 238, 0.45);
  outline-offset: 0;
  box-shadow: none;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  opacity: 0.5;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--gsc-figma-700);
  outline: none;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__search-input::placeholder {
  color: var(--gsc-figma-500);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__text {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  gap: 12px;
  background: var(--gsc-figma-300);
  border: none;
  border-radius: 4px;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--gsc-figma-700);
  outline: none;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__text::placeholder {
  color: var(--gsc-figma-500);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__chips {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  gap: 8px;
  margin: 0;
  width: 100%;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__chip {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 2px;
  min-height: 32px;
  border: none;
  border-radius: 24px;
  background: var(--gsc-figma-400);
  cursor: pointer;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--gsc-figma-700);
  transition: background 0.15s, filter 0.15s;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__chip:hover {
  filter: brightness(1.08);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__chip.is-active {
  background: var(--gsc-figma-400);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__players-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__players-head .godlike-new-seed-calculator__label {
  flex: 1 1 auto;
  width: auto;
}

.godlike-new-seed-calculator__players-value-box {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  gap: 12px;
  min-width: 32px;
  height: 24px;
  background: var(--gsc-figma-300);
  border-radius: 4px;
  flex-shrink: 0;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__players-value {
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: var(--gsc-figma-500);
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__slider-wrap {
  width: 100%;
  padding: 0;
}

.godlike-new-seed-calculator__slider-rail {
  position: relative;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
}

.godlike-new-seed-calculator__slider-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  border-radius: 999px;
  background: var(--gsc-figma-100);
  overflow: hidden;
  pointer-events: none;
}

.godlike-new-seed-calculator__slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--gsc-gradient-main);
  pointer-events: none;
}

.godlike-new-seed-calculator__slider-marks {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  pointer-events: none;
  margin-inline: 20px;
}

.godlike-new-seed-calculator__slider-mark {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__range {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__range::-webkit-slider-runnable-track {
  height: 10px;
  background: transparent;
  border: none;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__range::-moz-range-track {
  height: 10px;
  background: transparent;
  border: none;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__range::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -9px;
  border-radius: 3px;
  border: 1px solid #0084ff;
  background: linear-gradient(267.71deg,#007cee -37.36%,#5f39cb 98.08%);
  box-shadow:
    inset 0 0 0 2px #0b0a19;
  box-sizing: border-box;
}

.godlike-new-seed-calculator__panel--calc .godlike-new-seed-calculator__range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  margin-top: -9px;
  border-radius: 3px;
  border: 1px solid #0084ff;
  background: linear-gradient(267.71deg,#007cee -37.36%,#5f39cb 98.08%);
  box-shadow:
    inset 0 0 0 2px #0b0a19;
  cursor: pointer;
  box-sizing: border-box;
}

.godlike-new-seed-calculator__slider-labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  gap: 4px;
}

.godlike-new-seed-calculator__slider-label {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--gsc-figma-600);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.godlike-new-seed-calculator__slider-label:first-child {
  text-align: left;
}

.godlike-new-seed-calculator__slider-label:last-child {
  text-align: right;
}

.godlike-new-seed-calculator__slider-label.is-active {
  color: #ffffff;
}

.godlike-new-seed-calculator__slider-label:hover {
  color: var(--gsc-figma-700);
}

/* ----- Seed dropdown (Figma) ----- */
.godlike-new-seed-calculator__field--seed {
  position: relative;
}

.godlike-new-seed-calculator__dropdown {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px;
  gap: 4px;
  height: 160px;
  max-height: 160px;
  background: var(--gsc-figma-200);
  box-shadow: 0 4px 36px -1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.godlike-new-seed-calculator__dropdown[hidden] {
  display: none;
}

.godlike-new-seed-calculator__list {
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gsc-figma-600) var(--gsc-figma-300);
}

.godlike-new-seed-calculator__list::-webkit-scrollbar {
  width: 10px;
}

.godlike-new-seed-calculator__list::-webkit-scrollbar-track {
  width: 2px;
  background: transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  background-clip: padding-box;
  background-color: var(--gsc-figma-300);
}

.godlike-new-seed-calculator__list::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: var(--gsc-figma-600);
  border: 3px solid transparent;
  border-radius: 8px;
}

.godlike-new-seed-calculator__list-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-family: 'Gilroy', sans-serif;
  transition: background 0.15s;
}

.godlike-new-seed-calculator__list-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.godlike-new-seed-calculator__list-item.is-selected .godlike-new-seed-calculator__radio {
  background: var(--gsc-gradient-main);
  border-color: transparent;
}

.godlike-new-seed-calculator__list-item.is-selected .godlike-new-seed-calculator__radio::after {
  opacity: 1;
}

.godlike-new-seed-calculator__radio {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 2px;
  background: var(--gsc-figma-300);
  border: 1px solid var(--gsc-figma-400);
  border-radius: 4px;
}

.godlike-new-seed-calculator__radio::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -65%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s;
}

.godlike-new-seed-calculator__thumb {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.04) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.04) 75%),
    var(--gsc-figma-300);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
}

.godlike-new-seed-calculator__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.godlike-new-seed-calculator__list-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 0 0;
  gap: 0;
}

.godlike-new-seed-calculator__list-title {
  margin: 0;
  width: 100%;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--gsc-figma-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.godlike-new-seed-calculator__list-desc {
  margin: 0;
  width: 100%;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: var(--gsc-figma-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.godlike-new-seed-calculator__list-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gsc-figma-600);
  transition: color 0.15s;
}

.godlike-new-seed-calculator__list-link:hover {
  color: #ffffff;
  background: transparent;
}

/* ----- Recommended plan panel (Figma) ----- */
.godlike-new-seed-calculator__panel--plan {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  width: 100%;
  max-width: 596px;
  flex: 1 1 auto;
  box-sizing: border-box;
  background: var(--gsc-figma-200);
  border: none;
  border-radius: 24px;
  font-family: 'Gilroy', sans-serif;
}

.godlike-new-seed-calculator__panel--plan > .godlike-new-seed-calculator__title {
  margin: 0;
  width: 100%;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 12px 8px 8px;
  gap: 12px;
  width: 100%;
  min-height: 68px;
  margin: 0;
  background: var(--gsc-figma-100);
  border: none;
  border-radius: 12px;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-icon-fallback {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a3144, #1a2235);
  clip-path: none;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__plan-name {
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.godlike-new-seed-calculator__plan-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 4px;
  height: 20px;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.godlike-new-seed-calculator__plan-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #007cee;
  border-radius: 8px;
  flex-shrink: 0;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
  margin: 0;
  border: 0;
  font-family: 'Gilroy', sans-serif;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__summary-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__summary-row dt {
  flex: 1 1 auto;
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8d8fac;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__summary-row dd {
  flex-shrink: 0;
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #ffffff;
}

.godlike-new-seed-calculator__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--gsc-figma-300);
  border-radius: 1px;
}

.godlike-new-seed-calculator__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  width: 100%;
}

.godlike-new-seed-calculator__order {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  width: 100%;
}

.godlike-new-seed-calculator__total {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  min-height: 44px;
  font-family: 'Gilroy', sans-serif;
}

.godlike-new-seed-calculator__price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 0;
  gap: 10px;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__price-old {
  display: inline-flex;
  align-items: center;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: right;
  text-decoration-line: line-through;
  color: #d92632;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__price-old:empty {
  display: none;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__price-new {
  display: inline-flex;
  align-items: center;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: right;
  color: #ffffff;
  letter-spacing: 0;
}

.godlike-new-seed-calculator__price-sep,
.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__price-cycle {
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: var(--gsc-figma-500);
}

.godlike-new-seed-calculator__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  gap: 4px;
  flex-shrink: 0;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__cta {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 8px;
  width: 172px;
  height: 44px;
  background: var(--gsc-gradient-main);
  box-shadow: 0 0 4px rgba(9, 132, 227, 0.2);
  border-radius: 4px;
  border: 0;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: filter 0.15s;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__cta:hover {
  filter: brightness(1.06);
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__cta.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.godlike-new-seed-calculator__cta-label {
  display: inline-flex;
  align-items: center;
}

.godlike-new-seed-calculator__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #ffffff;
}

.godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__pay-note {
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: var(--gsc-figma-500);
  text-align: right;
}

/* ----- Promo block (Figma) ----- */
.godlike-new-seed-calculator__promo {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px;
  gap: 8px;
  width: 100%;
  min-height: 136px;
  flex: none;
  align-self: stretch;
  background: linear-gradient(180deg, #24253c 0%, #202d70 100%);
  border: 1px solid #007cee;
  border-radius: 16px;
  overflow: visible;
  font-family: 'Gilroy', sans-serif;
}

.godlike-new-seed-calculator__promo[hidden] {
  display: none !important;
}

.godlike-new-seed-calculator__promo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.godlike-new-seed-calculator__promo-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  min-height: 32px;
}

.godlike-new-seed-calculator__promo-buy-in {
  flex: none;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #ffffff;
  white-space: nowrap;
}

.godlike-new-seed-calculator__promo-timer {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 16px;
  gap: 8px;
  flex: none;
  background: #1b1b2c;
  border: 1px solid #007cee;
  border-radius: 40px;
}

.godlike-new-seed-calculator__promo-timer-part {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  white-space: nowrap;
}

.godlike-new-seed-calculator__promo-timer-part strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}

.godlike-new-seed-calculator__promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 4px;
  width: 100%;
}

.godlike-new-seed-calculator__promo-price-line {
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #f6f9ff;
}

.godlike-new-seed-calculator__promo-discount {
  font-weight: 600;
  color: #2eff6c;
}

.godlike-new-seed-calculator__promo-bonus {
  margin: 0;
  font-family: 'Gilroy', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #f6f9ff;
}

.godlike-new-seed-calculator__promo-mascot {
  position: absolute;
  right: 0;
  bottom: 0;
  flex: none;
  width: 115px;
  height: 144px;
  object-fit: contain;
  transform: scaleX(-1.1) scaleY(1.1);
  align-self: flex-end;
}

@media (max-width: 900px) {
  .godlike-new-seed-calculator__panel--calc,
  .godlike-new-seed-calculator__panel--plan {
    max-width: none;
    min-height: 0;
    padding: 24px;
    justify-content: flex-start;
  }

  .godlike-new-seed-calculator__order {
    flex-direction: column;
    align-items: stretch;
  }

  .godlike-new-seed-calculator__cta-wrap {
    align-items: stretch;
  }

  .godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__cta {
    width: 100%;
  }

  .godlike-new-seed-calculator__panel--plan .godlike-new-seed-calculator__pay-note {
    text-align: center;
  }
}
