.bmc-vr {
  --bmc-navy: #061b49;
  --bmc-navy-2: #021233;
  --bmc-cyan: #22d9f0;
  --bmc-blue: #0b6dff;
  --bmc-soft: #f4f8fc;
  --bmc-border: #dbe5f1;
  --bmc-text: #071b3f;
  font-family: Inter, Arial, sans-serif;
  color: var(--bmc-text);
  box-sizing: border-box;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.bmc-vr * { box-sizing: border-box; }

.bmc-vr-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071b49 0%, #0b3e91 52%, #0b7cff 100%);
  border-radius: 20px;
  padding: clamp(16px, 2.5vw, 28px) clamp(24px, 4vw, 36px);
  color: #fff;
  margin: 0 0 12px;
  box-shadow: 0 18px 50px rgba(5, 28, 75, .16);
}

.bmc-vr-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 290px;
  height: 640px;
  background: rgba(34, 217, 240, .94);
  transform: rotate(-24deg);
  opacity: .95;
}

.bmc-vr-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: 170px;
  width: 22px;
  height: 640px;
  background: #fff;
  transform: rotate(-24deg);
  opacity: .96;
}

.bmc-vr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.bmc-vr-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
}

.bmc-vr-brandline img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 11px;
}

.bmc-vr-brandline span span { color: var(--bmc-cyan); }

.bmc-vr-hero h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .94;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  max-width: 760px;
}

.bmc-vr-hero h2 span,
.bmc-vr-hero h2 strong {
  display: block;
  font-weight: 900;
}

.bmc-vr-hero h2 strong { color: var(--bmc-cyan); }

.bmc-vr-hero p {
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  max-width: 760px;
  margin: 0;
}

.bmc-vr-panel,
.bmc-vr-result {
  background: #fff;
  border: 1px solid var(--bmc-border);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(4, 29, 72, .08);
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 24px;
}

.bmc-vr-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bmc-vr-step > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bmc-cyan);
  color: var(--bmc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.bmc-vr-step h3 {
  margin: 0 0 6px;
  color: var(--bmc-navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.bmc-vr-step p {
  margin: 0;
  color: #50617a;
  font-size: 16px;
}

.bmc-vr-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bmc-vr-option {
  border: 1px solid var(--bmc-border);
  background: var(--bmc-soft);
  color: var(--bmc-navy);
  border-radius: 16px;
  min-height: 68px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.bmc-vr-option:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 217, 240, .75);
  box-shadow: 0 10px 24px rgba(4, 29, 72, .08);
}

.bmc-vr-option.is-selected {
  background: linear-gradient(135deg, rgba(34,217,240,.16), rgba(11,109,255,.10));
  border-color: var(--bmc-cyan);
  box-shadow: inset 0 0 0 2px rgba(34,217,240,.18);
}

.bmc-vr-option.is-selected::before {
  content: "✓";
  color: var(--bmc-cyan);
  font-weight: 900;
  margin-right: 8px;
}

.bmc-vr-helper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #50617a;
  font-size: 14px;
}

.bmc-vr-reset {
  border: 0;
  background: transparent;
  color: var(--bmc-blue);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 6px 0;
}

.bmc-vr-result {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 28px;
  align-items: center;
}

.bmc-vr-result[hidden] { display: none !important; }

.bmc-vr-pill {
  display: inline-flex;
  background: rgba(34, 217, 240, .14);
  border: 1px solid rgba(34, 217, 240, .45);
  color: var(--bmc-navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.bmc-vr-result-name {
  margin: 0 0 8px;
  color: var(--bmc-navy);
  font-size: clamp(34px, 5vw, 54px);
  line-height: .95;
  letter-spacing: -0.04em;
}

.bmc-vr-result-summary,
.bmc-vr-result-reason {
  color: #33445f;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 16px;
}

.bmc-vr-confidence {
  background: var(--bmc-soft);
  border: 1px solid var(--bmc-border);
  border-radius: 14px;
  padding: 14px;
  margin: 18px 0;
}

.bmc-vr-confidence-label {
  display: flex;
  justify-content: space-between;
  color: var(--bmc-navy);
  font-weight: 850;
  font-size: 14px;
  margin-bottom: 10px;
}

.bmc-vr-confidence-bar {
  height: 10px;
  background: #dfe8f3;
  border-radius: 999px;
  overflow: hidden;
}

.bmc-vr-confidence-bar span {
  display: block;
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--bmc-cyan), var(--bmc-blue));
  border-radius: inherit;
}

.bmc-vr-disclaimer {
  color: #61718a;
  font-size: 13px;
  line-height: 1.45;
  background: #f7fafc;
  border-left: 4px solid var(--bmc-cyan);
  padding: 12px 14px;
  border-radius: 10px;
}

.bmc-vr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bmc-vr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.bmc-vr-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.bmc-vr-btn-primary {
  background: var(--bmc-cyan);
  color: var(--bmc-navy) !important;
}

.bmc-vr-btn-light {
  background: #fff;
  color: var(--bmc-navy) !important;
  border: 1px solid var(--bmc-border);
}

.bmc-vr-btn-ghost {
  background: var(--bmc-navy);
  color: #fff !important;
}

.bmc-vr-result-image {
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  border: 1px solid var(--bmc-border);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
}

.bmc-vr-result-image img {
  display: block;
  width: 100%;
  max-width: 330px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.bmc-vr-capacity {
  color: var(--bmc-navy);
  font-weight: 900;
  background: rgba(34, 217, 240, .12);
  border-radius: 12px;
  padding: 12px;
}

@media (max-width: 900px) {
  .bmc-vr {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }

  .bmc-vr-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bmc-vr-result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bmc-vr {
    padding: 0 14px;
  }

  .bmc-vr-hero {
    border-radius: 18px;
    padding: 30px 22px;
  }

  .bmc-vr-hero::after,
  .bmc-vr-hero::before {
    opacity: .28;
  }

  .bmc-vr-brandline {
    font-size: 20px;
  }

  .bmc-vr-options {
    grid-template-columns: 1fr;
  }

  .bmc-vr-option {
    text-align: center;
  }

  .bmc-vr-helper-row,
  .bmc-vr-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .bmc-vr-result-name {
    text-align: center;
  }

  .bmc-vr-result-copy {
    text-align: left;
  }
}

/* V1.1 dropdown selector */
.bmc-vr-dropdown-wrap {
  background: var(--bmc-soft);
  border: 1px solid var(--bmc-border);
  border-radius: 18px;
  padding: 16px;
}

.bmc-vr-select-label {
  display: block;
  color: var(--bmc-navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.bmc-vr-select-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.bmc-vr-item-select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--bmc-border);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--bmc-navy);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.bmc-vr-add-item {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  background: var(--bmc-cyan);
  color: var(--bmc-navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.bmc-vr-selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.bmc-vr-selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(34, 217, 240, .55);
  border-radius: 999px;
  background: #fff;
  color: var(--bmc-navy);
  padding: 8px 12px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.bmc-vr-selected-chip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(34, 217, 240, .18);
  color: var(--bmc-navy);
  line-height: 1;
}

@media (max-width: 640px) {
  .bmc-vr-select-row {
    grid-template-columns: 1fr;
  }

  .bmc-vr-add-item {
    width: 100%;
  }

  .bmc-vr-selected-items {
    justify-content: center;
  }
}
