:root {
  --bg: #090b10;
  --bg-elevated: #10141d;
  --bg-soft: #151b27;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #98a4b8;
  --primary: #3d66ff;
  --primary-soft: rgba(61, 102, 255, 0.16);
  --success: #58c27d;
  --danger: #ff6b7c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(61, 102, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(54, 179, 126, 0.12), transparent 24%),
    var(--bg) !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(61, 102, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(54, 179, 126, 0.12), transparent 24%),
    var(--bg) !important;
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.minimal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.minimal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark,
.admin-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #70a1ff);
  color: white;
  font-weight: 800;
  text-transform: lowercase;
}

.public-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 160px);
  padding: 28px 0 64px;
}

.site-footer {
  padding: 24px 0 40px;
  color: var(--muted);
  text-align: center;
}

.eyebrow {
  color: #8ca6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-entry-section,
.order-finish-section,
.wizard-shell,
.auth-section {
  padding: 40px 0 72px;
}

.order-entry-section .container,
.order-finish-section .container,
.auth-section .container {
  display: flex;
  justify-content: center;
}

.order-entry-card,
.finish-card,
.admin-login-card {
  width: min(720px, 100%);
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.96), rgba(11, 15, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
}

.order-entry-card h1,
.finish-card h1,
.wizard-header h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.order-entry-card p,
.finish-card p,
.wizard-header p,
.admin-login-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.order-entry-form {
  display: grid;
  gap: 16px;
}

.order-entry-card {
  text-align: center;
}

.order-entry-form .btn {
  justify-self: center;
  min-width: 280px;
}

.entry-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 16px;
  min-height: 58px;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(61, 102, 255, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(61, 102, 255, 0.16);
  color: var(--text);
}

.form-control::placeholder {
  color: #728099;
}

.form-label {
  color: #d9e0ec;
  font-weight: 600;
}

.btn {
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #4170ff, #2f58d8);
  border: none;
}

.btn.is-disabled,
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn-outline-light {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline-light:hover,
.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.wizard-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wizard-steps span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.9rem;
}

.wizard-steps span.is-active {
  background: var(--primary-soft);
  color: white;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.wizard-main,
.wizard-summary {
  min-width: 0;
}

.wizard-panel,
.summary-card,
.timeline-card,
.admin-panel,
.admin-stat-card {
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.98), rgba(12, 15, 22, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.wizard-panel {
  display: none;
  padding: 32px;
}

.wizard-panel.is-active {
  display: block;
}

.wizard-panel h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 800;
}

.wizard-panel p {
  color: var(--muted);
}

.package-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.package-card,
.decision-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.decision-card {
  min-height: 180px;
}

.package-card:hover,
.decision-card:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 102, 255, 0.38);
}

.package-card input,
.decision-card input {
  margin-bottom: 8px;
}

.package-card:has(input:checked),
.decision-card:has(input:checked) {
  border-color: rgba(61, 102, 255, 0.8);
  background: rgba(61, 102, 255, 0.12);
}

.package-name {
  font-size: 1.28rem;
  font-weight: 800;
}

.package-copy,
.package-meta,
.decision-card span {
  color: var(--muted);
}

.package-card strong {
  margin-top: auto;
  font-size: 2rem;
  line-height: 1;
}

.package-card em {
  color: #b4bfd0;
  font-style: normal;
}

.domain-box,
.summary-stack,
.finish-credentials {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.domain-check-result,
.admin-panel-copy,
.order-note {
  color: var(--muted);
}

.domain-check-result[data-state="checking"] {
  color: #8ca6ff;
}

.domain-check-result[data-state="success"] {
  color: #58c27d;
  font-weight: 700;
}

.domain-check-result[data-state="error"] {
  color: #ff6b7c;
  font-weight: 700;
}

.summary-stack {
  display: grid;
  gap: 14px;
}

.summary-row,
.credential-row,
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-row:last-child,
.credential-row:last-child,
.detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-row span,
.credential-row span,
.detail-row span {
  color: var(--muted);
}

.summary-row.total strong,
.summary-price {
  font-size: 1.7rem;
  font-weight: 800;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.wizard-summary {
  display: grid;
  gap: 18px;
}

.summary-card,
.timeline-card {
  padding: 26px;
}

.summary-label,
.summary-period {
  color: var(--muted);
}

.summary-card h3 {
  margin: 10px 0 8px;
  font-size: 1.7rem;
  font-weight: 800;
}

.summary-card p {
  color: var(--muted);
  min-height: 48px;
}

.timeline-card {
  display: grid;
  gap: 12px;
}

.timeline-card div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #dce3f1;
}

.provisioning-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 6, 10, 0.86);
  z-index: 100;
}

.provisioning-overlay.is-visible {
  display: flex;
}

.provisioning-box {
  width: min(680px, 100%);
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 20, 29, 1), rgba(8, 11, 18, 1));
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}

.provisioning-box h2 {
  margin: 14px 0 20px;
  font-size: 2rem;
  font-weight: 800;
}

.provisioning-line {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.provisioning-line span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #7f95ff;
  animation: jump 1s infinite ease-in-out;
}

.provisioning-line span:nth-child(2) {
  animation-delay: 0.15s;
}

.provisioning-line span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes jump {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-10px); opacity: 1; }
}

.provisioning-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.provisioning-steps li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.provisioning-steps li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.finish-card {
  max-width: 860px;
}

.finish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.finish-box {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.finish-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.finish-box strong {
  font-size: 1.3rem;
}

.finish-notes {
  margin-top: 22px;
  color: var(--muted);
}

.admin-shell {
  background: #0b0e14;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(12, 16, 24, 0.92);
  border-right: 1px solid var(--line);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.admin-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.admin-brand-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav-link {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted);
}

.admin-nav-link.is-active,
.admin-nav-link:hover {
  background: rgba(61, 102, 255, 0.14);
  color: var(--text);
}

.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
}

.admin-main {
  padding: 32px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.admin-topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-stat-card {
  padding: 24px;
}

.admin-panel {
  padding: 24px;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-table {
  color: var(--text);
}

.admin-table thead th,
.admin-table tbody td {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
  color: inherit;
  padding: 14px 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61, 102, 255, 0.14);
  color: #cfd9ff;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-rows {
  display: grid;
  gap: 14px;
}

.alert-success,
.alert-danger,
.alert-warning,
.alert-dark {
  border-radius: 16px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(88, 194, 125, 0.14);
  border-color: rgba(88, 194, 125, 0.2);
  color: #c7f0d4;
}

.alert-danger {
  background: rgba(255, 107, 124, 0.14);
  border-color: rgba(255, 107, 124, 0.18);
  color: #ffd1d8;
}

.alert-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #dce4f2;
}

@media (max-width: 1199px) {
  .wizard-layout,
  .admin-layout,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 991px) {
  .package-grid,
  .decision-grid,
  .finish-grid {
    grid-template-columns: 1fr;
  }

  .wizard-header,
  .admin-topbar,
  .minimal-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .order-entry-card,
  .finish-card,
  .admin-login-card,
  .wizard-panel,
  .summary-card,
  .timeline-card,
  .admin-panel,
  .admin-stat-card,
  .provisioning-box {
    padding: 24px;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .summary-row,
  .credential-row,
  .detail-row {
    flex-direction: column;
  }
}

:root {
  --bg: #07080d;
  --bg-elevated: rgba(10, 12, 18, 0.72);
  --bg-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.42);
  --primary: #0a84ff;
  --primary-soft: rgba(10, 132, 255, 0.12);
  --success: #31d37b;
  --danger: #ff5050;
  --shadow: none;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
}

html,
body {
  background: #07080d !important;
}

body {
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

.matrix-grid,
.matrix-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.matrix-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2) 82%);
}

.matrix-vignette {
  background:
    radial-gradient(ellipse 60% 46% at 42% 14%, rgba(10, 132, 255, 0.12), transparent 72%),
    radial-gradient(ellipse 42% 34% at 76% 8%, rgba(49, 211, 123, 0.08), transparent 68%),
    linear-gradient(90deg, rgba(7, 8, 13, 0.3), rgba(7, 8, 13, 0.82) 78%);
}

.minimal-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(7, 8, 13, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.minimal-header-inner {
  min-height: 72px;
}

.brand-lockup {
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-lockup:hover {
  color: #fff;
}

.brand-mark,
.admin-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 780;
}

.public-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 96px 0 70px;
  justify-content: center;
}

.site-footer {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background: linear-gradient(180deg, transparent, rgba(7, 8, 13, 0.86) 35%, rgba(7, 8, 13, 0.98));
  font-size: 0.78rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.order-entry-section,
.order-finish-section,
.wizard-shell,
.auth-section {
  width: 100%;
  padding: 0;
}

.order-entry-section .container,
.order-finish-section .container,
.auth-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 166px);
}

.order-entry-card,
.finish-card,
.admin-login-card {
  width: min(520px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.order-entry-card {
  text-align: left;
}

.order-entry-card h1,
.finish-card h1,
.wizard-header h1 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: 0;
}

.order-entry-card p,
.finish-card p,
.wizard-header p,
.admin-login-card p {
  color: rgba(255, 255, 255, 0.34);
  font-size: 1.02rem;
  line-height: 1.55;
}

.order-entry-form {
  display: grid;
  gap: 10px;
  margin-top: 48px !important;
}

.field-label {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
}

.code-input {
  font-family: "SF Mono", "Fira Code", ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-control:focus,
.form-select:focus {
  background: rgba(10, 132, 255, 0.08);
  border-color: rgba(10, 132, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.14);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0;
  text-transform: none;
}

.form-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 640;
}

.entry-note {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
}

.btn {
  min-height: 58px;
  border-radius: 12px;
  font-weight: 730;
  letter-spacing: 0;
}

.btn-primary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: rgba(10, 132, 255, 0.13);
  border-color: rgba(10, 132, 255, 0.72);
  color: #fff;
  box-shadow: 0 0 34px rgba(10, 132, 255, 0.16);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.order-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-step {
  display: grid;
  gap: 7px;
}

.progress-step strong {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

.progress-step span {
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.88rem;
  font-weight: 620;
}

.progress-step.is-active strong {
  color: var(--primary);
}

.progress-step.is-active span {
  color: rgba(255, 255, 255, 0.8);
}

.progress-line {
  height: 1px;
  min-width: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.wizard-shell > .container {
  max-width: 1180px;
}

.wizard-header {
  align-items: flex-start;
  margin-bottom: 28px;
}

.wizard-steps span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.28);
}

.wizard-steps span.is-active {
  background: rgba(10, 132, 255, 0.15);
  color: var(--primary);
}

.wizard-panel,
.summary-card,
.timeline-card,
.admin-panel,
.admin-stat-card,
.domain-box,
.summary-stack,
.finish-credentials,
.finish-box,
.provisioning-box {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: none;
}

.wizard-panel,
.summary-card,
.timeline-card,
.admin-panel,
.admin-stat-card,
.domain-box,
.summary-stack,
.finish-credentials,
.finish-box,
.provisioning-box {
  backdrop-filter: blur(12px);
}

.package-card,
.decision-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
  border-color: rgba(255, 255, 255, 0.09);
}

.package-card:has(input:checked),
.decision-card:has(input:checked) {
  border-color: rgba(10, 132, 255, 0.78);
  background: rgba(10, 132, 255, 0.09);
}

.domain-check-result[data-state="success"] {
  color: var(--success);
}

.provisioning-line span {
  background: var(--primary);
}

.provisioning-steps li {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 991px) {
  .wizard-layout,
  .package-grid,
  .decision-grid,
  .finish-grid {
    grid-template-columns: 1fr;
  }

  .wizard-header {
    display: grid;
  }
}

@media (max-width: 767px) {
  .minimal-header-inner {
    min-height: 64px;
  }

  .order-entry-card h1,
  .finish-card h1,
  .wizard-header h1 {
    font-size: clamp(2.4rem, 15vw, 3.2rem);
  }

  .order-progress {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .progress-line {
    display: none;
  }
}

body.public-shell {
  --matrix-bg: #07080d;
  --matrix-panel: rgba(255, 255, 255, 0.035);
  --matrix-panel-strong: rgba(255, 255, 255, 0.06);
  --matrix-line: rgba(255, 255, 255, 0.075);
  --matrix-line-strong: rgba(255, 255, 255, 0.16);
  --matrix-text: #f7f8fb;
  --matrix-muted: rgba(247, 248, 251, 0.42);
  --matrix-faint: rgba(247, 248, 251, 0.18);
  --matrix-blue: #0a84ff;
  --matrix-green: #34c759;
  --matrix-red: #ff453a;
  background: var(--matrix-bg) !important;
  color: var(--matrix-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.matrix-grid,
.matrix-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.matrix-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.matrix-vignette {
  background:
    radial-gradient(ellipse 70% 52% at 50% 0%, rgba(10, 132, 255, 0.09), transparent 68%),
    radial-gradient(circle at 78% 18%, rgba(52, 199, 89, 0.055), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(10, 132, 255, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(7, 8, 13, 0.1), rgba(7, 8, 13, 0.86));
}

.public-shell .container {
  position: relative;
  z-index: 2;
}

.minimal-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.minimal-header-inner {
  min-height: 76px;
  max-width: 1280px;
}

.brand-lockup {
  color: var(--matrix-text);
  gap: 14px;
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand-lockup:hover {
  color: var(--matrix-text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--matrix-blue);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 780;
  box-shadow: 0 16px 36px rgba(10, 132, 255, 0.2);
}

.public-main {
  min-height: 100vh;
  padding: 96px 0 84px;
  justify-content: center;
}

.order-entry-section,
.order-finish-section,
.wizard-shell,
.auth-section {
  width: 100%;
  padding: 0;
}

.order-entry-section .container {
  justify-content: center;
}

.order-entry-card,
.finish-card,
.admin-login-card {
  width: min(480px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  backdrop-filter: none;
}

.order-entry-card h1,
.finish-card h1,
.wizard-header h1 {
  margin: 28px 0 14px;
  color: var(--matrix-text);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.order-entry-card h1 {
  font-size: clamp(3.25rem, 6.2vw, 4.8rem);
}

.order-entry-card p,
.finish-card p,
.wizard-header p,
.admin-login-card p {
  max-width: 760px;
  color: var(--matrix-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 520;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--matrix-blue);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span,
.wizard-header .eyebrow::before,
.finish-card > .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--matrix-blue);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.8);
}

.order-entry-form {
  display: grid;
  gap: 10px;
  margin-top: 52px !important;
}

.field-label {
  color: var(--matrix-faint);
  font-size: 0.7rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--matrix-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.code-input {
  height: 58px;
  font-family: "SF Mono", "Fira Code", ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.24rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-control:focus,
.form-select:focus {
  background: rgba(10, 132, 255, 0.065);
  border-color: rgba(10, 132, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
  color: var(--matrix-text);
}

.form-control::placeholder,
.form-select {
  color: rgba(247, 248, 251, 0.28);
}

.entry-note {
  margin: 0 0 26px;
  color: rgba(247, 248, 251, 0.18);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.btn {
  min-height: 58px;
  border-radius: 14px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.order-entry-form .btn {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
}

.btn-primary {
  color: var(--matrix-text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--matrix-line-strong);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--matrix-text);
  background: rgba(10, 132, 255, 0.12);
  border-color: rgba(10, 132, 255, 0.72);
  box-shadow: 0 0 36px rgba(10, 132, 255, 0.14);
}

.btn-primary span[aria-hidden="true"] {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.btn-primary:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

.btn-outline-light {
  color: var(--matrix-text);
  background: transparent;
  border-color: var(--matrix-line-strong);
}

.btn-outline-light:hover {
  color: var(--matrix-text);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
}

.order-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.progress-step {
  display: grid;
  gap: 8px;
}

.progress-step strong {
  color: rgba(247, 248, 251, 0.18);
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.progress-step span {
  color: rgba(247, 248, 251, 0.22);
  font-size: 0.86rem;
  font-weight: 680;
}

.progress-step.is-active strong,
.progress-step.is-active span {
  color: var(--matrix-blue);
}

.progress-line {
  height: 1px;
  min-width: 24px;
  background: rgba(255, 255, 255, 0.075);
}

.site-footer {
  position: fixed;
  inset: auto 0 0;
  z-index: 10;
  padding: 18px;
  color: rgba(247, 248, 251, 0.18);
  text-align: center;
  font-size: 0.78rem;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 13, 0.84));
  border: 0;
}

.site-footer a {
  color: rgba(247, 248, 251, 0.44);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--matrix-blue);
}

.wizard-shell > .container,
.order-finish-section > .container {
  max-width: 1180px;
}

.wizard-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 52px;
}

.wizard-header h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.wizard-steps {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
}

.wizard-steps span {
  padding: 0;
  color: rgba(247, 248, 251, 0.2);
  background: transparent;
  border: 0;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.wizard-steps span.is-active {
  color: var(--matrix-blue);
  background: transparent;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.wizard-main,
.wizard-panel,
.summary-card,
.domain-box,
.summary-stack,
.finish-credentials,
.finish-box,
.provisioning-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.wizard-panel {
  padding: 0;
}

.wizard-panel h2 {
  margin: 0 0 10px;
  color: var(--matrix-text);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.wizard-panel > p {
  color: var(--matrix-muted);
  font-size: 1.1rem;
  margin-bottom: 34px;
}

.package-grid,
.decision-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--matrix-line);
  border-bottom: 1px solid var(--matrix-line);
}

.package-card,
.decision-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 28px 18px 28px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--matrix-line);
  color: var(--matrix-text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.package-card:last-child,
.decision-card:last-child {
  border-bottom: 0;
}

.package-card::before,
.decision-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 2px;
  background: transparent;
  border-radius: 999px;
}

.package-card:hover,
.decision-card:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 16px;
}

.package-card:has(input:checked),
.decision-card:has(input:checked) {
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.12), transparent 58%);
  border-color: rgba(10, 132, 255, 0.28);
  padding-left: 18px;
}

.package-card:has(input:checked)::before,
.decision-card:has(input:checked)::before {
  background: var(--matrix-blue);
  box-shadow: 0 0 22px rgba(10, 132, 255, 0.75);
}

.package-card input,
.decision-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-name,
.decision-card strong {
  color: var(--matrix-text);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.package-copy,
.package-meta,
.decision-card span {
  color: var(--matrix-muted);
  font-size: 1rem;
  font-weight: 540;
}

.package-card strong {
  color: var(--matrix-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 820;
  letter-spacing: -0.075em;
}

.package-card em {
  color: var(--matrix-muted);
  font-style: normal;
  font-size: 0.95rem;
}

.domain-box {
  margin-top: 34px !important;
  padding-top: 28px;
  border-top: 1px solid var(--matrix-line);
}

.domain-check-result {
  font-size: 1rem;
  font-weight: 720;
}

.domain-check-result[data-state="success"] {
  color: var(--matrix-green);
}

.domain-check-result[data-state="error"] {
  color: var(--matrix-red);
}

.domain-check-result[data-state="checking"] {
  color: var(--matrix-blue);
}

.btn[data-domain-next]:not(:disabled) {
  border-color: rgba(52, 199, 89, 0.68);
  background: rgba(52, 199, 89, 0.13);
}

.summary-stack {
  border-top: 1px solid var(--matrix-line);
  border-bottom: 1px solid var(--matrix-line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--matrix-line);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span {
  color: var(--matrix-muted);
}

.summary-row strong {
  color: var(--matrix-text);
  text-align: right;
}

.summary-row.total strong {
  color: var(--matrix-blue);
}

.wizard-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 34px;
}

.wizard-summary {
  position: sticky;
  top: 116px;
}

.summary-card {
  padding: 0 0 0 24px;
  border-left: 1px solid var(--matrix-line);
}

.summary-label,
.summary-period {
  color: var(--matrix-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.summary-card h3 {
  margin: 14px 0 8px;
  color: var(--matrix-text);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.summary-card p {
  color: var(--matrix-muted);
}

.summary-price {
  margin-top: 24px;
  color: var(--matrix-text);
  font-size: 2.6rem;
  font-weight: 820;
  letter-spacing: -0.08em;
}

.order-note {
  color: rgba(247, 248, 251, 0.72);
  background: rgba(10, 132, 255, 0.08);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 14px;
}

.finish-card {
  width: min(980px, 100%);
}

.finish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 34px;
  border-top: 1px solid var(--matrix-line);
  border-bottom: 1px solid var(--matrix-line);
}

.finish-box {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.022);
}

.finish-box span,
.credential-row span {
  display: block;
  color: var(--matrix-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.finish-box strong,
.credential-row strong {
  color: var(--matrix-text);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.finish-credentials,
.finish-notes {
  padding-top: 28px;
  border-top: 1px solid var(--matrix-line);
}

.finish-notes {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.finish-notes p {
  margin: 0;
}

.finish-notes a {
  color: var(--matrix-blue);
}

.provisioning-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 14%, rgba(10, 132, 255, 0.12), transparent 28%),
    rgba(7, 8, 13, 0.96);
}

.provisioning-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.provisioning-overlay.is-visible {
  display: flex;
}

.order-processing-page {
  width: min(980px, 100%);
}

.provisioning-box {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 0;
  text-align: left;
}

.order-processing-page .provisioning-box {
  width: 100%;
  margin-top: 52px !important;
}

.provisioning-line {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 44px;
}

.provisioning-line span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--matrix-blue);
  animation: matrixPulse 1.15s ease-in-out infinite;
}

.provisioning-line span:nth-child(2) {
  animation-delay: 0.16s;
}

.provisioning-line span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes matrixPulse {
  0%, 100% {
    opacity: 0.32;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

.provisioning-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--matrix-line);
  border-bottom: 1px solid var(--matrix-line);
}

.provisioning-steps li {
  padding: 22px 0;
  color: rgba(247, 248, 251, 0.22);
  background: transparent;
  border-bottom: 1px solid var(--matrix-line);
  font-size: 1.08rem;
  font-weight: 700;
  transition: color 0.24s ease, padding-left 0.24s ease, background 0.24s ease;
}

.provisioning-steps li:last-child {
  border-bottom: 0;
}

.provisioning-steps li.is-visible {
  color: var(--matrix-text);
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.11), transparent 62%);
}

.provisioning-box p {
  margin: 34px 0 0;
  color: var(--matrix-muted);
  text-align: center;
}

@media (max-width: 991px) {
  .wizard-header,
  .wizard-layout {
    grid-template-columns: 1fr;
  }

  .wizard-summary {
    position: static;
  }

  .summary-card {
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid var(--matrix-line);
  }
}

@media (max-width: 767px) {
  .minimal-header-inner {
    min-height: 68px;
  }

  .public-main {
    padding: 92px 0 86px;
  }

  .order-entry-card,
  .finish-card,
  .admin-login-card {
    width: 100%;
  }

  .order-entry-card h1,
  .finish-card h1,
  .wizard-header h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .wizard-steps,
  .order-progress {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 18px;
  }

  .progress-line {
    display: none;
  }

  .wizard-actions,
  .finish-grid {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    display: grid;
  }

  .finish-box {
    padding: 22px 0;
  }
}

.wizard-shell > .container,
.order-finish-section > .container {
  max-width: 1060px;
}

.wizard-header {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

.wizard-header h1,
.wizard-panel h2,
.finish-card h1 {
  font-size: clamp(2.55rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.wizard-header p,
.wizard-panel > p,
.finish-card p,
.finish-notes p {
  color: rgba(247, 248, 251, 0.58);
}

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.wizard-steps span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.wizard-steps span.is-active {
  border-color: rgba(10, 132, 255, 0.36);
  background: rgba(10, 132, 255, 0.1);
}

.wizard-layout {
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
}

.wizard-panel {
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.package-card,
.decision-card {
  min-height: 320px;
  padding: 34px 32px;
  background: rgba(7, 8, 13, 0.74);
  border: 0;
  border-bottom: 0;
}

.decision-card {
  min-height: 210px;
}

.package-card:hover,
.decision-card:hover,
.package-card:has(input:checked),
.decision-card:has(input:checked) {
  padding-left: 32px;
}

.package-card::before,
.decision-card::before {
  inset: 28px auto 28px 0;
  width: 3px;
}

.package-name,
.decision-card strong {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.package-copy,
.package-meta,
.decision-card span {
  color: rgba(247, 248, 251, 0.52);
  font-size: 1.02rem;
  line-height: 1.45;
}

.package-card strong {
  margin-top: auto;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.package-card em {
  color: rgba(247, 248, 251, 0.5);
}

.summary-card {
  padding: 24px 0 24px 22px;
  border-left-color: rgba(255, 255, 255, 0.13);
}

.summary-card p {
  color: rgba(247, 248, 251, 0.56);
}

.summary-price {
  font-size: 2.2rem;
}

.finish-credentials {
  display: grid;
  gap: 0;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.credential-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.credential-row:last-child {
  border-bottom: 0;
}

.credential-row span {
  color: rgba(247, 248, 251, 0.54);
  margin: 0;
}

.credential-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: -0.04em;
}

.finish-card .btn {
  justify-content: center;
  margin-top: 30px !important;
}

.finish-card .text-muted {
  color: rgba(247, 248, 251, 0.58) !important;
  font-size: 1rem;
  line-height: 1.55;
}

.provisioning-box {
  width: min(620px, 100%);
}

.order-processing-page .provisioning-box {
  width: min(620px, 100%);
  margin-inline: auto;
}

.provisioning-steps {
  position: relative;
  gap: 0;
  border: 0;
  padding-left: 28px;
}

.provisioning-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 5px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.provisioning-steps li {
  position: relative;
  padding: 0 0 26px 0;
  border: 0;
  background: transparent;
  color: rgba(247, 248, 251, 0.34);
  font-size: 1rem;
  font-weight: 680;
}

.provisioning-steps li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -28px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #171c25;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.provisioning-steps li.is-visible {
  padding-left: 0;
  background: transparent;
  color: var(--matrix-text);
}

.provisioning-steps li.is-visible::before {
  background: var(--matrix-blue);
  border-color: var(--matrix-blue);
  box-shadow: 0 0 22px rgba(10, 132, 255, 0.72);
}

.provisioning-box p {
  max-width: 520px;
  margin-inline: auto;
  color: rgba(247, 248, 251, 0.58);
}

@media (max-width: 991px) {
  .wizard-layout,
  .package-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .decision-card {
    min-height: auto;
  }

  .summary-card {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .credential-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
