:root {
  --bg: #061d27;
  --surface: #0b1728;
  --surface-raised: #0e2032;
  --surface-soft: #132b35;
  --line: rgba(255, 200, 43, 0.22);
  --text: #f8fbff;
  --muted: #b7c7d2;
  --primary: #ffca2f;
  --primary-dark: #d99b07;
  --accent: #1dd3bd;
  --good: #36d67a;
  --warning: #ffca2f;
  --danger: #ff675b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;

  display: inline-block;
  vertical-align: middle;

  background: none;
  border-radius: 0;
  padding: 0;
}


.premium-dashboard-arranged {
  display: block;
}

.premium-dashboard-top {
  display: grid;
  gap: 16px;
}

.premium-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.premium-dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  align-items: start;
  gap: 16px;
  margin-top: 16px;
}

.premium-dashboard-main,
.premium-dashboard-side {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.premium-dashboard-metrics > *,
.premium-dashboard-main > *,
.premium-dashboard-side > * {
  width: 100%;
  grid-column: auto !important;
}

.premium-dashboard-side .panel,
.premium-dashboard-main .panel,
.premium-dashboard-main .chart-panel,
.premium-dashboard-main .action-summary {
  grid-column: auto !important;
}

@media (max-width: 1080px) {
  .premium-dashboard-metrics,
  .premium-dashboard-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1081px) and (max-width: 1400px) {
  .premium-dashboard-metrics {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
  }

  .premium-dashboard-columns {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.36fr);
    gap: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 77% 23%, rgba(28, 102, 82, 0.32), transparent 20rem),
    radial-gradient(circle at 19% 4%, rgba(255, 202, 47, 0.18), transparent 17rem),
    linear-gradient(145deg, #14251f 0%, #061d27 38%, #071629 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

body.app-booting .purchase-shell,
body.app-booting .app-shell,
body.app-booting .logout-shell {
  visibility: hidden;
}

.purchase-shell {
  position: relative;
  min-height: 100vh;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 15%, rgba(29, 211, 189, 0.2), transparent 24rem),
    radial-gradient(circle at 13% 0%, rgba(255, 202, 47, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(5, 18, 28, 0.3), rgba(6, 18, 30, 0.92)),
    rgba(5, 18, 29, 0.88);
}

.login-page-shell {
  display: grid;
  place-items: center;
}

.standalone-login {
  width: min(760px, 100%);
}

.logout-shell {
  min-height: 100vh;
  padding: 26px;
  background:
    radial-gradient(circle at 72% 22%, rgba(28, 102, 82, 0.34), transparent 20rem),
    linear-gradient(145deg, rgba(255, 202, 47, 0.1), transparent 34%),
    rgba(6, 29, 39, 0.82);
}

.purchase-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 202, 47, 0.14);
  border-radius: 8px;
  background: rgba(5, 18, 29, 0.58);
  backdrop-filter: blur(16px);
}

.purchase-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #dce9ef;
  font-weight: 800;
}

.nav-link:hover {
  border-color: rgba(255, 202, 47, 0.22);
  background: rgba(255, 202, 47, 0.08);
  color: #ffffff;
}

.purchase-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 0 64px;
}

.logout-main {
  display: grid;
  place-items: center;
  width: min(760px, 100%);
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 44px 0;
}

.logout-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 28, 48, 0.96), rgba(9, 20, 35, 0.96));
  box-shadow: var(--shadow);
}

.logout-card h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
}

.logout-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.logout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

.purchase-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: 28px;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255, 202, 47, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.74), rgba(6, 18, 30, 0.32)),
    radial-gradient(circle at 80% 20%, rgba(29, 211, 189, 0.13), transparent 18rem);
  box-shadow: var(--shadow);
}

.purchase-hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}

.purchase-hero p {
  margin: 0;
  max-width: 720px;
  color: #d8e7ec;
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy {
  display: grid;
  gap: 14px;
  position: relative;
}

.refund-sticker-button {
  --refund-sticker-size: clamp(117px, 13.5vw, 177px);
  --refund-sticker-hover-size: clamp(351px, 40.5vw, 531px);
  position: absolute;
  top: -43px;
  right: clamp(-10px, 1vw, 18px);
  z-index: 4;
  width: var(--refund-sticker-size);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: rotate(7deg);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
  transition: width 180ms ease, transform 180ms ease, filter 180ms ease;
}

.refund-sticker-button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 999px;
}

.refund-sticker-button picture {
  display: block;
  width: 100%;
}

.refund-sticker-button:hover,
.refund-sticker-button:focus-visible {
  z-index: 30;
  width: min(var(--refund-sticker-hover-size), calc(100vw - 24px));
  transform: rotate(2deg) translateY(-8px);
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.5));
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 12px;
}

.hero-trust-row div {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(29, 211, 189, 0.22);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.5);
}

.hero-trust-row strong {
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.hero-trust-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero-actions button,
.purchase-nav .secondary {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.hero-video-shell {
  position: relative;
  display: grid;
  gap: 8px;
  place-items: center;
  width: min(357px, 92vw);
  max-width: 100%;
  border-radius: 10px;
  transform: translateZ(0);
}

.hero-video-label {
  justify-self: start;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-video-shell::before {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 202, 47, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(255, 202, 47, 0.12), transparent 58%),
    conic-gradient(from 18deg, rgba(28, 172, 39, 0.28), rgba(255, 202, 47, 0.24), rgba(192, 0, 0, 0.18), rgba(28, 172, 39, 0.28));
  filter: blur(0.2px);
  content: "";
  opacity: 0.44;
}

.hero-video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: rgba(4, 14, 24, 0.86);
  opacity: 0.9;
  filter: saturate(0.96) contrast(0.98);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateZ(0);
  backface-visibility: hidden;
}

@keyframes stickerPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

.activation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 202, 47, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.07), rgba(29, 211, 189, 0.04)),
    rgba(6, 18, 30, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 60px rgba(0, 0, 0, 0.22);
}

.activation-flow h2 {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: #f6e8af;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.12;
  text-shadow: 0 0 18px rgba(255, 202, 47, 0.18);
}

.activation-flow h2::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(255, 202, 47, 0.18));
  box-shadow: 0 0 14px rgba(255, 202, 47, 0.24);
}

.activation-flow div {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 202, 47, 0.2);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.78);
}

.activation-flow span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.activation-flow strong {
  font-size: 20px;
  line-height: 1.16;
}

.activation-flow small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.activation-flow-note {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 820px;
  margin: 0;
  padding-top: 4px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.activation-flow-note::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.58);
}

.branch-showcase-card {
  padding: 10px;
  border: 1px solid rgba(255, 202, 47, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.055), rgba(29, 211, 189, 0.035)),
    rgba(6, 18, 30, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.branch-showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 7px;
  background: rgba(3, 11, 20, 0.9);
}

.branch-showcase-card picture {
  display: block;
}

.plan-selection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card,
.checkout-panel,
.account-panel,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 28, 48, 0.96), rgba(9, 20, 35, 0.96));
  box-shadow: var(--shadow);
}

.plan-card {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 14px;
  min-height: 458px;
  padding: 22px;
  border-color: rgba(255, 202, 47, 0.62);
  overflow: hidden;
  position: relative;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 202, 47, 0.92);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 202, 47, 0.12), transparent 10rem),
    linear-gradient(180deg, rgba(13, 28, 48, 0.98), rgba(9, 20, 35, 0.98));
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 202, 47, 0.2),
    0 0 38px rgba(255, 202, 47, 0.18);
}

.plan-card.highlighted {
  border-color: rgba(255, 202, 47, 0.72);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.4), 0 0 36px rgba(255, 202, 47, 0.12);
}

.plan-card.selected {
  background:
    radial-gradient(circle at 100% 0, rgba(29, 211, 189, 0.12), transparent 10rem),
    linear-gradient(180deg, rgba(13, 28, 48, 0.98), rgba(9, 20, 35, 0.98));
}

.plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 202, 47, 0.68);
  opacity: 0.78;
  content: "";
}

.plan-card:hover::before {
  height: 4px;
  background: rgba(255, 202, 47, 0.95);
}

.plan-info {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding-bottom: 8px;
}

.plan-info-button {
  display: grid;
  place-items: center;
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0;
  border: 1px solid rgba(255, 202, 47, 0.34);
  border-radius: 50%;
  background: rgba(255, 202, 47, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.plan-info-button:hover,
.plan-info.open .plan-info-button,
.plan-info:focus-within .plan-info-button {
  border-color: rgba(255, 202, 47, 0.8);
  background: var(--primary);
  color: #061421;
}

.plan-info-popup {
  position: absolute;
  top: 30px;
  right: 0;
  width: min(340px, calc(100vw - 40px));
  max-height: min(320px, 64vh);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(255, 202, 47, 0.38);
  border-radius: 8px;
  background: rgba(7, 18, 31, 0.98);
  color: var(--text);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.plan-info-popup[hidden] {
  display: none;
}

.plan-info:hover .plan-info-popup,
.plan-info:focus-within .plan-info-popup,
.plan-info.open .plan-info-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.plan-info-popup strong {
  display: block;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.25;
}

.plan-info-popup p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.plan-card-head {
  display: grid;
  gap: 4px;
}

.plan-card-head > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.plan-kicker {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.plan-card-head strong {
  font-size: 40px;
  line-height: 1;
}

.plan-card-head small,
.plan-card p,
.plan-card li,
.checkout-summary p,
.account-status-card p,
.activation-note,
.security-note,
.login-panel p {
  color: var(--muted);
  line-height: 1.45;
}

.plan-card h2,
.checkout-summary h2,
.account-status-card h2,
.login-panel h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.plan-card p {
  margin: 0;
  min-height: 0;
}

.plan-card ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--primary);
  content: "✓";
}

.plan-select {
  align-self: end;
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark {
    animation: none;
  }
}

.checkout-panel,
.account-panel,
.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 20px;
}

.checkout-summary {
  display: grid;
  align-content: start;
  gap: 10px;
}

.checkout-summary strong {
  color: var(--primary);
  font-size: 28px;
}

.checkout-price-vat {
  margin-top: -6px;
  color: rgba(205, 218, 229, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.checkout-form,
.login-form,
.password-setup {
  display: grid;
  gap: 14px;
}

.checkout-billing-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(255, 202, 47, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.18), rgba(29, 211, 189, 0.08)),
    rgba(6, 18, 30, 0.9);
  box-shadow: 0 18px 42px rgba(255, 202, 47, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checkout-billing-choice legend {
  grid-column: 1 / -1;
  padding: 0 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-billing-choice label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 16, 27, 0.72);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.checkout-billing-choice label:has(input:checked) {
  border-color: rgba(255, 202, 47, 0.9);
  background: rgba(255, 202, 47, 0.14);
  transform: translateY(-1px);
}

.checkout-billing-choice input {
  width: 17px;
  min-width: 17px;
  accent-color: var(--primary);
}

.checkout-billing-choice span {
  display: grid;
  gap: 3px;
}

.checkout-billing-choice strong {
  font-size: 14px;
}

.checkout-billing-choice small {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.checkout-billing-choice em {
  color: rgba(205, 218, 229, 0.76);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
}

.login-two-factor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr);
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(29, 211, 189, 0.22);
  border-radius: 8px;
  background: rgba(29, 211, 189, 0.06);
}

.login-page-link {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.business-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 202, 47, 0.22);
  border-radius: 8px;
  background: rgba(255, 202, 47, 0.08);
  color: #eef7f7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.business-confirmation input {
  width: 17px;
  min-width: 17px;
  min-height: 17px;
  margin-top: 1px;
  accent-color: var(--primary);
}

.inline-link {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #ffe28a;
}

.legal-layer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(3, 12, 20, 0.74);
  backdrop-filter: blur(8px);
}

.legal-layer {
  position: fixed;
  inset: 6vh min(5vw, 44px);
  z-index: 81;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 47, 0.32);
  border-radius: 10px;
  background: #071522;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.legal-layer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 202, 47, 0.16);
}

.legal-layer-head h2 {
  margin: 3px 0 0;
}

.legal-layer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #06131f;
}

.function-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1180;
  background: rgba(3, 12, 20, 0.62);
  backdrop-filter: blur(7px);
}

.function-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1181;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(760px, max(420px, 54vw));
  height: min(680px, max(360px, 56vh));
  overflow: hidden;
  border: 1px solid rgba(255, 202, 47, 0.36);
  border-radius: 10px;
  background: #071522;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.function-popup-head {
  padding: 18px 52px 14px 18px;
  border-bottom: 1px solid rgba(255, 202, 47, 0.16);
  background: rgba(7, 21, 34, 0.96);
}

.function-popup-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.function-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 202, 47, 0.34);
  border-radius: 999px;
  background: rgba(7, 18, 31, 0.92);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.function-popup-close:hover,
.function-popup-close:focus-visible {
  border-color: rgba(255, 202, 47, 0.76);
  background: rgba(255, 202, 47, 0.14);
}

.function-popup-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #06131f;
}

.refund-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1220;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 202, 47, 0.18), transparent 24rem),
    rgba(2, 10, 18, 0.72);
  backdrop-filter: blur(6px);
}

.refund-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1221;
  display: grid;
  gap: 18px;
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 202, 47, 0.58);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.12), rgba(29, 211, 189, 0.06)),
    rgba(7, 18, 31, 0.98);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.58);
  transform: translate(-50%, -50%);
}

.refund-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.refund-modal-head h2,
.refund-form h3 {
  margin: 0;
  color: #fff;
}

.refund-notice-view,
.refund-form {
  display: grid;
  gap: 14px;
}

.refund-modal-text,
.refund-legal-note {
  color: #d8e7ec;
  font-size: 14px;
  line-height: 1.55;
}

.refund-modal-text p,
.refund-legal-note p {
  margin: 0 0 10px;
}

.refund-modal-text p:last-child,
.refund-legal-note p:last-child {
  margin-bottom: 0;
}

.refund-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.refund-form textarea {
  min-height: 96px;
  resize: vertical;
}

.refund-form .form-error.success {
  border-color: rgba(50, 213, 131, 0.48);
  background: rgba(50, 213, 131, 0.12);
  color: #9ff2bd;
}

.checkout-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#completePaymentButton {
  font-weight: 900;
}

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
}

.account-status-card {
  display: grid;
  gap: 14px;
}

.activation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.activation-step {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
  color: var(--muted);
}

.activation-step span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.activation-step strong {
  font-size: 14px;
}

.activation-step.active {
  border-color: rgba(255, 202, 47, 0.72);
  color: var(--text);
}

.activation-step.done {
  border-color: rgba(54, 214, 122, 0.42);
  color: #e8fff0;
}

.password-setup {
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(29, 211, 189, 0.26);
  border-radius: 8px;
  background: rgba(29, 211, 189, 0.07);
}

.security-note {
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 22px 0 8px;
  border-top: 1px solid rgba(255, 202, 47, 0.18);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-size: 15px;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

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

.app-site-footer {
  width: auto;
  margin: 0 28px 0;
  padding: 18px 0 20px;
}

.legal-site-footer {
  width: min(1180px, calc(100vw - 36px));
  max-width: calc(100vw - 36px);
  margin-bottom: 24px;
}

.legal-site-footer nav {
  flex-wrap: wrap;
  white-space: normal;
}

.cookie-notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background:
    radial-gradient(circle at 70% 100%, rgba(29, 211, 189, 0.16), transparent 28rem),
    rgba(2, 10, 18, 0.62);
  backdrop-filter: blur(5px);
}

.cookie-notice-layer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1201;
  width: min(520px, calc(100% - 28px));
}

.cookie-notice-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 202, 47, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.1), rgba(29, 211, 189, 0.06)),
    rgba(7, 18, 31, 0.98);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cookie-notice-head {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.cookie-notice-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #32d583;
  box-shadow: 0 0 0 5px rgba(50, 213, 131, 0.14), 0 0 20px rgba(50, 213, 131, 0.45);
}

.cookie-notice-head strong {
  color: var(--primary);
  font-size: 15px;
  line-height: 1.25;
}

.cookie-notice-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-notice-text strong {
  color: #e9f3ff;
  font-weight: 800;
}

.cookie-notice-text p {
  margin: 0 0 10px;
}

.cookie-notice-text p:last-child {
  margin-bottom: 0;
}

.cookie-notice-text a {
  color: var(--primary);
  font-weight: 800;
}

.cookie-notice-card button {
  justify-self: end;
  min-width: 96px;
  min-height: 38px;
}

.cookie-notice-reopen {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 1100;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 202, 47, 0.46);
  border-radius: 999px;
  background: rgba(7, 18, 31, 0.9);
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.cookie-notice-reopen:hover,
.cookie-notice-reopen:focus-visible {
  border-color: rgba(255, 202, 47, 0.78);
  background: rgba(255, 202, 47, 0.12);
  transform: translateY(-1px);
}

.legal-page {
  display: grid;
  gap: 16px;
  width: min(1180px, calc(100vw - 36px));
  max-width: calc(100vw - 36px);
  margin: 0 auto;
  padding: 70px 0;
  overflow-wrap: anywhere;
}

.legal-page h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-page ul,
.legal-page ol {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-page a {
  color: var(--primary);
  font-weight: 800;
}

.legal-back {
  width: fit-content;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-back-to-top,
.privacy-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 14vh;
  z-index: 1090;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 202, 47, 0.38);
  border-radius: 999px;
  background: rgba(7, 18, 31, 0.48);
  color: rgba(255, 239, 184, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0.72;
  backdrop-filter: blur(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.legal-back-to-top:hover,
.legal-back-to-top:focus-visible,
.privacy-back-to-top:hover,
.privacy-back-to-top:focus-visible {
  opacity: 1;
  border-color: rgba(255, 202, 47, 0.72);
  background: rgba(255, 202, 47, 0.12);
  transform: translateY(-1px);
}

.confirmation-link {
  width: fit-content;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.confirmation-link:hover {
  text-decoration: underline;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: clamp(198px, 14vw, 228px) minmax(0, 1fr);
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 202, 47, 0.18);
  background: rgba(5, 18, 29, 0.88);
  color: #f4faf7;
  box-shadow: 20px 0 45px rgba(0, 0, 0, 0.22);
  max-width: 100vw;
  overflow-x: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand picture {
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
}



@keyframes brandPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 202, 47, 0.32), 0 14px 32px rgba(255, 202, 47, 0.22);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 202, 47, 0.07), 0 16px 38px rgba(28, 172, 39, 0.22);
  }
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand span {
  margin-top: 3px;
  color: #bdd1d9;
  font-size: 12px;
  line-height: 1.25;
}

.step-nav {
  display: grid;
  gap: 7px;
  max-width: 100%;
  scrollbar-width: none;
}

.step-nav::-webkit-scrollbar {
  display: none;
}

.step-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  color: #dbe7ed;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.step-button span {
  display: grid;
  place-items: center;
  width: 27px;
  min-width: 27px;
  height: 23px;
  border: 1px solid rgba(255, 202, 47, 0.25);
  border-radius: 6px;
  color: #f7cf53;
  font-size: 12px;
}

.step-button:hover,
.step-button.active {
  background: rgba(255, 202, 47, 0.12);
  color: #ffffff;
}

.step-button.active span {
  background: var(--primary);
  color: #061421;
}

.sidebar-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.72);
  color: #dbe7ed;
  font-size: 12px;
  line-height: 1.3;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--good);
}

.workspace {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 202, 47, 0.16);
  background: rgba(6, 23, 36, 0.78);
  backdrop-filter: blur(10px);
}

.device-advice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 28px 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 202, 47, 0.2);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.62);
  color: var(--muted);
}

.device-advice.plus {
  max-width: 760px;
}

.device-advice.premium {
  border-color: rgba(255, 202, 47, 0.38);
  background: linear-gradient(90deg, rgba(255, 202, 47, 0.14), rgba(11, 23, 40, 0.7));
  color: #edf7f8;
}

.device-advice div {
  display: grid;
  gap: 2px;
}

.device-advice strong {
  color: var(--primary);
  font-size: 13px;
}

.device-advice span:not(.device-symbol) {
  font-size: 13px;
  line-height: 1.45;
}

.device-symbol {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 22px;
  border: 2px solid rgba(255, 202, 47, 0.72);
  border-radius: 5px;
  box-shadow: inset 0 -5px 0 rgba(255, 202, 47, 0.12);
}

.device-symbol::after {
  position: absolute;
  left: 8px;
  bottom: -7px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.8);
  content: "";
}

.workflow-tabs {
  display: flex;
  gap: 10px;
  margin: 14px 28px 0;
  max-width: 980px;
}

.workflow-tab {
  display: grid;
  flex: 0 1 176px;
  gap: 3px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.58);
  color: #dce9ef;
  text-align: left;
}

.workflow-tab.active {
  flex: 1 1 390px;
  border-color: rgba(255, 202, 47, 0.48);
  background: linear-gradient(90deg, rgba(255, 202, 47, 0.16), rgba(11, 23, 40, 0.74));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.workflow-tab small,
.workflow-tab strong,
.workflow-tab span {
  display: block;
}

.workflow-tab small {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workflow-tab strong {
  font-size: 13px;
  line-height: 1.25;
}

.workflow-tab span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.workflow-summary {
  color: #edf7f8;
  font-weight: 800;
}

.workflow-tab:not(.active) span {
  display: none;
}

.version-button.tier-locked,
.step-button.tier-locked {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(220, 233, 239, 0.46);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 14px;
}

.version-switch {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.72);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.tariff-hint {
  max-width: 190px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.version-button {
  min-width: 112px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 6px;
  background: transparent;
  color: #dce9ef;
  font-weight: 700;
}

.version-button.active {
  background: var(--primary);
  color: #061421;
  box-shadow: 0 10px 30px rgba(255, 202, 47, 0.28);
}

.brand-prefix {
  opacity: 0.82;
}

.version-button.locked:not(.active),
.step-button.locked:not(.active) {
  color: rgba(220, 233, 239, 0.72);
}

.top-upgrade,
.inline-cta,
.footer-cta button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 202, 47, 0.4);
  border-radius: 7px;
  background: var(--primary);
  color: #061421;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255, 202, 47, 0.18);
}

.top-upgrade:hover,
.inline-cta:hover,
.footer-cta button:hover {
  background: var(--primary-dark);
  color: #061421;
}

.inline-cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 14px;
  min-height: 34px;
  padding: 7px 11px;
  font-size: 12px;
}

.inline-cta.ghost {
  background: rgba(6, 18, 30, 0.58);
  color: var(--primary);
  box-shadow: none;
}

.inline-cta.ghost:hover {
  border-color: var(--primary);
  background: rgba(255, 202, 47, 0.12);
  color: var(--primary);
}

main {
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 24px 28px 112px;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.screen-grid,
.dashboard-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  grid-auto-flow: dense;
}

.screen[data-screen="monatscheck"] .screen-grid {
  grid-auto-flow: dense;
}

.screen[data-screen="monatscheck"] .panel.wide:first-child {
  grid-column: span 12;
}

.screen[data-screen="premium-struktur"] .panel,
.screen[data-screen="premium-struktur"] .panel.wide,
.screen[data-screen="premium-struktur"] .premium-revenue-panel {
  grid-column: 1 / -1;
}

.premium-structure-grid {
  display: block;
}

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

.premium-structure-main,
.premium-structure-side {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.premium-structure-main .panel,
.premium-structure-side .panel {
  grid-column: auto;
}

.panel,
.metric-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 28, 48, 0.96), rgba(9, 20, 35, 0.96));
  box-shadow: var(--shadow);
}

.panel {
  grid-column: span 4;
  padding: 18px;
}

.panel.wide {
  grid-column: span 8;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 202, 47, 0.28);
  border-radius: 7px;
  background: rgba(6, 18, 30, 0.58);
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.icon-button:hover {
  border-color: var(--primary);
  background: rgba(255, 202, 47, 0.12);
}

.settings-button {
  font-size: 17px;
  line-height: 1;
}

.settings-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
}

.calculation-notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
}

.calculation-notice-layer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 31;
  display: grid;
  gap: 14px;
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 24px;
  border: 1px solid rgba(255, 202, 47, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 28, 48, 0.98), rgba(7, 19, 32, 0.98));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

.calculation-notice-layer h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.calculation-notice-layer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-line;
}

.calculation-notice-layer button {
  justify-self: start;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 7px;
  font-weight: 900;
}

.notice-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dbeeed;
  font-size: 14px;
  font-weight: 800;
}

.notice-checkbox input {
  width: auto;
}

.notice-close-link {
  justify-self: start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
}

.notice-close-link:hover {
  color: #ffe69b;
}

.settings-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  width: min(520px, 100vw);
  height: 100vh;
  padding: 22px;
  border-left: 1px solid rgba(255, 202, 47, 0.34);
  background: linear-gradient(180deg, rgba(8, 22, 36, 0.98), rgba(5, 16, 28, 0.98));
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.48);
  overflow-y: auto;
}

.settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.drawer-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.small-logout-button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

.settings-head h2 {
  font-size: 22px;
}

.settings-note {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(29, 211, 189, 0.28);
  border-radius: 8px;
  background: rgba(29, 211, 189, 0.08);
  color: #dbeeed;
  font-size: 13px;
  line-height: 1.45;
}

.settings-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 202, 47, 0.2);
  border-radius: 8px;
  background: rgba(11, 23, 40, 0.72);
}

.settings-tab {
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 6px;
  background: transparent;
  color: #dce9ef;
  font-size: 12px;
  font-weight: 900;
}

.settings-tab.active {
  background: var(--primary);
  color: #061421;
}

.settings-panels {
  min-height: 0;
}

.settings-panel {
  display: none;
  gap: 12px;
}

.settings-panel.active {
  display: grid;
}

.settings-panel .field {
  min-height: 76px;
}

.settings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 202, 47, 0.18);
}

.settings-footer button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 7px;
  font-weight: 900;
}

.settings-footer span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.account-drawer {
  width: min(560px, 100vw);
}

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

.account-summary div,
.account-section {
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.52);
}

.account-summary div {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.account-summary span,
.account-section p,
.billing-options label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.account-summary strong {
  font-size: 18px;
}

.account-section {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.account-section h3 {
  font-size: 15px;
}

.account-section button {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 7px;
  font-weight: 900;
}

.account-danger-zone {
  border-color: rgba(255, 103, 91, 0.38);
  background: rgba(66, 20, 28, 0.28);
}

.delete-mode-options {
  display: grid;
  gap: 8px;
}

.delete-mode-options label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 7px;
  background: rgba(6, 18, 30, 0.36);
  color: #e5eef8;
  font-size: 13px;
  line-height: 1.35;
}

.delete-mode-options input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.account-danger-zone .check-line input {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
}

.danger-action {
  border-color: rgba(255, 103, 91, 0.48);
  color: #ffd8d4;
}

.danger-action:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: #061421;
}

.invoice-list {
  display: grid;
  gap: 8px;
}

.invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.55);
}

.invoice-row div {
  display: grid;
  gap: 3px;
}

.invoice-row span {
  color: var(--muted);
  font-size: 12px;
}

.invoice-row a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.account-plan-options,
.billing-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-plan-button {
  border: 1px solid var(--line);
  background: rgba(11, 23, 40, 0.78);
  color: var(--text);
}

.account-plan-button.active {
  background: var(--primary);
  color: #061421;
}

.account-plan-button:disabled {
  opacity: 0.46;
}

.logout-button {
  border-color: rgba(255, 103, 91, 0.42);
  background: rgba(255, 103, 91, 0.08);
  color: #ffe8e6;
}

.logout-button:hover {
  border-color: var(--danger);
  background: rgba(255, 103, 91, 0.16);
}

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

.billing-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 7px;
  background: rgba(11, 23, 40, 0.62);
  font-weight: 900;
}

.billing-options input {
  width: auto;
  min-height: auto;
}

.period-chooser {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.period-chooser > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.period-chooser label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 7px;
  background: rgba(11, 23, 40, 0.62);
  color: #dbeeed;
  font-size: 13px;
  font-weight: 900;
}

.period-chooser input {
  width: auto;
  min-height: auto;
}

.plus-revenue-slider {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(29, 211, 189, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(29, 211, 189, 0.1), transparent 180px),
    rgba(6, 18, 30, 0.54);
  max-width: 720px;
}

.plus-revenue-slider .slider-head {
  align-items: center;
}

.plus-revenue-slider .slider-head label {
  color: #eef7f8;
  font-size: 16px;
  font-weight: 900;
}

.plus-revenue-slider .slider-head strong {
  color: var(--primary);
  font-size: 28px;
}

.plus-revenue-input {
  max-width: 220px;
  min-height: 42px;
  border-color: rgba(29, 211, 189, 0.2);
  background: rgba(8, 22, 36, 0.52);
  color: #dce8ea;
  font-size: 16px;
  font-weight: 500;
}

.plus-cash-field {
  max-width: 360px;
  margin-top: 14px;
}

.two-factor-section {
  gap: 14px;
}

.two-factor-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(29, 211, 189, 0.18);
  border-radius: 7px;
  background: rgba(29, 211, 189, 0.08);
}

.two-factor-status label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.two-factor-status input {
  width: auto;
  min-height: auto;
}

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

.two-factor-grid article {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 7px;
  background: rgba(11, 23, 40, 0.54);
}

.two-factor-grid small {
  color: var(--muted);
  font-size: 12px;
}

.two-factor-grid code {
  overflow-wrap: anywhere;
  padding: 8px;
  border: 1px solid rgba(255, 202, 47, 0.2);
  border-radius: 7px;
  color: var(--primary);
  background: rgba(255, 202, 47, 0.08);
  font-size: 12px;
}

.two-factor-grid article.disabled-option {
  opacity: 0.52;
  filter: grayscale(0.35);
}

.two-factor-grid article.disabled-option input,
.two-factor-grid article.disabled-option button {
  cursor: not-allowed;
}

.two-factor-qr {
  width: 154px;
  height: 154px;
  padding: 8px;
  border: 1px solid rgba(255, 202, 47, 0.28);
  border-radius: 8px;
  background: #fff;
}

.two-factor-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.bin-icon {
  position: relative;
  display: block;
  width: 13px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.bin-icon::before {
  position: absolute;
  top: -5px;
  left: -3px;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.bin-icon::after {
  position: absolute;
  top: -8px;
  left: 3px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.tier-label,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}

.tier-label {
  background: rgba(255, 202, 47, 0.12);
  color: var(--primary);
}

.tier-label.accent {
  background: var(--primary);
  color: #061421;
}

.pill.good {
  background: rgba(54, 214, 122, 0.13);
  color: var(--good);
}

.pill.warning {
  background: rgba(255, 202, 47, 0.14);
  color: var(--warning);
}

.pill.danger {
  background: rgba(255, 103, 91, 0.13);
  color: var(--danger);
}

.traffic-light {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 0 12px currentColor;
}

.pill.warning .traffic-light,
.pill.danger .traffic-light {
  animation: trafficBlink 2.2s ease-in-out infinite;
}

@keyframes trafficBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.32;
    transform: scale(0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill.warning .traffic-light,
  .pill.danger .traffic-light {
    animation: none;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.form-grid.one {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field span,
.metric-stack span,
.metric-card span,
.comparison-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

input,
select {
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(183, 199, 210, 0.26);
  border-radius: 7px;
  background: rgba(6, 18, 30, 0.78);
  color: var(--text);
}

input:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

input:focus,
select:focus {
  outline: 3px solid rgba(255, 202, 47, 0.2);
  border-color: var(--primary);
}

.password-field-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.password-field-wrap input {
  padding-right: 44px;
}

.password-toggle-button {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 202, 47, 0.08);
  color: #ffca2f;
  transform: translateY(-50%);
}

.password-toggle-button:hover,
.password-toggle-button:focus-visible {
  background: rgba(255, 202, 47, 0.1);
  color: var(--primary);
}

.password-toggle-button svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.field-with-save .password-field-wrap {
  flex: 1 1 auto;
}

input[type="range"] {
  height: 6px;
  min-height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  accent-color: var(--primary);
  background: rgba(255, 202, 47, 0.2);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 202, 47, 0.25);
  border-radius: 8px;
  background: radial-gradient(circle at 100% 0, rgba(255, 202, 47, 0.14), rgba(6, 18, 30, 0.72));
}

.pro-intro-band {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
}

.intro-band strong,
.intro-band span,
.mini-result span,
.mini-result strong {
  display: block;
}

.intro-band strong {
  margin-bottom: 5px;
  font-size: 19px;
}

.intro-band span {
  color: var(--muted);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.proof-strip span {
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 202, 47, 0.22);
  border-radius: 999px;
  background: rgba(6, 18, 30, 0.52);
  color: #edf7f8;
  font-size: 12px;
  font-weight: 800;
}

.decision-proof span {
  border-color: rgba(255, 202, 47, 0.32);
  background: rgba(255, 202, 47, 0.1);
  color: #fff7d6;
}

.decision-panel,
.scale-panel {
  border-color: rgba(255, 202, 47, 0.28);
}

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

.decision-grid article {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.46);
}

.decision-grid strong {
  color: var(--primary);
  font-size: 13px;
}

.decision-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mini-result {
  padding: 14px;
  border-radius: 8px;
  background: var(--primary);
  color: #061421;
}

.mini-result span {
  color: #3b4144;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-result strong {
  margin-top: 4px;
  color: #111820;
  font-size: 26px;
  line-height: 1;
}

.mini-result small {
  display: block;
  margin-top: 7px;
  color: #384044;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.pro-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.pro-result-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pro-result-grid .mini-result {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 11px;
}

.pro-result-grid-compact .liquidity {
  grid-row: auto;
}

.pro-result-grid .liquidity strong {
  font-size: 22px;
}

.pro-result-grid .profit strong {
  font-size: 21px;
}

.pro-result-grid .tax-small {
  background: rgba(255, 202, 47, 0.16);
  border: 1px solid rgba(255, 202, 47, 0.42);
  color: var(--text);
}

.pro-result-grid .tax-small span {
  color: var(--muted);
}

.pro-result-grid .tax-small strong {
  color: var(--primary);
  font-size: 19px;
}

.pro-result-grid .tax-small small {
  color: var(--muted);
}

.slider-field {
  display: grid;
  gap: 11px;
  margin-bottom: 18px;
}

.slider-field.compact {
  margin-bottom: 14px;
}

.slider-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.slider-head label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.slider-head strong {
  color: var(--primary);
  font-size: 18px;
}

.paired-number {
  max-width: 220px;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-button {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 18, 30, 0.58);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.chip-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.metric-strip div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
}

.metric-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-strip strong {
  font-size: 19px;
}

.goods-grid,
.locked-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.goods-card {
  padding: 14px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
}

.pro-wg-name {
  min-height: 34px;
  padding: 6px 8px;
  border-color: rgba(255, 202, 47, 0.22);
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.panel-head.small {
  margin-bottom: 12px;
}

.muted-field {
  opacity: 0.52;
}

.vat-spotlight {
  border-color: rgba(255, 202, 47, 0.46);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 202, 47, 0.18), transparent 180px),
    linear-gradient(180deg, rgba(13, 28, 48, 0.98), rgba(9, 20, 35, 0.98));
}

.vat-spotlight > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 40px;
  line-height: 1;
}

.vat-spotlight p,
.body-copy,
.locked-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.vat-spotlight .metric-stack {
  margin-top: 14px;
}

.pro-tax-detail {
  padding: 15px;
}

.pro-tax-detail > strong {
  font-size: 26px;
}

.pro-liquidity-evaluation {
  padding: 16px;
}

.pro-liquidity-evaluation > strong {
  font-size: 34px;
}

.liquidity-amount-note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pro-eval-submetrics {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pro-eval-submetrics div {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.5);
}

.pro-eval-submetrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pro-eval-submetrics strong {
  font-size: 21px;
}

.pro-eval-submetrics .smaller strong {
  color: var(--primary);
  font-size: 17px;
}

.pro-eval-submetrics small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.locked-card {
  position: relative;
  overflow: hidden;
}

.locked-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 202, 47, 0.08), transparent 34%);
}

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

.locked-card.premium {
  border-color: rgba(29, 211, 189, 0.28);
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.locked-feature-grid div {
  padding: 12px;
  border: 1px solid rgba(255, 202, 47, 0.16);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
  color: var(--muted);
  font-weight: 700;
}

.hero-metric {
  grid-column: span 3;
  border-color: rgba(255, 202, 47, 0.5);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 202, 47, 0.22), transparent 170px),
    linear-gradient(180deg, rgba(13, 28, 48, 0.98), rgba(9, 20, 35, 0.98));
}

.hero-metric strong {
  color: var(--primary);
}

.premium-navigator {
  grid-column: 1 / -1;
  border-color: rgba(255, 202, 47, 0.34);
  background:
    radial-gradient(circle at 18% 5%, rgba(239, 68, 68, 0.12), transparent 260px),
    radial-gradient(circle at 86% 8%, rgba(34, 197, 94, 0.14), transparent 280px),
    linear-gradient(145deg, rgba(10, 26, 39, 0.98), rgba(6, 18, 30, 0.98));
}

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

.navigator-side,
.next-best-action,
.tradeoff-grid article {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.62);
}

.navigator-side strong,
.next-best-action strong,
.tradeoff-grid strong {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
}

.navigator-side p,
.next-best-action p,
.tradeoff-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.navigator-kicker,
.next-best-action > span,
.tradeoff-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.risk-side {
  border-color: rgba(239, 68, 68, 0.32);
}

.risk-side .navigator-kicker,
.risk-side .navigator-score strong {
  color: #ff9a9a;
}

.opportunity-side {
  border-color: rgba(34, 197, 94, 0.34);
}

.opportunity-side .navigator-kicker,
.opportunity-side .navigator-score strong {
  color: #75e5a0;
}

.navigator-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.navigator-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.navigator-score strong {
  font-size: 36px;
}

.next-best-action {
  margin-top: 12px;
  border-color: rgba(255, 202, 47, 0.34);
  background: linear-gradient(135deg, rgba(255, 202, 47, 0.13), rgba(6, 18, 30, 0.7));
}

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

.driver-grid section {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.5);
}

.driver-grid h3 {
  margin: 0;
  font-size: 15px;
}

.driver-list {
  display: grid;
  gap: 8px;
}

.driver-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(255, 202, 47, 0.14);
  border-radius: 8px;
  background: rgba(2, 12, 22, 0.42);
}

.driver-list strong {
  font-size: 14px;
}

.driver-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.driver-list b {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.14);
  color: var(--primary);
  font-size: 12px;
}

.driver-list .negative b {
  background: rgba(239, 68, 68, 0.16);
  color: #ff9a9a;
}

.driver-list .positive b {
  background: rgba(34, 197, 94, 0.15);
  color: #75e5a0;
}

.pro-dashboard-layout .pro-evaluation-card {
  grid-column: span 6;
  min-height: 150px;
  border-color: rgba(255, 202, 47, 0.38);
}

.metric-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metric-headline > span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pro-dashboard-layout .pro-evaluation-card strong {
  font-size: 34px;
}

.pro-dashboard-layout .pro-tax-mini,
.pro-dashboard-layout .pro-cash-mini {
  grid-column: span 6;
  min-height: 92px;
  padding: 13px 15px;
}

.pro-dashboard-layout .pro-tax-mini {
  border-color: rgba(255, 202, 47, 0.24);
  background: rgba(6, 18, 30, 0.62);
}

.pro-dashboard-layout .pro-tax-mini strong,
.pro-dashboard-layout .pro-cash-mini strong {
  font-size: 22px;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-list div,
.metric-stack div,
.action-list div,
.recommendations div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.56);
}

.compact-list strong {
  font-size: 14px;
}

.compact-list span,
.recommendations small,
.metric-card small,
.comparison-grid small {
  color: var(--muted);
  font-size: 12px;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-stack strong {
  font-size: 20px;
}

.table-like {
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr;
  gap: 10px;
  align-items: center;
}

.table-like.compact .table-row {
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
}

.table-row.head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proplus-table {
  display: grid;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-color: rgba(255, 202, 47, 0.55) rgba(6, 18, 30, 0.7);
}

.proplus-table::-webkit-scrollbar {
  height: 8px;
}

.proplus-table::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.55);
}

.proplus-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.1fr) minmax(190px, 1fr) minmax(105px, 0.68fr) minmax(210px, 1fr) minmax(80px, 0.55fr) minmax(92px, 0.62fr) 38px;
  gap: 10px;
  align-items: center;
  min-width: 1060px;
}

.proplus-row.head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.share-control {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 52px;
  gap: 8px;
  align-items: center;
}

.share-control input {
  min-height: auto;
}

.wg-name-lock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 6px;
  align-items: center;
}

.share-lock-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 202, 47, 0.32);
  border-radius: 999px;
  background: rgba(6, 18, 30, 0.72);
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.share-lock-button:hover,
.share-lock-button.locked {
  border-color: rgba(255, 202, 47, 0.78);
  background: rgba(255, 202, 47, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 202, 47, 0.08);
}

.share-control input:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.wg-margin,
.plus-wg-share-value,
.plus-wg-cost-value,
.plus-wg-gross,
.premium-revenue-share-value,
.premium-revenue-cost-value,
.premium-revenue-gross {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 202, 47, 0.14);
  border-radius: 7px;
  background: rgba(6, 18, 30, 0.5);
  color: #edf7f8;
  font-size: 13px;
  font-weight: 900;
}

.cost-control {
  grid-template-columns: minmax(90px, 1fr) 56px;
}

.premium-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.3fr) repeat(3, minmax(110px, 0.8fr));
  gap: 10px;
  align-items: center;
  min-width: 620px;
}

.premium-row.head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-revenue-row {
  display: grid;
  grid-template-columns: minmax(132px, 1fr) minmax(132px, 0.9fr) minmax(84px, 0.58fr) minmax(132px, 0.9fr) minmax(66px, 0.45fr) minmax(70px, 0.48fr) 34px;
  gap: 7px;
  align-items: center;
  min-width: min(820px, 100%);
}

.premium-revenue-row input,
.premium-revenue-row select {
  min-width: 0;
}

.premium-revenue-row .share-control {
  grid-template-columns: minmax(74px, 1fr) 46px;
  gap: 6px;
}

.premium-revenue-row .cost-control {
  grid-template-columns: minmax(74px, 1fr) 48px;
}

.premium-revenue-row .premium-revenue-share-value,
.premium-revenue-row .premium-revenue-cost-value,
.premium-revenue-row .premium-revenue-gross {
  min-height: 34px;
  padding: 0 7px;
  font-size: 12px;
}

.premium-revenue-row.head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-revenue-panel {
  grid-column: span 12;
}

.location-warning {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 202, 47, 0.32);
  border-radius: 8px;
  background: rgba(255, 202, 47, 0.08);
  color: #ffe08a;
  font-weight: 800;
}

.premium-workflow-engine {
  border-color: rgba(255, 202, 47, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 202, 47, 0.08), transparent 42%),
    rgba(8, 22, 36, 0.76);
}

.workflow-engine-intro,
.workflow-engine-bridge {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.workflow-guide {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 202, 47, 0.22);
  border-radius: 8px;
  background: rgba(255, 202, 47, 0.06);
}

.workflow-guide h3 {
  margin: 0;
  color: var(--primary);
  font-size: 15px;
}

.workflow-guide p {
  margin: 0;
  color: #d8edf0;
  font-size: 13px;
  line-height: 1.5;
}

.workflow-engine-bridge {
  padding: 11px 12px;
  border: 1px solid rgba(25, 214, 194, 0.22);
  border-radius: 8px;
  background: rgba(25, 214, 194, 0.07);
  color: #cbeef0;
  font-size: 13px;
}

.workflow-control-grid {
  margin-top: 14px;
}

.workflow-memo-field {
  grid-column: 1 / -1;
}

.workflow-memo-field textarea {
  min-height: 96px;
  resize: vertical;
}

.workflow-role-grid,
.workflow-case-head,
.workflow-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.workflow-role-grid article,
.workflow-case-head > div,
.workflow-dashboard-grid > div {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.52);
}

.workflow-role-grid strong,
.workflow-case-head strong,
.workflow-dashboard-grid strong {
  color: var(--primary);
}

.workflow-role-grid span,
.workflow-case-head span,
.workflow-dashboard-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.workflow-case-list {
  display: grid;
  gap: 10px;
}

.workflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workflow-actions button {
  min-height: 36px;
  padding: 8px 11px;
  font-size: 13px;
}

.workflow-saved-block {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.workflow-saved-block h3 {
  margin: 0;
  color: var(--primary);
  font-size: 15px;
}

.workflow-archive-panel {
  padding: 12px;
  border: 1px solid rgba(25, 214, 194, 0.22);
  border-radius: 8px;
  background: rgba(25, 214, 194, 0.06);
}

.workflow-archive-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.workflow-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(3, 12, 22, 0.56);
}

.workflow-case strong {
  display: block;
  margin-bottom: 4px;
  color: #f8fbff;
}

.workflow-case p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.workflow-case small {
  display: block;
  margin-top: 7px;
  color: #9ac7cf;
  font-weight: 800;
}

.workflow-case-priority {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.workflow-case-priority.high {
  background: rgba(255, 83, 83, 0.16);
  color: #ffb1a8;
}

.workflow-case-priority.medium {
  background: rgba(255, 202, 47, 0.16);
  color: var(--primary);
}

.workflow-case-priority.low {
  background: rgba(25, 214, 194, 0.14);
  color: #9ff4e9;
}

.workflow-case-list.compact .workflow-case {
  grid-template-columns: minmax(0, 1fr);
  padding: 11px;
}

.workflow-case.saved {
  cursor: pointer;
}

.workflow-case.saved.active {
  border-color: rgba(255, 202, 47, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 202, 47, 0.24);
}

.workflow-case.archived {
  border-color: rgba(25, 214, 194, 0.2);
  background: rgba(4, 22, 28, 0.58);
}

.workflow-case-list.compact .workflow-case p {
  display: none;
}

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

.scenario-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
}

.scenario-card h3 {
  color: var(--primary);
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.scenario-explainer div {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.48);
}

.scenario-explainer strong {
  color: var(--primary);
}

.scenario-explainer span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.scenario-presets,
.export-actions {
  display: grid;
  gap: 10px;
}

.csv-import-button {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.csv-import-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 8, 14, 0.66);
  backdrop-filter: blur(5px);
}

.csv-import-layer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 81;
  width: min(920px, calc(100vw - 28px));
  max-height: min(86vh, 820px);
  overflow: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 202, 47, 0.45);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(9, 24, 38, 0.98), rgba(5, 17, 28, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 202, 47, 0.12);
}

.csv-import-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.csv-import-head h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 34px);
}

.csv-import-source,
.csv-import-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.csv-source-button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.72);
  color: var(--text);
  font-weight: 900;
}

.csv-source-button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #061421;
}

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

.csv-import-preview {
  display: grid;
  gap: 10px;
}

.csv-import-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) minmax(120px, 0.8fr) minmax(190px, 1.2fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.58);
}

.csv-import-row strong {
  color: var(--text);
  line-height: 1.25;
}

.csv-import-row span {
  color: var(--primary);
  font-weight: 900;
}

.csv-import-row select {
  width: 100%;
}

.csv-import-empty {
  padding: 14px;
  border: 1px dashed rgba(255, 202, 47, 0.3);
  border-radius: 8px;
  color: var(--muted);
}

.csv-import-toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 140;
  max-width: min(320px, calc(100vw - 32px));
  padding: 11px 14px;
  border: 1px solid rgba(116, 255, 174, 0.38);
  border-radius: 9px;
  background: #148341;
  color: #f4fff8;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.csv-import-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.preset-button,
.export-actions button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(6, 18, 30, 0.58);
  color: var(--text);
  font-weight: 800;
}

.export-actions button:disabled {
  border-color: rgba(255, 202, 47, 0.12);
  color: rgba(220, 233, 239, 0.48);
}

.export-actions .text-export-button {
  justify-self: start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}

.export-actions .text-export-button:hover {
  color: var(--primary);
  border-color: transparent;
}

.preset-button:hover,
.export-actions button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.comparison-grid article,
.metric-card {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.56);
}

.comparison-grid strong,
.metric-card strong {
  font-size: 25px;
  line-height: 1.05;
}

.metric-card {
  grid-column: span 3;
}

.screen[data-screen="premium-dashboard"] .dashboard-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.screen[data-screen="premium-dashboard"] .metric-card {
  grid-column: span 4;
}

.screen[data-screen="premium-dashboard"] .premium-rule-dashboard,
.screen[data-screen="premium-dashboard"] .chart-panel,
.screen[data-screen="premium-dashboard"] .panel.wide:not(.premium-navigator),
.screen[data-screen="premium-dashboard"] .action-summary {
  grid-column: span 8;
}

.screen[data-screen="premium-dashboard"] .panel:not(.wide):not(.chart-panel):not(.export-panel) {
  grid-column: span 4;
}

.screen[data-screen="premium-dashboard"] .export-panel {
  grid-column: span 4;
}

.screen[data-screen="premium-dashboard"] .dashboard-layout.premium-dashboard-arranged {
  display: block;
}

.action-summary {
  display: grid;
  grid-column: span 12;
  gap: 7px;
  padding: 14px 16px;
  border: 1px solid rgba(54, 214, 122, 0.28);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(54, 214, 122, 0.12), rgba(9, 20, 35, 0.94));
  box-shadow: var(--shadow);
}

.action-summary.warning {
  border-color: rgba(255, 202, 47, 0.3);
  background: linear-gradient(90deg, rgba(255, 202, 47, 0.13), rgba(9, 20, 35, 0.94));
}

.action-summary.danger {
  border-color: rgba(255, 103, 91, 0.32);
  background: linear-gradient(90deg, rgba(255, 103, 91, 0.13), rgba(9, 20, 35, 0.94));
}

.action-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.action-summary strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1.1;
}

.action-summary p {
  max-width: 920px;
  margin: 0;
  color: #dce9ef;
  line-height: 1.48;
}

.management-action p {
  max-width: 1040px;
}

.chart-panel {
  grid-column: span 8;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(34px, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 260px;
  padding: 10px 2px 0;
}

.bar-item {
  display: grid;
  align-items: end;
  gap: 7px;
  min-height: 220px;
}

.bar {
  display: block;
  min-height: 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--primary), #b7830a);
  box-shadow: 0 0 22px rgba(255, 202, 47, 0.22);
}

.bar.negative {
  background: var(--danger);
}

.bar-label {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.action-list,
.recommendations {
  display: grid;
  gap: 10px;
}

.recommendations div {
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: start;
}

.recommendations b {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #061421;
  font-size: 12px;
}

.recommendations strong {
  display: block;
  margin-bottom: 3px;
}

.analysis-intro {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.product-card,
.product-analysis-empty {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 202, 47, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 30, 0.58);
}

.product-card.cashcow {
  border-color: rgba(28, 172, 39, 0.48);
  background: linear-gradient(180deg, rgba(28, 172, 39, 0.12), rgba(6, 18, 30, 0.58));
}

.product-card.opportunity {
  border-color: rgba(29, 211, 189, 0.4);
}

.product-card.promo {
  border-color: rgba(255, 202, 47, 0.5);
}

.product-card.weak,
.product-card.lame {
  border-color: rgba(255, 91, 91, 0.42);
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-card-head strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.2;
}

.product-card-head span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 202, 47, 0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.product-metrics div {
  display: grid;
  gap: 2px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid rgba(183, 199, 210, 0.16);
  border-radius: 7px;
  background: rgba(3, 12, 22, 0.34);
}

.product-metrics small,
.product-card > small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.product-metrics b {
  color: #fff8d7;
  font-size: 13px;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: #dbe7ed;
  font-size: 13px;
  line-height: 1.42;
}

.bottom-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-self: end;
  margin: 0 28px 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 23, 36, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  padding-right: 4px;
}

.footer-cta span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.footer-cta button {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.bottom-actions button {
  min-width: 110px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 7px;
  font-weight: 800;
}

.primary {
  background: var(--primary);
  color: #061421;
}

.primary:hover {
  background: var(--primary-dark);
  color: #061421;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(11, 23, 40, 0.78);
  color: var(--text);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .purchase-main {
    padding-top: 48px;
  }

  .purchase-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px;
  }

  .hero-visual {
    min-height: 260px;
  }

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

  .checkout-panel,
  .account-panel,
  .login-panel {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 3;
    gap: 10px;
    padding: 14px;
  }

  .step-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }

  .step-button {
    width: max-content;
    min-width: 116px;
    max-width: 190px;
    white-space: nowrap;
  }

  .step-button span {
    flex: 0 0 auto;
  }

  .sidebar-status {
    display: none;
  }

  .panel,
  .panel.wide,
  .metric-card,
  .chart-panel,
  .hero-metric {
    grid-column: span 12;
  }

  .screen[data-screen="premium-dashboard"] .metric-card,
  .screen[data-screen="premium-dashboard"] .premium-rule-dashboard,
  .screen[data-screen="premium-dashboard"] .chart-panel,
  .screen[data-screen="premium-dashboard"] .panel,
  .screen[data-screen="premium-dashboard"] .panel.wide,
  .screen[data-screen="premium-dashboard"] .action-summary,
  .screen[data-screen="premium-dashboard"] .export-panel {
    grid-column: 1 / -1;
  }

  .premium-structure-layout {
    grid-template-columns: 1fr;
  }

  .product-analysis-grid {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1081px) and (max-width: 1400px) {
  .app-shell {
    grid-template-columns: 202px minmax(0, 1fr);
  }

  .sidebar {
    padding: 16px 12px;
  }

  .step-button {
    font-size: 12.5px;
  }

  .screen-grid,
  .dashboard-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  .premium-structure-grid {
    display: block;
  }

  .premium-structure-layout {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.36fr);
    gap: 14px;
  }

  .panel,
  .metric-card {
    grid-column: span 3;
  }

  .screen[data-screen="premium-dashboard"] .metric-card {
    grid-column: span 2;
  }

  .screen[data-screen="premium-dashboard"] .premium-rule-dashboard,
  .screen[data-screen="premium-dashboard"] .chart-panel,
  .screen[data-screen="premium-dashboard"] .panel.wide:not(.premium-navigator),
  .screen[data-screen="premium-dashboard"] .action-summary {
    grid-column: span 4;
  }

  .screen[data-screen="premium-dashboard"] .panel:not(.wide):not(.chart-panel):not(.export-panel),
  .screen[data-screen="premium-dashboard"] .export-panel {
    grid-column: span 2;
  }

  .panel.wide,
  .premium-revenue-panel,
  .premium-navigator {
    grid-column: 1 / -1;
  }

  .premium-revenue-row {
    min-width: min(800px, 100%);
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .screen-grid,
  .dashboard-layout {
    gap: 14px;
  }

  main {
    padding: 20px 20px 118px;
  }

  .panel {
    padding: 16px;
  }

  .screen[data-screen="monatscheck"] .form-grid,
  .screen[data-screen="szenario"] .form-grid,
  .screen[data-screen="dashboard"] .form-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .intro-band,
  .pro-intro-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .proplus-row {
    min-width: 980px;
  }

  .premium-revenue-row {
    min-width: 940px;
  }
}

@media (max-width: 720px) {
  .purchase-shell {
    padding: 16px;
  }

  .purchase-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .legal-page,
  .legal-site-footer {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .legal-site-footer nav {
    width: 100%;
    gap: 10px 12px;
  }

  .app-site-footer {
    margin: 0 18px 0;
  }

  .purchase-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .purchase-main {
    padding: 38px 0 44px;
  }

  .purchase-hero h1 {
    font-size: 42px;
    padding-right: 86px;
  }

  .purchase-hero {
    padding: 22px;
  }

  .refund-sticker-button {
    --refund-sticker-size: 108px;
    --refund-sticker-hover-size: 324px;
    top: -37px;
    right: -18px;
  }

  .refund-modal {
    width: calc(100vw - 18px);
    padding: 18px;
  }

  .function-popup {
    width: calc(100vw - 24px);
    height: min(76vh, 620px);
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-selection {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .activation-flow {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    display: none;
  }

  .checkout-actions,
  .activation-steps,
  .checkout-billing-choice {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    display: grid;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .device-advice {
    align-items: flex-start;
    margin: 12px 18px 0;
  }

  .device-advice.premium {
    border-color: rgba(255, 202, 47, 0.5);
    background: rgba(255, 202, 47, 0.13);
  }

  .navigator-balance-grid,
  .driver-grid,
  .tradeoff-grid {
    grid-template-columns: 1fr;
  }

  .navigator-score strong {
    font-size: 30px;
  }

  .workflow-tabs {
    margin: 12px 18px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .workflow-tabs::-webkit-scrollbar {
    display: none;
  }

  .workflow-tab {
    flex: 0 0 168px;
  }

  .workflow-tab.active {
    flex: 0 0 260px;
  }

  .top-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tariff-hint {
    max-width: none;
    text-align: center;
  }

  .version-switch {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-prefix {
    display: none;
  }

  .version-button {
    min-width: 0;
  }

  .top-upgrade {
    width: 100%;
  }

  .settings-button {
    width: 100%;
  }

  .settings-drawer {
    width: 100vw;
    padding: 18px;
  }

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

  .settings-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .account-summary,
  .account-plan-options,
  .billing-options,
  .two-factor-grid {
    grid-template-columns: 1fr;
  }

  .settings-footer span {
    text-align: left;
  }

  main {
    padding: 18px 18px 136px;
  }

  .form-grid,
  .comparison-grid,
  .intro-band,
  .pro-intro-band,
  .pro-result-grid,
  .pro-result-grid-compact,
  .metric-strip,
  .goods-grid,
  .locked-feature-grid,
  .scenario-grid,
  .scenario-explainer,
  .decision-grid,
  .workflow-role-grid,
  .workflow-case-head,
  .workflow-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .workflow-case {
    grid-template-columns: 1fr;
  }

  .csv-import-layer {
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .csv-file-grid,
  .csv-import-row {
    grid-template-columns: 1fr;
  }

  .table-row,
  .table-like.compact .table-row {
    grid-template-columns: 1fr;
  }

  .bottom-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: auto;
    margin: 0 18px 18px;
  }

  .footer-cta {
    display: none;
  }

  .bottom-actions button {
    flex: 1;
    min-width: 0;
  }

  #nextButton {
    grid-column: 2;
  }

  .pro-result-grid .mini-result {
    min-height: 70px;
    padding: 9px 10px;
  }

  .pro-result-grid .mini-result span {
    font-size: 10px;
  }

  .pro-result-grid .mini-result strong,
  .pro-result-grid .liquidity strong,
  .pro-result-grid .profit strong,
  .pro-result-grid .tax-small strong {
    font-size: 18px;
  }

  .pro-result-grid .mini-result small {
    font-size: 10px;
  }

  .pro-dashboard-layout .pro-evaluation-card,
  .pro-dashboard-layout .pro-tax-mini,
  .pro-dashboard-layout .pro-cash-mini {
    grid-column: span 12;
  }

  .pro-dashboard-layout .pro-evaluation-card {
    min-height: 126px;
  }

  .pro-dashboard-layout .pro-evaluation-card strong {
    font-size: 28px;
  }

  .cookie-notice-layer {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-notice-card {
    padding: 16px;
  }

  .cookie-notice-card button {
    justify-self: stretch;
  }

  .cookie-notice-reopen {
    right: 12px;
    bottom: 48px;
  }
}

@media (max-width: 420px) {
  .refund-sticker-button {
    --refund-sticker-size: 93px;
    --refund-sticker-hover-size: 279px;
    top: -31px;
    right: -16px;
  }

  .purchase-hero h1 {
    padding-right: 72px;
  }
}

@keyframes brandPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.brand-mark {
  animation: brandPulse 3s ease-in-out infinite;
}

.screen[data-screen="proplus-dashboard"] .dashboard-layout {
  grid-auto-flow: row;
  align-items: start;
}

.screen[data-screen="proplus-dashboard"] .metric-card {
  grid-column: span 3;
  order: 1;
}

.screen[data-screen="proplus-dashboard"] .action-summary {
  grid-column: 1 / -1;
  order: 2;
}

.screen[data-screen="proplus-dashboard"] .chart-panel {
  grid-column: span 8;
  order: 3;
}

.screen[data-screen="proplus-dashboard"] .panel:not(.wide):not(.chart-panel):not(.export-panel) {
  grid-column: span 4;
  order: 4;
}

.screen[data-screen="proplus-dashboard"] .panel.wide:not(.product-analysis-panel) {
  grid-column: span 8;
  order: 5;
}

.screen[data-screen="proplus-dashboard"] .export-panel {
  grid-column: span 4;
  order: 6;
}

.screen[data-screen="proplus-dashboard"] .product-analysis-panel {
  grid-column: 1 / -1;
  order: 7;
}

@media (max-width: 1080px) {
  .screen[data-screen="proplus-dashboard"] .chart-panel,
  .screen[data-screen="proplus-dashboard"] .panel:not(.wide):not(.chart-panel):not(.export-panel),
  .screen[data-screen="proplus-dashboard"] .panel.wide:not(.product-analysis-panel),
  .screen[data-screen="proplus-dashboard"] .export-panel,
  .screen[data-screen="proplus-dashboard"] .product-analysis-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .screen[data-screen="proplus-dashboard"] .metric-card {
    grid-column: 1 / -1;
  }
}


.premium-contribution-analysis { grid-column: span 12; }
.premium-db-toggle { justify-content: flex-start; max-width: max-content; margin: 2px 0 4px; }
.db-input-grid { margin: 8px 0 12px; }
.db-analysis-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.db-analysis-grid article { display: grid; gap: 6px; padding: 13px; border: 1px solid rgba(255, 202, 47, 0.18); border-radius: 8px; background: rgba(6, 18, 30, 0.58); }
.db-analysis-grid span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.db-analysis-grid strong { color: var(--text); font-size: clamp(18px, 2vw, 25px); line-height: 1.05; }
.db-analysis-grid small { color: var(--muted); line-height: 1.35; }
.db-analysis-grid .db-result-main { border-color: rgba(255, 202, 47, 0.42); background: linear-gradient(135deg, rgba(255, 202, 47, 0.16), rgba(6, 18, 30, 0.62)); }
@media (max-width: 1080px) { .db-analysis-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .db-analysis-grid { grid-template-columns: 1fr; } }


/* Premium dashboard responsive metric flow */
.screen[data-screen= premium-dashboard] .premium-dashboard-top {
  width: 100%;
}

.screen[data-screen=premium-dashboard] .premium-dashboard-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  align-items: stretch;
  gap: 16px;
}

.screen[data-screen=premium-dashboard] .premium-dashboard-metrics > .metric-card {
  width: 100%;
  min-width: 0;
  grid-column: auto !important;
}

@media (max-width: 1080px) {
  .screen[data-screen=premium-dashboard] .premium-dashboard-metrics {
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  }
}

@media (max-width: 560px) {
  .screen[data-screen=premium-dashboard] .premium-dashboard-metrics {
    grid-template-columns: 1fr;
  }
}


/* Premium dashboard metric cards: horizontal auto-flow */
.screen[data-screen= premium-dashboard] .dashboard-layout.premium-dashboard-arranged {
  display: block !important;
  width: 100% !important;
}

.screen[data-screen=premium-dashboard] .premium-dashboard-top,
.screen[data-screen=premium-dashboard] .premium-dashboard-columns,
.screen[data-screen=premium-dashboard] .premium-dashboard-main,
.screen[data-screen=premium-dashboard] .premium-dashboard-side {
  width: 100% !important;
  min-width: 0 !important;
}

.screen[data-screen=premium-dashboard] .premium-dashboard-metrics {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.screen[data-screen=premium-dashboard] .premium-dashboard-metrics > .metric-card,
.screen[data-screen=premium-dashboard] .premium-dashboard-metrics > .hero-metric {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  grid-column: auto !important;
}

@media (max-width: 720px) {
  .screen[data-screen=premium-dashboard] .premium-dashboard-metrics {
    grid-template-columns: 1fr !important;
  }
}

/* Premium dashboard metric cards: class fallback auto-flow */
.premium-dashboard-arranged .premium-dashboard-metrics {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.premium-dashboard-arranged .premium-dashboard-metrics > .metric-card,
.premium-dashboard-arranged .premium-dashboard-metrics > .hero-metric {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  grid-column: auto !important;
}

@media (max-width: 720px) {
  .premium-dashboard-arranged .premium-dashboard-metrics {
    grid-template-columns: 1fr !important;
  }
}

/* SolvGuard visual refresh 2026-06: brighter fintech glass theme */
:root {
  --bg: #eaf7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-raised: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(232, 247, 252, 0.88);
  --line: rgba(26, 126, 168, 0.22);
  --text: #102437;
  --muted: #526b7b;
  --primary: #15a8d5;
  --primary-dark: #087fa7;
  --accent: #28d4bf;
  --good: #25b977;
  --warning: #f5b822;
  --danger: #e7584f;
  --shadow: 0 22px 70px rgba(20, 82, 112, 0.14);
}

body {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.92), transparent 22rem),
    radial-gradient(circle at 78% 5%, rgba(76, 206, 231, 0.32), transparent 28rem),
    radial-gradient(circle at 80% 78%, rgba(255, 202, 47, 0.16), transparent 25rem),
    linear-gradient(145deg, #f6fcff 0%, #e7f6fb 42%, #d9eef7 100%);
  color: var(--text);
}

.purchase-shell,
.logout-shell {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.86), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(34, 174, 218, 0.26), transparent 30rem),
    radial-gradient(circle at 70% 88%, rgba(255, 202, 47, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(246, 252, 255, 0.96), rgba(222, 242, 250, 0.94));
}

.purchase-topbar,
.purchase-hero,
.plan-card,
.checkout-panel,
.account-panel,
.login-panel,
.logout-card,
.panel,
.metric-card,
.chart-panel,
.action-summary,
.footer-cta,
.device-advice,
.workflow-tab,
.version-switch,
.sidebar-status,
.site-footer,
.cookie-notice-card,
.legal-card,
.csv-import-modal,
.calculation-notice-card,
.settings-panel,
.account-drawer,
.refund-dialog-card {
  border-color: rgba(24, 142, 185, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 251, 254, 0.78)) !important;
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.purchase-topbar {
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(28, 98, 128, 0.12);
}

.purchase-hero {
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.93), rgba(232, 248, 253, 0.72)),
    radial-gradient(circle at 83% 18%, rgba(21, 168, 213, 0.24), transparent 18rem) !important;
  box-shadow: 0 26px 90px rgba(22, 92, 128, 0.16);
}

.purchase-hero h1 {
  color: #0b2337;
  text-shadow: none;
}

.purchase-hero .eyebrow,
.eyebrow,
.hero-video-label,
.plan-kicker,
.panel-head .tier-label,
.pill,
.brand-prefix {
  color: #087fa7;
}

.purchase-hero p,
.plan-card p,
.plan-card li,
.plan-card-head small,
.checkout-summary p,
.account-status-card p,
.activation-note,
.security-note,
.login-panel p,
.site-footer span,
.site-footer a,
.workflow-tab span,
.device-advice span:not(.device-symbol),
.metric-card small,
.body-copy,
.settings-note {
  color: #526b7b !important;
}

.hero-trust-row div,
.plan-info-popup,
.csv-import-preview,
.db-analysis-grid article,
.product-analysis-card,
.recommendation-card,
.risk-list li,
.driver-list article,
.tradeoff-grid article,
.navigator-side,
.next-best-action,
.account-status-card,
.checkout-summary,
.billing-options label,
.checkout-billing-choice label,
.field-output,
.output-box,
.kpi-box {
  border-color: rgba(24, 142, 185, 0.18) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  color: var(--text);
}

.plan-card {
  border-radius: 18px;
  border-color: rgba(21, 168, 213, 0.26) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 250, 253, 0.86)) !important;
  box-shadow: 0 18px 60px rgba(20, 82, 112, 0.13);
}

.plan-card::before {
  height: 4px;
  background: linear-gradient(90deg, #15a8d5, #28d4bf, #f5b822);
  opacity: 0.95;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21, 168, 213, 0.52) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(21, 168, 213, 0.16), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 250, 254, 0.94)) !important;
  box-shadow:
    0 30px 90px rgba(20, 82, 112, 0.2),
    0 0 0 1px rgba(21, 168, 213, 0.14);
}

.plan-card h2,
.plan-card-head strong,
.checkout-summary h2,
.account-status-card h2,
.login-panel h2,
.panel h2,
.panel h3,
.metric-card strong,
.metric-card span,
h1,
h2,
h3 {
  color: #102437;
}

.plan-select,
.hero-actions button,
.purchase-nav .secondary,
.top-upgrade,
.inline-cta,
.footer-cta button,
.bottom-actions button,
.export-actions button,
.preset-button,
.csv-import-button,
button.primary,
.action-link.primary {
  background: linear-gradient(135deg, #17b7e3, #23c7c0) !important;
  color: #ffffff !important;
  border: 1px solid rgba(15, 128, 166, 0.24) !important;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(21, 168, 213, 0.25);
}

.plan-select:hover,
.hero-actions button:hover,
.top-upgrade:hover,
.inline-cta:hover,
.footer-cta button:hover,
.bottom-actions button:hover,
.export-actions button:hover,
.preset-button:hover,
.csv-import-button:hover {
  background: linear-gradient(135deg, #0f95c1, #16b5a9) !important;
  box-shadow: 0 18px 42px rgba(21, 168, 213, 0.32);
}

.nav-link,
.version-button,
.workflow-tab,
.step-button {
  color: #244255;
}

.nav-link:hover,
.version-button.active,
.workflow-tab.active,
.step-button:hover,
.step-button.active {
  background: rgba(21, 168, 213, 0.11) !important;
  color: #082235 !important;
  border-color: rgba(21, 168, 213, 0.28) !important;
}

.version-button.active,
.step-button.active span,
.period-chooser input:checked + span,
.checkout-billing-choice label:has(input:checked) {
  background: linear-gradient(135deg, #e8faff, #c8f0fa) !important;
  color: #073043 !important;
  border-color: rgba(21, 168, 213, 0.5) !important;
  box-shadow: 0 10px 28px rgba(21, 168, 213, 0.18);
}

.app-shell {
  background:
    radial-gradient(circle at 85% 5%, rgba(21, 168, 213, 0.2), transparent 26rem),
    linear-gradient(145deg, #f4fbfe 0%, #e2f4fb 100%);
}

.sidebar {
  border-right-color: rgba(21, 168, 213, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 246, 252, 0.88));
  color: #102437;
  box-shadow: 20px 0 54px rgba(20, 82, 112, 0.08);
}

.brand strong,
.brand span,
.sidebar-status,
.workflow-summary {
  color: #102437;
}

.brand span {
  color: #5c7382;
}

.topbar {
  border-bottom-color: rgba(21, 168, 213, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 45px rgba(20, 82, 112, 0.08);
}

main {
  background:
    radial-gradient(circle at 100% 0, rgba(21, 168, 213, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(245, 251, 254, 0.65), rgba(229, 244, 250, 0.72));
}

.panel,
.metric-card,
.chart-panel {
  border-radius: 16px;
}

input,
select,
textarea {
  border-color: rgba(24, 142, 185, 0.24) !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #102437 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(21, 168, 213, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(21, 168, 213, 0.14) !important;
}

input::placeholder,
textarea::placeholder {
  color: #7b93a1 !important;
}

input[type="range"] {
  background: transparent !important;
  box-shadow: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, #18b9e5, #eef6f9) !important;
}

input[type="range"]::-moz-range-track {
  background: linear-gradient(90deg, #18b9e5, #eef6f9) !important;
}

.site-footer,
.app-site-footer,
.legal-site-footer {
  background: rgba(255, 255, 255, 0.78) !important;
  border-top-color: rgba(21, 168, 213, 0.18) !important;
  color: #102437;
}

.hero-video-shell::before {
  border-color: rgba(21, 168, 213, 0.28);
  background:
    radial-gradient(circle, rgba(21, 168, 213, 0.18), transparent 58%),
    conic-gradient(from 20deg, rgba(21, 168, 213, 0.28), rgba(40, 212, 191, 0.18), rgba(245, 184, 34, 0.12), rgba(21, 168, 213, 0.28));
}

.hero-video {
  opacity: 0.96;
  filter: saturate(1.04) contrast(1.02);
  box-shadow:
    0 24px 70px rgba(20, 82, 112, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.44);
}

.pill.good,
.status-dot.good,
.traffic-light.green {
  background-color: var(--good) !important;
}

.pill.warning,
.traffic-light.yellow {
  background-color: var(--warning) !important;
  color: #1d2a32 !important;
}

.pill.danger,
.traffic-light.red {
  background-color: var(--danger) !important;
}

@media (max-width: 760px) {
  .purchase-shell,
  .logout-shell {
    padding: 14px;
  }

  .purchase-topbar,
  .purchase-hero,
  .plan-card,
  .panel,
  .metric-card {
    border-radius: 16px;
  }

  .purchase-hero {
    padding: 24px 18px;
  }
}

/* SolvGuard visual refresh fixes 2026-06-01 */
.site-footer,
.app-site-footer,
.legal-site-footer {
  padding: 24px 28px !important;
}

.site-footer nav,
.legal-site-footer nav {
  padding-right: 10px;
}

.plan-card .plan-info {
  display: none !important;
}

.activation-flow {
  padding: 28px 30px 24px !important;
  border-color: rgba(21, 168, 213, 0.22) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 246, 253, 0.82)),
    radial-gradient(circle at 100% 0, rgba(21, 168, 213, 0.16), transparent 18rem) !important;
  box-shadow: 0 20px 64px rgba(20, 82, 112, 0.12) !important;
}

.activation-flow h2 {
  color: #102437 !important;
  font-size: clamp(22px, 2.6vw, 34px) !important;
}

.activation-flow h2::before {
  background: linear-gradient(90deg, #17b7e3, transparent) !important;
}

.activation-flow > div,
.activation-flow .activation-step,
.activation-flow div:not(.activation-flow-note) {
  border-color: rgba(21, 168, 213, 0.18) !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #102437 !important;
  box-shadow: 0 14px 34px rgba(20, 82, 112, 0.09) !important;
}

.activation-flow span {
  color: #0ea5cf !important;
}

.activation-flow strong {
  color: #102437 !important;
}

.activation-flow small,
.activation-flow-note {
  color: #526b7b !important;
}

.activation-flow-note::before {
  background: #17b7e3 !important;
}

.cookie-notice-card {
  color: #102437 !important;
}

.cookie-notice-head strong {
  color: #0b6f91 !important;
}

.cookie-notice-text,
.cookie-notice-text p,
.cookie-notice-text strong {
  color: #526b7b !important;
}

.cookie-notice-text strong {
  color: #334f60 !important;
  font-weight: 800;
}

.cookie-notice-text a {
  color: #087fa7 !important;
  font-weight: 900;
}

@media (max-width: 760px) {
  .site-footer,
  .app-site-footer,
  .legal-site-footer {
    padding: 22px 18px !important;
  }

  .activation-flow {
    padding: 22px 16px !important;
  }
}

/* SolvGuard customer area contrast fixes 2026-06-01 */
.scenario-card,
.result-tile,
.pro-result-grid > div,
.pro-result-grid-compact > div,
.summary-card,
.workflow-case,
.premium-dashboard-metrics .metric-card,
.account-section,
.account-drawer section,
.account-panel section,
.billing-options label,
.checkout-billing-choice label,
.period-chooser label,
.two-factor-grid article,
.settings-panel,
.csv-import-row,
.field-row,
.form-section,
.output-card {
  border-color: rgba(21, 168, 213, 0.2) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #102437 !important;
  box-shadow: 0 14px 38px rgba(20, 82, 112, 0.1) !important;
}

.scenario-card h3,
.scenario-card span,
.scenario-card strong,
.scenario-card small,
.result-tile span,
.result-tile strong,
.result-tile small,
.pro-result-grid span,
.pro-result-grid strong,
.pro-result-grid small,
.pro-result-grid-compact span,
.pro-result-grid-compact strong,
.pro-result-grid-compact small,
.workflow-case strong,
.workflow-case p,
.workflow-case small,
.account-section h2,
.account-section h3,
.account-section p,
.account-section label,
.account-drawer h2,
.account-drawer h3,
.account-drawer p,
.account-drawer label,
.account-panel label,
.account-panel p,
.billing-options span,
.checkout-billing-choice span,
.period-chooser span,
.two-factor-grid article,
.two-factor-grid article p,
.two-factor-grid article strong,
.settings-panel label,
.settings-panel span,
.form-section label,
.form-section span,
.form-section p {
  color: #102437 !important;
  opacity: 1 !important;
}

.field span,
label span,
.input-label,
.account-section .field span,
.account-drawer .field span,
.checkout-panel .field span,
.login-panel .field span,
.settings-panel .field span {
  color: #31586d !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

.help-text,
.security-note,
.account-hint,
.account-section small,
.account-drawer small,
.form-hint,
.billing-note,
.settings-note,
.period-note,
.two-factor-grid article span,
.muted {
  color: #526b7b !important;
  opacity: 1 !important;
}

.version-button,
.account-plan-button,
.period-chooser label,
.billing-options label,
.checkout-billing-choice label {
  background: rgba(255, 255, 255, 0.78) !important;
  color: #102437 !important;
  border-color: rgba(21, 168, 213, 0.22) !important;
}

.version-button.active,
.account-plan-button.active,
.period-chooser label:has(input:checked),
.billing-options label:has(input:checked),
.checkout-billing-choice label:has(input:checked) {
  background: linear-gradient(135deg, #d9f7ff, #ffffff) !important;
  color: #082235 !important;
  border-color: rgba(21, 168, 213, 0.56) !important;
}

input,
select,
textarea {
  color: #102437 !important;
  caret-color: #087fa7;
}

input::placeholder,
textarea::placeholder {
  color: #668294 !important;
  opacity: 1 !important;
}

button:not(.plan-select):not(.top-upgrade):not(.inline-cta):not(.csv-import-button):not(.preset-button):not(.notice-close-link):not(.cookie-notice-reopen):not(.password-toggle-button) {
  color: #102437;
}

.scenario-card strong,
.result-tile strong,
.pro-result-grid strong,
.pro-result-grid-compact strong,
.metric-card strong {
  color: #0b2337 !important;
}

.scenario-card small,
.result-tile small,
.pro-result-grid small,
.pro-result-grid-compact small,
.metric-card small {
  color: #526b7b !important;
}

/* SolvGuard logout/action link contrast fix 2026-06-01 */
.action-link,
.logout-actions a,
.logout-actions button,
.logout-card .secondary,
.logout-card .ghost {
  border: 1px solid rgba(21, 168, 213, 0.28) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #102437 !important;
  box-shadow: 0 12px 28px rgba(20, 82, 112, 0.12) !important;
}

.action-link:hover,
.logout-actions a:hover,
.logout-actions button:hover,
.logout-card .secondary:hover,
.logout-card .ghost:hover {
  border-color: rgba(21, 168, 213, 0.58) !important;
  background: #ffffff !important;
  color: #073043 !important;
}

.action-link.primary,
.logout-actions .primary {
  background: linear-gradient(135deg, #17b7e3, #23c7c0) !important;
  color: #ffffff !important;
}

/* SolvGuard premium navigator contrast fix 2026-06-01 */
.premium-navigator {
  border-color: rgba(21, 168, 213, 0.24) !important;
  background:
    radial-gradient(circle at 12% 0, rgba(239, 68, 68, 0.08), transparent 260px),
    radial-gradient(circle at 88% 5%, rgba(34, 197, 94, 0.12), transparent 280px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 253, 0.84)) !important;
  color: #102437 !important;
}

.navigator-side,
.next-best-action,
.tradeoff-grid article,
.driver-grid section,
.driver-list div {
  border-color: rgba(21, 168, 213, 0.18) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #102437 !important;
  box-shadow: 0 12px 30px rgba(20, 82, 112, 0.08) !important;
}

.driver-list div {
  background: rgba(248, 253, 255, 0.92) !important;
}

.premium-navigator h2,
.driver-grid h3,
.navigator-side strong,
.next-best-action strong,
.tradeoff-grid strong,
.driver-list strong {
  color: #102437 !important;
}

.navigator-side p,
.next-best-action p,
.tradeoff-grid p,
.driver-list small,
.navigator-score span {
  color: #526b7b !important;
  opacity: 1 !important;
}

.navigator-kicker,
.next-best-action > span,
.tradeoff-grid span {
  color: #31586d !important;
  opacity: 1 !important;
}

.risk-side {
  border-color: rgba(231, 88, 79, 0.28) !important;
}

.risk-side .navigator-kicker,
.risk-side .navigator-score strong {
  color: #bb3e38 !important;
}

.opportunity-side {
  border-color: rgba(37, 185, 119, 0.3) !important;
}

.opportunity-side .navigator-kicker,
.opportunity-side .navigator-score strong {
  color: #148653 !important;
}

.driver-list b {
  background: rgba(21, 168, 213, 0.12) !important;
  color: #087fa7 !important;
  font-weight: 900;
}

.driver-list .negative b {
  background: rgba(231, 88, 79, 0.14) !important;
  color: #bb3e38 !important;
}

.driver-list .positive b {
  background: rgba(37, 185, 119, 0.16) !important;
  color: #148653 !important;
}

/* SolvGuard final card contrast correction 2026-06-01 */
.account-summary div,
.product-card,
.product-card.cashcow,
.product-card.opportunity,
.product-card.promo,
.product-card.weak,
.product-card.lame,
.product-analysis-empty {
  border-color: rgba(21, 168, 213, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 249, 253, 0.86)) !important;
  color: #102437 !important;
  box-shadow: 0 14px 38px rgba(20, 82, 112, 0.1) !important;
  opacity: 1 !important;
}

.product-card.cashcow {
  border-color: rgba(37, 185, 119, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(237, 255, 247, 0.96), rgba(230, 249, 244, 0.9)) !important;
}

.product-card-head strong,
.product-card p,
.product-card > small,
.product-card small,
.product-card b,
.product-metrics small,
.product-metrics b,
.account-summary span,
.account-summary strong {
  color: #102437 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.account-summary span,
.product-metrics small,
.product-card > small {
  color: #526b7b !important;
  font-weight: 800 !important;
}

.product-card p {
  color: #31586d !important;
  font-weight: 700;
}

.product-metrics div {
  border-color: rgba(21, 168, 213, 0.18) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #102437 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.product-card-head span {
  background: rgba(21, 168, 213, 0.12) !important;
  color: #087fa7 !important;
  border: 1px solid rgba(21, 168, 213, 0.18);
}

.product-card.cashcow .product-card-head span {
  background: rgba(37, 185, 119, 0.16) !important;
  color: #148653 !important;
}

.account-summary strong {
  color: #0b2337 !important;
}

.account-summary span {
  color: #31586d !important;
}

.account-drawer .small-logout-button,
.account-drawer .icon-button {
  border-color: rgba(21, 168, 213, 0.24) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #102437 !important;
}

.account-drawer .small-logout-button:hover,
.account-drawer .icon-button:hover {
  background: #ffffff !important;
  color: #073043 !important;
}

/* SolvGuard homepage hero mobile video refresh 2026-06-01 */
.purchase-hero {
  overflow: hidden;
}

.hero-trust-row {
  max-width: 760px;
}

.hero-trust-row div {
  min-height: 64px !important;
  border-color: rgba(21, 168, 213, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(239, 250, 254, 0.68)) !important;
  box-shadow: 0 10px 30px rgba(20, 82, 112, 0.09) !important;
}

.hero-trust-row strong {
  color: #0ea5cf !important;
  font-size: clamp(22px, 2.8vw, 30px) !important;
  letter-spacing: 0;
}

.hero-trust-row span {
  color: #31586d !important;
  font-weight: 850 !important;
}

@media (min-width: 1081px) {
  .purchase-hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.68fr);
    align-items: center;
    gap: 34px;
  }

  .hero-video-shell {
    width: min(430px, 100%);
  }
}

@media (max-width: 1080px) {
  .purchase-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-visual {
    display: grid !important;
    min-height: 0 !important;
    order: 2;
    margin: 2px auto 4px;
    width: min(560px, 100%);
  }

  .hero-video-shell {
    width: min(560px, 100%);
  }

  .hero-copy {
    order: 1;
  }

  .hero-trust-row {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  .purchase-hero {
    padding: 20px 16px 18px !important;
    gap: 18px;
  }

  .purchase-hero h1 {
    padding-right: 82px;
    font-size: clamp(42px, 14vw, 68px);
    line-height: 0.96;
  }

  .purchase-hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-visual {
    display: grid !important;
    margin-top: 2px;
  }

  .hero-video-shell {
    width: 100%;
    gap: 6px;
  }

  .hero-video-shell::before {
    inset: -6px;
    border-radius: 16px;
  }

  .hero-video {
    border-radius: 14px;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-trust-row div {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 52px !important;
    padding: 10px 12px !important;
  }

  .hero-trust-row strong {
    font-size: 24px !important;
  }
}

@media (max-width: 420px) {
  .purchase-hero h1 {
    padding-right: 76px;
  }

  .hero-trust-row div {
    min-height: 50px !important;
  }
}

/* SolvGuard refund sticker position tweak 2026-06-01 */
.refund-sticker-button {
  right: clamp(-34px, -1.8vw, -14px) !important;
}

@media (max-width: 760px) {
  .refund-sticker-button {
    right: -28px !important;
  }
}

@media (max-width: 420px) {
  .refund-sticker-button {
    right: -24px !important;
  }
}

/* SolvGuard professional recommendation cards 2026-06-03 */
.recommendations {
  gap: 14px !important;
}

.recommendations div {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(118px, auto) minmax(0, 1fr) !important;
  column-gap: 18px !important;
  row-gap: 6px !important;
  align-items: start !important;
  min-height: 108px;
  padding: 20px 22px !important;
  overflow: hidden;
  border: 1px solid rgba(21, 168, 213, 0.18) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 249, 253, 0.86)),
    radial-gradient(circle at 100% 0, rgba(21, 168, 213, 0.12), transparent 12rem) !important;
  box-shadow: 0 18px 52px rgba(20, 82, 112, 0.12) !important;
  color: #102437 !important;
}

.recommendations div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #17b7e3, #23c7c0, #f5b822);
  content: "";
}

.recommendations b {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-width: 0 !important;
  width: fit-content;
  max-width: 100%;
  height: auto !important;
  padding: 8px 11px !important;
  border: 1px solid rgba(21, 168, 213, 0.22);
  border-radius: 999px !important;
  background: rgba(21, 168, 213, 0.1) !important;
  color: #087fa7 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.1;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.recommendations strong {
  display: block;
  max-width: 980px;
  margin: 0 !important;
  color: #102437 !important;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 850;
  line-height: 1.42;
}

.recommendations small {
  grid-column: 2;
  display: block;
  margin-top: 2px;
  color: #60798a !important;
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1.25;
}

.panel:has(.recommendations) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 252, 254, 0.78)) !important;
}

.panel:has(.recommendations) .panel-head h2 {
  color: #102437 !important;
}

.panel:has(.recommendations) .tier-label {
  border: 1px solid rgba(21, 168, 213, 0.16);
  background: rgba(21, 168, 213, 0.08) !important;
  color: #087fa7 !important;
}

@media (max-width: 720px) {
  .recommendations div {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 18px !important;
  }

  .recommendations small {
    grid-column: auto;
  }
}

/* SolvGuard recommendation cards polish 2026-06-03 */
.recommendations {
  gap: 14px !important;
}

.recommendations div {
  position: relative;
  grid-template-columns: minmax(128px, auto) minmax(0, 1fr) !important;
  gap: 12px 18px !important;
  align-items: start !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(21, 168, 213, 0.20) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 96% 8%, rgba(21, 168, 213, 0.16), transparent 210px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 253, 0.90)) !important;
  box-shadow: 0 18px 44px rgba(12, 56, 80, 0.11) !important;
  color: #102437 !important;
  overflow: hidden;
}

.recommendations div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #10b8d7, #35d7c8 52%, #f6c84f);
}

.recommendations b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 7px 11px !important;
  border: 1px solid rgba(12, 166, 200, 0.22) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e8fbff, #c8f3fb) !important;
  color: #007399 !important;
  box-shadow: 0 8px 18px rgba(13, 165, 198, 0.14) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.recommendations span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.recommendations strong {
  display: block !important;
  margin: 0 !important;
  color: #102437 !important;
  font-size: 15.5px !important;
  font-weight: 760 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.recommendations small {
  display: inline-flex !important;
  width: fit-content;
  padding: 3px 0 0 !important;
  color: #6d8797 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

@media (max-width: 720px) {
  .recommendations div {
    grid-template-columns: 1fr !important;
    padding: 16px 17px !important;
  }

  .recommendations b {
    white-space: normal;
  }
}

/* SolvGuard professional hero benefits 2026-06-03 */
.hero-benefit-zone {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.hero-benefit-zone .hero-trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
}

.hero-benefit-zone .hero-trust-row div {
  position: relative;
  overflow: hidden;
  min-height: 118px !important;
  padding: 22px 24px !important;
  border: 1px solid rgba(21, 168, 213, 0.22) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 248, 253, 0.72)),
    radial-gradient(circle at 100% 0, rgba(21, 168, 213, 0.18), transparent 10rem) !important;
  box-shadow: 0 20px 54px rgba(20, 82, 112, 0.13) !important;
}

.hero-benefit-zone .hero-trust-row div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #17b7e3, #23c7c0, #f5b822);
  content: "";
}

.hero-benefit-zone .hero-trust-row strong {
  display: block;
  color: #0b9dcc !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-benefit-zone .hero-trust-row span {
  display: block;
  margin-top: 8px;
  max-width: 280px;
  color: #294f64 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.28;
}

.benefit-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.benefit-showcase-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 260px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(21, 168, 213, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 250, 253, 0.78)),
    radial-gradient(circle at 70% 0, rgba(40, 212, 191, 0.13), transparent 9rem);
  box-shadow: 0 18px 46px rgba(20, 82, 112, 0.11);
}

.benefit-showcase-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(21, 168, 213, 0.08);
  content: "";
}

.benefit-showcase-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(21, 168, 213, 0.12);
  color: #087fa7;
  font-size: 12px;
  font-weight: 950;
}

.benefit-showcase-card strong {
  position: relative;
  z-index: 1;
  color: #102437;
  font-size: 20px;
  line-height: 1.12;
}

.benefit-showcase-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #526b7b;
  font-size: 14px;
  line-height: 1.45;
}

.benefit-showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (max-width: 1180px) {
  .benefit-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-benefit-zone .hero-trust-row {
    grid-template-columns: 1fr !important;
  }

  .hero-benefit-zone .hero-trust-row div {
    min-height: 92px !important;
    padding: 18px 18px 18px 20px !important;
  }

  .benefit-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .benefit-showcase-card {
    min-height: 220px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .benefit-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* SolvGuard benefit order and heading fix 2026-06-03 */
.hero-benefit-zone {
  order: 3;
}

.benefit-showcase-heading {
  grid-column: 1 / -1;
  max-width: 900px;
  padding: 8px 2px 4px;
}

.benefit-showcase-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(21, 168, 213, 0.12);
  color: #0784aa;
  font-size: 12px;
  font-weight: 950;
}

.benefit-showcase-heading strong {
  display: block;
  color: #102437;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.benefit-showcase-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #526b7b;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero-benefit-zone {
    order: 3 !important;
  }
}

/* SolvGuard checkout polish 2026-06-03 */
.checkout-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1fr) !important;
  gap: clamp(22px, 4vw, 42px) !important;
  align-items: start !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(21, 168, 213, 0.22) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(21, 168, 213, 0.13), transparent 270px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 253, 0.92)) !important;
  box-shadow: 0 22px 62px rgba(12, 56, 80, 0.13) !important;
  color: #102437 !important;
}

.checkout-summary,
.checkout-form {
  min-width: 0;
  color: #102437 !important;
}

.checkout-summary .eyebrow,
.checkout-summary [data-copy-key="checkoutEyebrow"] {
  color: #0784aa !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.checkout-summary h2 {
  margin: 10px 0 8px !important;
  color: #102437 !important;
  font-size: clamp(28px, 3vw, 38px) !important;
  line-height: 1.05 !important;
}

.checkout-summary > strong,
#checkoutPlanPrice {
  display: block !important;
  color: #0aa4ce !important;
  font-size: clamp(30px, 3.4vw, 44px) !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
}

.checkout-price-vat {
  display: inline-flex !important;
  margin-top: 6px !important;
  color: #7e96a5 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.checkout-summary p,
.checkout-summary .checkout-preview-label {
  color: #4e697a !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.checkout-preview-label {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
  color: #476576 !important;
  font-weight: 850;
}

.checkout-preview-image,
.checkout-summary img {
  width: min(100%, 520px) !important;
  border: 1px solid rgba(21, 168, 213, 0.18) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 44px rgba(12, 56, 80, 0.16) !important;
}

.checkout-billing-choice {
  margin: 0 0 18px !important;
  padding: 20px 16px 16px !important;
  border: 1px solid rgba(21, 168, 213, 0.24) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 249, 253, 0.78)) !important;
  box-shadow: 0 16px 42px rgba(12, 56, 80, 0.10) !important;
}

.checkout-billing-choice legend {
  padding: 0 10px !important;
  color: #0784aa !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

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

.checkout-billing-choice label {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 74px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(21, 168, 213, 0.22) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #102437 !important;
  box-shadow: 0 10px 24px rgba(12, 56, 80, 0.07) !important;
}

.checkout-billing-choice label:has(input:checked) {
  border-color: rgba(10, 164, 206, 0.72) !important;
  background: linear-gradient(145deg, rgba(232, 250, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
  box-shadow: 0 14px 34px rgba(10, 164, 206, 0.16) !important;
}

.checkout-billing-choice input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #0aa4ce !important;
}

.checkout-billing-choice span,
.checkout-billing-choice strong {
  color: #102437 !important;
  font-weight: 950 !important;
}

.checkout-billing-choice small {
  display: block !important;
  margin-top: 3px !important;
  color: #0aa4ce !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

.checkout-billing-choice em {
  display: block !important;
  margin-top: 2px !important;
  color: #8aa0ad !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 750 !important;
}

.checkout-form label:not(.terms-check) {
  display: grid;
  gap: 7px;
  color: #36576a !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.checkout-form input[type="email"],
.checkout-form input[type="text"] {
  min-height: 44px !important;
  border: 1px solid rgba(21, 168, 213, 0.26) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #102437 !important;
  font-size: 15px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.checkout-form input::placeholder {
  color: #7a93a3 !important;
}

.terms-check,
.checkout-form .terms-check {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 12px !important;
  align-items: start !important;
  margin-top: 12px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(245, 184, 34, 0.34) !important;
  border-radius: 12px !important;
  background: rgba(255, 248, 222, 0.72) !important;
  color: #314f62 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.terms-check input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  margin-top: 1px !important;
  accent-color: #0aa4ce !important;
}

.terms-check a {
  color: #0784aa !important;
  font-weight: 950 !important;
}

.checkout-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.checkout-actions .secondary,
#backToPlansButton {
  min-height: 40px !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(16, 36, 55, 0.16) !important;
  border-radius: 10px !important;
  background: #eaf4f8 !important;
  color: #102437 !important;
  font-weight: 850 !important;
}

.checkout-actions .primary,
#completePaymentButton {
  min-height: 42px !important;
  padding: 10px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #11b6d8, #2fd0c6) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  box-shadow: 0 12px 26px rgba(10, 164, 206, 0.28) !important;
}

@media (max-width: 900px) {
  .checkout-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .checkout-billing-choice {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    justify-content: stretch !important;
  }

  .checkout-actions button {
    flex: 1 1 auto;
  }
}

/* SolvGuard spherical footer refresh 2026-06-03 */
.site-footer,
.app-site-footer,
.legal-site-footer {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  width: min(100%, 1180px) !important;
  margin: 28px auto 0 !important;
  padding: 22px 24px !important;
  border: 1px solid rgba(21, 168, 213, 0.20) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(21, 168, 213, 0.18), transparent 240px),
    radial-gradient(circle at 92% 20%, rgba(35, 199, 192, 0.15), transparent 220px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 248, 253, 0.86)) !important;
  box-shadow: 0 22px 58px rgba(12, 56, 80, 0.12) !important;
  color: #102437 !important;
}

.site-footer::before,
.app-site-footer::before,
.legal-site-footer::before {
  content: "";
  position: absolute;
  inset: -60% auto auto 18%;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(21, 168, 213, 0.08) 48%, transparent 70%);
  filter: blur(2px);
}

.site-footer > div,
.app-site-footer > div,
.legal-site-footer > div {
  display: grid !important;
  gap: 5px !important;
  min-width: 220px;
}

.site-footer strong,
.app-site-footer strong,
.legal-site-footer strong {
  color: #102437 !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.site-footer span,
.app-site-footer span,
.legal-site-footer span {
  color: #526b7b !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.site-footer nav,
.app-site-footer nav,
.legal-site-footer nav {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 8px 12px !important;
}

.site-footer a,
.app-site-footer a,
.legal-site-footer a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  color: #35596d !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-footer a:hover,
.app-site-footer a:hover,
.legal-site-footer a:hover {
  background: rgba(21, 168, 213, 0.12) !important;
  color: #0784aa !important;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-footer,
  .app-site-footer,
  .legal-site-footer {
    align-items: flex-start !important;
    flex-direction: column !important;
    padding: 20px !important;
  }

  .site-footer nav,
  .app-site-footer nav,
  .legal-site-footer nav {
    justify-content: flex-start !important;
  }
}

/* SolvGuard light surface border cleanup 2026-06-04 */
.purchase-topbar,
.purchase-hero,
.plan-selection,
.checkout-panel,
.activation-flow,
.branch-showcase-card,
.hero-benefit-zone {
  border-color: rgba(21, 168, 213, 0.18) !important;
  outline: 0 !important;
}

.purchase-topbar,
.purchase-hero,
.checkout-panel,
.activation-flow,
.branch-showcase-card {
  box-shadow: 0 18px 48px rgba(12, 56, 80, 0.10) !important;
}

.purchase-hero::before,
.purchase-topbar::before,
.checkout-panel::before {
  border-color: transparent !important;
}

/* SolvGuard branch showcase full-width media cleanup 2026-06-04 */
.branch-showcase-card {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 20px !important;
  background: transparent !important;
  box-shadow: 0 20px 54px rgba(12, 56, 80, 0.10) !important;
  overflow: hidden !important;
}

.branch-showcase-card img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(21, 168, 213, 0.18) !important;
  border-radius: 20px !important;
  background: #f7fdff !important;
  box-shadow: none !important;
}

/* SolvGuard customer dashboard airy blue refresh 2026-06-04 */
:root {
  --sg-soft-blue: #edf9fd;
  --sg-soft-blue-2: #dff5fb;
  --sg-border-blue: rgba(21, 168, 213, 0.22);
  --sg-text-dark: #102437;
  --sg-text-muted: #526b7b;
}

.app-shell,
.workspace,
.screen,
.main-panel,
.app-content {
  color: var(--sg-text-dark) !important;
}

.topbar,
.sidebar,
.version-switch,
.workflow-tab,
.metric-card,
.panel,
.panel.wide,
.chart-panel,
.action-summary,
.export-panel,
.device-advice,
.footer-cta,
.csv-import-modal,
.settings-panel,
.account-panel,
.account-drawer,
.calculation-notice-card,
.pro-evaluation-card,
.pro-tax-mini,
.pro-cash-mini,
.output-box,
.kpi-box,
.field-output,
.product-analysis-card,
.db-analysis-grid article,
.driver-grid section,
.driver-list article,
.driver-list div,
.tradeoff-grid article,
.navigator-side,
.next-best-action,
.risk-side,
.risk-list li,
.action-list div,
.recommendations div,
.workflow-dashboard-grid > div,
.account-status-card,
.billing-options label,
.checkout-billing-choice label {
  border-color: var(--sg-border-blue) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 168, 213, 0.12), transparent 190px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 248, 253, 0.84)) !important;
  color: var(--sg-text-dark) !important;
  box-shadow: 0 16px 42px rgba(12, 56, 80, 0.10) !important;
}

.sidebar,
.topbar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 245, 251, 0.86)),
    radial-gradient(circle at 0% 0%, rgba(21, 168, 213, 0.16), transparent 220px) !important;
}

.sidebar .brand strong,
.sidebar .brand span,
.sidebar-status,
.step-nav button,
.workflow-tab strong,
.workflow-tab span,
.topbar h1,
.topbar p,
.panel h2,
.panel h3,
.panel-head h2,
.metric-card span,
.metric-card strong,
.chart-panel h2,
.action-summary strong,
.action-summary span,
.action-summary p,
.risk-list li,
.action-list div,
.recommendations div,
.product-analysis-card,
.db-analysis-grid article,
.driver-list strong,
.driver-list small,
.tradeoff-grid strong,
.tradeoff-grid p,
.next-best-action strong,
.next-best-action p,
.next-best-action > span,
.navigator-side strong,
.navigator-side p,
.output-box,
.kpi-box,
.field-output {
  color: var(--sg-text-dark) !important;
  opacity: 1 !important;
}

.metric-card small,
.panel p,
.chart-panel p,
.bar-label,
.product-analysis-card small,
.product-analysis-card p,
.db-analysis-grid small,
.action-summary p,
.recommendations small,
.action-list small,
.driver-list small,
.tradeoff-grid p,
.next-best-action p,
.navigator-side p {
  color: var(--sg-text-muted) !important;
  opacity: 1 !important;
}

.risk-list li,
.action-list div {
  background:
    linear-gradient(135deg, rgba(240, 250, 254, 0.98), rgba(255, 255, 255, 0.92)) !important;
  border-color: rgba(21, 168, 213, 0.18) !important;
  border-radius: 14px !important;
}

/* Modern spherical / glass charts */
.chart-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
}

.chart-panel::before {
  content: "";
  position: absolute;
  inset: 42px 24px 74px;
  pointer-events: none;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 120px),
    linear-gradient(180deg, rgba(21, 168, 213, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.bar-chart {
  position: relative;
  z-index: 1;
  gap: clamp(12px, 2vw, 22px) !important;
  align-items: end !important;
  min-height: 300px !important;
  padding: 34px 20px 16px !important;
}

.bar-item {
  position: relative;
  display: grid !important;
  align-items: end !important;
  gap: 14px !important;
  min-height: 250px !important;
}

.bar-item::before {
  content: "";
  position: absolute;
  inset: 8px 18% 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 168, 213, 0.08), rgba(255, 255, 255, 0.16));
  box-shadow: inset 0 0 0 1px rgba(21, 168, 213, 0.08);
}

.bar {
  position: relative;
  z-index: 1;
  width: min(78%, 190px) !important;
  margin: 0 auto !important;
  min-height: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 999px 999px 18px 18px !important;
  background:
    radial-gradient(circle at 35% 14%, rgba(255, 255, 255, 0.82), transparent 18px),
    linear-gradient(180deg, #25c7df 0%, #18a9d0 44%, #6fb8b7 72%, #f2c242 100%) !important;
  box-shadow:
    0 18px 34px rgba(21, 168, 213, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 -18px 34px rgba(12, 56, 80, 0.10) !important;
  overflow: hidden;
}

.bar::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
}

.bar.negative,
.bar.danger {
  background:
    radial-gradient(circle at 35% 14%, rgba(255, 255, 255, 0.76), transparent 18px),
    linear-gradient(180deg, #ff8f86 0%, #f16058 54%, #f7c267 100%) !important;
  box-shadow: 0 18px 34px rgba(241, 96, 88, 0.20), inset 0 1px 0 rgba(255,255,255,0.76) !important;
}

.bar-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-self: center;
  min-width: 34px;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #46697c !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  box-shadow: 0 8px 18px rgba(12, 56, 80, 0.08);
}

/* Action recommendations as professional decision cards */
.action-summary,
.next-best-action,
.panel:has(.recommendations),
.panel:has(.action-list) {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
}

.action-summary {
  padding: 22px 24px 24px !important;
  border-color: rgba(21, 168, 213, 0.24) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 202, 195, 0.20), transparent 260px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 248, 253, 0.90)) !important;
  box-shadow: 0 22px 56px rgba(12, 56, 80, 0.12) !important;
}

.action-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #17b7e3, #23c7c0, #f5b822);
}

.action-summary.warning::before {
  background: linear-gradient(180deg, #f5b822, #23c7c0);
}

.action-summary.danger::before {
  background: linear-gradient(180deg, #ff746b, #f5b822);
}

.action-summary span,
.next-best-action > span,
.panel:has(.recommendations) .tier-label {
  width: fit-content;
  padding: 5px 10px !important;
  border-radius: 999px;
  background: rgba(21, 168, 213, 0.12) !important;
  color: #0784aa !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.action-summary strong,
.next-best-action strong {
  color: var(--sg-text-dark) !important;
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 1.12 !important;
}

.action-summary p,
.next-best-action p {
  max-width: 1060px !important;
  color: #425f72 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.recommendations div {
  border-color: rgba(21, 168, 213, 0.18) !important;
  background:
    radial-gradient(circle at 96% 8%, rgba(21, 168, 213, 0.14), transparent 220px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 248, 253, 0.88)) !important;
  color: var(--sg-text-dark) !important;
}

.recommendations b {
  background: linear-gradient(135deg, #dff8ff, #bdeff9) !important;
  color: #0784aa !important;
}

/* Replace remaining dark grey utility surfaces with light blue */
[class*="dark"],
[class*="warning-box"],
[class*="hint-box"] {
  border-color: rgba(21, 168, 213, 0.18) !important;
}

@media (max-width: 760px) {
  .bar-chart {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    min-height: 0 !important;
    padding: 22px 10px 12px !important;
  }

  .bar-item {
    min-height: 180px !important;
  }

  .bar {
    width: min(82%, 150px) !important;
  }

  .action-summary {
    padding: 18px 18px 20px !important;
  }
}

/* SolvGuard modern input-control refresh 2026-06-04 */
.screen .panel,
.screen .metric-card,
.screen .summary-card,
.screen .output-box,
.screen .field-output,
.screen .kpi-box,
.screen .proplus-row,
.screen .premium-revenue-row,
.screen .plus-revenue-slider,
.screen .share-control strong,
.screen .plus-wg-gross,
.screen .premium-revenue-gross,
.screen .plus-wg-share-value,
.screen .plus-wg-cost-value,
.screen .premium-revenue-share-value,
.screen .premium-revenue-cost-value {
  color: #10243a !important;
}

.screen .panel,
.screen .metric-card,
.screen .summary-card,
.screen .output-box,
.screen .field-output,
.screen .kpi-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 173, 214, 0.12), transparent 260px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(232, 248, 253, 0.86)) !important;
  border: 1px solid rgba(21, 168, 213, 0.22) !important;
  box-shadow: 0 22px 54px rgba(31, 92, 118, 0.11) !important;
}

.screen .panel > p,
.screen .metric-card p,
.screen .summary-card p,
.screen .output-box p,
.screen .field-output p,
.screen .kpi-box p,
.screen .panel small,
.screen .metric-card small,
.screen .summary-card small,
.screen .output-box small,
.screen .field-output small,
.screen .kpi-box small {
  color: #526f80 !important;
  opacity: 1 !important;
}

.screen .panel h2,
.screen .panel h3,
.screen .metric-card strong,
.screen .summary-card strong,
.screen .output-box strong,
.screen .field-output strong,
.screen .kpi-box strong {
  color: #10243a !important;
}

.screen input:not([type="range"]),
.screen select,
.screen textarea {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #10243a !important;
  border: 1px solid rgba(21, 168, 213, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(31, 92, 118, 0.05) !important;
}

.screen input:not([type="range"]):focus,
.screen select:focus,
.screen textarea:focus {
  border-color: rgba(20, 174, 215, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(20, 174, 215, 0.14), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.screen label,
.screen .input-label,
.screen .field-label,
.screen .panel label {
  color: #33566b !important;
}

/* Umsatz-Slider als saubere Fintech-Komponente */
.plus-revenue-slider,
.premium-revenue-slider {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 202, 195, 0.18), transparent 220px),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(223, 247, 253, 0.92)) !important;
  border: 1px solid rgba(21, 168, 213, 0.28) !important;
  box-shadow: 0 26px 58px rgba(31, 92, 118, 0.14) !important;
}

.plus-revenue-slider::before,
.premium-revenue-slider::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #19b7df, #28cec3, #f5c44b);
}

.plus-revenue-slider .slider-head,
.premium-revenue-slider .slider-head {
  align-items: end !important;
  gap: 16px !important;
}

.plus-revenue-slider .slider-head label,
.premium-revenue-slider .slider-head label {
  color: #24475c !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.plus-revenue-slider .slider-head strong,
.premium-revenue-slider .slider-head strong {
  color: #0ea8d1 !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1 !important;
  text-shadow: 0 14px 34px rgba(21, 168, 213, 0.18) !important;
}

.plus-revenue-input,
.premium-gross-input,
.premium-revenue-input {
  max-width: 260px !important;
  font-weight: 650 !important;
  color: #35596d !important;
}

/* moderne Slider-Spuren */
.screen input[type="range"] {
  height: 22px !important;
  background: transparent !important;
  accent-color: #15a8d5 !important;
}

.screen input[type="range"]::-webkit-slider-runnable-track {
  height: 9px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #20b9dc, #82dceb, rgba(255,255,255,0.9)) !important;
  box-shadow: inset 0 1px 3px rgba(21, 79, 105, 0.12) !important;
}

.screen input[type="range"]::-webkit-slider-thumb {
  width: 22px !important;
  height: 22px !important;
  margin-top: -6px !important;
  border-radius: 50% !important;
  border: 3px solid #ffffff !important;
  background: linear-gradient(135deg, #0aa7d0, #28c8d0) !important;
  box-shadow: 0 8px 18px rgba(18, 151, 190, 0.34) !important;
}

.screen input[type="range"]::-moz-range-track {
  height: 9px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #20b9dc, #82dceb, rgba(255,255,255,0.9)) !important;
}

.screen input[type="range"]::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 3px solid #fff !important;
  background: #15a8d5 !important;
}

/* Warengruppen: Tabelle heller, lesbarer, weniger schwer */
.proplus-row,
.premium-revenue-row,
.plus-wg-row,
.premium-wg-row {
  background: transparent !important;
  border-color: rgba(21, 168, 213, 0.12) !important;
}

.plus-wg-share-value,
.plus-wg-cost-value,
.plus-wg-gross,
.premium-revenue-share-value,
.premium-revenue-cost-value,
.premium-revenue-gross,
.share-control strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  border-radius: 12px !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(218,244,251,0.90)) !important;
  border: 1px solid rgba(21, 168, 213, 0.24) !important;
  box-shadow: 0 10px 20px rgba(31, 92, 118, 0.08) !important;
  color: #10243a !important;
  font-weight: 900 !important;
}

.share-lock-button,
.icon-button,
.bin-button {
  background: linear-gradient(145deg, #ffffff, #dff7fd) !important;
  border: 1px solid rgba(21, 168, 213, 0.30) !important;
  color: #0b8db1 !important;
  box-shadow: 0 10px 20px rgba(31, 92, 118, 0.10) !important;
}

.share-lock-button[aria-pressed="true"] {
  background: linear-gradient(145deg, #fff7cf, #f5c44b) !important;
  color: #10243a !important;
  border-color: rgba(199, 151, 25, 0.45) !important;
}

/* Zwischenstand / rechte Auswertungsboxen */
.panel .summary-card,
.panel .output-box,
.panel .field-output,
.panel .kpi-box,
.panel .risk-list li,
.panel .driver-list article,
.panel .driver-list div {
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(21,168,213,0.12), transparent 180px),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(232,248,253,0.88)) !important;
  border: 1px solid rgba(21, 168, 213, 0.20) !important;
  color: #10243a !important;
}

.panel .summary-card span,
.panel .output-box span,
.panel .field-output span,
.panel .kpi-box span,
.panel .risk-list small,
.panel .driver-list small {
  color: #557285 !important;
}

/* Status-/Kennzahlen-Boxen mit mehr Luft */
.period-chooser label,
.billing-options label {
  background: rgba(255, 255, 255, 0.78) !important;
  color: #10243a !important;
  border-color: rgba(21, 168, 213, 0.28) !important;
  box-shadow: 0 8px 18px rgba(31, 92, 118, 0.06) !important;
}

.period-chooser label:has(input:checked),
.billing-options label:has(input:checked) {
  background: linear-gradient(145deg, #ffffff, #dff7fd) !important;
  border-color: rgba(21, 168, 213, 0.58) !important;
  color: #10243a !important;
}

@media (max-width: 980px) {
  .plus-revenue-slider .slider-head,
  .premium-revenue-slider .slider-head {
    align-items: start !important;
  }

  .plus-revenue-slider .slider-head strong,
  .premium-revenue-slider .slider-head strong {
    font-size: 30px !important;
  }
}

/* SolvGuard precision UI polish for planning forms 2026-06-04 */
:root {
  --sg-ui-ink: #102033;
  --sg-ui-muted: #526f82;
  --sg-ui-line: rgba(17, 171, 214, 0.24);
  --sg-ui-cyan: #15afd6;
  --sg-ui-cyan-2: #27c7cf;
  --sg-ui-soft: #eefbff;
  --sg-ui-card: rgba(255,255,255,0.88);
}

.screen[data-screen="proplus-planung"],
.screen[data-screen="premium-struktur"],
.screen[data-screen="monatscheck"] {
  background:
    radial-gradient(circle at 80% 6%, rgba(31, 196, 225, 0.18), transparent 420px),
    linear-gradient(180deg, rgba(245, 253, 255, 0.82), rgba(229, 248, 253, 0.64)) !important;
}

.screen-grid,
.dashboard-layout {
  gap: clamp(18px, 2vw, 28px) !important;
}

.screen[data-screen="proplus-planung"] .panel,
.screen[data-screen="premium-struktur"] .panel,
.screen[data-screen="monatscheck"] .panel {
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(239, 251, 255, 0.82)) !important;
  border: 1px solid rgba(23, 172, 214, 0.22) !important;
  box-shadow:
    0 26px 70px rgba(40, 102, 128, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.96) !important;
}

.screen[data-screen="proplus-planung"] .panel h2,
.screen[data-screen="premium-struktur"] .panel h2,
.screen[data-screen="monatscheck"] .panel h2 {
  color: var(--sg-ui-ink) !important;
  font-size: clamp(20px, 1.55vw, 26px) !important;
  letter-spacing: 0 !important;
}

/* Hero/intro innerhalb der Eingabemasken */
.screen[data-screen="proplus-planung"] .panel > .hero-strip,
.screen[data-screen="premium-struktur"] .panel > .hero-strip,
.screen[data-screen="monatscheck"] .panel > .hero-strip,
.screen[data-screen="proplus-planung"] .panel > .intro-card,
.screen[data-screen="premium-struktur"] .panel > .intro-card,
.screen[data-screen="monatscheck"] .panel > .intro-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(23, 180, 220, 0.28), transparent 220px),
    linear-gradient(135deg, #ffffff 0%, #eaf9fd 58%, #fff7dc 100%) !important;
  color: var(--sg-ui-ink) !important;
  border: 1px solid rgba(17, 171, 214, 0.22) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 46px rgba(40, 102, 128, 0.12) !important;
}

.screen[data-screen="proplus-planung"] .panel > .hero-strip *,
.screen[data-screen="premium-struktur"] .panel > .hero-strip *,
.screen[data-screen="monatscheck"] .panel > .hero-strip *,
.screen[data-screen="proplus-planung"] .panel > .intro-card *,
.screen[data-screen="premium-struktur"] .panel > .intro-card *,
.screen[data-screen="monatscheck"] .panel > .intro-card * {
  color: var(--sg-ui-ink) !important;
  opacity: 1 !important;
}

/* Fallback, falls die Introbox keine eigene Klasse hat: erstes Highlight-Div in der Maske */
.screen[data-screen="proplus-planung"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider),
.screen[data-screen="premium-struktur"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider),
.screen[data-screen="monatscheck"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider) {
  color: var(--sg-ui-ink) !important;
}

.screen[data-screen="proplus-planung"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider) strong,
.screen[data-screen="premium-struktur"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider) strong,
.screen[data-screen="monatscheck"] .panel > div:first-of-type:not(.period-chooser):not(.plus-revenue-slider) strong {
  color: var(--sg-ui-ink) !important;
}

/* Periodenwahl kompakt und hochwertig */
.period-chooser {
  gap: 10px !important;
  align-items: center !important;
}

.period-chooser > span,
.period-chooser > strong,
.period-chooser > label:first-child:not(:has(input)) {
  color: #24475c !important;
  font-weight: 950 !important;
}

.period-chooser label {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.84) !important;
  border: 1px solid rgba(17,171,214,0.30) !important;
  box-shadow: 0 12px 24px rgba(40, 102, 128, 0.08) !important;
}

/* Umsatz-Hauptkarte */
.plus-revenue-slider,
.premium-revenue-slider,
.revenue-slider,
.gross-revenue-card {
  width: min(760px, 100%) !important;
  margin-top: 18px !important;
  padding: 30px 34px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 72% 30%, rgba(41, 206, 206, 0.22), transparent 230px),
    radial-gradient(circle at 18% 90%, rgba(255, 202, 72, 0.14), transparent 220px),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(224,248,253,0.92)) !important;
  border: 1px solid rgba(17,171,214,0.30) !important;
  box-shadow:
    0 26px 70px rgba(34, 143, 176, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.plus-revenue-slider .slider-head,
.premium-revenue-slider .slider-head,
.revenue-slider .slider-head,
.gross-revenue-card .slider-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
}

.plus-revenue-slider .slider-head strong,
.premium-revenue-slider .slider-head strong,
.revenue-slider .slider-head strong,
.gross-revenue-card .slider-head strong {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #0aa7cf !important;
  font-size: clamp(34px, 3.4vw, 52px) !important;
  font-weight: 950 !important;
}

.plus-revenue-slider input:not([type="range"]),
.premium-revenue-slider input:not([type="range"]),
.revenue-slider input:not([type="range"]),
.gross-revenue-card input:not([type="range"]) {
  margin-top: 14px !important;
  width: min(280px, 100%) !important;
  height: 48px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Warengruppen als professionelle Datenmatrix */
.screen[data-screen="proplus-planung"] .panel:has(.plus-wg-row),
.screen[data-screen="premium-struktur"] .panel:has(.premium-wg-row) {
  overflow-x: auto !important;
  padding: clamp(20px, 2vw, 28px) !important;
}

.screen[data-screen="proplus-planung"] .panel:has(.plus-wg-row) h2,
.screen[data-screen="premium-struktur"] .panel:has(.premium-wg-row) h2 {
  margin-bottom: 20px !important;
}

.proplus-row,
.plus-wg-row,
.premium-revenue-row,
.premium-wg-row {
  display: grid !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 58px !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(17, 171, 214, 0.11) !important;
}

.plus-wg-row:hover,
.premium-wg-row:hover {
  background: linear-gradient(90deg, rgba(35, 196, 224, 0.08), rgba(255,255,255,0)) !important;
}

.wg-name-lock {
  display: grid !important;
  grid-template-columns: minmax(150px, 1fr) 34px !important;
  align-items: center !important;
  gap: 8px !important;
}

.wg-name-lock input,
.plus-wg-name,
.premium-revenue-name {
  min-height: 44px !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.92) !important;
}

.share-control {
  display: grid !important;
  grid-template-columns: minmax(120px, 1fr) minmax(58px, auto) !important;
  align-items: center !important;
  gap: 10px !important;
}

.share-control strong,
.plus-wg-gross,
.premium-revenue-gross {
  min-width: 70px !important;
  min-height: 40px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(222,247,253,0.88)) !important;
}

.plus-wg-gross,
.premium-revenue-gross {
  justify-self: stretch !important;
  justify-content: flex-start !important;
  padding-inline: 14px !important;
}

.share-lock-button {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 12px !important;
}

.remove-plus-wg,
.remove-premium-wg,
.bin-button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 12px !important;
}

/* rechte Seitenpanels und Zwischenstand */
.screen[data-screen="proplus-planung"] .screen-grid > aside .panel,
.screen[data-screen="premium-struktur"] .screen-grid > aside .panel,
.screen[data-screen="proplus-planung"] .screen-grid > .panel:not(:has(.plus-wg-row)):not(:has(.plus-revenue-slider)),
.screen[data-screen="premium-struktur"] .screen-grid > .panel:not(:has(.premium-wg-row)):not(:has(.premium-revenue-slider)) {
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 196, 224, 0.18), transparent 220px),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(235,249,253,0.88)) !important;
}

.summary-card,
.output-box,
.field-output,
.kpi-box,
.risk-list li,
.driver-list article,
.driver-list div {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(225,247,253,0.90)) !important;
  border: 1px solid rgba(17, 171, 214, 0.20) !important;
  color: var(--sg-ui-ink) !important;
  box-shadow: 0 14px 34px rgba(40, 102, 128, 0.10) !important;
}

.summary-card strong,
.output-box strong,
.field-output strong,
.kpi-box strong,
.risk-list strong,
.driver-list strong,
.summary-card b,
.output-box b,
.field-output b,
.kpi-box b {
  color: var(--sg-ui-ink) !important;
}

.summary-card span,
.output-box span,
.field-output span,
.kpi-box span {
  color: #557285 !important;
}

/* Status-Ampel moderner */
.status-pill,
.tier-label,
.badge,
.panel > .badge {
  border: 0 !important;
  background: linear-gradient(135deg, rgba(225, 248, 253, 0.98), rgba(255, 250, 222, 0.92)) !important;
  color: #0784aa !important;
  box-shadow: 0 10px 22px rgba(40, 102, 128, 0.10) !important;
}

.status-dot,
.traffic-light,
.status-light {
  box-shadow: 0 0 0 6px rgba(21, 168, 213, 0.10), 0 0 20px rgba(21, 168, 213, 0.34) !important;
}

/* horizontales Scrollen wirkt sauberer */
.screen .panel::-webkit-scrollbar {
  height: 10px;
}

.screen .panel::-webkit-scrollbar-track {
  background: rgba(210, 238, 245, 0.9);
  border-radius: 999px;
}

.screen .panel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #18afd7, #28c8d0);
  border-radius: 999px;
}

@media (max-width: 1180px) {
  .screen-grid {
    grid-template-columns: 1fr !important;
  }

  .screen[data-screen="proplus-planung"] .screen-grid > aside,
  .screen[data-screen="premium-struktur"] .screen-grid > aside {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 18px !important;
  }
}

@media (max-width: 760px) {
  .plus-revenue-slider,
  .premium-revenue-slider,
  .revenue-slider,
  .gross-revenue-card {
    padding: 22px !important;
  }

  .plus-revenue-slider .slider-head,
  .premium-revenue-slider .slider-head,
  .revenue-slider .slider-head,
  .gross-revenue-card .slider-head {
    grid-template-columns: 1fr !important;
  }

  .plus-revenue-slider .slider-head strong,
  .premium-revenue-slider .slider-head strong,
  .revenue-slider .slider-head strong,
  .gross-revenue-card .slider-head strong {
    font-size: 34px !important;
  }

  .screen[data-screen="proplus-planung"] .panel:has(.plus-wg-row),
  .screen[data-screen="premium-struktur"] .panel:has(.premium-wg-row) {
    padding: 18px !important;
  }
}
/* SolvGuard final planning-surface polish 2026-06-04 */
.intro-band {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px) !important;
  gap: clamp(18px, 3vw, 34px) !important;
  align-items: center !important;
  padding: clamp(24px, 2.7vw, 38px) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(19, 177, 216, 0.23), transparent 260px),
    radial-gradient(circle at 12% 92%, rgba(246, 195, 58, 0.13), transparent 260px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 249, 253, 0.92)) !important;
  border: 1px solid rgba(18, 169, 212, 0.26) !important;
  box-shadow:
    0 24px 64px rgba(30, 92, 120, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #13aad4, #2ad2c7, #f2c744);
}

.intro-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 205, 218, 0.22), transparent 68%);
  pointer-events: none;
}

.intro-band > div:first-child {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  gap: 8px !important;
}

.intro-band strong[data-copy-key],
.intro-band > div:first-child > strong {
  color: #102033 !important;
  font-size: clamp(22px, 2vw, 32px) !important;
  line-height: 1.16 !important;
  font-weight: 950 !important;
}

.intro-band span[data-copy-key],
.intro-band > div:first-child > span {
  color: #587486 !important;
  font-size: clamp(14px, 1.05vw, 17px) !important;
  line-height: 1.55 !important;
  opacity: 1 !important;
}

.mini-result {
  position: relative !important;
  z-index: 1 !important;
  min-height: 112px !important;
  padding: 20px 22px !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.56), transparent 70px),
    linear-gradient(145deg, #15acd4, #22c5d0) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 20px 42px rgba(16, 151, 189, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.42) !important;
  color: #062237 !important;
}

.mini-result span {
  display: block !important;
  color: rgba(6, 34, 55, 0.78) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.mini-result strong {
  display: block !important;
  margin-top: 7px !important;
  color: #071f32 !important;
  font-size: clamp(28px, 2.4vw, 40px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.metric-stack {
  display: grid !important;
  gap: 14px !important;
}

.metric-stack > div {
  position: relative !important;
  overflow: hidden !important;
  min-height: 84px !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 178, 217, 0.18), transparent 190px),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(223,247,253,0.92)) !important;
  border: 1px solid rgba(18, 169, 212, 0.24) !important;
  box-shadow:
    0 16px 38px rgba(30, 92, 120, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.96) !important;
}

.metric-stack > div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #13aad4, #29cec7, #f2c744);
}

.metric-stack span {
  display: block !important;
  color: #557285 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.metric-stack strong {
  display: block !important;
  margin-top: 7px !important;
  color: #102033 !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  font-weight: 950 !important;
}

.proplus-table {
  min-width: 1040px !important;
  border-radius: 18px !important;
}

.proplus-row.head {
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
  min-height: 46px !important;
  padding: 8px 0 12px !important;
  background: linear-gradient(180deg, rgba(247, 253, 255, 0.98), rgba(247, 253, 255, 0.88)) !important;
  border-bottom: 1px solid rgba(18, 169, 212, 0.22) !important;
}

.proplus-row.head span {
  color: #45687c !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.plus-wg-row,
.premium-wg-row {
  margin: 0 !important;
  border-radius: 14px !important;
}

.plus-wg-row:nth-child(even),
.premium-wg-row:nth-child(even) {
  background: rgba(231, 248, 253, 0.42) !important;
}

.plus-wg-row:nth-child(odd),
.premium-wg-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.54) !important;
}

.plus-wg-row:hover,
.premium-wg-row:hover {
  background: linear-gradient(90deg, rgba(25, 183, 219, 0.15), rgba(255,255,255,0.62)) !important;
  box-shadow: inset 0 0 0 1px rgba(18, 169, 212, 0.18) !important;
}

.screen[data-screen="proplus-planung"] .form-grid.one,
.screen[data-screen="premium-struktur"] .form-grid.one,
.screen[data-screen="monatscheck"] .form-grid.one {
  gap: 16px !important;
}

.screen[data-screen="proplus-planung"] .field,
.screen[data-screen="premium-struktur"] .field,
.screen[data-screen="monatscheck"] .field {
  gap: 7px !important;
}

.screen[data-screen="proplus-planung"] .field span,
.screen[data-screen="premium-struktur"] .field span,
.screen[data-screen="monatscheck"] .field span {
  color: #365d74 !important;
  font-weight: 900 !important;
}

.screen[data-screen="proplus-planung"] .money-input,
.screen[data-screen="premium-struktur"] .money-input,
.screen[data-screen="monatscheck"] .money-input,
.screen[data-screen="proplus-planung"] input[type="number"],
.screen[data-screen="premium-struktur"] input[type="number"],
.screen[data-screen="monatscheck"] input[type="number"] {
  height: 48px !important;
  border-radius: 13px !important;
  background: rgba(255,255,255,0.94) !important;
  color: #102033 !important;
  font-size: 15px !important;
}

@media (max-width: 860px) {
  .intro-band {
    grid-template-columns: 1fr !important;
  }

  .mini-result {
    width: 100% !important;
  }
}


/* SolvGuard FinFlow-inspired finance levers 2026-06-04 */
.finflow-lever-field span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #17b9db, #29cec7);
  box-shadow: 0 0 0 5px rgba(23, 185, 219, 0.10);
  vertical-align: 1px;
}

.finflow-lever-result,
.finflow-lever-card {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(35, 204, 197, 0.18), transparent 190px),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(224,248,253,0.92)) !important;
}

.finflow-lever-result::after,
.finflow-lever-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #17b9db, #29cec7, #f2c744);
  opacity: 0.9;
}

.finflow-lever-card strong,
.finflow-lever-result strong {
  color: #0784aa !important;
}
/* SolvGuard scenario lab polish + customer tier switch removal 2026-06-04 */
.app-shell .topbar .version-switch,
.app-shell .topbar .tier-switch-note,
.app-shell .topbar #topUpgradeCta,
.app-shell .footer-cta,
.app-shell #bottomUpgradeCta,
.app-shell .inline-cta.upgrade-cta {
  display: none !important;
}

.screen[data-screen="proplus-szenarien"],
.screen[data-screen="szenario"],
.screen[data-screen="premium-simulation"] {
  background:
    radial-gradient(circle at 78% 8%, rgba(31, 196, 225, 0.18), transparent 430px),
    linear-gradient(180deg, rgba(247, 253, 255, 0.92), rgba(226, 247, 253, 0.72)) !important;
}

.screen[data-screen="proplus-szenarien"] .panel,
.screen[data-screen="szenario"] .panel,
.screen[data-screen="premium-simulation"] .panel {
  border-radius: 24px !important;
  border: 1px solid rgba(18, 169, 212, 0.24) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 202, 195, 0.14), transparent 280px),
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(235,249,253,0.88)) !important;
  box-shadow:
    0 28px 72px rgba(31, 92, 118, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.scenario-explainer,
.scenario-grid,
.comparison-grid {
  gap: clamp(14px, 1.7vw, 24px) !important;
}

.scenario-explainer div,
.scenario-card,
.comparison-grid article {
  position: relative !important;
  overflow: hidden !important;
  min-height: 112px !important;
  padding: clamp(18px, 1.8vw, 26px) !important;
  border: 1px solid rgba(18, 169, 212, 0.22) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,0.72), transparent 90px),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(226,247,253,0.92)) !important;
  color: #102033 !important;
  box-shadow:
    0 18px 44px rgba(31, 92, 118, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.96) !important;
}

.scenario-explainer div::before,
.scenario-card::before,
.comparison-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #13aad4, #2ad2c7);
}

.scenario-explainer div:nth-child(2)::before,
.scenario-grid .scenario-card:nth-child(2)::before,
.comparison-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, #21c98c, #2ad2c7);
}

.scenario-explainer div:nth-child(3)::before,
.scenario-grid .scenario-card:nth-child(3)::before,
.comparison-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, #f2b84b, #f1665d);
}

.scenario-explainer strong,
.scenario-card h3,
.comparison-grid span {
  color: #0a88ae !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.scenario-grid .scenario-card:nth-child(2) h3,
.scenario-explainer div:nth-child(2) strong,
.comparison-grid article:nth-child(2) span {
  color: #079b72 !important;
}

.scenario-grid .scenario-card:nth-child(3) h3,
.scenario-explainer div:nth-child(3) strong,
.comparison-grid article:nth-child(3) span {
  color: #c8651f !important;
}

.scenario-explainer span,
.scenario-card p,
.comparison-grid small {
  color: #587486 !important;
  opacity: 1 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.comparison-grid strong {
  color: #102033 !important;
  font-size: clamp(28px, 2.4vw, 42px) !important;
  font-weight: 950 !important;
  text-shadow: 0 12px 28px rgba(21, 168, 213, 0.12) !important;
}

.scenario-card .field {
  padding: 0 !important;
  background: transparent !important;
}

.scenario-card .field span {
  color: #355d74 !important;
  font-weight: 900 !important;
}

.scenario-card input,
.scenario-card select {
  height: 48px !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,0.94) !important;
  color: #102033 !important;
  border-color: rgba(18, 169, 212, 0.30) !important;
  font-weight: 750 !important;
}

.scenario-card:focus-within {
  border-color: rgba(18, 169, 212, 0.58) !important;
  box-shadow:
    0 24px 58px rgba(31, 92, 118, 0.14),
    0 0 0 4px rgba(18, 169, 212, 0.10) !important;
}

.screen[data-screen="proplus-szenarien"] .comparison-grid article,
.screen[data-screen="szenario"] .comparison-grid article,
.screen[data-screen="premium-simulation"] .comparison-grid article {
  min-height: 132px !important;
}

@media (max-width: 980px) {
  .scenario-grid,
  .scenario-explainer,
  .comparison-grid {
    grid-template-columns: 1fr !important;
  }
}


/* === SolvGuard dark glass homepage skin 2026-06-06 === */
:root {
  --sg-dark-bg-deep: #050d1a;
  --sg-dark-bg-mid: #0a1628;
  --sg-dark-bg-soft: #122036;
  --sg-dark-panel: rgba(18, 32, 54, 0.55);
  --sg-dark-panel-strong: rgba(22, 38, 64, 0.74);
  --sg-dark-border: rgba(120, 200, 230, 0.18);
  --sg-dark-border-strong: rgba(120, 220, 230, 0.32);
  --sg-dark-cyan: #4fd4e4;
  --sg-dark-cyan-soft: #7fe3ef;
  --sg-dark-blue: #5aa9ff;
  --sg-dark-green: #4ef0a3;
  --sg-dark-text: #eaf6ff;
  --sg-dark-muted: #a8c0d6;
  --sg-dark-dim: #6f8aa4;
  --sg-dark-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --sg-dark-glow: 0 0 46px rgba(79, 212, 228, 0.18);
}

html,
body {
  background: var(--sg-dark-bg-deep);
}

.sg-bg-stage,
.sg-bg-grid,
.sg-particles {
  pointer-events: none;
}

.sg-bg-stage {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1050px 680px at 76% -8%, rgba(79, 212, 228, 0.16), transparent 60%),
    radial-gradient(900px 620px at -4% 24%, rgba(90, 169, 255, 0.13), transparent 62%),
    radial-gradient(950px 700px at 52% 110%, rgba(78, 240, 163, 0.08), transparent 62%),
    linear-gradient(180deg, #050d1a 0%, #0a1628 52%, #050d1a 100%);
}

.sg-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(79, 212, 228, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 212, 228, 0.052) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 28%, transparent 76%);
}

.sg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
}

#purchaseShell.purchase-shell {
  min-height: 100vh;
  color: var(--sg-dark-text);
  background: transparent !important;
  isolation: isolate;
  overflow-x: hidden;
}

#purchaseShell .purchase-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: none;
  width: min(1200px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--sg-dark-border);
  border-radius: 24px;
  background: rgba(5, 13, 26, 0.66);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#purchaseShell .brand {
  color: var(--sg-dark-text);
}

#purchaseShell .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sg-dark-cyan), var(--sg-dark-blue));
  box-shadow: 0 0 28px rgba(79, 212, 228, 0.35);
}

#purchaseShell .brand strong,
#purchaseShell .brand-name {
  color: var(--sg-dark-text);
  letter-spacing: 0.1px;
}

#purchaseShell .brand span,
#purchaseShell .brand-sub {
  color: var(--sg-dark-dim);
  letter-spacing: 0.35px;
}

#purchaseShell .purchase-nav {
  gap: 12px;
}

#purchaseShell .nav-link,
#purchaseShell .secondary,
#purchaseShell .ghost-button {
  color: var(--sg-dark-text);
  border: 1px solid var(--sg-dark-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  box-shadow: none;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

#purchaseShell .nav-link:hover,
#purchaseShell .secondary:hover,
#purchaseShell .ghost-button:hover {
  color: var(--sg-dark-cyan);
  border-color: rgba(79, 212, 228, 0.55);
  background: rgba(79, 212, 228, 0.08);
  transform: translateY(-1px);
}

#purchaseShell .primary,
#purchaseShell .plan-select,
#purchaseShell #completePaymentButton {
  color: #051121;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sg-dark-cyan), var(--sg-dark-blue));
  box-shadow: 0 10px 28px rgba(79, 212, 228, 0.34);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

#purchaseShell .primary:hover,
#purchaseShell .plan-select:hover,
#purchaseShell #completePaymentButton:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 15px 36px rgba(79, 212, 228, 0.48);
}

#purchaseShell .purchase-main {
  width: min(1200px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: 0 0 72px;
}

#purchaseShell .purchase-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  margin: 0;
  padding: clamp(52px, 7vw, 92px) 0 clamp(40px, 6vw, 74px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

#purchaseShell .hero-copy {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#purchaseShell .eyebrow,
#purchaseShell .hero-eyebrow,
#purchaseShell .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--sg-dark-cyan-soft);
  background: rgba(79, 212, 228, 0.08);
  border: 1px solid rgba(79, 212, 228, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.42px;
}

#purchaseShell .hero-copy h1 {
  margin: 20px 0 18px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 30%, #a8c0d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: none;
}

#purchaseShell .hero-copy h1 strong,
#purchaseShell .hero-copy h1 em,
#purchaseShell .hero-copy h1 mark {
  color: transparent;
  background: linear-gradient(135deg, var(--sg-dark-cyan), var(--sg-dark-green));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

#purchaseShell .hero-copy p,
#purchaseShell .hero-copy .hero-intro,
#purchaseShell .hero-subline {
  max-width: 590px;
  color: var(--sg-dark-muted);
  font-size: clamp(1rem, 1.32vw, 1.17rem);
  line-height: 1.66;
}

#purchaseShell .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

#purchaseShell .hero-video-shell,
#purchaseShell .video-card,
#purchaseShell .hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--sg-dark-border-strong);
  background: var(--sg-dark-panel-strong);
  box-shadow: var(--sg-dark-shadow), var(--sg-dark-glow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

#purchaseShell .hero-video-shell::before,
#purchaseShell .hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(79, 212, 228, 0.08), transparent 48%);
}

#purchaseShell .hero-video-shell video,
#purchaseShell .hero-video-shell img,
#purchaseShell .hero-visual img,
#purchaseShell .hero-visual video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

#purchaseShell .hero-video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid var(--sg-dark-border);
  border-radius: 16px;
  color: var(--sg-dark-text);
  background: rgba(5, 13, 26, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

#purchaseShell .hero-trust-row,
#purchaseShell .hero-stat-row,
#purchaseShell .trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

#purchaseShell .hero-trust-row > *,
#purchaseShell .hero-stat-row > *,
#purchaseShell .trust-row > * {
  border-radius: 16px;
  border: 1px solid var(--sg-dark-border);
  color: var(--sg-dark-muted);
  background: var(--sg-dark-panel);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#purchaseShell .hero-trust-row strong,
#purchaseShell .hero-stat-row strong,
#purchaseShell .trust-row strong {
  color: var(--sg-dark-cyan);
}

#purchaseShell .hero-benefit-zone,
#purchaseShell .activation-flow,
#purchaseShell .branch-showcase-card,
#purchaseShell .checkout-panel {
  border: 1px solid var(--sg-dark-border);
  border-radius: 24px;
  color: var(--sg-dark-text);
  background: rgba(18, 32, 54, 0.48);
  box-shadow: var(--sg-dark-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#purchaseShell .hero-benefit-zone {
  padding: clamp(26px, 3vw, 38px);
}

#purchaseShell .benefit-showcase-heading {
  color: var(--sg-dark-text);
}

#purchaseShell .benefit-showcase-heading h2,
#purchaseShell .activation-flow h2 {
  color: var(--sg-dark-text);
  background: linear-gradient(180deg, #fff 35%, #a8c0d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#purchaseShell .benefit-showcase-heading p,
#purchaseShell .activation-flow p,
#purchaseShell .flow-note,
#purchaseShell .branch-showcase-card p {
  color: var(--sg-dark-muted);
}

#purchaseShell .benefit-showcase-grid,
#purchaseShell .activation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#purchaseShell .benefit-showcase-card,
#purchaseShell .activation-steps > *,
#purchaseShell .flow-step,
#purchaseShell .process-step {
  border-radius: 18px;
  border: 1px solid var(--sg-dark-border);
  color: var(--sg-dark-muted);
  background: rgba(5, 13, 26, 0.46);
  box-shadow: none;
}

#purchaseShell .benefit-showcase-card strong,
#purchaseShell .activation-steps strong,
#purchaseShell .flow-step strong,
#purchaseShell .process-step strong {
  color: var(--sg-dark-text);
}

#purchaseShell #planSelection,
#purchaseShell .plan-selection,
#purchaseShell .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  padding: clamp(40px, 6vw, 78px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#purchaseShell .plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--sg-dark-border);
  border-radius: 24px;
  padding: 30px 26px;
  color: var(--sg-dark-text);
  background: var(--sg-dark-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

#purchaseShell .plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(79, 212, 228, 0.06), transparent 52%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

#purchaseShell .plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 212, 228, 0.46);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), 0 0 42px rgba(79, 212, 228, 0.16);
}

#purchaseShell .plan-card:hover::after {
  opacity: 1;
}

#purchaseShell .plan-card.highlighted,
#purchaseShell .plan-card.featured {
  border-color: rgba(79, 212, 228, 0.55);
  box-shadow: 0 0 62px rgba(79, 212, 228, 0.18), 0 22px 68px rgba(0, 0, 0, 0.32);
}

#purchaseShell .plan-kicker,
#purchaseShell .plan-name,
#purchaseShell .plan-badge {
  color: var(--sg-dark-cyan);
}

#purchaseShell .plan-price,
#purchaseShell .plan-card-head strong,
#purchaseShell .plan-card h2 {
  color: var(--sg-dark-text);
}

#purchaseShell .plan-card h2 {
  font-size: clamp(1.28rem, 2vw, 1.58rem);
}

#purchaseShell .plan-description,
#purchaseShell .plan-card p,
#purchaseShell .plan-feature-list,
#purchaseShell .plan-feature-list li {
  color: var(--sg-dark-muted);
}

#purchaseShell .plan-feature-list {
  margin-top: 20px;
  margin-bottom: 26px;
}

#purchaseShell .plan-feature-list li {
  border-color: rgba(120, 200, 230, 0.08);
}

#purchaseShell .plan-feature-list li::before {
  color: var(--sg-dark-green);
  filter: drop-shadow(0 0 6px rgba(78, 240, 163, 0.46));
}

#purchaseShell .plan-card .plan-select {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

#purchaseShell .checkout-panel {
  padding: clamp(24px, 3vw, 38px);
}

#purchaseShell .checkout-panel h2,
#purchaseShell .checkout-panel strong,
#purchaseShell .checkout-panel legend,
#purchaseShell .checkout-panel label {
  color: var(--sg-dark-text);
}

#purchaseShell .checkout-panel p,
#purchaseShell .checkout-panel small,
#purchaseShell .checkout-panel span {
  color: var(--sg-dark-muted);
}

#purchaseShell .checkout-form input,
#purchaseShell .checkout-form textarea,
#purchaseShell .checkout-form select,
#purchaseShell .checkout-panel input,
#purchaseShell .checkout-panel textarea,
#purchaseShell .checkout-panel select {
  color: var(--sg-dark-text);
  border: 1px solid rgba(120, 200, 230, 0.24);
  background: rgba(5, 13, 26, 0.54);
}

#purchaseShell .checkout-form input::placeholder,
#purchaseShell .checkout-panel input::placeholder {
  color: rgba(168, 192, 214, 0.62);
}

#purchaseShell .checkout-billing-choice,
#purchaseShell .checkout-billing-choice label,
#purchaseShell .terms-check,
#purchaseShell .checkout-checkbox {
  border-color: var(--sg-dark-border);
  color: var(--sg-dark-text);
  background: rgba(5, 13, 26, 0.44);
}

#purchaseShell .checkout-billing-choice label:has(input:checked),
#purchaseShell .checkout-billing-choice .active {
  border-color: rgba(79, 212, 228, 0.55);
  background: rgba(79, 212, 228, 0.12);
  box-shadow: 0 0 26px rgba(79, 212, 228, 0.14);
}

#purchaseShell .branch-showcase-card img,
#purchaseShell .branch-showcase-card picture,
#purchaseShell .branch-showcase-card .branch-showcase-media {
  border-radius: 20px;
}

#purchaseShell .site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 44px auto 28px;
  border: 1px solid var(--sg-dark-border);
  border-radius: 24px;
  color: var(--sg-dark-muted);
  background: rgba(5, 13, 26, 0.54);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#purchaseShell .site-footer strong {
  color: var(--sg-dark-text);
}

#purchaseShell .site-footer a {
  color: var(--sg-dark-muted);
}

#purchaseShell .site-footer a:hover {
  color: var(--sg-dark-cyan);
}

#purchaseShell .refund-sticker-button,
#purchaseShell .guarantee-sticker {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 22px rgba(79, 212, 228, 0.16));
}

@media (max-width: 980px) {
  #purchaseShell .purchase-main,
  #purchaseShell .purchase-topbar,
  #purchaseShell .site-footer {
    width: min(100% - 24px, 720px);
  }

  #purchaseShell .purchase-hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  #purchaseShell .hero-copy h1 {
    font-size: clamp(42px, 11vw, 62px);
  }

  #purchaseShell #planSelection,
  #purchaseShell .plan-selection,
  #purchaseShell .plans-grid,
  #purchaseShell .benefit-showcase-grid,
  #purchaseShell .activation-steps {
    grid-template-columns: 1fr;
  }

  #purchaseShell .hero-trust-row,
  #purchaseShell .hero-stat-row,
  #purchaseShell .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  #purchaseShell .purchase-topbar {
    align-items: stretch;
    gap: 12px;
    border-radius: 20px;
  }

  #purchaseShell .purchase-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #purchaseShell .purchase-nav button,
  #purchaseShell .purchase-nav a {
    min-width: 0;
    padding-inline: 10px;
  }

  #purchaseShell .checkout-actions,
  #purchaseShell .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* === SolvGuard dark glass hard correction 2026-06-06 === */
body:has(#purchaseShell:not([hidden])) {
  background: #050d1a !important;
}

#purchaseShell.purchase-shell,
#purchaseShell.purchase-shell * {
  text-shadow: none;
}

#purchaseShell.purchase-shell {
  --surface-glass: rgba(11, 24, 42, 0.68);
  --surface-glass-soft: rgba(16, 33, 56, 0.54);
  --surface-glass-dark: rgba(5, 13, 26, 0.74);
  --line-glass: rgba(127, 227, 239, 0.22);
  --line-glass-strong: rgba(127, 227, 239, 0.38);
  --text-glass: #edfaff;
  --text-glass-soft: #b9d2e5;
  --text-glass-muted: #83a2bb;
  --cyan-glass: #4fd4e4;
  --green-glass: #4ef0a3;
  color: var(--text-glass) !important;
  background:
    radial-gradient(1000px 680px at 78% 0%, rgba(79, 212, 228, 0.18), transparent 62%),
    radial-gradient(850px 560px at 0% 28%, rgba(90, 169, 255, 0.13), transparent 62%),
    linear-gradient(180deg, #050d1a 0%, #0a1628 58%, #050d1a 100%) !important;
}

#purchaseShell .purchase-topbar {
  background: rgba(6, 15, 28, 0.82) !important;
  border-color: var(--line-glass) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42) !important;
}

#purchaseShell .brand strong,
#purchaseShell .purchase-topbar strong,
#purchaseShell .purchase-nav button {
  color: var(--text-glass) !important;
}

#purchaseShell .brand span {
  color: var(--text-glass-soft) !important;
}

#purchaseShell .purchase-main {
  background: transparent !important;
}

#purchaseShell .purchase-hero {
  position: relative;
  min-height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#purchaseShell .purchase-hero::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 3vw, 28px) 0 auto 0;
  height: min(760px, 100%);
  z-index: -1;
  border: 1px solid var(--line-glass);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 31, 54, 0.72), rgba(11, 24, 42, 0.36)),
    radial-gradient(680px 360px at 74% 30%, rgba(79, 212, 228, 0.14), transparent 70%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

#purchaseShell .hero-copy {
  min-width: 0;
  color: var(--text-glass) !important;
}

#purchaseShell .hero-copy .eyebrow,
#purchaseShell .eyebrow {
  color: #83f0ff !important;
  background: rgba(79, 212, 228, 0.09) !important;
  border-color: rgba(79, 212, 228, 0.32) !important;
  font-weight: 900 !important;
}

#purchaseShell .hero-copy h1 {
  color: #f6fbff !important;
  background: none !important;
  -webkit-text-fill-color: #f6fbff !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  opacity: 1 !important;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

#purchaseShell .hero-copy h1 strong,
#purchaseShell .hero-copy h1 em,
#purchaseShell .hero-copy h1 mark {
  color: #62e6f2 !important;
  -webkit-text-fill-color: #62e6f2 !important;
  background: none !important;
}

#purchaseShell .hero-copy p,
#purchaseShell .hero-copy p *,
#purchaseShell .hero-intro,
#purchaseShell .hero-subline {
  color: var(--text-glass-soft) !important;
  opacity: 1 !important;
}

#purchaseShell .hero-copy b,
#purchaseShell .hero-copy strong:not(:is(h1 strong)) {
  color: #ffffff !important;
}

#purchaseShell .hero-visual,
#purchaseShell .hero-video-shell {
  background: rgba(15, 32, 55, 0.78) !important;
  border-color: rgba(127, 227, 239, 0.28) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 48px rgba(79, 212, 228, 0.14) !important;
}

#purchaseShell .hero-video-shell {
  padding: clamp(16px, 2vw, 22px);
}

#purchaseShell .hero-video {
  border-radius: 18px !important;
  background: #050d1a !important;
}

#purchaseShell .hero-video-label {
  color: var(--text-glass) !important;
  background: rgba(5, 13, 26, 0.76) !important;
  border-color: rgba(127, 227, 239, 0.26) !important;
}

#purchaseShell .hero-benefit-zone {
  grid-column: 1 / -1;
  margin-top: clamp(18px, 3vw, 34px);
  background: rgba(10, 22, 40, 0.76) !important;
  border-color: var(--line-glass) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35) !important;
}

#purchaseShell .hero-trust-row > div,
#purchaseShell .benefit-showcase-card,
#purchaseShell .activation-steps > *,
#purchaseShell .flow-step,
#purchaseShell .process-step {
  background: rgba(6, 15, 28, 0.72) !important;
  border: 1px solid rgba(127, 227, 239, 0.2) !important;
  color: var(--text-glass-soft) !important;
}

#purchaseShell .hero-trust-row strong,
#purchaseShell .benefit-showcase-card strong,
#purchaseShell .activation-steps strong,
#purchaseShell .flow-step strong,
#purchaseShell .process-step strong {
  color: var(--text-glass) !important;
}

#purchaseShell .hero-trust-row span,
#purchaseShell .benefit-showcase-card p,
#purchaseShell .activation-steps p,
#purchaseShell .flow-step p,
#purchaseShell .process-step p {
  color: var(--text-glass-soft) !important;
}

#purchaseShell .hero-trust-row strong {
  color: var(--cyan-glass) !important;
}

#purchaseShell .benefit-showcase-heading span {
  color: #83f0ff !important;
  background: rgba(79, 212, 228, 0.1) !important;
}

#purchaseShell .benefit-showcase-heading strong,
#purchaseShell .activation-flow h2,
#purchaseShell .branch-showcase-card h2,
#purchaseShell .branch-showcase-card h3 {
  color: var(--text-glass) !important;
  background: none !important;
  -webkit-text-fill-color: var(--text-glass) !important;
}

#purchaseShell .benefit-showcase-heading p,
#purchaseShell .activation-flow p,
#purchaseShell .branch-showcase-card p {
  color: var(--text-glass-soft) !important;
}

#purchaseShell .plan-card,
#purchaseShell .activation-flow,
#purchaseShell .branch-showcase-card,
#purchaseShell .checkout-panel {
  background: rgba(10, 22, 40, 0.78) !important;
  border-color: rgba(127, 227, 239, 0.22) !important;
  color: var(--text-glass) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
}

#purchaseShell .plan-card h2,
#purchaseShell .plan-card strong,
#purchaseShell .plan-price,
#purchaseShell .checkout-panel h2,
#purchaseShell .checkout-panel strong,
#purchaseShell .checkout-panel label {
  color: var(--text-glass) !important;
}

#purchaseShell .plan-card p,
#purchaseShell .plan-description,
#purchaseShell .plan-card li,
#purchaseShell .checkout-panel p,
#purchaseShell .checkout-panel small,
#purchaseShell .checkout-panel span {
  color: var(--text-glass-soft) !important;
}

#purchaseShell .plan-kicker,
#purchaseShell .plan-badge,
#purchaseShell .checkout-panel .checkout-kicker {
  color: #83f0ff !important;
}

#purchaseShell input,
#purchaseShell textarea,
#purchaseShell select {
  color: var(--text-glass) !important;
  background: rgba(5, 13, 26, 0.68) !important;
  border-color: rgba(127, 227, 239, 0.24) !important;
}

#purchaseShell input::placeholder,
#purchaseShell textarea::placeholder {
  color: rgba(185, 210, 229, 0.62) !important;
}

#purchaseShell .terms-check,
#purchaseShell .checkout-checkbox,
#purchaseShell .checkout-billing-choice label {
  background: rgba(5, 13, 26, 0.58) !important;
  border-color: rgba(127, 227, 239, 0.22) !important;
}

#purchaseShell .site-footer {
  background: rgba(6, 15, 28, 0.78) !important;
  border-color: rgba(127, 227, 239, 0.2) !important;
}

@media (max-width: 980px) {
  #purchaseShell .purchase-hero::before {
    inset: 12px -2px auto -2px;
    height: calc(100% - 6px);
  }

  #purchaseShell .hero-benefit-zone {
    order: 3;
  }
}


/* === Exact dark fintech landing style from reference 2026-06-06 === */
body:has(#purchaseShell:not([hidden])) {
  background: #050d1a !important;
}

body:has(#purchaseShell:not([hidden])) .sg-bg-stage {
  background:
    radial-gradient(900px 520px at 76% -12%, rgba(43, 211, 222, 0.13), transparent 62%),
    radial-gradient(720px 480px at 5% 28%, rgba(42, 122, 255, 0.08), transparent 66%),
    #050d1a !important;
}

body:has(#purchaseShell:not([hidden])) .sg-bg-grid {
  opacity: 0.28;
  background-size: 58px 58px;
}

#purchaseShell.purchase-shell {
  --ref-bg: #050d1a;
  --ref-panel: #08182b;
  --ref-panel-2: #0a1b30;
  --ref-line: rgba(76, 201, 240, 0.38);
  --ref-line-soft: rgba(76, 201, 240, 0.22);
  --ref-cyan: #36d6e4;
  --ref-mint: #45e6b6;
  --ref-text: #f4fbff;
  --ref-soft: #a9c8dc;
  --ref-muted: #6f91a9;
  color: var(--ref-text) !important;
  background: transparent !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#purchaseShell .purchase-topbar {
  top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 12px max(24px, calc((100vw - 1180px) / 2)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(76, 201, 240, 0.22) !important;
  border-radius: 0 !important;
  background: rgba(5, 13, 26, 0.92) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#purchaseShell .brand-mark {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  padding: 0 !important;
  background: rgba(54, 214, 228, 0.16) !important;
  box-shadow: 0 0 24px rgba(54, 214, 228, 0.32) !important;
}

#purchaseShell .brand strong {
  color: var(--ref-text) !important;
  font-size: 0.96rem !important;
}

#purchaseShell .brand span {
  color: var(--ref-muted) !important;
  font-size: 0.72rem !important;
}

#purchaseShell .purchase-nav {
  gap: 22px !important;
}

#purchaseShell .purchase-nav .nav-link,
#purchaseShell .purchase-nav .secondary {
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--ref-soft) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.78rem !important;
}

#purchaseShell .purchase-nav .secondary {
  border: 1px solid rgba(76, 201, 240, 0.28) !important;
  color: var(--ref-text) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

#purchaseShell .purchase-main {
  width: min(1180px, calc(100% - 48px)) !important;
  padding: 0 0 80px !important;
}

#purchaseShell .purchase-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr) !important;
  gap: clamp(44px, 7vw, 96px) !important;
  align-items: center !important;
  padding: 118px 0 96px !important;
  min-height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#purchaseShell .purchase-hero::before,
#purchaseShell .hero-visual::before,
#purchaseShell .hero-video-shell::before {
  content: none !important;
}

#purchaseShell .hero-copy {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#purchaseShell .hero-copy .eyebrow {
  padding: 6px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(54, 214, 228, 0.38) !important;
  color: var(--ref-cyan) !important;
  background: rgba(54, 214, 228, 0.08) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 900 !important;
}

#purchaseShell .hero-copy h1 {
  max-width: 660px !important;
  margin: 24px 0 18px !important;
  color: var(--ref-text) !important;
  -webkit-text-fill-color: var(--ref-text) !important;
  background: none !important;
  font-size: clamp(2.35rem, 4.45vw, 4.65rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}

#purchaseShell .hero-copy h1 br {
  display: none;
}

#purchaseShell .hero-copy h1::after {
  content: "";
}

#purchaseShell .hero-copy h1 strong,
#purchaseShell .hero-copy h1 em,
#purchaseShell .hero-copy h1 mark {
  color: var(--ref-mint) !important;
  -webkit-text-fill-color: var(--ref-mint) !important;
  background: none !important;
}

#purchaseShell .hero-copy p {
  max-width: 650px !important;
  color: var(--ref-soft) !important;
  font-size: clamp(0.98rem, 1.28vw, 1.1rem) !important;
  line-height: 1.7 !important;
}

#purchaseShell .hero-copy p strong,
#purchaseShell .hero-copy p b {
  color: var(--ref-text) !important;
}

#purchaseShell .hero-actions {
  margin-top: 30px !important;
  gap: 16px !important;
}

#purchaseShell .hero-actions .primary,
#purchaseShell .hero-actions .secondary,
#purchaseShell .primary.plan-select,
#purchaseShell #completePaymentButton {
  border-radius: 999px !important;
  min-height: 42px !important;
  padding: 0 20px !important;
  font-weight: 900 !important;
  color: #04111e !important;
  background: linear-gradient(135deg, var(--ref-cyan), #5de8f0) !important;
  border: 1px solid rgba(96, 232, 240, 0.55) !important;
  box-shadow: 0 14px 34px rgba(54, 214, 228, 0.24) !important;
}

#purchaseShell .hero-actions .secondary {
  color: var(--ref-text) !important;
  background: rgba(8, 24, 43, 0.82) !important;
  border-color: rgba(76, 201, 240, 0.34) !important;
  box-shadow: none !important;
}

#purchaseShell .refund-sticker-button {
  display: none !important;
}

#purchaseShell .hero-visual {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#purchaseShell .sg-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px 30px;
  border: 1px solid var(--ref-line);
  border-radius: 20px;
  color: var(--ref-text);
  background:
    linear-gradient(135deg, rgba(12, 31, 54, 0.9), rgba(8, 20, 36, 0.74)),
    radial-gradient(520px 260px at 80% 0%, rgba(54, 214, 228, 0.12), transparent 70%);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#purchaseShell .sg-hero-panel h3 {
  margin: 0 0 6px;
  color: var(--ref-text);
  font-size: 1.2rem;
  font-weight: 900;
}

#purchaseShell .sg-hero-panel > p {
  margin: 0 0 24px;
  color: var(--ref-muted);
  font-size: 0.82rem;
}

#purchaseShell .sg-panel-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(76, 201, 240, 0.11);
}

#purchaseShell .sg-panel-row:last-of-type {
  border-bottom: 0;
}

#purchaseShell .sg-check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--ref-mint);
  background: rgba(69, 230, 182, 0.12);
  border: 1px solid rgba(69, 230, 182, 0.36);
  box-shadow: inset 0 0 18px rgba(69, 230, 182, 0.08), 0 0 18px rgba(69, 230, 182, 0.12);
  font-weight: 900;
}

#purchaseShell .sg-panel-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ref-text) !important;
  font-size: 0.9rem;
}

#purchaseShell .sg-panel-row small {
  display: block;
  color: var(--ref-muted) !important;
  line-height: 1.5;
}

#purchaseShell .sg-mini-chart {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 88px;
  padding: 16px 16px 10px;
  border: 1px solid rgba(76, 201, 240, 0.16);
  border-radius: 14px;
  background: rgba(5, 13, 26, 0.44);
}

#purchaseShell .sg-mini-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #55e7f0, rgba(54, 214, 228, 0.18));
  box-shadow: 0 0 16px rgba(54, 214, 228, 0.15);
}

#purchaseShell .hero-benefit-zone {
  grid-column: 1 / -1;
  margin-top: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#purchaseShell .hero-trust-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px !important;
  margin: -58px 0 118px !important;
}

#purchaseShell .hero-trust-row > div {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  min-width: 0 !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(76, 201, 240, 0.24) !important;
  color: var(--ref-soft) !important;
  background: rgba(8, 24, 43, 0.72) !important;
}

#purchaseShell .hero-trust-row > div::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #04111e;
  background: var(--ref-mint);
  font-size: 0.72rem;
  font-weight: 950;
}

#purchaseShell .hero-trust-row strong {
  color: var(--ref-soft) !important;
  font-size: 0.78rem !important;
}

#purchaseShell .hero-trust-row span {
  display: none !important;
}

#purchaseShell .benefit-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 0 !important;
  padding: 0 0 96px !important;
}

#purchaseShell .benefit-showcase-heading {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

#purchaseShell .benefit-showcase-heading span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(54, 214, 228, 0.36);
  border-radius: 999px;
  color: var(--ref-cyan) !important;
  background: rgba(54, 214, 228, 0.08) !important;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#purchaseShell .benefit-showcase-heading strong {
  display: block;
  color: var(--ref-text) !important;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.035em;
}

#purchaseShell .benefit-showcase-heading p {
  margin-top: 14px;
  color: var(--ref-soft) !important;
}

#purchaseShell .benefit-showcase-card {
  min-height: 136px;
  padding: 24px 24px;
  border: 1px solid rgba(76, 201, 240, 0.28) !important;
  border-radius: 14px;
  color: var(--ref-soft) !important;
  background: rgba(8, 24, 43, 0.68) !important;
  box-shadow: none !important;
}

#purchaseShell .benefit-showcase-card span {
  color: var(--ref-cyan) !important;
  font-size: 0.74rem;
  font-weight: 950;
}

#purchaseShell .benefit-showcase-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ref-text) !important;
  font-size: 1rem;
}

#purchaseShell .benefit-showcase-card p {
  color: var(--ref-soft) !important;
  font-size: 0.88rem;
  line-height: 1.55;
}

#purchaseShell .activation-flow,
#purchaseShell .plan-card,
#purchaseShell .checkout-panel,
#purchaseShell .branch-showcase-card {
  background: rgba(8, 24, 43, 0.72) !important;
  border: 1px solid rgba(76, 201, 240, 0.26) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

#purchaseShell .activation-flow {
  margin: 0 0 96px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#purchaseShell .activation-flow h2 {
  color: var(--ref-text) !important;
  -webkit-text-fill-color: var(--ref-text) !important;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

#purchaseShell #planSelection {
  padding: 0 0 88px !important;
}

#purchaseShell .plan-card {
  padding: 28px 26px !important;
}

#purchaseShell .plan-card:hover {
  border-color: rgba(54, 214, 228, 0.5) !important;
  box-shadow: 0 20px 70px rgba(54, 214, 228, 0.12) !important;
}

@media (max-width: 980px) {
  #purchaseShell .purchase-main {
    width: min(100% - 28px, 720px) !important;
  }

  #purchaseShell .purchase-hero {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding-top: 54px !important;
    padding-bottom: 60px !important;
  }

  #purchaseShell .hero-copy h1 br {
    display: initial;
  }

  #purchaseShell .sg-hero-panel {
    min-height: 410px;
  }

  #purchaseShell .hero-trust-row {
    margin: 10px 0 76px !important;
  }

  #purchaseShell .benefit-showcase-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  #purchaseShell .purchase-topbar {
    padding: 10px 14px !important;
  }

  #purchaseShell .purchase-nav {
    gap: 8px !important;
  }

  #purchaseShell .purchase-nav .nav-link,
  #purchaseShell .purchase-nav .secondary {
    padding: 8px 10px !important;
  }

  #purchaseShell .hero-copy h1 {
    font-size: clamp(2.35rem, 14vw, 4.2rem) !important;
  }
}


/* === Hero right panel and editable trust tiles 2026-06-06 === */
#purchaseShell .sg-hero-panel {
  min-height: 520px !important;
  padding-bottom: 30px !important;
}

#purchaseShell .sg-mini-chart {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 22px !important;
  height: 112px !important;
}

#purchaseShell .hero-benefit-zone {
  width: 100% !important;
}

#purchaseShell .hero-trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 34px 0 108px !important;
}

#purchaseShell .hero-trust-row > div {
  position: relative;
  display: block !important;
  min-height: 138px !important;
  width: 100% !important;
  padding: 28px 28px 24px !important;
  overflow: hidden;
  border-radius: 18px !important;
  border: 1px solid rgba(76, 201, 240, 0.34) !important;
  background:
    linear-gradient(145deg, rgba(9, 25, 44, 0.92), rgba(7, 18, 32, 0.76)),
    radial-gradient(260px 120px at 12% 0%, rgba(69, 230, 182, 0.2), transparent 60%) !important;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

#purchaseShell .hero-trust-row > div::before {
  content: "";
  position: absolute;
  top: -26px;
  left: -22px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69, 230, 182, 0.95) 0 18%, rgba(69, 230, 182, 0.18) 19% 36%, transparent 37%);
}

#purchaseShell .hero-trust-row strong {
  display: block !important;
  margin: 0 0 10px !important;
  color: #f4fbff !important;
  font-size: clamp(1.28rem, 2.1vw, 1.75rem) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em !important;
}

#purchaseShell .hero-trust-row span,
#purchaseShell .hero-trust-row p,
#purchaseShell .hero-trust-row small {
  display: block !important;
  color: #a9c8dc !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  font-weight: 650 !important;
}

#purchaseShell .hero-trust-row a {
  color: #36d6e4 !important;
}

@media (max-width: 980px) {
  #purchaseShell .sg-hero-panel {
    min-height: 0 !important;
  }

  #purchaseShell .hero-trust-row {
    grid-template-columns: 1fr !important;
    margin: 22px 0 76px !important;
  }

  #purchaseShell .hero-trust-row > div {
    min-height: 118px !important;
  }
}


/* === Compact landing section spacing 2026-06-06 === */
#purchaseShell .purchase-hero {
  padding-top: 82px !important;
  padding-bottom: 48px !important;
}

#purchaseShell .hero-trust-row {
  margin-top: 18px !important;
  margin-bottom: 54px !important;
}

#purchaseShell .benefit-showcase-grid {
  padding-bottom: 48px !important;
}

#purchaseShell .benefit-showcase-heading {
  margin-bottom: 16px !important;
}

#purchaseShell .activation-flow {
  margin-bottom: 48px !important;
}

#purchaseShell #planSelection,
#purchaseShell .plan-selection,
#purchaseShell .plans-grid {
  padding-top: 34px !important;
  padding-bottom: 44px !important;
}

#purchaseShell .branch-showcase-card {
  margin-top: 28px !important;
  margin-bottom: 34px !important;
}

#purchaseShell .checkout-panel {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

#purchaseShell .site-footer {
  margin-top: 24px !important;
}

@media (max-width: 980px) {
  #purchaseShell .purchase-hero {
    padding-top: 38px !important;
    padding-bottom: 32px !important;
  }

  #purchaseShell .hero-trust-row {
    margin-top: 14px !important;
    margin-bottom: 38px !important;
  }

  #purchaseShell .benefit-showcase-grid {
    padding-bottom: 38px !important;
  }
}


/* === Purchase two benefit blocks and checkout polish 2026-06-06 === */
#purchaseShell .hero-benefit-zone {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: clamp(26px, 5vw, 58px) auto 0 !important;
}

#purchaseShell .benefit-showcase-grid,
#purchaseShell .decision-process-showcase {
  width: min(900px, 100%) !important;
  margin: 0 auto !important;
}

#purchaseShell .benefit-showcase-heading,
#purchaseShell .decision-process-heading {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  margin-bottom: 24px !important;
}

#purchaseShell .benefit-showcase-heading span,
#purchaseShell .decision-process-heading span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 14px !important;
  border: 1px solid rgba(42, 224, 210, 0.45) !important;
  border-radius: 999px !important;
  background: rgba(36, 214, 206, 0.09) !important;
  color: #39f1df !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

#purchaseShell .benefit-showcase-heading strong,
#purchaseShell .decision-process-heading strong {
  display: block !important;
  max-width: 760px !important;
  margin: 18px auto 10px !important;
  color: #f4fbff !important;
  font-size: clamp(2.25rem, 4vw, 3.7rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
}

#purchaseShell .benefit-showcase-heading p,
#purchaseShell .decision-process-heading p {
  max-width: 720px !important;
  margin: 0 auto !important;
  color: rgba(199, 220, 236, 0.82) !important;
  font-size: 1rem !important;
}

#purchaseShell .benefit-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

#purchaseShell .benefit-showcase-card,
#purchaseShell .decision-process-item,
#purchaseShell .decision-process-chart {
  border: 1px solid rgba(86, 205, 236, 0.34) !important;
  background: rgba(12, 28, 48, 0.74) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

#purchaseShell .benefit-showcase-card {
  min-height: 132px !important;
  padding: 22px !important;
}

#purchaseShell .benefit-showcase-card span {
  display: block !important;
  margin-bottom: 12px !important;
  color: #36ecdc !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
}

#purchaseShell .benefit-showcase-card strong {
  color: #f2fbff !important;
  font-size: 1.02rem !important;
  line-height: 1.25 !important;
}

#purchaseShell .benefit-showcase-card p {
  margin: 10px 0 0 !important;
  color: rgba(201, 221, 237, 0.78) !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

#purchaseShell .decision-process-showcase {
  margin-top: clamp(44px, 7vw, 88px) !important;
}

#purchaseShell .decision-process-layout {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1fr) !important;
  gap: clamp(24px, 4vw, 52px) !important;
  align-items: center !important;
}

#purchaseShell .decision-process-list {
  display: grid !important;
  gap: 14px !important;
}

#purchaseShell .decision-process-item {
  display: grid !important;
  grid-template-columns: 38px 1fr !important;
  gap: 16px !important;
  padding: 18px 20px !important;
}

#purchaseShell .decision-process-item > span {
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9px !important;
  color: #76ffe6 !important;
  background: rgba(49, 222, 174, 0.16) !important;
  border: 1px solid rgba(94, 245, 205, 0.46) !important;
  box-shadow: 0 0 24px rgba(72, 232, 198, 0.22) !important;
}

#purchaseShell .decision-process-item strong {
  color: #f4fbff !important;
  font-size: 1rem !important;
}

#purchaseShell .decision-process-item p {
  margin: 6px 0 0 !important;
  color: rgba(201, 221, 237, 0.78) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}

#purchaseShell .decision-process-chart {
  min-height: 300px !important;
  padding: 28px 30px 20px !important;
  position: relative !important;
  overflow: hidden !important;
}

#purchaseShell .decision-process-chart small {
  color: rgba(187, 214, 233, 0.72) !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
}

#purchaseShell .decision-chart-bars {
  height: 190px !important;
  display: flex !important;
  align-items: end !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

#purchaseShell .decision-chart-bars span {
  flex: 1 !important;
  min-width: 16px !important;
  border-radius: 10px 10px 0 0 !important;
  background: linear-gradient(180deg, #54f5ef, #218baa) !important;
  box-shadow: 0 0 26px rgba(67, 230, 235, 0.24) !important;
}

#purchaseShell .decision-chart-line {
  position: absolute !important;
  left: 45px !important;
  right: 34px !important;
  top: 122px !important;
  height: 2px !important;
  transform: rotate(-9deg) !important;
  transform-origin: left center !important;
  background: linear-gradient(90deg, rgba(74, 231, 238, 0.2), #65ffe9) !important;
}

#purchaseShell .decision-chart-line::after {
  content: "" !important;
  position: absolute !important;
  right: -5px !important;
  top: -5px !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #63ffe8 !important;
  box-shadow: 0 0 18px rgba(99, 255, 232, 0.8) !important;
}

#purchaseShell .decision-chart-labels {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 18px !important;
  color: rgba(194, 219, 236, 0.76) !important;
  font-size: 0.78rem !important;
}

#purchaseShell .checkout-panel {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 34px auto 36px !important;
  padding: clamp(22px, 3vw, 34px) !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr) !important;
  gap: clamp(22px, 4vw, 54px) !important;
  align-items: start !important;
  background: radial-gradient(circle at 14% 0%, rgba(77, 222, 245, 0.14), transparent 32%), linear-gradient(145deg, rgba(5, 14, 28, 0.92), rgba(4, 11, 23, 0.98)) !important;
  border: 1px solid rgba(74, 206, 230, 0.34) !important;
  border-radius: 26px !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

#purchaseShell .checkout-summary {
  min-height: 100% !important;
  padding: clamp(22px, 2.5vw, 34px) !important;
  border: 1px solid rgba(155, 215, 232, 0.46) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(210, 219, 226, 0.96), rgba(180, 190, 200, 0.9)) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  color: #081827 !important;
}

#purchaseShell .checkout-summary .eyebrow {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 18px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(42, 205, 226, 0.16) !important;
  border: 1px solid rgba(42, 205, 226, 0.32) !important;
  color: #0497b8 !important;
}

#purchaseShell .checkout-summary h2 {
  margin: 0 0 10px !important;
  color: #081827 !important;
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  line-height: 1.02 !important;
}

#purchaseShell .checkout-summary > strong,
#purchaseShell #checkoutPlanPrice {
  display: block !important;
  margin: 0 0 4px !important;
  color: #08a9ce !important;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
}

#purchaseShell .checkout-summary .checkout-price-vat,
#purchaseShell .checkout-summary p,
#purchaseShell .checkout-summary span,
#purchaseShell .checkout-summary small {
  color: #31556c !important;
}

#purchaseShell .checkout-summary img {
  display: block !important;
  width: 100% !important;
  max-height: 280px !important;
  margin-top: 18px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  border: 1px solid rgba(5, 22, 40, 0.2) !important;
}

#purchaseShell .checkout-form {
  display: grid !important;
  gap: 16px !important;
}

#purchaseShell .checkout-billing-choice {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 24px 16px 16px !important;
  border: 1px solid rgba(111, 215, 235, 0.55) !important;
  border-radius: 20px !important;
  background: rgba(210, 225, 232, 0.95) !important;
}

#purchaseShell .checkout-billing-choice legend {
  position: absolute !important;
  top: -12px !important;
  left: 18px !important;
  padding: 0 12px !important;
  color: #10b9dd !important;
  background: #061526 !important;
  border-radius: 999px !important;
}

#purchaseShell .checkout-billing-choice label {
  min-height: 86px !important;
  padding: 16px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  border-radius: 12px !important;
  background: rgba(6, 17, 31, 0.78) !important;
}

#purchaseShell .checkout-billing-choice label:has(input:checked) {
  border-color: rgba(43, 219, 240, 0.85) !important;
  background: linear-gradient(135deg, rgba(15, 40, 56, 0.94), rgba(8, 27, 43, 0.92)) !important;
}

#purchaseShell .checkout-billing-choice input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #22d6ed !important;
}

#purchaseShell .checkout-billing-choice span,
#purchaseShell .checkout-billing-choice strong,
#purchaseShell .checkout-billing-choice small,
#purchaseShell .checkout-billing-choice em {
  color: #eaf8ff !important;
}

#purchaseShell .checkout-billing-choice small {
  color: #30d8f0 !important;
  font-weight: 900 !important;
}

#purchaseShell .checkout-billing-choice em {
  display: block !important;
  color: rgba(220, 238, 246, 0.78) !important;
  font-style: normal !important;
  font-size: 0.78rem !important;
}

#purchaseShell .checkout-panel .field span {
  display: block !important;
  margin-bottom: 8px !important;
  color: #d8edf6 !important;
  font-weight: 800 !important;
}

#purchaseShell .checkout-panel input[type="email"],
#purchaseShell .checkout-panel input[type="text"] {
  min-height: 52px !important;
  padding: 0 16px !important;
  color: #f4fbff !important;
  background: rgba(3, 12, 24, 0.82) !important;
  border: 1px solid rgba(111, 215, 235, 0.5) !important;
  border-radius: 10px !important;
}

#purchaseShell .business-confirmation {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  padding: 16px 18px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(221, 191, 89, 0.4) !important;
  background: rgba(213, 220, 225, 0.94) !important;
}

#purchaseShell .business-confirmation input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 2px 0 0 !important;
  accent-color: #1bcce5 !important;
}

#purchaseShell .business-confirmation span,
#purchaseShell .business-confirmation a {
  color: #0b1d31 !important;
  font-weight: 750 !important;
  line-height: 1.45 !important;
}

#purchaseShell .business-confirmation a {
  color: #009fc2 !important;
}

#purchaseShell .checkout-actions {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

#purchaseShell .checkout-actions button {
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

#purchaseShell #backToPlansButton {
  color: #e8f7ff !important;
  border: 1px solid rgba(114, 205, 229, 0.5) !important;
  background: rgba(9, 25, 42, 0.72) !important;
}

#purchaseShell #completePaymentButton {
  color: #041522 !important;
  border: 0 !important;
  background: linear-gradient(135deg, #63f0ff, #16bfd8) !important;
}

@media (max-width: 900px) {
  #purchaseShell .benefit-showcase-grid,
  #purchaseShell .decision-process-layout,
  #purchaseShell .checkout-panel {
    grid-template-columns: 1fr !important;
  }

  #purchaseShell .benefit-showcase-grid,
  #purchaseShell .decision-process-showcase,
  #purchaseShell .checkout-panel {
    width: min(100% - 20px, 720px) !important;
  }

  #purchaseShell .checkout-billing-choice {
    grid-template-columns: 1fr !important;
  }

  #purchaseShell .checkout-actions {
    flex-direction: column-reverse !important;
  }

  #purchaseShell .checkout-actions button {
    width: 100% !important;
  }
}

/* === Fix purchase ordering and hidden checkout 2026-06-06 === */
#purchaseShell #checkoutPanel[hidden],
#purchaseShell .checkout-panel[hidden] {
  display: none !important;
  visibility: hidden !important;
}

#purchaseShell .hero-benefit-zone {
  display: grid !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: start !important;
}

#purchaseShell .hero-benefit-zone .hero-trust-row {
  order: 1 !important;
  margin: clamp(22px, 4vw, 42px) 0 0 !important;
}

#purchaseShell .hero-benefit-zone .benefit-showcase-grid {
  order: 2 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

#purchaseShell .decision-process-showcase {
  clear: both !important;
  display: block !important;
  margin-top: clamp(42px, 6vw, 76px) !important;
}

@media (min-width: 981px) {
  #purchaseShell .hero-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  #purchaseShell .hero-benefit-zone .hero-trust-row {
    margin-top: 26px !important;
    margin-bottom: 0 !important;
  }
}

/* === Stabilized purchase benefit block layout 2026-06-06 === */
#purchaseShell > .hero-benefit-zone {
  width: min(900px, calc(100% - 32px)) !important;
  margin: clamp(42px, 6vw, 82px) auto 0 !important;
  display: grid !important;
  gap: clamp(24px, 4vw, 44px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#purchaseShell > .hero-benefit-zone .hero-trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
  width: 100% !important;
}

#purchaseShell > .hero-benefit-zone .benefit-showcase-grid {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

#purchaseShell > .decision-process-showcase {
  width: min(900px, calc(100% - 32px)) !important;
  margin: clamp(48px, 6vw, 86px) auto 0 !important;
}

#purchaseShell #checkoutPanel[hidden],
#purchaseShell .checkout-panel[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  #purchaseShell > .hero-benefit-zone .hero-trust-row,
  #purchaseShell > .hero-benefit-zone .benefit-showcase-grid {
    grid-template-columns: 1fr !important;
  }
}


/* === Decision full-width section fix 2026-06-06 === */
#purchaseShell .purchase-main > .decision-process-showcase {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: clamp(46px, 6vw, 84px) auto 0 !important;
  padding: 0 !important;
  clear: both !important;
}

#purchaseShell .purchase-hero .decision-process-showcase {
  width: auto !important;
}

#purchaseShell .decision-process-showcase .decision-process-layout {
  width: min(920px, 100%) !important;
  margin: 0 auto !important;
}

#purchaseShell .decision-process-showcase .decision-process-heading {
  width: min(900px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 981px) {
  #purchaseShell .decision-process-showcase .decision-process-layout {
    grid-template-columns: minmax(380px, 0.95fr) minmax(360px, 1fr) !important;
  }
}

@media (max-width: 900px) {
  #purchaseShell .purchase-main > .decision-process-showcase {
    width: min(100% - 20px, 720px) !important;
  }
}

/* === Full-width benefit block order fix 2026-06-06 === */
#purchaseShell .purchase-main > .hero-benefit-zone,
#purchaseShell > .hero-benefit-zone {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: clamp(34px, 4vw, 54px) auto 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(20px, 3vw, 32px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-grid,
#purchaseShell > .hero-benefit-zone .benefit-showcase-grid {
  order: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 22px) !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading,
#purchaseShell > .hero-benefit-zone .benefit-showcase-heading {
  grid-column: 1 / -1 !important;
  width: min(900px, 100%) !important;
  max-width: 900px !important;
  margin: 0 auto clamp(8px, 1.5vw, 14px) !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row,
#purchaseShell > .hero-benefit-zone .hero-trust-row {
  order: 2 !important;
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 22px) !important;
  margin: clamp(4px, 1vw, 12px) 0 0 !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row > div,
#purchaseShell > .hero-benefit-zone .hero-trust-row > div {
  min-height: 108px !important;
}

#purchaseShell .purchase-main > .decision-process-showcase {
  width: min(1180px, calc(100% - 32px)) !important;
  margin-top: clamp(30px, 4vw, 56px) !important;
}

@media (max-width: 900px) {
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-grid,
  #purchaseShell > .hero-benefit-zone .benefit-showcase-grid,
  #purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row,
  #purchaseShell > .hero-benefit-zone .hero-trust-row {
    grid-template-columns: 1fr !important;
  }
}

/* === Final order: process full width, benefits directly below 2026-06-06 === */
#purchaseShell .purchase-main > .decision-process-showcase {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: clamp(34px, 4vw, 56px) auto 0 !important;
  padding: 0 !important;
}

#purchaseShell .purchase-main > .decision-process-showcase .decision-process-heading,
#purchaseShell .purchase-main > .decision-process-showcase .decision-process-layout {
  width: 100% !important;
  max-width: none !important;
}

#purchaseShell .purchase-main > .decision-process-showcase .decision-process-layout {
  display: grid !important;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr) !important;
  gap: clamp(24px, 4vw, 56px) !important;
  align-items: center !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: clamp(22px, 3vw, 36px) auto 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: clamp(20px, 3vw, 30px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-grid {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 22px) !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 22px) !important;
}

@media (max-width: 900px) {
  #purchaseShell .purchase-main > .decision-process-showcase .decision-process-layout,
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-grid,
  #purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row {
    grid-template-columns: 1fr !important;
  }
}

/* === Desktop verification fix for process and benefit blocks 2026-06-06 === */
@media (min-width: 901px) {
  body #purchaseShell .purchase-main > section.decision-process-showcase {
    width: min(1180px, calc(100vw - 64px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 42px !important;
    display: block !important;
    grid-column: 1 / -1 !important;
  }

  body #purchaseShell .purchase-main > section.decision-process-showcase .decision-process-heading {
    width: min(900px, 100%) !important;
    max-width: 900px !important;
    margin: 0 auto 34px !important;
    text-align: center !important;
  }

  body #purchaseShell .purchase-main > section.decision-process-showcase .decision-process-layout {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) !important;
    gap: clamp(28px, 4vw, 70px) !important;
    align-items: center !important;
  }

  body #purchaseShell .purchase-main > section.decision-process-showcase .decision-process-list {
    width: 100% !important;
    max-width: none !important;
  }

  body #purchaseShell .purchase-main > section.decision-process-showcase .decision-process-chart {
    width: 100% !important;
    max-width: 460px !important;
    justify-self: center !important;
  }

  body #purchaseShell .purchase-main > .hero-benefit-zone {
    width: min(1180px, calc(100vw - 64px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 32px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-column: 1 / -1 !important;
  }

  body #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-grid,
  body #purchaseShell .purchase-main > .hero-benefit-zone .hero-trust-row {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* === Visual placement: benefit block immediately before plans 2026-06-06 === */
#purchaseShell .purchase-main > .hero-benefit-zone {
  width: min(1180px, calc(100vw - 64px)) !important;
  max-width: 1180px !important;
  margin: clamp(24px, 3vw, 38px) auto clamp(30px, 4vw, 52px) !important;
  order: unset !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone + #planSelection {
  margin-top: 0 !important;
  padding-top: clamp(12px, 2vw, 26px) !important;
}

/* === Match benefit heading typography to process heading 2026-06-06 === */
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading span,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading p {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 950 !important;
  font-size: clamp(2.25rem, 4vw, 3.7rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  text-shadow: none !important;
}

#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading p {
  font-weight: 500 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: rgba(199, 220, 236, 0.82) !important;
}

/* === Activation flow modern dark redesign 2026-06-06 === */
#purchaseShell .purchase-main > #activationFlow.activation-flow {
  width: min(1180px, calc(100vw - 64px)) !important;
  max-width: 1180px !important;
  margin: clamp(48px, 6vw, 82px) auto 0 !important;
  padding: clamp(30px, 4vw, 52px) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 24px) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 218, 231, 0.12), transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(64, 230, 190, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(5, 14, 27, 0.92), rgba(3, 10, 20, 0.98)) !important;
  border: 1px solid rgba(86, 205, 236, 0.32) !important;
  border-radius: 22px !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow h2 {
  grid-column: 1 / -1 !important;
  width: min(900px, 100%) !important;
  margin: 0 auto clamp(10px, 2vw, 22px) !important;
  text-align: center !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2.1rem, 4vw, 3.45rem) !important;
  line-height: 0.98 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow h2::before {
  content: "" !important;
  display: inline-block !important;
  width: 28px !important;
  height: 2px !important;
  margin: 0 14px 0.34em 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, #36d6e4) !important;
  vertical-align: middle !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow > div {
  min-height: 132px !important;
  padding: 24px 24px 22px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(86, 205, 236, 0.34) !important;
  background:
    linear-gradient(145deg, rgba(12, 28, 48, 0.82), rgba(8, 20, 36, 0.74)),
    radial-gradient(180px 90px at 10% 0%, rgba(64, 230, 190, 0.16), transparent 62%) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow > div span {
  display: block !important;
  margin-bottom: 14px !important;
  color: #36ecdc !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow > div strong {
  display: block !important;
  color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem) !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow > div small {
  display: block !important;
  margin-top: 10px !important;
  color: rgba(199, 220, 236, 0.82) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note {
  grid-column: 1 / -1 !important;
  margin: clamp(8px, 1.8vw, 16px) auto 0 !important;
  color: rgba(210, 230, 242, 0.88) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
  font-weight: 600 !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note::before {
  content: "" !important;
  display: inline-block !important;
  width: 22px !important;
  height: 2px !important;
  margin: 0 10px 0.34em 0 !important;
  border-radius: 999px !important;
  background: #36d6e4 !important;
  vertical-align: middle !important;
}

@media (max-width: 980px) {
  #purchaseShell .purchase-main > #activationFlow.activation-flow {
    width: min(100% - 20px, 720px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 24px !important;
  }
}

@media (max-width: 620px) {
  #purchaseShell .purchase-main > #activationFlow.activation-flow {
    grid-template-columns: 1fr !important;
  }
}

/* === Activation flow dark redesign 2026-06-06 === */
#purchaseShell .purchase-main > #activationFlow.activation-flow {
  width: min(1180px, calc(100vw - 64px)) !important;
  max-width: 1180px !important;
  margin: clamp(42px, 6vw, 76px) auto 0 !important;
  padding: clamp(30px, 4vw, 52px) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 22px) !important;
  border: 1px solid rgba(86, 205, 236, 0.32) !important;
  border-radius: 24px !important;
  background: radial-gradient(circle at 10% 0%, rgba(54, 214, 228, .16), transparent 28%), radial-gradient(circle at 90% 100%, rgba(68, 230, 182, .10), transparent 34%), linear-gradient(145deg, rgba(5, 14, 28, .92), rgba(4, 11, 23, .98)) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05) !important;
  color: #f4fbff !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow h2 {
  grid-column: 1 / -1 !important;
  margin: 0 0 clamp(10px, 2vw, 18px) !important;
  text-align: center !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2rem, 3.4vw, 3.35rem) !important;
  font-weight: 950 !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow h2::before {
  content: "" !important;
  display: inline-block !important;
  width: 34px !important;
  height: 2px !important;
  margin: 0 14px 10px 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, #2edbed) !important;
  vertical-align: middle !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow > div {
  min-height: 148px !important;
  padding: 22px !important;
  display: grid !important;
  align-content: start !important;
  gap: 10px !important;
  border: 1px solid rgba(86, 205, 236, .34) !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, rgba(12, 28, 48, .88), rgba(7, 18, 32, .74)), radial-gradient(210px 100px at 10% 0%, rgba(69,230,182,.14), transparent 62%) !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035) !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow > div span {
  color: #39f1df !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 950 !important;
  font-size: .85rem !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow > div strong {
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem) !important;
  line-height: 1.1 !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow > div small {
  color: rgba(199,220,236,.78) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: .98rem !important;
  line-height: 1.45 !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  margin: 8px 0 0 !important;
  padding: 8px 18px !important;
  border: 1px solid rgba(57, 241, 223, .26) !important;
  border-radius: 999px !important;
  background: rgba(36,214,206,.08) !important;
  color: rgba(218, 240, 248, .86) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: .95rem !important;
}
#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note::before {
  background: linear-gradient(90deg, transparent, #2edbed) !important;
}
@media (max-width: 980px) {
  #purchaseShell .purchase-main > #activationFlow.activation-flow {
    width: min(100% - 20px, 720px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 24px !important;
  }
}
@media (max-width: 640px) {
  #purchaseShell .purchase-main > #activationFlow.activation-flow {
    grid-template-columns: 1fr !important;
  }
}

/* === Checkout final dark fintech redesign 2026-06-06 === */
#purchaseShell .purchase-main > #checkoutPanel.checkout-panel:not([hidden]) {
  width: min(1180px, calc(100vw - 64px)) !important;
  max-width: 1180px !important;
  margin: clamp(34px, 5vw, 62px) auto clamp(44px, 6vw, 78px) !important;
  padding: clamp(22px, 3.2vw, 38px) !important;
  display: grid !important;
  grid-template-columns: minmax(320px, .92fr) minmax(380px, 1.08fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
  align-items: stretch !important;
  border: 1px solid rgba(80, 211, 236, .38) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 16% 8%, rgba(54, 214, 228, .17), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(67, 239, 198, .10), transparent 32%),
    linear-gradient(145deg, rgba(5, 14, 28, .96), rgba(2, 8, 18, .99)) !important;
  box-shadow: 0 34px 92px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .055) !important;
  color: #f3fbff !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary {
  position: relative !important;
  min-height: 100% !important;
  padding: clamp(26px, 3vw, 40px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(63, 219, 238, .34) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(70, 237, 209, .12), transparent 35%),
    radial-gradient(circle at 95% 92%, rgba(21, 166, 206, .18), transparent 30%),
    linear-gradient(145deg, rgba(10, 27, 47, .92), rgba(5, 15, 30, .96)) !important;
  box-shadow: 0 24px 68px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .045) !important;
  color: #f3fbff !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary::after {
  content: "" !important;
  position: absolute !important;
  right: -64px !important;
  top: -74px !important;
  width: 180px !important;
  height: 180px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(53, 232, 217, .20), transparent 68%) !important;
  pointer-events: none !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary .eyebrow,
#purchaseShell .checkout-panel:not([hidden]) .checkout-summary [data-copy-key="checkoutEyebrow"] {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 20px !important;
  padding: 7px 13px !important;
  border: 1px solid rgba(54, 230, 226, .42) !important;
  border-radius: 999px !important;
  background: rgba(45, 224, 217, .10) !important;
  color: #4ff4e7 !important;
  -webkit-text-fill-color: #4ff4e7 !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary h2 {
  margin: 0 0 10px !important;
  color: #f3fbff !important;
  -webkit-text-fill-color: #f3fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2.2rem, 4vw, 3.45rem) !important;
  line-height: .96 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary > strong,
#purchaseShell .checkout-panel:not([hidden]) #checkoutPlanPrice {
  display: block !important;
  max-width: 9ch !important;
  margin: 0 0 8px !important;
  color: #39e6f1 !important;
  -webkit-text-fill-color: #39e6f1 !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2.35rem, 4.9vw, 4.25rem) !important;
  line-height: .95 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 18px 44px rgba(33, 217, 237, .18) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-price-vat {
  display: block !important;
  margin: 0 0 26px !important;
  color: rgba(218, 241, 248, .72) !important;
  -webkit-text-fill-color: rgba(218, 241, 248, .72) !important;
  font-weight: 750 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary p,
#purchaseShell .checkout-panel:not([hidden]) .checkout-summary .checkout-preview-label {
  max-width: 46ch !important;
  margin: 0 0 16px !important;
  color: rgba(207, 226, 237, .80) !important;
  -webkit-text-fill-color: rgba(207, 226, 237, .80) !important;
  font-size: .98rem !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-preview-label {
  margin-top: 22px !important;
  color: rgba(118, 213, 232, .88) !important;
  font-weight: 800 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary img,
#purchaseShell .checkout-panel:not([hidden]) .checkout-preview-image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 240px !important;
  object-fit: cover !important;
  object-position: center !important;
  margin-top: 10px !important;
  border: 1px solid rgba(66, 222, 239, .28) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 56px rgba(0,0,0,.34) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-form {
  align-self: start !important;
  display: grid !important;
  gap: 17px !important;
  color: #eaf8ff !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 8px !important;
  padding: 25px 16px 16px !important;
  border: 1px solid rgba(79, 222, 239, .52) !important;
  border-radius: 21px !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(65, 233, 217, .12), transparent 45%),
    rgba(8, 24, 42, .92) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice legend {
  position: absolute !important;
  top: -13px !important;
  left: 18px !important;
  padding: 3px 12px !important;
  border-radius: 999px !important;
  background: #061526 !important;
  color: #3ee8f5 !important;
  -webkit-text-fill-color: #3ee8f5 !important;
  font-size: .8rem !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice label {
  min-height: 86px !important;
  padding: 16px 18px !important;
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  align-items: center !important;
  column-gap: 14px !important;
  border: 1px solid rgba(95, 184, 207, .24) !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(13, 34, 55, .86), rgba(8, 22, 39, .94)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice label:has(input:checked) {
  border-color: rgba(61, 236, 246, .9) !important;
  background: linear-gradient(145deg, rgba(16, 54, 72, .94), rgba(8, 33, 51, .96)) !important;
  box-shadow: 0 0 0 1px rgba(61,236,246,.16), 0 18px 50px rgba(34,215,235,.12) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #39e6f1 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice label > span {
  display: grid !important;
  gap: 2px !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice strong {
  color: #f2fbff !important;
  -webkit-text-fill-color: #f2fbff !important;
  font-weight: 900 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice small {
  color: #39e6f1 !important;
  -webkit-text-fill-color: #39e6f1 !important;
  font-weight: 950 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice em {
  color: rgba(216, 237, 246, .72) !important;
  -webkit-text-fill-color: rgba(216, 237, 246, .72) !important;
  font-style: normal !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .field span {
  display: block !important;
  margin: 0 0 8px !important;
  color: rgba(219, 240, 248, .88) !important;
  -webkit-text-fill-color: rgba(219, 240, 248, .88) !important;
  font-weight: 850 !important;
}

#purchaseShell .checkout-panel:not([hidden]) input[type="email"],
#purchaseShell .checkout-panel:not([hidden]) input[type="text"] {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  color: #f5fbff !important;
  -webkit-text-fill-color: #f5fbff !important;
  border: 1px solid rgba(94, 213, 235, .58) !important;
  border-radius: 12px !important;
  background: rgba(3, 12, 24, .78) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  font-weight: 700 !important;
}

#purchaseShell .checkout-panel:not([hidden]) input::placeholder {
  color: rgba(184, 212, 224, .58) !important;
  -webkit-text-fill-color: rgba(184, 212, 224, .58) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .business-confirmation,
#purchaseShell .checkout-panel:not([hidden]) .terms-check {
  display: grid !important;
  grid-template-columns: 20px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(73, 222, 235, .28) !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(12, 31, 49, .88), rgba(7, 20, 35, .94)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .business-confirmation input[type="checkbox"],
#purchaseShell .checkout-panel:not([hidden]) .terms-check input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
  accent-color: #39e6f1 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .business-confirmation span,
#purchaseShell .checkout-panel:not([hidden]) .terms-check span {
  color: rgba(230, 245, 250, .86) !important;
  -webkit-text-fill-color: rgba(230, 245, 250, .86) !important;
  font-weight: 760 !important;
  line-height: 1.48 !important;
}

#purchaseShell .checkout-panel:not([hidden]) .business-confirmation a,
#purchaseShell .checkout-panel:not([hidden]) .terms-check a {
  color: #3ee8f5 !important;
  -webkit-text-fill-color: #3ee8f5 !important;
  font-weight: 900 !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin-top: 8px !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-actions button {
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

#purchaseShell .checkout-panel:not([hidden]) #backToPlansButton {
  color: #dff7ff !important;
  -webkit-text-fill-color: #dff7ff !important;
  border: 1px solid rgba(94, 213, 235, .52) !important;
  background: rgba(8, 24, 42, .82) !important;
}

#purchaseShell .checkout-panel:not([hidden]) #completePaymentButton {
  color: #031523 !important;
  -webkit-text-fill-color: #031523 !important;
  border: 0 !important;
  background: linear-gradient(135deg, #65f0ff, #18c3dc) !important;
  box-shadow: 0 18px 42px rgba(31, 214, 235, .24) !important;
}

#purchaseShell .checkout-panel:not([hidden]) #checkoutError {
  color: #ffd7d7 !important;
  -webkit-text-fill-color: #ffd7d7 !important;
}

@media (max-width: 980px) {
  #purchaseShell .purchase-main > #checkoutPanel.checkout-panel:not([hidden]) {
    width: min(100% - 20px, 760px) !important;
    grid-template-columns: 1fr !important;
    padding: 22px !important;
    gap: 22px !important;
  }
  #purchaseShell .checkout-panel:not([hidden]) .checkout-summary > strong,
  #purchaseShell .checkout-panel:not([hidden]) #checkoutPlanPrice {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  #purchaseShell .checkout-panel:not([hidden]) .checkout-billing-choice {
    grid-template-columns: 1fr !important;
  }
  #purchaseShell .checkout-panel:not([hidden]) .checkout-actions {
    flex-direction: column-reverse !important;
  }
  #purchaseShell .checkout-panel:not([hidden]) .checkout-actions button {
    width: 100% !important;
  }
}

/* === Checkout summary type scale max h3 2026-06-06 === */
#purchaseShell .checkout-panel:not([hidden]) .checkout-summary h2 {
  font-size: clamp(1.55rem, 2.1vw, 2rem) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  margin-bottom: 8px !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary > strong,
#purchaseShell .checkout-panel:not([hidden]) #checkoutPlanPrice {
  max-width: none !important;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem) !important;
  line-height: 1.04 !important;
  font-weight: 950 !important;
  margin-bottom: 4px !important;
  text-shadow: 0 12px 30px rgba(33, 217, 237, .14) !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary .checkout-price-vat {
  margin-bottom: 20px !important;
  font-size: .82rem !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary p,
#purchaseShell .checkout-panel:not([hidden]) .checkout-summary .checkout-preview-label {
  font-size: .9rem !important;
  line-height: 1.55 !important;
  margin-bottom: 13px !important;
}

#purchaseShell .checkout-panel:not([hidden]) .checkout-summary {
  padding: clamp(22px, 2.4vw, 32px) !important;
}

@media (max-width: 640px) {
  #purchaseShell .checkout-panel:not([hidden]) .checkout-summary h2 {
    font-size: 1.45rem !important;
  }
  #purchaseShell .checkout-panel:not([hidden]) .checkout-summary > strong,
  #purchaseShell .checkout-panel:not([hidden]) #checkoutPlanPrice {
    font-size: 2rem !important;
  }
}

/* === Landing block headings smaller and admin-html friendly 2026-06-06 === */
#purchaseShell .decision-process-heading strong,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .purchase-main > #activationFlow.activation-flow h2 {
  font-size: clamp(1.68rem, 3vw, 2.78rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}
#purchaseShell .decision-process-heading p,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading p {
  max-width: 68ch !important;
}
@media (max-width: 640px) {
  #purchaseShell .decision-process-heading strong,
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .purchase-main > #activationFlow.activation-flow h2 {
    font-size: clamp(1.55rem, 9vw, 2.15rem) !important;
  }
}


/* === Final visible block heading scale and fields 2026-06-06 === */
#purchaseShell .decision-process-showcase .decision-process-heading strong,
#purchaseShell .decision-process-heading > strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .benefit-showcase-heading > strong,
#purchaseShell #activationFlow.activation-flow h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.38rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  #purchaseShell .decision-process-showcase .decision-process-heading strong,
  #purchaseShell .decision-process-heading > strong,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .benefit-showcase-heading > strong,
  #purchaseShell #activationFlow.activation-flow h2 {
    font-size: clamp(1.42rem, 8vw, 1.95rem) !important;
  }
}


/* === Final visible block heading scale and fields 2026-06-06 === */
#purchaseShell .decision-process-showcase .decision-process-heading strong,
#purchaseShell .decision-process-heading > strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .benefit-showcase-heading > strong,
#purchaseShell #activationFlow.activation-flow h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.38rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  #purchaseShell .decision-process-showcase .decision-process-heading strong,
  #purchaseShell .decision-process-heading > strong,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .benefit-showcase-heading > strong,
  #purchaseShell #activationFlow.activation-flow h2 {
    font-size: clamp(1.42rem, 8vw, 1.95rem) !important;
  }
}


/* === Final visible block heading scale and fields 2026-06-06 === */
#purchaseShell .decision-process-showcase .decision-process-heading strong,
#purchaseShell .decision-process-heading > strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .benefit-showcase-heading > strong,
#purchaseShell #activationFlow.activation-flow h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.38rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  #purchaseShell .decision-process-showcase .decision-process-heading strong,
  #purchaseShell .decision-process-heading > strong,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .benefit-showcase-heading > strong,
  #purchaseShell #activationFlow.activation-flow h2 {
    font-size: clamp(1.42rem, 8vw, 1.95rem) !important;
  }
}

/* === Legal/footer pages final dark redesign 2026-06-06 === */
body:has(.legal-page) {
  min-height: 100vh !important;
  margin: 0 !important;
  color: #eef8ff !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(51, 220, 227, .15), transparent 30rem),
    radial-gradient(circle at 85% 22%, rgba(64, 238, 190, .10), transparent 28rem),
    linear-gradient(180deg, #04101f 0%, #020915 72%, #020813 100%) !important;
}

body:has(.legal-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(91, 224, 244, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 224, 244, .026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
}

body:has(.legal-page) .legal-page {
  width: min(1080px, calc(100vw - 48px)) !important;
  max-width: 1080px !important;
  margin: clamp(24px, 5vw, 58px) auto clamp(28px, 5vw, 54px) !important;
  padding: clamp(28px, 5vw, 56px) !important;
  gap: clamp(14px, 2vw, 22px) !important;
  border: 1px solid rgba(82, 215, 238, .36) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(51, 220, 227, .16), transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(64, 238, 190, .10), transparent 32%),
    linear-gradient(145deg, rgba(8, 23, 41, .92), rgba(4, 12, 25, .98)) !important;
  box-shadow: 0 34px 92px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.055) !important;
  color: #eef8ff !important;
  overflow-wrap: anywhere !important;
}

body:has(.legal-page) .legal-page .eyebrow,
body:has(.legal-page) .legal-page [data-legal-eyebrow] {
  display: inline-flex !important;
  width: fit-content !important;
  padding: 7px 13px !important;
  border: 1px solid rgba(57, 241, 223, .36) !important;
  border-radius: 999px !important;
  background: rgba(57, 241, 223, .08) !important;
  color: #45efe5 !important;
  -webkit-text-fill-color: #45efe5 !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}

body:has(.legal-page) .legal-page h1 {
  max-width: 920px !important;
  margin: 0 !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2.1rem, 4.4vw, 4.25rem) !important;
  line-height: .98 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

body:has(.legal-page) .legal-page [data-legal-body] {
  display: grid !important;
  gap: 16px !important;
  margin-top: 6px !important;
  padding-top: clamp(12px, 2vw, 20px) !important;
  border-top: 1px solid rgba(93, 206, 229, .18) !important;
}

body:has(.legal-page) .legal-page p,
body:has(.legal-page) .legal-page li,
body:has(.legal-page) .legal-page td,
body:has(.legal-page) .legal-page th {
  color: rgba(210, 229, 239, .84) !important;
  -webkit-text-fill-color: rgba(210, 229, 239, .84) !important;
  font-size: clamp(.98rem, 1.2vw, 1.08rem) !important;
  line-height: 1.72 !important;
}

body:has(.legal-page) .legal-page h2,
body:has(.legal-page) .legal-page h3 {
  margin: 22px 0 4px !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  line-height: 1.14 !important;
}

body:has(.legal-page) .legal-page a {
  color: #45dff0 !important;
  -webkit-text-fill-color: #45dff0 !important;
  font-weight: 900 !important;
  text-underline-offset: 3px !important;
}

body:has(.legal-page) .legal-back {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 40px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(82, 215, 238, .36) !important;
  border-radius: 999px !important;
  background: rgba(9, 27, 47, .74) !important;
  color: #dff8ff !important;
  -webkit-text-fill-color: #dff8ff !important;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

body:has(.legal-page) .legal-back:hover,
body:has(.legal-page) .legal-back:focus-visible {
  border-color: rgba(69, 239, 229, .78) !important;
  color: #45efe5 !important;
  -webkit-text-fill-color: #45efe5 !important;
}

body:has(.legal-page) .legal-site-footer,
body:has(.legal-page) .site-footer.legal-site-footer,
body:has(.legal-page) .site-footer {
  width: min(1080px, calc(100vw - 48px)) !important;
  max-width: 1080px !important;
  margin: 0 auto clamp(22px, 4vw, 42px) !important;
  padding: 22px clamp(20px, 3vw, 30px) !important;
  border: 1px solid rgba(82, 215, 238, .26) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(57, 241, 223, .10), transparent 30%),
    linear-gradient(145deg, rgba(7, 21, 38, .92), rgba(3, 11, 24, .98)) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

body:has(.legal-page) .site-footer strong {
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
}

body:has(.legal-page) .site-footer span,
body:has(.legal-page) .site-footer a {
  color: rgba(205, 228, 238, .82) !important;
  -webkit-text-fill-color: rgba(205, 228, 238, .82) !important;
}

body:has(.legal-page) .site-footer a:hover,
body:has(.legal-page) .site-footer a:focus-visible {
  color: #45efe5 !important;
  -webkit-text-fill-color: #45efe5 !important;
}

@media (max-width: 760px) {
  body:has(.legal-page) .legal-page,
  body:has(.legal-page) .legal-site-footer,
  body:has(.legal-page) .site-footer.legal-site-footer,
  body:has(.legal-page) .site-footer {
    width: min(100% - 22px, 680px) !important;
    padding: 22px !important;
    border-radius: 20px !important;
  }
  body:has(.legal-page) .site-footer {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  body:has(.legal-page) .site-footer nav {
    justify-content: flex-start !important;
    gap: 10px 14px !important;
  }
}


/* === Plan section heading 2026-06-07 === */
#purchaseShell .purchase-main > #planSelection.plan-selection {
  position: relative;
}

#purchaseShell .plan-section-heading {
  grid-column: 1 / -1;
  width: min(880px, 100%);
  margin: 0 auto clamp(26px, 3vw, 38px);
  text-align: center;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

#purchaseShell .plan-section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  border: 1px solid rgba(47, 229, 222, 0.62);
  border-radius: 999px;
  color: #47f4ee;
  background: rgba(20, 219, 212, 0.08);
  box-shadow: 0 0 24px rgba(38, 224, 217, 0.12), inset 0 0 0 1px rgba(255,255,255,0.04);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

#purchaseShell .plan-section-heading h2 {
  margin: 22px 0 12px;
  color: #f4fbff;
  -webkit-text-fill-color: #f4fbff;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: none;
}

#purchaseShell .plan-section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(199, 220, 236, 0.82);
  font-size: clamp(0.98rem, 1.25vw, 1.13rem);
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 760px) {
  #purchaseShell .plan-section-heading {
    margin-bottom: 22px;
    padding: 0 10px;
  }

  #purchaseShell .plan-section-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}


/* === Section heading scale + editable plan heading 2026-06-07 === */
#purchaseShell .decision-process-heading strong,
#purchaseShell .decision-process-showcase .decision-process-heading strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .plan-section-heading h2 {
  font-size: clamp(1.95rem, 3.05vw, 3.15rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  font-weight: 950 !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  text-shadow: none !important;
}

#purchaseShell .decision-process-heading p,
#purchaseShell .decision-process-showcase .decision-process-heading p,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading p,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading p,
#purchaseShell .plan-section-heading p {
  font-size: clamp(0.9rem, 1.05vw, 1rem) !important;
  line-height: 1.48 !important;
  color: rgba(199, 220, 236, 0.82) !important;
}

@media (max-width: 760px) {
  #purchaseShell .decision-process-heading strong,
  #purchaseShell .decision-process-showcase .decision-process-heading strong,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .plan-section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem) !important;
  }
}


/* === Hero trust standalone block 2026-06-07 === */
#purchaseShell .hero-benefit-zone .hero-trust-section {
  width: min(1180px, 100%);
  margin: 0 auto clamp(30px, 4vw, 52px);
}

#purchaseShell .hero-trust-heading {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  margin: 0 auto clamp(18px, 2.5vw, 30px);
  text-align: center;
}

#purchaseShell .hero-trust-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 18px;
  border: 1px solid rgba(43, 226, 218, 0.72);
  border-radius: 999px;
  background: rgba(18, 196, 205, 0.11);
  color: #42f1e3;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}

#purchaseShell .hero-trust-heading strong {
  max-width: 820px;
  color: #edf8ff;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

#purchaseShell .hero-trust-heading p {
  max-width: 760px;
  margin: 0;
  color: rgba(205, 223, 238, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

#purchaseShell .hero-benefit-zone .hero-trust-section .hero-trust-row {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

#purchaseShell .hero-benefit-zone .hero-trust-section .hero-trust-row > div {
  min-height: 118px;
}

@media (max-width: 760px) {
  #purchaseShell .hero-benefit-zone .hero-trust-section {
    margin-bottom: 34px;
  }

  #purchaseShell .hero-trust-heading strong {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }

  #purchaseShell .hero-benefit-zone .hero-trust-section .hero-trust-row {
    grid-template-columns: 1fr;
  }
}


/* === Final homepage section headline scale correction 2026-06-07 === */
#purchaseShell .hero-trust-heading strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .plan-section-heading h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.55rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  max-width: 900px !important;
}

#purchaseShell .hero-trust-heading strong {
  white-space: nowrap;
}

@media (max-width: 760px) {
  #purchaseShell .hero-trust-heading strong,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
  #purchaseShell .plan-section-heading h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem) !important;
    line-height: 1.02 !important;
    white-space: normal;
  }
}


/* === Homepage section heading spacing alignment 2026-06-07 === */
#purchaseShell .hero-trust-heading,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading,
#purchaseShell .plan-section-heading {
  display: grid !important;
  justify-items: center !important;
  gap: 12px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

#purchaseShell .hero-trust-heading span,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading span,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading span,
#purchaseShell .plan-section-heading .plan-section-pill {
  margin: 0 !important;
}

#purchaseShell .hero-trust-heading strong,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading strong,
#purchaseShell .plan-section-heading h2 {
  margin: 0 !important;
}

#purchaseShell .hero-trust-heading p,
#purchaseShell .hero-benefit-zone .benefit-showcase-heading p,
#purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading p,
#purchaseShell .plan-section-heading p {
  margin: 0 !important;
}

#purchaseShell .hero-benefit-zone .hero-trust-section {
  margin-top: 0 !important;
  margin-bottom: clamp(46px, 6vw, 72px) !important;
}

@media (max-width: 760px) {
  #purchaseShell .hero-trust-heading,
  #purchaseShell .hero-benefit-zone .benefit-showcase-heading,
  #purchaseShell .purchase-main > .hero-benefit-zone .benefit-showcase-heading,
  #purchaseShell .plan-section-heading {
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
}


/* === Activation flow gap and risk link robust 2026-06-07 === */
#purchaseShell .purchase-main > #planSelection.plan-selection + #activationFlow.activation-flow,
#purchaseShell .purchase-main > #activationFlow.activation-flow {
  margin-top: clamp(24px, 3.2vw, 42px) !important;
  margin-bottom: clamp(24px, 3.2vw, 42px) !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease !important;
}

#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note:hover,
#purchaseShell .purchase-main > #activationFlow.activation-flow .activation-flow-note:focus-visible {
  color: #f4fbff !important;
  border-color: rgba(57, 241, 223, .62) !important;
  background: rgba(36,214,206,.14) !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}


/* === Plan card subtle border hover 2026-06-07 === */
#purchaseShell .plan-card,
#purchaseShell .plan-card.highlighted,
#purchaseShell .plan-card[data-plan-card] {
  border-top-color: rgba(42, 211, 232, 0.28) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18) !important;
  background-image: linear-gradient(145deg, rgba(7, 18, 33, 0.94), rgba(5, 14, 27, 0.98)) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

#purchaseShell .plan-card::before,
#purchaseShell .plan-card::after,
#purchaseShell .plan-card.highlighted::before,
#purchaseShell .plan-card.highlighted::after,
#purchaseShell .plan-card[data-plan-card]::before,
#purchaseShell .plan-card[data-plan-card]::after {
  display: none !important;
  content: none !important;
}

#purchaseShell .plan-card:hover,
#purchaseShell .plan-card:focus-within,
#purchaseShell .plan-card.highlighted:hover,
#purchaseShell .plan-card.highlighted:focus-within,
#purchaseShell .plan-card[data-plan-card]:hover,
#purchaseShell .plan-card[data-plan-card]:focus-within {
  transform: translateY(-3px) !important;
  border-color: rgba(66, 241, 227, 0.46) !important;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(66, 241, 227, 0.08) !important;
  background-image: linear-gradient(145deg, rgba(8, 22, 39, 0.98), rgba(5, 15, 29, 1)) !important;
}


/* === Customer login new dark design 2026-06-07 === */
body:has(.login-page-shell) {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(45, 224, 230, 0.18), transparent 30rem),
    radial-gradient(circle at 18% 86%, rgba(65, 238, 197, 0.12), transparent 26rem),
    linear-gradient(180deg, #07111f 0%, #050b16 100%) !important;
  color: #eef8ff;
}

.purchase-shell.login-page-shell {
  min-height: 100vh;
  padding: clamp(22px, 4vw, 56px);
  display: grid;
  place-items: center;
  background: transparent !important;
}

.purchase-shell.login-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(66, 241, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 241, 227, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 72%);
  opacity: .55;
}

.standalone-login.login-panel {
  width: min(760px, 100%);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(53, 218, 236, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(46, 219, 237, 0.16), transparent 22rem),
    radial-gradient(circle at 0% 100%, rgba(62, 238, 198, 0.10), transparent 20rem),
    linear-gradient(145deg, rgba(8, 22, 39, 0.94), rgba(5, 13, 26, 0.98));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.standalone-login .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(66, 241, 227, 0.56);
  border-radius: 999px;
  background: rgba(36, 214, 206, 0.10);
  color: #42f1e3;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.standalone-login h1 {
  margin: 0 0 14px;
  color: #f2f8ff;
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
  font-weight: 950;
  line-height: .96;
  letter-spacing: 0;
}

.standalone-login p {
  max-width: 62ch;
  color: rgba(205, 223, 238, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.standalone-login .login-form {
  margin-top: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 16px;
}

.standalone-login .field span,
.standalone-login .login-form label > span {
  color: rgba(213, 232, 244, 0.9);
  font-weight: 850;
}

.standalone-login input,
.standalone-login select {
  min-height: 52px;
  border: 1px solid rgba(88, 202, 230, 0.45);
  border-radius: 13px;
  background: rgba(3, 12, 24, 0.72);
  color: #eef8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.standalone-login input:focus,
.standalone-login select:focus {
  border-color: rgba(66, 241, 227, 0.88);
  box-shadow: 0 0 0 4px rgba(66, 241, 227, 0.13);
  outline: none;
}

.standalone-login .primary,
.standalone-login .secondary {
  min-height: 50px;
  border-radius: 999px;
  font-weight: 950;
}

.standalone-login .primary {
  border: 0;
  color: #04111d;
  background: linear-gradient(135deg, #42f1e3, #23c4dd);
  box-shadow: 0 18px 42px rgba(35, 196, 221, 0.22);
}

.standalone-login .secondary {
  border: 1px solid rgba(88, 202, 230, 0.45);
  color: #e5f4fb;
  background: rgba(8, 22, 39, 0.78);
}

.standalone-login .primary:hover,
.standalone-login .secondary:hover,
.standalone-login .primary:focus-visible,
.standalone-login .secondary:focus-visible {
  transform: translateY(-1px);
}

.standalone-login .login-page-link {
  justify-self: center;
  margin-top: 4px;
  color: #42f1e3 !important;
  font-weight: 900;
}

.standalone-login .form-error {
  border: 1px solid rgba(66, 241, 227, 0.22);
  border-radius: 14px;
  background: rgba(36, 214, 206, 0.08);
  color: #d7edf7;
}

.site-footer strong,
.app-site-footer strong,
.legal-site-footer strong,
#purchaseShell .site-footer strong {
  color: #f0f8ff !important;
  text-shadow: 0 0 22px rgba(66, 241, 227, 0.18);
}


/* === Customer login layout hard fix 2026-06-07 === */
body:has(.login-page-shell) {
  min-height: 100vh !important;
  background:
    radial-gradient(circle at 78% 15%, rgba(30, 197, 214, 0.22), transparent 28rem),
    linear-gradient(180deg, #07111f 0%, #050b16 100%) !important;
  color: #edf8ff !important;
}

body:has(.login-page-shell) .purchase-shell.login-page-shell {
  min-height: 100vh !important;
  padding: clamp(22px, 4vw, 56px) !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
}

body:has(.login-page-shell) .standalone-login.login-panel {
  width: min(940px, calc(100vw - 36px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr) !important;
  gap: clamp(24px, 4vw, 54px) !important;
  align-items: center !important;
  padding: clamp(28px, 4vw, 54px) !important;
  border: 1px solid rgba(66, 241, 227, 0.34) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(46, 219, 237, 0.16), transparent 20rem),
    linear-gradient(145deg, rgba(8, 22, 39, 0.96), rgba(5, 13, 26, 0.99)) !important;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  overflow: hidden !important;
}

body:has(.login-page-shell) .standalone-login.login-panel > div:first-child,
body:has(.login-page-shell) .standalone-login.login-panel > form {
  min-width: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

body:has(.login-page-shell) .standalone-login .eyebrow {
  margin: 0 0 18px !important;
  color: #42f1e3 !important;
  border-color: rgba(66, 241, 227, 0.58) !important;
  background: rgba(36, 214, 206, 0.10) !important;
}

body:has(.login-page-shell) .standalone-login h1 {
  max-width: 11ch !important;
  margin: 0 0 20px !important;
  color: #f4fbff !important;
  -webkit-text-fill-color: #f4fbff !important;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem) !important;
  font-weight: 950 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 24px 60px rgba(66, 241, 227, 0.08) !important;
}

body:has(.login-page-shell) .standalone-login p {
  max-width: 38ch !important;
  margin: 0 !important;
  color: rgba(204, 223, 238, 0.80) !important;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem) !important;
  line-height: 1.65 !important;
}

body:has(.login-page-shell) .standalone-login .login-form {
  margin: 0 !important;
  display: grid !important;
  gap: 15px !important;
}

body:has(.login-page-shell) .standalone-login .field {
  display: grid !important;
  gap: 7px !important;
}

body:has(.login-page-shell) .standalone-login .field span,
body:has(.login-page-shell) .standalone-login .login-form label > span {
  color: rgba(213, 232, 244, 0.92) !important;
  font-weight: 850 !important;
}

body:has(.login-page-shell) .standalone-login input,
body:has(.login-page-shell) .standalone-login select {
  width: 100% !important;
  min-height: 54px !important;
  border: 1px solid rgba(91, 207, 236, 0.52) !important;
  border-radius: 15px !important;
  background: rgba(3, 12, 24, 0.78) !important;
  color: #f1f8ff !important;
}

body:has(.login-page-shell) .standalone-login .password-field-wrapper input {
  padding-right: 56px !important;
}

body:has(.login-page-shell) .standalone-login .password-toggle-button {
  right: 10px !important;
  color: #42f1e3 !important;
  background: rgba(66, 241, 227, 0.10) !important;
}

body:has(.login-page-shell) .standalone-login .primary,
body:has(.login-page-shell) .standalone-login .secondary {
  width: 100% !important;
  min-height: 54px !important;
  border-radius: 999px !important;
  font-weight: 950 !important;
}

body:has(.login-page-shell) .standalone-login .login-page-link {
  justify-self: center !important;
  color: #42f1e3 !important;
  font-weight: 950 !important;
}

body:has(.login-page-shell) .site-footer strong,
body:has(.login-page-shell) .app-site-footer strong,
body:has(.login-page-shell) .legal-site-footer strong,
.site-footer strong,
.app-site-footer strong,
.legal-site-footer strong {
  color: #f3fbff !important;
}

@media (max-width: 780px) {
  body:has(.login-page-shell) .standalone-login.login-panel {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  body:has(.login-page-shell) .standalone-login h1 {
    max-width: 100% !important;
    font-size: clamp(2.1rem, 12vw, 3.2rem) !important;
  }
}


/* === Login headline h3 scale 2026-06-08 === */
body:has(.login-page-shell) .standalone-login h1 {
  max-width: 100% !important;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

@media (max-width: 780px) {
  body:has(.login-page-shell) .standalone-login h1 {
    font-size: clamp(1.35rem, 7vw, 1.9rem) !important;
  }
}


/* === Login secondary button readability 2026-06-08 === */
body:has(.login-page-shell) .standalone-login .secondary,
body:has(.login-page-shell) .standalone-login #resetButton {
  color: #e9f8ff !important;
  -webkit-text-fill-color: #e9f8ff !important;
  border-color: rgba(83, 222, 240, 0.72) !important;
  background:
    linear-gradient(135deg, rgba(17, 42, 65, 0.96), rgba(8, 24, 42, 0.98)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 30px rgba(0,0,0,0.18) !important;
  text-shadow: none !important;
}

body:has(.login-page-shell) .standalone-login .secondary:hover,
body:has(.login-page-shell) .standalone-login #resetButton:hover,
body:has(.login-page-shell) .standalone-login .secondary:focus-visible,
body:has(.login-page-shell) .standalone-login #resetButton:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(66, 241, 227, 0.95) !important;
  background:
    linear-gradient(135deg, rgba(24, 58, 86, 0.98), rgba(9, 32, 52, 1)) !important;
}


/* === Legal back-to-top readable text 2026-06-08 === */
.legal-back-to-top,
body:has(.legal-page) .legal-back-to-top {
  color: #f3fbff !important;
  -webkit-text-fill-color: #f3fbff !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.34) !important;
}

.legal-back-to-top:hover,
.legal-back-to-top:focus-visible,
body:has(.legal-page) .legal-back-to-top:hover,
body:has(.legal-page) .legal-back-to-top:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}


/* === Subtle animated homepage background 2026-06-08 === */
body:has(#purchaseShell:not([hidden])) {
  overflow-x: hidden;
}

.sg-ambient-glow,
.sg-floor-grid,
.sg-ambient-panels,
.sg-ambient-panel,
.sg-data-lines,
.sg-scanline,
.sg-bg-vignette {
  position: fixed;
  pointer-events: none;
}

.sg-ambient-glow {
  z-index: -3;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .34;
  animation: sgAmbientPulse 11s ease-in-out infinite;
}

.sg-ambient-glow-1 {
  width: 560px;
  height: 560px;
  top: -170px;
  left: -120px;
  background: radial-gradient(circle, rgba(66, 241, 227, .20), transparent 70%);
}

.sg-ambient-glow-2 {
  width: 760px;
  height: 500px;
  right: -180px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(33, 157, 224, .22), transparent 72%);
  animation-delay: -4s;
}

.sg-ambient-glow-3 {
  width: 410px;
  height: 410px;
  top: 34%;
  left: 58%;
  background: radial-gradient(circle, rgba(66, 241, 227, .09), transparent 70%);
  animation-delay: -7s;
}

@keyframes sgAmbientPulse {
  0%, 100% { transform: scale(1); opacity: .26; }
  50% { transform: scale(1.09); opacity: .48; }
}

.sg-floor-grid {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  height: 54%;
  opacity: .10;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.85), transparent 78%);
  mask-image: linear-gradient(to top, rgba(0,0,0,.85), transparent 78%);
}

.sg-floor-grid svg,
.sg-data-lines svg {
  width: 100%;
  height: 100%;
}

.sg-ambient-panels {
  inset: 0;
  z-index: -2;
  opacity: .55;
}

.sg-ambient-panel {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(66, 241, 227, .13);
  border-radius: 18px;
  background: rgba(8, 30, 50, .20);
  box-shadow: 0 0 28px rgba(66, 241, 227, .035), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: sgPanelFloat 22s ease-in-out infinite;
}

.sg-ambient-panel span {
  width: 9px;
  min-height: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(66, 241, 227, .62), rgba(33, 157, 224, .55));
  animation: sgBarSoft 4s ease-in-out infinite alternate;
}

.sg-ambient-panel-1 {
  width: 235px;
  height: 285px;
  top: 12%;
  left: 4%;
  opacity: .34;
}

.sg-ambient-panel-2 {
  width: 180px;
  height: 230px;
  top: 17%;
  right: 6%;
  opacity: .28;
  animation-delay: -6s;
}

.sg-ambient-panel-3 {
  width: 150px;
  height: 190px;
  bottom: 18%;
  left: 10%;
  opacity: .22;
  animation-delay: -11s;
}

@keyframes sgPanelFloat {
  0%, 100% { transform: perspective(900px) rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-14deg) rotateX(7deg) translateY(-14px); }
}

@keyframes sgBarSoft {
  from { transform: scaleY(.72); }
  to { transform: scaleY(1); }
}

.sg-data-lines {
  inset: 0;
  z-index: -2;
  opacity: .48;
}

.sg-scanline {
  left: 0;
  right: 0;
  height: 1px;
  z-index: -1;
  opacity: .38;
  background: linear-gradient(90deg, transparent, rgba(66, 241, 227, .52), transparent);
  box-shadow: 0 0 10px rgba(66, 241, 227, .32);
  animation: sgScanline 9s linear infinite;
}

@keyframes sgScanline {
  0% { top: -2px; opacity: 0; }
  12% { opacity: .34; }
  88% { opacity: .34; }
  100% { top: 100%; opacity: 0; }
}

.sg-bg-vignette {
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 46%, rgba(5, 13, 26, .54) 100%);
}

@media (max-width: 760px) {
  .sg-ambient-panel,
  .sg-data-lines,
  .sg-floor-grid {
    opacity: .16;
  }

  .sg-ambient-panel-1,
  .sg-ambient-panel-2,
  .sg-ambient-panel-3 {
    transform: scale(.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-ambient-glow,
  .sg-ambient-panel,
  .sg-ambient-panel span,
  .sg-scanline {
    animation: none !important;
  }
}


/* === Make homepage ambient animation visible 2026-06-08 === */
body:has(#purchaseShell:not([hidden])) .sg-bg-stage {
  z-index: 0 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-bg-grid,
body:has(#purchaseShell:not([hidden])) .sg-floor-grid,
body:has(#purchaseShell:not([hidden])) .sg-ambient-panels,
body:has(#purchaseShell:not([hidden])) .sg-data-lines,
body:has(#purchaseShell:not([hidden])) .sg-particles,
body:has(#purchaseShell:not([hidden])) .sg-scanline,
body:has(#purchaseShell:not([hidden])) .sg-bg-vignette,
body:has(#purchaseShell:not([hidden])) .sg-ambient-glow {
  z-index: 0 !important;
}

body:has(#purchaseShell:not([hidden])) #purchaseShell {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

body:has(#purchaseShell:not([hidden])) #purchaseShell .purchase-topbar,
body:has(#purchaseShell:not([hidden])) #purchaseShell .purchase-main,
body:has(#purchaseShell:not([hidden])) #purchaseShell .site-footer {
  position: relative !important;
  z-index: 2 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-bg-grid {
  opacity: 0.42 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-floor-grid {
  opacity: 0.18 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-ambient-panels {
  opacity: 0.82 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-data-lines {
  opacity: 0.7 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-scanline {
  opacity: 0.55 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-particles {
  opacity: 0.88 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-ambient-glow {
  opacity: 0.52 !important;
}

body:has(#purchaseShell:not([hidden])) .sg-bg-vignette {
  opacity: 0.72 !important;
}


/* === Disable ambient horizontal scanline 2026-06-08 === */
.sg-scanline,
body:has(#purchaseShell:not([hidden])) .sg-scanline {
  display: none !important;
  animation: none !important;
}

/* === Customer areas aligned with SolvGuard Wissen design 2026-06-09 === */
#customerApp {
  --customer-bg: #061528;
  --customer-bg-elevated: #0a1f38;
  --customer-card: #0e2641;
  --customer-card-soft: #102c4a;
  --customer-border: rgba(255, 255, 255, 0.08);
  --customer-border-strong: rgba(20, 184, 199, 0.35);
  --customer-text: #e8eef5;
  --customer-muted: #93a8bf;
  --customer-dim: #6e85a0;
  --customer-accent: #14b8c7;
  --customer-accent-strong: #1dd1e1;
  --customer-accent-soft: rgba(20, 184, 199, 0.12);
  --customer-warn: #f5c227;
  --customer-danger: #ff675b;
  --customer-good: #36d67a;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0, rgba(20, 184, 199, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(245, 194, 39, 0.08), transparent 24rem),
    linear-gradient(180deg, #061528 0%, #07182c 48%, #061528 100%) !important;
  color: var(--customer-text) !important;
}

#customerApp *,
#customerApp *::before,
#customerApp *::after {
  letter-spacing: 0;
}

#customerApp .workspace,
#customerApp main {
  min-width: 0;
  background: transparent !important;
}

#customerApp .sidebar {
  border-right: 1px solid var(--customer-border) !important;
  background: rgba(6, 21, 40, 0.92) !important;
  color: var(--customer-text) !important;
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px);
}

#customerApp .topbar {
  border-bottom: 1px solid var(--customer-border) !important;
  background: rgba(6, 21, 40, 0.82) !important;
  color: var(--customer-text) !important;
  backdrop-filter: blur(10px);
}

#customerApp .brand strong,
#customerApp .topbar h1,
#customerApp .panel h2,
#customerApp .metric-card strong,
#customerApp .action-summary strong,
#customerApp .product-card-head strong,
#customerApp .navigator-side strong,
#customerApp .next-best-action strong,
#customerApp .tradeoff-grid strong,
#customerApp .driver-list strong {
  color: var(--customer-text) !important;
  text-shadow: none !important;
}

#customerApp .brand span,
#customerApp .topbar p,
#customerApp .panel p,
#customerApp .metric-card small,
#customerApp .metric-card > span,
#customerApp .action-summary p,
#customerApp .action-summary span,
#customerApp .analysis-intro,
#customerApp .product-card p,
#customerApp .product-card small,
#customerApp .driver-list small,
#customerApp .navigator-side p,
#customerApp .next-best-action p,
#customerApp .tradeoff-grid p,
#customerApp .form-hint,
#customerApp .help-text,
#customerApp .device-advice,
#customerApp .account-hint {
  color: var(--customer-muted) !important;
  opacity: 1 !important;
}

#customerApp .screen-grid,
#customerApp .dashboard-layout,
#customerApp .customer-dashboard-body {
  grid-auto-flow: dense;
  align-items: stretch;
}

#customerApp .panel,
#customerApp .panel.wide,
#customerApp .metric-card,
#customerApp .chart-panel,
#customerApp .action-summary,
#customerApp .result-tile,
#customerApp .summary-card,
#customerApp .scenario-card,
#customerApp .workflow-case,
#customerApp .workflow-dashboard-grid > div,
#customerApp .product-card,
#customerApp .product-analysis-empty,
#customerApp .account-section,
#customerApp .account-summary div,
#customerApp .form-section,
#customerApp .output-card,
#customerApp .premium-navigator,
#customerApp .navigator-side,
#customerApp .next-best-action,
#customerApp .tradeoff-grid article,
#customerApp .driver-grid section,
#customerApp .driver-list div,
#customerApp .db-analysis-grid article {
  min-width: 0 !important;
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(14, 38, 65, 0.98), rgba(10, 31, 56, 0.94)) !important;
  color: var(--customer-text) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22) !important;
}

#customerApp .panel:hover,
#customerApp .metric-card:hover,
#customerApp .product-card:hover,
#customerApp .workflow-dashboard-grid > div:hover {
  border-color: var(--customer-border-strong) !important;
}

#customerApp .panel-head {
  align-items: flex-start;
}

#customerApp .tier-label,
#customerApp .lock-badge,
#customerApp .navigator-kicker,
#customerApp .next-best-action > span,
#customerApp .tradeoff-grid span,
#customerApp .product-card-head span {
  border-color: rgba(20, 184, 199, 0.22) !important;
  background: var(--customer-accent-soft) !important;
  color: var(--customer-accent-strong) !important;
}

#customerApp .step-button {
  color: var(--customer-muted) !important;
}

#customerApp .step-button span {
  border-color: rgba(20, 184, 199, 0.22) !important;
  color: var(--customer-accent-strong) !important;
}

#customerApp .step-button:hover,
#customerApp .step-button.active {
  background: var(--customer-accent-soft) !important;
  color: var(--customer-text) !important;
}

#customerApp .step-button.active span {
  background: var(--customer-accent) !important;
  color: #061528 !important;
}

#customerApp input,
#customerApp select,
#customerApp textarea {
  border-color: var(--customer-border) !important;
  background: rgba(6, 21, 40, 0.82) !important;
  color: var(--customer-text) !important;
  caret-color: var(--customer-accent-strong);
}

#customerApp input::placeholder,
#customerApp textarea::placeholder {
  color: var(--customer-dim) !important;
  opacity: 1;
}

#customerApp label span,
#customerApp .field span,
#customerApp .input-label {
  color: var(--customer-muted) !important;
}

#customerApp button,
#customerApp .secondary,
#customerApp .ghost,
#customerApp .icon-button,
#customerApp .text-export-button,
#customerApp .version-button,
#customerApp .period-chooser label,
#customerApp .account-plan-button {
  border-color: rgba(20, 184, 199, 0.22) !important;
  background: rgba(10, 31, 56, 0.78) !important;
  color: var(--customer-text) !important;
}

#customerApp .primary,
#customerApp button.primary,
#customerApp .version-button.active,
#customerApp .period-chooser label:has(input:checked),
#customerApp .account-plan-button.active {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--customer-accent), var(--customer-accent-strong)) !important;
  color: #061528 !important;
}

#customerApp .pill.good,
#customerApp .pill.warning,
#customerApp .pill.danger {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.04) !important;
}

#customerApp .pill.good { color: var(--customer-good) !important; }
#customerApp .pill.warning { color: var(--customer-warn) !important; }
#customerApp .pill.danger { color: var(--customer-danger) !important; }

#customerApp .customer-dashboard-arranged,
#customerApp .dashboard-layout.premium-dashboard-arranged {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
}

#customerApp .customer-dashboard-metrics,
#customerApp .premium-dashboard-metrics {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
  width: 100% !important;
}

#customerApp .customer-dashboard-metrics > .metric-card,
#customerApp .premium-dashboard-metrics > .metric-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 132px;
  grid-column: auto !important;
}

#customerApp .customer-dashboard-body {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

#customerApp .customer-dashboard-body > .action-summary {
  grid-column: 1 / -1;
  order: 1;
}

#customerApp .customer-dashboard-body > .chart-panel {
  grid-column: span 8;
  order: 2;
}

#customerApp .customer-dashboard-body > .panel:not(.wide):not(.chart-panel):not(.export-panel) {
  grid-column: span 4;
  order: 3;
}

#customerApp .customer-dashboard-body > .panel.wide:not(.product-analysis-panel) {
  grid-column: span 8;
  order: 4;
}

#customerApp .customer-dashboard-body > .export-panel {
  grid-column: span 4;
  order: 5;
}

#customerApp .customer-dashboard-body > .product-analysis-panel {
  grid-column: 1 / -1;
  order: 6;
}

#customerApp .premium-dashboard-columns {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr) !important;
  gap: 16px !important;
}

#customerApp .premium-dashboard-main,
#customerApp .premium-dashboard-side {
  gap: 16px !important;
}

#customerApp .bar-chart.liquidity-forecast {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--forecast-count), minmax(0, 1fr));
  gap: clamp(5px, 1vw, 12px);
  align-items: end;
  min-height: clamp(236px, 32vw, 320px);
  padding: 26px 4px 2px;
  overflow: hidden;
}

#customerApp .bar-chart.liquidity-forecast::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 168, 191, 0.34), transparent);
}

#customerApp .bar-chart.liquidity-forecast .bar-item {
  position: relative;
  display: grid;
  grid-template-rows: minmax(28px, auto) minmax(0, 1fr) auto;
  align-items: end;
  gap: 7px;
  min-width: 0;
  min-height: 210px;
}

#customerApp .bar-chart.liquidity-forecast .bar {
  justify-self: stretch;
  align-self: end;
  display: block;
  min-width: 0;
  min-height: 10px;
  height: calc(var(--bar-scale) * clamp(142px, 22vw, 218px));
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--customer-good), rgba(54, 214, 122, 0.52)) !important;
  box-shadow: 0 0 22px rgba(54, 214, 122, 0.18) !important;
  animation: forecastBarIn 520ms ease both;
  animation-delay: calc(var(--bar-index) * 28ms);
}

#customerApp .bar-chart.liquidity-forecast .bar.warning {
  background: linear-gradient(180deg, var(--customer-warn), rgba(245, 194, 39, 0.5)) !important;
  box-shadow: 0 0 22px rgba(245, 194, 39, 0.18) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar.danger,
#customerApp .bar-chart.liquidity-forecast .bar.negative {
  background: linear-gradient(180deg, var(--customer-danger), rgba(255, 103, 91, 0.46)) !important;
  box-shadow: 0 0 22px rgba(255, 103, 91, 0.18) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar-value {
  align-self: end;
  color: var(--customer-muted);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

#customerApp .bar-chart.liquidity-forecast .bar-label {
  color: var(--customer-dim) !important;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

#customerApp .bar-chart.liquidity-forecast .bar-item.good .bar-value {
  color: #aaf2ce;
}

#customerApp .bar-chart.liquidity-forecast .bar-item.warning .bar-value {
  color: #ffe69b;
}

#customerApp .bar-chart.liquidity-forecast .bar-item.danger .bar-value {
  color: #ffc4bf;
}

@keyframes forecastBarIn {
  from {
    transform: scaleY(0.62);
    transform-origin: bottom;
    opacity: 0.55;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

#customerApp .product-analysis-grid,
#customerApp .workflow-dashboard-grid,
#customerApp .db-analysis-grid,
#customerApp .account-summary,
#customerApp .account-plan-options,
#customerApp .goods-grid,
#customerApp .scenario-grid,
#customerApp .metric-strip {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  align-items: stretch;
}

#customerApp .product-metrics {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
}

@media (max-width: 1120px) {
  #customerApp .customer-dashboard-body > .chart-panel,
  #customerApp .customer-dashboard-body > .panel:not(.wide):not(.chart-panel):not(.export-panel),
  #customerApp .customer-dashboard-body > .panel.wide:not(.product-analysis-panel),
  #customerApp .customer-dashboard-body > .export-panel,
  #customerApp .premium-dashboard-columns {
    grid-column: 1 / -1 !important;
  }

  #customerApp .premium-dashboard-columns {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  #customerApp.app-shell {
    grid-template-columns: 1fr !important;
  }

  #customerApp main {
    padding: 18px 16px 136px;
  }

  #customerApp .customer-dashboard-metrics,
  #customerApp .premium-dashboard-metrics {
    grid-template-columns: 1fr !important;
  }

  #customerApp .customer-dashboard-body,
  #customerApp .screen-grid,
  #customerApp .dashboard-layout,
  #customerApp .product-analysis-grid,
  #customerApp .workflow-dashboard-grid,
  #customerApp .db-analysis-grid,
  #customerApp .account-summary,
  #customerApp .account-plan-options,
  #customerApp .goods-grid,
  #customerApp .scenario-grid,
  #customerApp .metric-strip {
    grid-template-columns: 1fr !important;
  }

  #customerApp .customer-dashboard-body > *,
  #customerApp .screen-grid > *,
  #customerApp .dashboard-layout > * {
    grid-column: 1 / -1 !important;
  }

  #customerApp .bar-chart.liquidity-forecast {
    gap: 4px;
    min-height: 226px;
    padding-top: 10px;
  }

  #customerApp .bar-chart.liquidity-forecast .bar-value {
    display: none;
  }

  #customerApp .bar-chart.liquidity-forecast .bar-item {
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #customerApp .bar-chart.liquidity-forecast .bar {
    animation: none !important;
  }
}

/* === Customer workspace final dark alignment 2026-06-09 === */
#customerApp {
  --customer-bg: #071524;
  --customer-bg-elevated: #0a2036;
  --customer-card: #0e2a45;
  --customer-card-2: #102f4c;
  --customer-card-strong: #123656;
  --customer-border: rgba(116, 182, 213, 0.18);
  --customer-border-strong: rgba(32, 205, 219, 0.46);
  --customer-text: #f2f8ff;
  --customer-muted: #a8bed0;
  --customer-dim: #7690a5;
  --customer-accent: #19c6d4;
  --customer-accent-strong: #35e0e8;
  --customer-good: #49d989;
  --customer-warn: #f4c84a;
  --customer-danger: #ff6f63;
}

#customerApp,
#customerApp .workspace,
#customerApp main,
#customerApp .screen,
#customerApp .screen.active {
  background: linear-gradient(180deg, #071524 0%, #081a2d 46%, #061422 100%) !important;
  color: var(--customer-text) !important;
}

#customerApp.app-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(6, 19, 34, 0.98), rgba(7, 21, 36, 0.96)) !important;
}

#customerApp main {
  overflow-x: hidden;
}

#customerApp .topbar {
  min-width: 0;
  border-bottom: 1px solid rgba(116, 182, 213, 0.16) !important;
  background: rgba(6, 19, 34, 0.88) !important;
}

#customerApp .sidebar {
  background: linear-gradient(180deg, #061626, #071a2c) !important;
}

#customerApp .screen-grid,
#customerApp .dashboard-layout,
#customerApp .premium-structure-layout,
#customerApp .premium-structure-main,
#customerApp .premium-structure-side,
#customerApp .premium-dashboard-top,
#customerApp .premium-dashboard-columns,
#customerApp .premium-dashboard-main,
#customerApp .premium-dashboard-side {
  min-width: 0 !important;
}

#customerApp .screen-grid,
#customerApp .dashboard-layout {
  gap: 18px !important;
}

#customerApp [data-screen="premium-struktur"] > .screen-grid {
  display: block !important;
}

#customerApp .premium-structure-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.34fr) !important;
  gap: 18px !important;
  align-items: start !important;
  width: 100% !important;
}

#customerApp .premium-structure-main,
#customerApp .premium-structure-side {
  display: grid !important;
  gap: 18px !important;
}

#customerApp .premium-structure-main > *,
#customerApp .premium-structure-side > * {
  width: 100% !important;
}

#customerApp .screen[data-screen="premium-simulation"] .screen-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.34fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

#customerApp .screen[data-screen="premium-simulation"] .screen-grid > .panel.wide {
  grid-column: 1 / 2 !important;
}

#customerApp .screen[data-screen="premium-simulation"] .screen-grid > .panel:not(.wide) {
  grid-column: 2 / 3 !important;
  grid-row: span 2;
}

#customerApp .panel,
#customerApp .panel.wide,
#customerApp .chart-panel,
#customerApp .metric-card,
#customerApp .action-summary,
#customerApp .premium-navigator,
#customerApp .navigator-side,
#customerApp .next-best-action,
#customerApp .tradeoff-grid article,
#customerApp .driver-grid section,
#customerApp .driver-list div,
#customerApp .summary-card,
#customerApp .output-box,
#customerApp .field-output,
#customerApp .kpi-box,
#customerApp .metric-stack div,
#customerApp .comparison-grid article,
#customerApp .recommendations div,
#customerApp .action-list div,
#customerApp .product-card,
#customerApp .db-analysis-grid article {
  min-width: 0 !important;
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(14, 42, 69, 0.98), rgba(9, 30, 52, 0.96)) !important;
  color: var(--customer-text) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26) !important;
}

#customerApp .panel-head {
  min-width: 0;
  gap: 10px;
}

#customerApp .panel-head h2,
#customerApp .panel h2,
#customerApp .panel h3,
#customerApp .chart-panel h2,
#customerApp .metric-card strong,
#customerApp .comparison-grid strong,
#customerApp .metric-stack strong,
#customerApp .recommendations b,
#customerApp .recommendations strong,
#customerApp .action-list strong,
#customerApp .product-card-head strong {
  color: var(--customer-text) !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

#customerApp .panel p,
#customerApp .panel span,
#customerApp .chart-panel p,
#customerApp .metric-card span,
#customerApp .metric-card small,
#customerApp .comparison-grid small,
#customerApp .metric-stack span,
#customerApp .recommendations small,
#customerApp .action-list span,
#customerApp .analysis-intro,
#customerApp .settings-note,
#customerApp label span,
#customerApp .field span {
  color: var(--customer-muted) !important;
  opacity: 1 !important;
}

#customerApp .intro-band,
#customerApp .hero-strip,
#customerApp .intro-card {
  overflow: hidden !important;
  border: 1px solid rgba(53, 224, 232, 0.28) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(225, 247, 255, 0.96), rgba(190, 231, 240, 0.88)) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2) !important;
}

#customerApp .intro-band strong,
#customerApp .intro-band span,
#customerApp .hero-strip *,
#customerApp .intro-card * {
  color: #0a1f35 !important;
}

#customerApp .intro-band .proof-strip span,
#customerApp .proof-strip span {
  border-color: rgba(25, 198, 212, 0.36) !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: #0b5d75 !important;
}

#customerApp .mini-result {
  border: 1px solid rgba(25, 198, 212, 0.34) !important;
  border-radius: 8px !important;
  background: linear-gradient(145deg, #21c9d9, #a8ebf3) !important;
  color: #061524 !important;
  box-shadow: none !important;
}

#customerApp .mini-result span,
#customerApp .mini-result strong {
  color: #061524 !important;
}

#customerApp .period-chooser {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
}

#customerApp .period-chooser > span {
  color: var(--customer-muted) !important;
}

#customerApp .period-chooser label,
#customerApp button,
#customerApp .secondary,
#customerApp .ghost,
#customerApp .icon-button,
#customerApp .text-export-button,
#customerApp .version-button,
#customerApp .workflow-tab,
#customerApp .account-plan-button {
  border: 1px solid rgba(53, 224, 232, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(9, 30, 52, 0.82) !important;
  color: var(--customer-text) !important;
  box-shadow: none !important;
}

#customerApp button:hover,
#customerApp .secondary:hover,
#customerApp .ghost:hover,
#customerApp .period-chooser label:hover {
  border-color: rgba(53, 224, 232, 0.5) !important;
  background: rgba(16, 47, 76, 0.92) !important;
}

#customerApp .primary,
#customerApp button.primary,
#customerApp .version-button.active,
#customerApp .workflow-tab.active,
#customerApp .period-chooser label:has(input:checked) {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--customer-accent), var(--customer-accent-strong)) !important;
  color: #061524 !important;
}

#customerApp input,
#customerApp select,
#customerApp textarea,
#customerApp .money-input {
  min-width: 0 !important;
  border: 1px solid rgba(151, 190, 213, 0.28) !important;
  border-radius: 8px !important;
  background: rgba(5, 18, 32, 0.88) !important;
  color: var(--customer-text) !important;
  box-shadow: none !important;
}

#customerApp input[type="range"] {
  min-height: 28px !important;
  border: 0 !important;
  background: transparent !important;
  accent-color: var(--customer-accent);
}

#customerApp input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--customer-accent), rgba(225, 241, 249, 0.82));
}

#customerApp input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border: 3px solid #102f4c;
  border-radius: 50%;
  background: var(--customer-accent-strong);
  box-shadow: 0 0 0 4px rgba(25, 198, 212, 0.12);
}

#customerApp .plus-revenue-slider,
#customerApp .premium-revenue-slider,
#customerApp .revenue-slider,
#customerApp .gross-revenue-card {
  width: min(520px, 100%) !important;
  margin-top: 16px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(53, 224, 232, 0.26) !important;
  border-radius: 8px !important;
  background: linear-gradient(145deg, rgba(225, 247, 255, 0.96), rgba(192, 233, 241, 0.9)) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

#customerApp .plus-revenue-slider label,
#customerApp .premium-revenue-slider label,
#customerApp .revenue-slider label,
#customerApp .gross-revenue-card label,
#customerApp .plus-revenue-slider .slider-head strong,
#customerApp .premium-revenue-slider .slider-head strong,
#customerApp .revenue-slider .slider-head strong,
#customerApp .gross-revenue-card .slider-head strong {
  color: #0a1f35 !important;
}

#customerApp .plus-revenue-slider .slider-head strong,
#customerApp .premium-revenue-slider .slider-head strong,
#customerApp .revenue-slider .slider-head strong,
#customerApp .gross-revenue-card .slider-head strong {
  font-size: clamp(27px, 2.3vw, 38px) !important;
}

#customerApp .proplus-table {
  max-width: 100% !important;
  overflow-x: auto !important;
  scrollbar-color: rgba(25, 198, 212, 0.8) rgba(5, 18, 32, 0.9);
}

#customerApp .proplus-row,
#customerApp .plus-wg-row,
#customerApp .premium-revenue-row,
#customerApp .premium-wg-row,
#customerApp .premium-row {
  border-bottom: 1px solid rgba(116, 182, 213, 0.16) !important;
  background: transparent !important;
}

#customerApp .premium-revenue-row.head,
#customerApp .proplus-row.head,
#customerApp .premium-row.head {
  color: var(--customer-muted) !important;
}

#customerApp .premium-revenue-row:not(.head),
#customerApp .plus-wg-row {
  min-height: 54px !important;
}

#customerApp .premium-revenue-name,
#customerApp .plus-wg-name,
#customerApp .wg-name-lock input {
  background: rgba(5, 18, 32, 0.88) !important;
  color: var(--customer-text) !important;
}

#customerApp .premium-revenue-share-value,
#customerApp .premium-revenue-cost-value,
#customerApp .premium-revenue-gross,
#customerApp .plus-wg-share-value,
#customerApp .plus-wg-cost-value,
#customerApp .plus-wg-gross,
#customerApp .wg-margin {
  justify-content: flex-start !important;
  border: 1px solid rgba(151, 190, 213, 0.28) !important;
  border-radius: 8px !important;
  background: rgba(10, 31, 56, 0.86) !important;
  color: var(--customer-text) !important;
}

#customerApp .share-lock-button,
#customerApp .remove-plus-wg,
#customerApp .remove-premium-wg,
#customerApp .bin-button {
  border-radius: 8px !important;
}

#customerApp .metric-stack {
  gap: 10px !important;
}

#customerApp .metric-stack div,
#customerApp .comparison-grid article,
#customerApp .recommendations div,
#customerApp .action-list div {
  background:
    linear-gradient(145deg, rgba(222, 244, 251, 0.96), rgba(194, 232, 240, 0.9)) !important;
  color: #0a1f35 !important;
}

#customerApp .metric-stack span,
#customerApp .comparison-grid span,
#customerApp .comparison-grid small,
#customerApp .recommendations small,
#customerApp .action-list span {
  color: #415f73 !important;
}

#customerApp .metric-stack strong,
#customerApp .comparison-grid strong,
#customerApp .recommendations b,
#customerApp .recommendations strong,
#customerApp .action-list strong {
  color: #0a1f35 !important;
}

#customerApp .action-summary {
  border-left: 5px solid var(--customer-warn) !important;
  background:
    linear-gradient(90deg, rgba(18, 54, 86, 0.98), rgba(12, 35, 61, 0.96)) !important;
}

#customerApp .action-summary.good {
  border-left-color: var(--customer-good) !important;
}

#customerApp .action-summary.danger {
  border-left-color: var(--customer-danger) !important;
}

#customerApp .premium-dashboard-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.32fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

#customerApp .premium-dashboard-main,
#customerApp .premium-dashboard-side {
  display: grid !important;
  gap: 18px !important;
}

#customerApp .premium-dashboard-top {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

#customerApp .premium-dashboard-top > .action-summary {
  width: 100% !important;
  margin: 0 !important;
}

#customerApp .premium-dashboard-main > .chart-panel {
  order: 0;
}

#customerApp .premium-dashboard-main > .premium-dashboard-metrics {
  order: 1;
}

#customerApp .premium-dashboard-main > .panel:not(.chart-panel):not(.premium-navigator),
#customerApp .premium-dashboard-main > .product-analysis-panel {
  order: 2;
}

#customerApp .premium-dashboard-main > .premium-navigator {
  order: 5;
}

#customerApp .premium-dashboard-side .panel,
#customerApp .premium-structure-side .panel {
  position: sticky;
  top: 82px;
}

#customerApp .premium-dashboard-side .panel + .panel,
#customerApp .premium-structure-side .panel + .panel {
  top: auto;
}

#customerApp .premium-dashboard-metrics,
#customerApp .customer-dashboard-metrics {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

#customerApp .premium-dashboard-metrics > .metric-card,
#customerApp .customer-dashboard-metrics > .metric-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 118px !important;
}

#customerApp .premium-dashboard-metrics > .metric-card strong,
#customerApp .customer-dashboard-metrics > .metric-card strong {
  font-size: clamp(22px, 1.65vw, 30px) !important;
  line-height: 1.05 !important;
}

#customerApp .premium-navigator {
  padding: 18px !important;
}

#customerApp .premium-navigator .panel-head {
  margin-bottom: 12px !important;
}

#customerApp .navigator-balance-grid,
#customerApp .driver-grid,
#customerApp .tradeoff-grid {
  gap: 12px !important;
}

#customerApp .navigator-side,
#customerApp .next-best-action,
#customerApp .tradeoff-grid article,
#customerApp .driver-grid section,
#customerApp .driver-list div {
  padding: 14px !important;
}

#customerApp .navigator-side strong,
#customerApp .next-best-action strong,
#customerApp .tradeoff-grid strong {
  font-size: clamp(20px, 1.8vw, 28px) !important;
}

#customerApp .driver-list {
  gap: 8px !important;
}

#customerApp .product-analysis-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)) !important;
  gap: 12px !important;
}

#customerApp .product-card {
  align-content: start !important;
}

#customerApp .product-metrics {
  grid-template-columns: 1fr !important;
}

#customerApp .bar-chart.liquidity-forecast {
  isolation: isolate;
  min-height: clamp(250px, 29vw, 340px) !important;
  padding: 28px 10px 8px !important;
  border: 1px solid rgba(53, 224, 232, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 31, 56, 0.82), rgba(5, 18, 32, 0.68)) !important;
}

#customerApp .chart-panel::before,
#customerApp .bar-chart.liquidity-forecast::after {
  display: none !important;
}

#customerApp .bar-chart.liquidity-forecast .bar-item {
  min-height: 218px !important;
}

#customerApp .bar-chart.liquidity-forecast .bar {
  border-radius: 999px 999px 4px 4px !important;
  height: calc(var(--bar-scale) * clamp(132px, 18vw, 214px)) !important;
  background:
    linear-gradient(180deg, #85edac 0%, #2abc73 78%, rgba(42, 188, 115, 0.72) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 0 0 1px rgba(162, 255, 202, 0.2),
    0 18px 34px rgba(39, 196, 115, 0.18) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar.warning {
  background: linear-gradient(180deg, #ffe58c, #e5ae23) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar.danger,
#customerApp .bar-chart.liquidity-forecast .bar.negative {
  background: linear-gradient(180deg, #ff9b91, #e8554b) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar-label {
  display: inline-grid;
  justify-self: center;
  min-width: 42px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(226, 239, 247, 0.78);
  color: #48677d !important;
}

#customerApp .bar-chart.liquidity-forecast .bar-value {
  color: #a7ead0 !important;
  font-weight: 900 !important;
}

#customerApp .bottom-actions {
  border-top: 1px solid rgba(116, 182, 213, 0.18) !important;
  background: rgba(6, 19, 34, 0.9) !important;
  backdrop-filter: blur(12px);
}

@media (max-width: 1180px) {
  #customerApp .premium-structure-layout,
  #customerApp .screen[data-screen="premium-simulation"] .screen-grid,
  #customerApp .premium-dashboard-columns {
    grid-template-columns: 1fr !important;
  }

  #customerApp .screen[data-screen="premium-simulation"] .screen-grid > .panel,
  #customerApp .screen[data-screen="premium-simulation"] .screen-grid > .panel.wide {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  #customerApp .premium-dashboard-side .panel,
  #customerApp .premium-structure-side .panel {
    position: static;
  }
}

@media (max-width: 860px) {
  #customerApp .intro-band {
    grid-template-columns: 1fr !important;
  }

  #customerApp .screen-grid,
  #customerApp .dashboard-layout,
  #customerApp .premium-structure-layout,
  #customerApp .premium-dashboard-columns,
  #customerApp .customer-dashboard-body {
    gap: 14px !important;
  }

  #customerApp .form-grid,
  #customerApp .form-grid.one,
  #customerApp .comparison-grid,
  #customerApp .navigator-balance-grid,
  #customerApp .driver-grid,
  #customerApp .tradeoff-grid {
    grid-template-columns: 1fr !important;
  }

  #customerApp .panel,
  #customerApp .panel.wide,
  #customerApp .chart-panel,
  #customerApp .metric-card,
  #customerApp .action-summary {
    padding: 14px !important;
  }

  #customerApp .bar-chart.liquidity-forecast {
    grid-template-columns: repeat(var(--forecast-count), minmax(18px, 1fr)) !important;
  }
}

/* Customer areas: final footer and legacy light-surface cleanup 2026-06-09 */
#customerApp .app-site-footer.site-footer {
  position: relative !important;
  isolation: auto !important;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
  width: calc(100% - 56px) !important;
  max-width: none !important;
  margin: 0 28px 96px !important;
  padding: 16px 18px !important;
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(10, 31, 56, 0.96), rgba(6, 19, 34, 0.94)) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22) !important;
  color: var(--customer-text) !important;
}

#customerApp .app-site-footer.site-footer::before {
  display: none !important;
}

#customerApp .app-site-footer.site-footer > div {
  min-width: 0 !important;
  display: grid !important;
  gap: 2px !important;
}

#customerApp .app-site-footer.site-footer strong {
  color: var(--customer-text) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

#customerApp .app-site-footer.site-footer span {
  color: var(--customer-muted) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

#customerApp .app-site-footer.site-footer nav {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 6px 10px !important;
  min-width: 0 !important;
}

#customerApp .app-site-footer.site-footer a {
  min-height: 30px !important;
  padding: 5px 8px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--customer-accent-strong) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  box-shadow: none !important;
}

#customerApp .app-site-footer.site-footer a:hover,
#customerApp .app-site-footer.site-footer a:focus-visible {
  border-color: rgba(53, 224, 232, 0.32) !important;
  background: var(--customer-accent-soft) !important;
  color: var(--customer-text) !important;
  transform: none !important;
}

#customerApp .bottom-actions {
  justify-content: flex-end !important;
  margin: 0 28px 18px !important;
  padding: 10px !important;
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background: rgba(6, 19, 34, 0.94) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2) !important;
}

#customerApp .bottom-actions button {
  border-radius: 8px !important;
}

#customerApp .sidebar-status {
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background: rgba(10, 31, 56, 0.92) !important;
  color: var(--customer-muted) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) !important;
}

#customerApp .sidebar-status span:not(.status-dot) {
  color: var(--customer-muted) !important;
}

#customerApp .sidebar-status .status-dot {
  background: var(--customer-good) !important;
  box-shadow: 0 0 0 5px rgba(54, 214, 122, 0.12), 0 0 18px rgba(54, 214, 122, 0.32) !important;
}

#customerApp .intro-band,
#customerApp .hero-strip,
#customerApp .intro-card,
#customerApp .plus-revenue-slider,
#customerApp .premium-revenue-slider,
#customerApp .revenue-slider,
#customerApp .gross-revenue-card {
  border: 1px solid var(--customer-border-strong) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(14, 42, 69, 0.98), rgba(9, 30, 52, 0.96)) !important;
  color: var(--customer-text) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24) !important;
}

#customerApp .intro-band::before,
#customerApp .intro-band::after,
#customerApp .plus-revenue-slider::before,
#customerApp .premium-revenue-slider::before {
  display: none !important;
}

#customerApp .intro-band strong,
#customerApp .hero-strip strong,
#customerApp .intro-card strong,
#customerApp .plus-revenue-slider .slider-head strong,
#customerApp .premium-revenue-slider .slider-head strong,
#customerApp .revenue-slider .slider-head strong,
#customerApp .gross-revenue-card .slider-head strong {
  color: var(--customer-text) !important;
}

#customerApp .intro-band span,
#customerApp .intro-band p,
#customerApp .hero-strip span,
#customerApp .hero-strip p,
#customerApp .intro-card span,
#customerApp .intro-card p,
#customerApp .plus-revenue-slider label,
#customerApp .premium-revenue-slider label,
#customerApp .revenue-slider label,
#customerApp .gross-revenue-card label {
  color: var(--customer-muted) !important;
}

#customerApp .intro-band .proof-strip span,
#customerApp .proof-strip span {
  border-color: rgba(53, 224, 232, 0.28) !important;
  background: var(--customer-accent-soft) !important;
  color: var(--customer-accent-strong) !important;
}

#customerApp .mini-result,
#customerApp .metric-stack div,
#customerApp .comparison-grid article,
#customerApp .recommendations div,
#customerApp .action-list div {
  border: 1px solid var(--customer-border) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(14, 42, 69, 0.98), rgba(10, 31, 56, 0.96)) !important;
  color: var(--customer-text) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) !important;
}

#customerApp .mini-result span,
#customerApp .metric-stack span,
#customerApp .comparison-grid span,
#customerApp .comparison-grid small,
#customerApp .recommendations small,
#customerApp .action-list span {
  color: var(--customer-muted) !important;
}

#customerApp .mini-result strong,
#customerApp .metric-stack strong,
#customerApp .comparison-grid strong,
#customerApp .recommendations b,
#customerApp .recommendations strong,
#customerApp .action-list strong {
  color: var(--customer-text) !important;
}

#customerApp .plus-revenue-slider input:not([type="range"]),
#customerApp .premium-revenue-slider input:not([type="range"]),
#customerApp .revenue-slider input:not([type="range"]),
#customerApp .gross-revenue-card input:not([type="range"]) {
  background: rgba(5, 18, 32, 0.88) !important;
  color: var(--customer-text) !important;
}

#customerApp .bar-chart.liquidity-forecast .bar-label {
  border: 1px solid var(--customer-border) !important;
  background: rgba(10, 31, 56, 0.92) !important;
  color: var(--customer-muted) !important;
}

@media (max-width: 760px) {
  #customerApp .app-site-footer.site-footer {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
    width: calc(100% - 32px) !important;
    margin: 0 16px 126px !important;
    padding: 16px !important;
  }

  #customerApp .app-site-footer.site-footer nav {
    justify-content: flex-start !important;
  }

  #customerApp .bottom-actions {
    margin: 0 16px 14px !important;
  }
}

/* Global privacy notice aligned with the dark workspace design 2026-06-09 */
.cookie-notice-backdrop {
  background: rgba(3, 10, 20, 0.58) !important;
  backdrop-filter: blur(8px) !important;
}

.cookie-notice-card {
  border: 1px solid rgba(20, 184, 199, 0.35) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(145deg, rgba(10, 31, 56, 0.98), rgba(6, 21, 40, 0.98)) !important;
  color: #e8eef5 !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset !important;
}

.cookie-notice-head strong {
  color: #e8eef5 !important;
  text-shadow: none !important;
}

.cookie-notice-text,
.cookie-notice-text p {
  color: #93a8bf !important;
}

.cookie-notice-text strong {
  color: #e8eef5 !important;
}

.cookie-notice-text a {
  color: #1dd1e1 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(29, 209, 225, 0.45) !important;
  text-underline-offset: 2px;
}

.cookie-notice-card button {
  min-height: 40px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #14b8c7, #1dd1e1) !important;
  color: #061528 !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(20, 184, 199, 0.18) !important;
}

.cookie-notice-reopen {
  z-index: 1202 !important;
  border: 1px solid rgba(20, 184, 199, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(10, 31, 56, 0.94) !important;
  color: #1dd1e1 !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34) !important;
}

.cookie-notice-reopen:hover,
.cookie-notice-reopen:focus-visible {
  border-color: rgba(29, 209, 225, 0.7) !important;
  background: #14b8c7 !important;
  color: #061528 !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .cookie-notice-layer {
    right: 14px !important;
    bottom: 72px !important;
    width: calc(100% - 28px) !important;
  }

  .cookie-notice-card button {
    width: 100%;
  }
}
