/* Cloud Portal styling: based on website_lgf client-portal visual language. */

:root {
  --primary: #0b1220;
  --primary-light: #132238;
  --accent: #0a84ff;
  --accent-light: #2490ff;
  --text-dark: #dbe7f7;
  --text-light: #97adca;
  --text-white: #f5faff;
  --bg-light: #070f1d;
  --bg-white: #0c182c;
  --border: #213a5a;
  --shadow: rgba(0, 0, 0, 0.35);
  --nav: #092145;

  --radius: 14px;
  --maxw: 1360px;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background:
    radial-gradient(1400px 760px at 72% 10%, rgba(18, 112, 255, 0.12), transparent 60%),
    radial-gradient(900px 520px at 18% 0%, rgba(10, 132, 255, 0.16), transparent 62%),
    linear-gradient(180deg, #050b16 0%, #061022 100%);
}

.portal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.portal-header {
  background: var(--nav);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.portal-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  min-width: 0;
}

.portal-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.portal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.portal-brand-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portal-nav a {
  color: rgba(230, 240, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease;
}

.portal-nav a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text-white);
}

.portal-nav a.is-active {
  background: rgba(59, 130, 246, 0.20);
  color: var(--text-white);
}

.portal-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.16);
  margin-left: 6px;
}

.portal-nav-btn,
button.portal-nav-btn {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  color: var(--text-white);
  font-weight: 800;
}

.portal-nav-btn:hover,
button.portal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text-white);
  transform: translateY(-1px);
}

.portal-user-email {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.78);
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portal-main {
  flex: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 28px 20px 44px;
}

.portal-title {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.portal-subtitle {
  margin: 0 0 18px;
  color: var(--text-light);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.col-12 { grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

@media (max-width: 960px) {
  .col-6, .col-4, .col-3 { grid-column: span 12; }
  .portal-user-email { display: none; }
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.92), rgba(10, 20, 38, 0.94));
  box-shadow: 0 14px 32px var(--shadow);
  padding: 20px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.muted { color: var(--text-light); }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(10, 132, 255, 0.18);
  color: #dcecff;
  border: 1px solid rgba(60, 158, 255, 0.30);
}

.pill.bad {
  background: rgba(176,0,32,0.10);
  border-color: rgba(176,0,32,0.18);
  color: #7a0015;
}

.pill.warn {
  background: rgba(245,158,11,0.14);
  border-color: rgba(245,158,11,0.22);
  color: #7a4b00;
}

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(85, 168, 255, 0.26);
  background: var(--accent);
  color: var(--text-white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 12px 24px rgba(10, 74, 170, 0.45);
}

.btn:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }

.btn.secondary, button.btn.secondary {
  background: rgba(11, 24, 43, 0.76);
  border-color: rgba(85, 168, 255, 0.34);
  box-shadow: none;
  color: #d5e6fb;
}

.btn.secondary:hover {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.25);
}

.actions-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

input[type="text"], input[type="email"], input[type="password"] {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(8, 17, 33, 0.92);
  color: var(--text-dark);
  min-width: 240px;
}

  textarea {
    width: 100%;
    min-height: 110px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(8, 17, 33, 0.92);
    color: var(--text-dark);
  }

  .copy-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .copy-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 10px;
    align-items: center;
  }

  .copy-label {
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
  }

  .copy-field {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .copy-field input[type="text"] {
    flex: 1;
    min-width: 320px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.92rem;
  }

  .copy-btn {
    white-space: nowrap;
  }

  @media (max-width: 960px) {
    .copy-row {
      grid-template-columns: 1fr;
    }
    .copy-field input[type="text"] {
      min-width: 240px;
    }
  }

.portal-footer {
    color: var(--text-light);
    padding: 16px 20px 26px;
    text-align: center;
    font-size: 0.86rem;
}

/* -------------------------------------------------------------------------- */
/* Provider-facing landing page                                               */
/* -------------------------------------------------------------------------- */
.infra-landing {
  background:
    radial-gradient(1400px 760px at 76% 8%, rgba(12, 103, 245, 0.16), transparent 62%),
    linear-gradient(180deg, #050b16 0%, #061022 100%);
}

.infra-landing .portal-main {
  max-width: 1240px;
  padding: 32px 24px 56px;
}

.infra-hero {
  border: 1px solid #1f3d62;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.94), rgba(7, 16, 32, 0.96));
  box-shadow: 0 20px 44px rgba(2, 10, 22, 0.55);
  margin-bottom: 40px;
  overflow: hidden;
}

.infra-hero-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  padding: 34px;
}

.infra-title {
  margin: 0 0 12px;
  font-size: 2.3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f1f7ff;
  max-width: 18ch;
}

.infra-lede {
  margin: 0;
  color: #a8bbd6;
  max-width: 72ch;
}

.infra-feature-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.infra-feature-card {
  border: 1px solid #22466f;
  border-radius: 12px;
  background: rgba(9, 24, 44, 0.82);
  padding: 14px;
}

.infra-feature-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: #e8f2ff;
}

.infra-feature-card p {
  margin: 0;
  color: #9fb6d3;
  font-size: 0.9rem;
}

.infra-actions {
  margin-top: 22px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.infra-status-panel {
  border-left: 1px solid #1f3d62;
  padding-left: 16px;
}

.infra-panel-grid {
  height: 100%;
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid #20476f;
  background:
    linear-gradient(180deg, rgba(11, 30, 56, 0.92), rgba(8, 22, 42, 0.96)),
    linear-gradient(rgba(80, 130, 185, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 130, 185, 0.15) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.infra-panel-grid.has-hero-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.infra-landing .card {
  border: 1px solid #1f3d62;
  background: linear-gradient(180deg, rgba(10, 22, 41, 0.92), rgba(8, 18, 34, 0.94));
  box-shadow: 0 16px 34px rgba(2, 10, 22, 0.46);
  padding: 22px;
}

.infra-landing h2,
.infra-landing .infra-domain-title,
.infra-landing .infra-list-title,
.infra-landing .infra-governance-title {
  color: #e5f0ff;
}

.infra-landing .muted {
  color: #9eb4d1;
}

.infra-governance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.infra-governance-item {
  border: 1px solid #22466f;
  border-radius: 12px;
  background: rgba(9, 24, 44, 0.82);
  padding: 14px;
}

.infra-list-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.infra-list-item {
  border: 1px solid #22466f;
  border-radius: 12px;
  background: rgba(9, 24, 44, 0.82);
  padding: 12px;
}

.deploy-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

a.purchase-card.deploy-card {
  display: flex;
  color: inherit;
}

.deploy-card:hover,
.deploy-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.58);
  box-shadow: 0 8px 18px rgba(8, 24, 48, 0.34);
  outline: none;
}

.deploy-affordance {
  margin-top: 8px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 700;
}

.infra-domain-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.infra-domain-card {
  border: 1px solid #22466f;
  border-radius: 12px;
  background: rgba(9, 24, 44, 0.82);
  padding: 14px;
}

.infra-domain-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.infra-domain-item {
  display: inline-flex;
  align-items: center;
  border: 1px solid #2d5b88;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(7, 18, 34, 0.94);
  color: #cfe4ff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.infra-domain-item:hover,
.infra-domain-item:focus-visible {
  border-color: rgba(125, 211, 252, 0.68);
  color: #e0f2fe;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(8, 24, 48, 0.34);
  outline: none;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  color: #dbeafe;
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: linear-gradient(180deg, rgba(30, 64, 104, 0.75), rgba(15, 37, 66, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-icon.icon-services { color: #93c5fd; }
.section-icon.icon-hosts { color: #67e8f9; }
.section-icon.icon-ops { color: #a5b4fc; }
.section-icon.icon-provider { color: #bfdbfe; }
.section-icon.icon-bundles { color: #c4b5fd; }
.section-icon.icon-catalog { color: #86efac; }

@media (max-width: 1080px) {
  .infra-hero-grid {
    grid-template-columns: 1fr;
  }
  .infra-status-panel {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .infra-feature-grid,
  .infra-governance-grid,
  .infra-domain-grid {
    grid-template-columns: 1fr;
  }
  .infra-title {
    font-size: 1.9rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Benches purchase page                                                       */
/* -------------------------------------------------------------------------- */
.benches-main {
  max-width: 1240px;
}

.purchase-section {
  background: #0f1b2d;
  border: 1px solid #234467;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(2, 12, 28, 0.32);
}

.purchase-section h2 {
  color: #eef5ff;
}

.purchase-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.purchase-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: #122033;
  box-shadow: 0 8px 18px rgba(2, 10, 22, 0.26);
}

.purchase-card-bundle {
  padding: 22px 24px;
  border-color: rgba(125, 211, 252, 0.42);
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.22) 0 4px, transparent 4px),
    #122033;
}

.purchase-card-main {
  min-width: 280px;
  flex: 1 1 420px;
}

.purchase-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.purchase-title {
  color: #f8fafc;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.3;
}

.purchase-slug {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 0.88rem;
}

.purchase-slug code,
.purchase-meta code {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 8px;
  padding: 1px 6px;
}

.purchase-desc {
  margin-top: 6px;
  color: #cbd5e1;
}

.purchase-meta {
  margin-top: 6px;
  color: #cbd5e1;
}

.purchase-meta-detail {
  color: #94a3b8;
}

.purchase-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.purchase-card .btn {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: none;
  border-color: rgba(96, 165, 250, 0.34);
}

.purchase-card .btn:hover {
  box-shadow: 0 4px 10px rgba(10, 74, 170, 0.28);
}

.purchase-card .btn.secondary {
  background: rgba(15, 29, 49, 0.9);
  border-color: rgba(96, 165, 250, 0.3);
  color: #dbeafe;
}

/* -------------------------------------------------------------------------- */
/* Bench operations link hierarchy                                            */
/* -------------------------------------------------------------------------- */
.bench-name-link {
  color: #e9f2ff;
  text-decoration: none;
  font-weight: 800;
}

.bench-name-link:visited {
  color: #e9f2ff;
}

.bench-name-link:hover {
  color: #f5f9ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bench-id-text,
.bench-id-title {
  color: #cfdced;
  font-weight: 800;
}

.bench-id-text {
  font-size: 0.86rem;
  margin-top: 3px;
}

.op-link {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 600;
}

.op-link:visited {
  color: #7dd3fc;
}

.op-link:hover {
  color: #bae6fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.op-link::after {
  content: " ↗";
  font-size: 0.78em;
}

.tls-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #6d4d1a;
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
}

.tls-badge.tls-active {
  border-color: #1f6f4a;
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

.tls-badge.tls-pending {
  border-color: #75551e;
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
}

.tls-badge.tls-failed {
  border-color: #7f1d1d;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.14);
}

.tls-badge.tls-unknown {
  border-color: #475569;
  color: #cbd5e1;
  background: rgba(100, 116, 139, 0.18);
}

/* -------------------------------------------------------------------------- */
/* Admin settings layout                                                       */
/* -------------------------------------------------------------------------- */
.admin-main {
  max-width: 1160px;
}

.admin-settings-form {
  margin-top: 10px;
}

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

.admin-card {
  padding: 22px;
}

.admin-card h2 {
  margin-bottom: 8px;
}

.admin-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

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

.admin-field-span-2 {
  grid-column: span 2;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-field label {
  font-size: 0.86rem;
  color: #cbd5e1;
  font-weight: 700;
}

.admin-field input[type="text"],
.admin-field input[type="password"],
.admin-field input[type="email"],
.admin-field select,
#dns-test-zone {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border-radius: 12px;
}

.admin-field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(8, 17, 33, 0.92);
  color: var(--text-dark);
}

.admin-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.admin-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.admin-toggle-row {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  background: rgba(11, 24, 43, 0.5);
}

.admin-actions-row {
  margin-top: 12px;
}

.admin-test-output {
  margin-top: 10px;
  max-height: 240px;
  overflow: auto;
  background: rgba(8, 17, 33, 0.92);
  color: #dbe7f7;
  border: 1px solid rgba(96, 165, 250, 0.22);
  padding: 10px;
  border-radius: 10px;
}

.admin-action-bar {
  margin-top: 18px;
  padding: 14px 0 4px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 16, 34, 0), rgba(6, 16, 34, 0.95) 45%);
  backdrop-filter: blur(2px);
}

.admin-flash {
  margin-bottom: 12px;
}

.admin-inline-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-inline-action input[readonly] {
  flex: 1;
}

@media (max-width: 960px) {
  .admin-settings-grid {
    grid-template-columns: 1fr;
  }
  .admin-fields-2col {
    grid-template-columns: 1fr;
  }
  .admin-field-span-2 {
    grid-column: span 1;
  }
  .admin-action-bar {
    justify-content: flex-start;
  }
}

/* -------------------------------------------------------------------------- */
/* Support page                                                               */
/* -------------------------------------------------------------------------- */
.support-main {
  max-width: 960px;
}

.support-card {
  padding: 22px;
}

.support-form {
  margin-top: 10px;
}

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

.support-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.support-field-span-2 {
  grid-column: span 2;
}

.support-field label {
  font-size: 0.86rem;
  color: #cbd5e1;
  font-weight: 700;
}

.support-field input[type="text"],
.support-field select,
.support-field textarea {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
}

.support-field select {
  min-height: 42px;
  padding: 10px 42px 10px 12px;
  border: 1px solid var(--border);
  background-color: rgba(8, 17, 33, 0.92);
  color: var(--text-dark);
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #9cc5f8 50%),
    linear-gradient(135deg, #9cc5f8 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.support-field textarea {
  min-height: 170px;
  resize: vertical;
}

.support-actions {
  margin-top: 16px;
}

@media (max-width: 760px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-field-span-2 {
    grid-column: span 1;
  }
}

/* -------------------------------------------------------------------------- */
/* Buy wizard contract cards                                                  */
/* -------------------------------------------------------------------------- */
.wiz-contract-card {
  padding: 14px;
  background: #122033;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(2, 10, 22, 0.2);
}

.wiz-contract-row {
  padding: 12px;
}

.wiz-bundle-platform-card {
  background: #13243a;
}

.wiz-review-card {
  background: #122033;
}
