/* Panel klienta — wydmuszka LIMONKA. Tokeny jak live beszterda.dev */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #060608;
  --surface: #0f0f14;
  --elev: #16161e;
  --outline: #252530;
  --text: #ececf1;
  --muted: #8888a0;
  --www: #2AEDA0;
  --shop: #4B9EFF;
  --app: #9B7BFF;
  --auto: #FF5E4D;
  --mkt: #FFB020;
  --sans: Manrope, system-ui, sans-serif;
  --serif: Fraunces, Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
html.is-loading,
html.is-loading body {
  overflow: hidden;
  cursor: wait;
}
.site-loader {
  --loader-base: 19px;
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  overflow: hidden;
  font-size: var(--loader-base);
}
.site-loader__screen {
  position: absolute;
  inset: 0;
  background: #060608;
  will-change: transform;
  transform: translateY(0);
}
.site-loader.is-exit .site-loader__screen {
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
  transform: translateY(100%);
}
.site-loader.is-gone { display: none; }
.site-loader__words {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 50px));
  opacity: 0;
}
.site-loader__words.is-in {
  transition: opacity 0.28s cubic-bezier(0.19, 1, 0.22, 1), transform 0.28s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: translate(-50%, calc(-50% - 50px));
}
.site-loader__words.is-out {
  transition: opacity 0.18s linear;
  opacity: 0;
}
.site-loader__word {
  margin: 0;
  padding: 0 0.4em 0 0.6em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  white-space: nowrap;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 450;
  font-size: calc(0.75 * clamp(2.4em, 8vw, 4.5em));
  line-height: 1.065;
  letter-spacing: -0.02em;
  opacity: 0;
}
.site-loader__word.is-jap {
  font-size: calc(0.65 * clamp(3.25em, 5vw, 4.5em));
  transform: translate(-50%, 10%);
}
.site-loader__word.is-on { display: block; opacity: 1; }
.site-loader__dot {
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #2AEDA0;
  left: 0;
  top: 47%;
  width: calc(0.606061 * clamp(16px, 1.2vw, 19px));
  height: calc(0.606061 * clamp(16px, 1.2vw, 19px));
}
.notif-pop[hidden] { display: none !important; }
.notif-pop__scrim {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 70;
}
.notif-pop__box {
  position: fixed;
  top: 64px;
  left: 16px;
  width: min(340px, calc(100vw - 24px));
  z-index: 71;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 14px;
  box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.notif-pop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--outline);
}
.notif-pop__head h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.notif-pop__x {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  border-radius: 8px;
}
.notif-pop__x:hover { color: var(--text); background: var(--elev); }
.notif-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--outline);
  background: transparent;
  color: inherit;
  padding: 12px 14px;
}
.notif-item:last-child { border-bottom: 0; }
.notif-item:hover { background: var(--elev); }
.notif-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.notif-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.notif-item small {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}
.notif-item.is-unread strong { color: var(--www); }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.panel {
  display: grid;
  grid-template-columns: 292px 1fr;
  min-height: 100vh;
  align-items: start;
}
.rail {
  border-right: 1px solid var(--outline);
  background: var(--surface);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 0;
  height: 100dvh;
  align-self: start;
  overflow-y: auto;
}
.rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.rail-top .brand-mark { min-width: 0; }
.rail-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.rail-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--outline);
  border-radius: 9px;
  background: var(--elev);
  color: var(--muted);
}
.rail-icon svg { width: 18px; height: 18px; display: block; }
.rail-icon:hover { color: var(--text); border-color: rgba(42, 237, 160, 0.35); }
.rail-icon.is-on { color: var(--www); border-color: rgba(42, 237, 160, 0.45); }
.rail-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--www);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.rail-badge[hidden] { display: none !important; }
.rail nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
}
.nav-item .ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}
.nav-item .ico svg { display: block; width: 18px; height: 18px; }
.nav-item .lbl { flex: 1; }
.nav-item:hover { background: var(--elev); color: var(--text); }
.nav-item.is-on { background: rgba(42, 237, 160, 0.12); color: var(--www); }
.nav-item.is-on .ico { color: var(--www); }
.nav-item.is-locked { opacity: 0.58; }
.pill {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--muted);
  flex-shrink: 0;
}
.rail-foot { font-size: 12px; color: var(--muted); }
.rail-foot b { display: block; color: var(--www); font-size: 13px; margin-bottom: 2px; }
.rail-end {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.client-logo {
  padding: 4px 4px 2px;
}
.client-logo[hidden] { display: none !important; }
.client-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}
.client-logo.is-light {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}
.client-logo.is-light img {
  mix-blend-mode: normal;
  height: 36px;
}
.account-card {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  background: var(--elev);
}
.account-card__main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
}
.account-card__ava {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(42, 237, 160, 0.14);
  color: var(--www);
  font-size: 13px;
  font-weight: 700;
}
.account-card__meta { min-width: 0; }
.account-card__meta b {
  display: block;
  color: var(--www);
  font-size: 13px;
  line-height: 1.2;
}
.account-card__meta span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-card__gear {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}
.account-card__gear svg { width: 18px; height: 18px; display: block; }
.account-card__main:hover,
.account-card__gear:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.account-card__main.is-on,
.account-card__gear.is-on { color: var(--www); }
.rail-end .cta { margin-top: 12px; }
.konto-grid { margin: 0; }
.konto-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.konto-table-wrap { overflow: auto; margin: 12px 0 18px; }
.konto-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.konto-table th,
.konto-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--outline);
  vertical-align: top;
}
.konto-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.konto-table td span { color: var(--muted); font-size: 12px; }
.konto-table .pill { margin-left: 6px; vertical-align: middle; }
.konto-invite h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}
.konto-invite label,
.konto-invite input {
  display: block;
  width: 100%;
}
.konto-invite label {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.konto-invite input {
  margin-top: 6px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--bg);
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  caret-color: var(--www);
  font: inherit;
}
.konto-invite .cta { max-width: 220px; }
.main { padding: 28px 36px 80px; min-width: 0; }
.wrap { width: 100%; max-width: none; }
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 34px); margin: 0 0 10px; }
.lead { color: var(--muted); max-width: 72ch; margin: 0 0 22px; line-height: 1.55; font-size: 14.5px; }
.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: 1fr 1fr; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 16px;
  min-width: 0;
}
.card h2 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.stat b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.stat span { color: var(--muted); font-size: 13px; }
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  margin: 0 0 40px;
}
.area {
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
  min-width: 0;
  min-height: min-content;
  height: auto;
  display: flex;
  flex-direction: column;
}
.area__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.area__items .item-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.area__items .scope { margin-top: auto; }
.area__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--outline);
}
.area__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.area__sum {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}
.area__hint {
  margin: -4px 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 8px 6px;
  margin: 0 -6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  width: calc(100% + 12px);
  color: inherit;
}
.item:hover { background: rgba(255, 255, 255, 0.04); }
.item:focus-visible { outline: 2px solid var(--www); outline-offset: 2px; }
.item + .item { border-top: 1px solid rgba(255,255,255,0.05); }
.item .box {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1.5px solid #5a5a70;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.item.is-on .box {
  background: transparent;
  border-color: var(--www);
}
.item.is-on .box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--www);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.is-readonly .item,
.item.is-frozen {
  cursor: default;
  pointer-events: none;
}
.item h3 { margin: 0 0 2px; font-size: 13px; font-weight: 600; }
.item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.item .list {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.item-block + .item-block { border-top: 1px solid rgba(255,255,255,0.05); }
.badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: right;
  max-width: 11rem;
  line-height: 1.3;
  color: var(--mkt);
  border: 1px solid rgba(255, 176, 32, 0.35);
  border-radius: 999px;
  padding: 2px 8px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.rebate { border-color: rgba(42, 237, 160, 0.28); }
.row { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; padding: 6px 0; border-top: 1px solid var(--outline); }
.row:first-of-type { border-top: 0; padding-top: 0; }
.row .neg { color: var(--www); }
.mtable { width: 100%; border-collapse: collapse; font-size: 12px; table-layout: fixed; }
.mtable th, .mtable td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--outline); vertical-align: top; }
.mtable th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.mtable td.num { text-align: right; font-family: var(--mono); white-space: normal; }
.mtable .dim { color: var(--muted); }
.mtable__offer-h { color: var(--www) !important; }
.mtable__offer { color: var(--www); font-size: 13px; font-weight: 700; }
.mtable__market { color: var(--muted); font-size: 12px; }
.mtable__delta {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--www);
  white-space: normal;
}
.mtable__pack td { background: rgba(42, 237, 160, 0.07); }
.save {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(42, 237, 160, 0.1);
  border: 1px solid rgba(42, 237, 160, 0.28);
}
.save strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--www); font-weight: 500; }
.save span { color: var(--muted); font-size: 12px; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 0;
  background: var(--www);
  color: var(--bg);
  font-weight: 700;
  white-space: nowrap;
}
.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--outline);
}
.locked-view { max-width: 520px; padding: 40px 0; opacity: 0.85; }
.locked-view h1 { color: var(--muted); }
.note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}
.chip i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }

.lock {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}
.lock svg { display: block; width: 14px; height: 14px; }
.nav-item.is-locked { opacity: 0.58; }

.burger {
  display: none;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.scrim { display: none; }
.print-only { display: none; }

.lead--wide { max-width: 78ch; }
.sec {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  margin: 28px 0 8px;
}
.card > .sec { margin-top: 0; }
.sec-lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 78ch;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 28px;
}
.vcard {
  border: 1px solid var(--outline);
  border-radius: 12px;
  background: var(--elev);
  padding: 12px 14px;
}
.vcard__k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.vcard h3 { margin: 0 0 6px; font-size: 13px; font-weight: 700; }
.vcard p { margin: 0; font-size: 12px; line-height: 1.45; color: var(--muted); }

.scope { margin: 0 0 6px 24px; }
.scope summary {
  cursor: pointer;
  font-size: 12px;
  color: var(--muted);
  list-style: none;
  padding: 4px 0 8px;
}
.scope summary::-webkit-details-marker { display: none; }
.scope summary::after { content: " ↓"; }
.scope[open] summary::after { content: " ↑"; }
.scope summary:hover { color: var(--www); }
.scope__body { padding: 0 0 10px; }
details.scope:not([open]) > *:not(summary) { display: none; }
.scope-h {
  margin: 10px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.scope-lead, .scope-p { margin: 0 0 8px; font-size: 12px; line-height: 1.5; color: var(--muted); }
.scope ul { margin: 0 0 8px; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.scope li { margin: 0 0 2px; }
.info-box, .time-box, .benefit {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  background: var(--elev);
}
.info-box { border-color: rgba(255, 176, 32, 0.35); }
.time-box { font-size: 12px; color: var(--text); }
.caveat { font-size: 12px; color: var(--muted); font-style: italic; margin: 8px 0 0; }
.media-note { font-size: 12px; color: var(--muted); margin: 10px 0 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin: 0 0 40px;
  align-items: start;
}
.split > * {
  min-width: 0;
  max-width: 100%;
}
.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.rec { margin-top: 0; }
.rec__nums, .offer-card__nums {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
  margin: 8px 0 14px;
}
.rec__nums { grid-template-columns: 1fr 1fr; align-items: start; gap: 8px 20px; grid-template-rows: auto auto auto auto; }
.rec__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 4;
  min-width: 0;
}
.rec__nums b, .offer-card__nums b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
}
.rec__nums .rec__lbl, .offer-card__nums span { color: var(--muted); font-size: 12px; min-height: 1.2em; }
.rec__hint, .once-note { min-height: 2.6em; }
.rec__hint { margin-top: 2px; }

.rec-break {
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(42, 237, 160, 0.35);
  background: rgba(42, 237, 160, 0.06);
  overflow: hidden;
}
.rec-break summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--www);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  user-select: none;
}
.rec-break summary::-webkit-details-marker { display: none; }
.rec-break summary::after {
  content: "▾";
  font-size: 12px;
  color: var(--www);
  transition: transform 0.2s ease;
}
.rec-break[open] summary::after { transform: rotate(180deg); }
.rec-break[open] summary {
  border-bottom: 1px solid rgba(42, 237, 160, 0.28);
  color: var(--www);
}
.rec-break ul {
  list-style: none;
  margin: 0;
  padding: 8px 12px 10px;
}
.rec-break li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rec-break li:last-child { border-bottom: 0; }
.rec-break li span { min-width: 0; line-height: 1.35; }
.rec-break li span i { font-style: normal; opacity: 0.7; font-size: 11px; }
.rec-break li b {
  font-family: var(--sans);
  font-size: 13px !important;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.rec-break__off span, .rec-break__off b { color: var(--www) !important; }
.rec-break__sum {
  margin-top: 4px;
  padding-top: 8px !important;
  border-top: 1px solid var(--outline) !important;
  border-bottom: 0 !important;
}
.rec-break__sum span, .rec-break__sum b {
  color: var(--text) !important;
  font-weight: 700 !important;
}
.offer-card__nums .times { font-size: 22px; color: var(--muted); padding-bottom: 18px; }
.starter { font-size: 13px; line-height: 1.55; margin-bottom: 12px; }
.starter p { margin: 0 0 4px; color: var(--muted); }
.starter strong { color: var(--text); font-weight: 600; }
.benefit p { margin: 0 0 6px; font-size: 13px; }
.benefit strong { color: var(--www); }

.table-scroll { overflow-x: auto; margin: 10px 0; max-width: 100%; }
.sources { margin: 8px 0 0; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
}
.step__n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--www);
}
.step h3 { margin: 0 0 2px; font-size: 15px; }
.step__time { margin: 0 0 4px; font-size: 12px; color: var(--www); }
.step p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.assume {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
}

.cta-block { max-width: none; margin-top: 40px; }
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  max-width: 960px;
  margin-top: 16px;
}
.cta-block .cta {
  width: 100%;
  max-width: none;
  margin-top: 0;
  min-height: 44px;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}
.dash-grid .card {
  min-width: 0;
  max-width: 100%;
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin: 0;
  box-sizing: border-box;
}
.dash-grid .card > *,
.dash-grid .card .card-foot,
.dash-grid .card .cta {
  max-width: 100%;
  min-width: 0;
}
.dash-grid .card .note {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-foot { margin-top: auto; padding-top: 16px; }
.card-foot .cta { max-width: none; width: 100%; margin-top: 0; }
.offer-card .cta, .caretaker .cta { max-width: none; }
.cta.ghost { text-decoration: none; }
.range-hint {
  font-size: 13px;
  color: var(--muted);
  margin: -4px 0 16px;
  max-width: 70ch;
  line-height: 1.5;
}
.range-hint strong { color: var(--text); font-weight: 600; }
.is-save { color: var(--www); }
.pkg[hidden], .save-box[hidden] { display: none !important; }
.pkg {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--www);
  white-space: normal;
  text-align: right;
  line-height: 1.3;
}
.pill--ready {
  color: var(--www);
  border-color: rgba(42, 237, 160, 0.4);
  background: rgba(42, 237, 160, 0.1);
  letter-spacing: 0.04em;
}
.pill--busy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pill-pulse 1.8s ease-in-out infinite;
}
.kicker--busy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.busy-spin {
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(42, 237, 160, 0.22);
  border-top-color: var(--www);
  border-radius: 50%;
  animation: busy-spin 0.75s linear infinite;
  flex-shrink: 0;
}
.busy-spin--sm {
  width: 8px;
  height: 8px;
  border-width: 1.5px;
}
@keyframes busy-spin {
  to { transform: rotate(360deg); }
}
@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 237, 160, 0); }
  50% { box-shadow: 0 0 0 4px rgba(42, 237, 160, 0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .busy-spin, .pill--busy { animation: none; }
}
.save-box {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(42, 237, 160, 0.32);
  background: rgba(42, 237, 160, 0.08);
}
.save-box__k {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--www);
}
.save-box__amt {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--www);
  line-height: 1.2;
}
.save-box__pct {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--www);
  font-weight: 600;
}
.save-box ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.save-box li { margin: 0 0 4px; }
.save-box .note { margin: 0; }
.sticky-offer__cell--save {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(42, 237, 160, 0.28);
  background: rgba(42, 237, 160, 0.08);
}
.sheet__row--save { color: var(--www); }
.source-list { margin: 0 0 10px; padding-left: 18px; }
.source-list a {
  color: var(--shop);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.source-list a:hover { color: var(--www); }
.thanks-card { max-width: 720px; padding: 28px 24px; }
.thanks-card h1 { margin-bottom: 12px; }
.thanks-card > p { margin: 0 0 14px; color: var(--muted); line-height: 1.55; }
.thanks-mail {
  margin: 8px 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(42, 237, 160, 0.28);
  background: rgba(42, 237, 160, 0.07);
}
.thanks-mail p { margin: 0; font-size: 13px; color: var(--muted); }
.thanks-mail__addr {
  margin-top: 6px !important;
  font-family: var(--serif);
  font-size: 22px !important;
  font-weight: 500;
  color: var(--www) !important;
  word-break: break-all;
}
.thanks-care { margin: 0; padding: 0; border: 0; }
.thanks-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--outline);
}
.thanks-foot .cta {
  width: auto;
  min-width: 180px;
  margin: 0;
  margin-left: auto;
}
.print-accepted {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--www);
  font-weight: 600;
}

.deco {
  position: relative;
  overflow: hidden;
}
.deco > * { position: relative; z-index: 1; }
.deco::before,
.deco::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco::before {
  right: 0;
  bottom: 0;
  width: min(180px, 52%);
  height: min(140px, 48%);
  background: radial-gradient(ellipse at 100% 100%, rgba(42, 237, 160, 0.08) 0%, transparent 72%);
}
.deco::after {
  right: 0;
  bottom: 0;
  width: min(200px, 58%);
  height: min(110px, 42%);
  opacity: 0.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 110' fill='none'><path d='M8 78 C48 62 70 28 112 40 C148 50 164 86 196 70' stroke='%232AEDA0' stroke-width='0.8' opacity='0.5'/><circle cx='112' cy='40' r='1.8' fill='%232AEDA0' opacity='0.45'/><circle cx='164' cy='78' r='1.4' fill='%234B9EFF' opacity='0.4'/><path d='M112 40 L164 78' stroke='%23ececf1' stroke-width='0.4' opacity='0.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px bottom 6px;
  background-size: 160px 88px;
}
.vcard.deco::before {
  width: min(120px, 46%);
  height: min(90px, 50%);
}
.vcard.deco::after { opacity: 0.14; background-size: 110px 60px; }
.rec.deco::before {
  top: 0;
  bottom: auto;
  right: 0;
  width: min(160px, 40%);
  height: min(100px, 28%);
  background: radial-gradient(ellipse at 100% 0%, rgba(42, 237, 160, 0.06) 0%, transparent 70%);
}
.rec.deco::after { opacity: 0.12; }

.sticky-sentinel { height: 1px; margin: 0; padding: 0; }
body.has-sticky .main { padding-bottom: 120px; }

.pay { margin: 0 0 40px; }
.pay > .sec { margin-top: 0; }
.sched { margin: 0 0 40px; }
.sched > .sec { margin-top: 0; }
.wrap > .card { margin-top: 0; margin-bottom: 0; }
.pay-split {
  margin: 14px 0 8px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(42, 237, 160, 0.38);
  background: rgba(42, 237, 160, 0.08);
}
.pay-split__k {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--www);
}
.pay-split__track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-split__half {
  padding: 14px 14px 12px;
  border-radius: 10px;
  background: rgba(6, 6, 8, 0.45);
  border: 1px solid rgba(42, 237, 160, 0.22);
}
.pay-split__pct {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--www);
  margin-bottom: 4px;
}
.pay-split__half b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--www);
  line-height: 1.15;
}
.pay-split__half small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
}
.pay-split__sum {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.pay-split__sum strong { color: var(--www); }
.pay-line {
  list-style: none;
  margin: 18px 0 16px;
  padding: 0;
  display: flex;
  gap: 0;
  position: relative;
}
.pay-line::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--outline);
}
.pay-line__step {
  flex: 1;
  min-width: 0;
  padding: 0 12px 0 0;
  position: relative;
}
.pay-line__step[hidden] { display: none !important; }
.pay-line__n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.pay-line__step:first-child .pay-line__n {
  border-color: var(--www);
  color: var(--www);
}
.pay-line__step--pay .pay-line__n {
  border-color: var(--www);
  color: var(--www);
  background: rgba(42, 237, 160, 0.1);
}
.pay-line__step h3 { margin: 0 0 4px; font-size: 15px; }
.pay-line__when { margin: 0 0 6px; font-size: 12px; color: var(--muted); }
.pay-line__amt {
  margin: 4px 0 2px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--www);
  line-height: 1.15;
}
.pay-line__amt--zero { color: var(--muted); font-size: 16px; }
.pay-line__pct {
  margin: 0 0 8px !important;
  font-family: var(--mono);
  font-size: 10px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--www) !important;
}
.pay-line__step p { margin: 0 0 6px; font-size: 12px; color: var(--muted); line-height: 1.45; }
.pay-line__extra { font-size: 12px; color: var(--muted); line-height: 1.45; }
.start-box {
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 237, 160, 0.32);
  border-radius: 12px;
  background: rgba(42, 237, 160, 0.06);
  max-width: 640px;
}
.start-box h3 { margin: 0 0 10px; font-size: 13px; font-weight: 700; }
.start-box__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 12px;
}
.start-box__split span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.start-box__split b {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--www);
}
.start-box__amt {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--www);
}
.start-box p { margin: 0 0 6px; font-size: 13px; color: var(--muted); line-height: 1.5; }

.sticky-offer {
  position: fixed;
  left: 292px;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--outline);
  padding: 12px 24px;
  min-height: 76px;
}
.sticky-offer[hidden] { display: none !important; }
.sticky-offer__desk {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  justify-content: space-between;
}
.sticky-offer__cell { flex: 1; min-width: 0; }
.sticky-offer__label,
.sticky-offer__cell > small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.sticky-offer__row {
  display: flex;
  align-items: center;
  gap: 6px 8px;
  flex-wrap: wrap;
  min-width: 0;
}
.sticky-offer__val {
  display: block;
  font-family: var(--serif);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
}
.sticky-offer__icons {
  display: none;
}
.sticky-tags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}
.sticky-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.sticky-tag[hidden] { display: none !important; }
.sticky-tag--www {
  color: #2AEDA0;
  background: rgba(42, 237, 160, 0.12);
  border-color: rgba(42, 237, 160, 0.28);
}
.sticky-tag--ebok {
  color: #FF5E4D;
  background: rgba(255, 94, 77, 0.12);
  border-color: rgba(255, 94, 77, 0.28);
}
.sticky-tag--social {
  color: #FFB020;
  background: rgba(255, 176, 32, 0.12);
  border-color: rgba(255, 176, 32, 0.3);
}
.sticky-tag--google {
  color: #F4C430;
  background: rgba(244, 196, 48, 0.12);
  border-color: rgba(244, 196, 48, 0.3);
}
.sticky-tag--meta {
  color: #4B9EFF;
  background: rgba(75, 158, 255, 0.12);
  border-color: rgba(75, 158, 255, 0.3);
}
.sticky-tag--care {
  color: #34D399;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}
.sticky-tag--shop {
  color: #4B9EFF;
  background: rgba(75, 158, 255, 0.12);
  border-color: rgba(75, 158, 255, 0.3);
}
.sticky-tag--rebrand {
  color: #FF5E4D;
  background: rgba(255, 94, 77, 0.12);
  border-color: rgba(255, 94, 77, 0.28);
}
.sticky-ico {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid transparent;
}
.sticky-ico svg { width: 13px; height: 13px; display: block; }
.sticky-ico--www {
  color: #2AEDA0;
  background: rgba(42, 237, 160, 0.12);
  border-color: rgba(42, 237, 160, 0.28);
}
.sticky-ico--social {
  color: #FFB020;
  background: rgba(255, 176, 32, 0.12);
  border-color: rgba(255, 176, 32, 0.3);
}
.sticky-ico--meta {
  color: #4B9EFF;
  background: rgba(75, 158, 255, 0.12);
  border-color: rgba(75, 158, 255, 0.3);
}
.sticky-ico--google {
  color: #F4C430;
  background: rgba(244, 196, 48, 0.12);
  border-color: rgba(244, 196, 48, 0.3);
}
.sticky-ico--care {
  color: #34D399;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}
.sticky-offer__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  min-width: 0;
}
.sticky-offer__price .sticky-offer__val { display: inline; }
.sticky-offer__per {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  font-family: var(--sans);
}
.sticky-offer__after {
  color: var(--text);
  font-weight: 600;
  font-size: 11px;
}
.sticky-offer__cta {
  width: auto;
  min-width: 150px;
  margin: 0;
  flex: 0 0 auto;
  padding-left: 14px;
  padding-right: 14px;
  white-space: nowrap;
}
.sticky-offer__done strong { display: block; font-size: 13px; }
.sticky-offer__mob { display: none; }

@media (max-width: 1200px) {
  .sticky-offer__desk { gap: 10px 12px; }
  .sticky-ico { width: 20px; height: 20px; border-radius: 6px; }
  .sticky-ico svg { width: 12px; height: 12px; }
  .sticky-offer__cta { min-width: 0; font-size: 13px; }
}
@media (max-width: 1024px) {
  .sticky-offer__icons { gap: 3px; }
  .sticky-ico { width: 18px; height: 18px; }
  .sticky-ico svg { width: 11px; height: 11px; }
  .sticky-offer__val { font-size: 15px; }
  .sticky-offer__label { font-size: 10px; }
}

.sheet[hidden] { display: none !important; }
.sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
}
.sheet__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.sheet__box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  border-radius: 16px 16px 0 0;
  padding: 20px 16px 28px;
  max-height: 85vh;
  overflow: auto;
}
.sheet__box h2 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 0 0 12px; }
.sheet__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--outline);
  font-size: 14px;
}
.sheet__row:first-of-type { border-top: 0; }
.sheet__row b { font-family: var(--serif); font-weight: 500; }

.progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.progress__step {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--outline);
  border-radius: 999px;
}
.progress__step.is-done { color: var(--text); }
.progress__step.is-current {
  color: var(--bg);
  background: var(--www);
  border-color: var(--www);
  font-weight: 700;
}
.dash-tl {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  display: flex;
  position: relative;
  gap: 0;
}
.dash-tl::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--outline);
}
.dash-tl__step {
  flex: 1;
  min-width: 0;
  position: relative;
}
.dash-tl__n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.dash-tl__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  padding-right: 8px;
}
.dash-tl__step.is-done .dash-tl__n {
  border-color: var(--www);
  color: var(--www);
}
.dash-tl__step.is-done .dash-tl__label { color: var(--text); }
.dash-tl__step.is-current .dash-tl__n {
  background: var(--www);
  border-color: var(--www);
  color: var(--bg);
  font-weight: 700;
}
.dash-tl__step.is-current .dash-tl__label {
  color: var(--text);
  font-weight: 600;
}
.offer-card { margin-bottom: 0; }
.offer-card__sub { margin: 0 0 8px; font-size: 15px; color: var(--text); }
.offer-card__scope {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.caretaker__who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.caretaker__who:last-of-type { margin-bottom: 4px; }
.caretaker .account-card__ava {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.caretaker__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--outline);
  background: var(--elev);
  flex-shrink: 0;
}
.caretaker b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 500; }

.staff-board {
  margin: 0;
}
.staff-board > h2 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.staff-board--konto {
  margin-top: 0;
}
.staff-board--konto > .note {
  margin: -4px 0 14px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.staff-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}
.staff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.staff-card--www {
  border-color: rgba(42, 237, 160, 0.34);
  background: linear-gradient(180deg, rgba(42, 237, 160, 0.1) 0%, var(--surface) 44%);
}
.staff-card--www::before { background: var(--www); }
.staff-card--mkt {
  border-color: rgba(255, 176, 32, 0.4);
  background: linear-gradient(180deg, rgba(255, 176, 32, 0.11) 0%, var(--surface) 44%);
}
.staff-card--mkt::before { background: var(--mkt); }
.staff-card--shop {
  border-color: rgba(75, 158, 255, 0.4);
  background: linear-gradient(180deg, rgba(75, 158, 255, 0.11) 0%, var(--surface) 44%);
}
.staff-card--shop::before { background: var(--shop); }
.staff-card__ava {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 2px solid var(--outline);
  background: var(--elev);
  color: var(--text);
}
.staff-card--www .staff-card__ava {
  border-color: rgba(42, 237, 160, 0.5);
  background: rgba(42, 237, 160, 0.14);
  color: var(--www);
}
.staff-card--mkt .staff-card__ava {
  border-color: rgba(255, 176, 32, 0.55);
  background: rgba(255, 176, 32, 0.16);
  color: var(--mkt);
}
.staff-card--shop .staff-card__ava {
  border-color: rgba(75, 158, 255, 0.55);
  background: rgba(75, 158, 255, 0.16);
  color: var(--shop);
}
.staff-card__ava--img {
  object-fit: cover;
  object-position: center 18%;
  padding: 0;
  background: var(--elev) !important;
  color: transparent;
}
.staff-card--www .staff-card__ava--img,
.staff-card--mkt .staff-card__ava--img,
.staff-card--shop .staff-card__ava--img {
  object-position: center 18%;
}
.staff-card__meta { min-width: 0; width: 100%; flex: 1; }
.staff-card__role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.staff-card b {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.staff-card__mail {
  display: block;
  font-size: 13px;
  color: var(--muted);
  word-break: break-word;
}
.staff-card__cta {
  width: 100%;
  max-width: none;
  margin-top: auto;
  min-height: 42px;
}
.staff-msg-to {
  margin: 0 0 12px;
}
.staff-msg-to strong { color: var(--text); }

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 16px;
  align-items: start;
}
.ticket-col { display: grid; gap: 14px; }
.ticket-new label { display: block; font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.ticket-new input,
.ticket-new textarea,
.ticket-thread textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--elev);
  color: var(--text);
  font: inherit;
  resize: vertical;
}
.ticket-err { color: #FF5E4D; font-size: 13px; min-height: 1.1em; margin: 0 0 8px; }
.ticket-inbox { }
.ticket-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.ticket-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--outline);
  background: var(--surface);
  color: inherit;
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}
.ticket-item.is-on { border-color: rgba(42, 237, 160, 0.4); }
.ticket-item strong { font-size: 14px; }
.ticket-item span { font-size: 12px; color: var(--muted); }
.ticket-item__st {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.st-open { color: var(--www); }
.st-waiting { color: var(--mkt); }
.st-closed { color: var(--muted); }
.prio-critical { color: #FF5E4D; }
.prio-high { color: #FFB020; }
.prio-normal { color: #4B9EFF; }
.prio-low { color: #8888a0; }
.prio-group {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.prio-group:first-child { margin-top: 0; }
.prio-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.prio-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 14px;
}
.prio-pick__opt {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  background: var(--elev);
  cursor: pointer;
}
.prio-pick__opt input { position: absolute; opacity: 0; pointer-events: none; }
.prio-pick__opt strong { font-size: 13px; }
.prio-pick__opt small { color: var(--muted); font-size: 11px; }
.prio-pick__opt:has(:checked),
.prio-pick__opt.is-on {
  border-color: rgba(42, 237, 160, 0.45);
  background: rgba(42, 237, 160, 0.08);
}
.dash-grid--top { margin-bottom: 28px; }
.dash-h { margin: 8px 0 12px; font-size: 15px; }
.dash-clients { display: grid; gap: 12px; }
.dash-card, .dash-today.card {
  text-align: left;
  width: 100%;
  border: 1px solid var(--outline);
  background: var(--surface);
  color: inherit;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 8px;
}
.dash-card:hover { border-color: rgba(42, 237, 160, 0.35); }
.dash-card header { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.dash-card b { font-size: 16px; }
.dash-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--outline);
}
.dash-pill.is-ok { color: var(--www); border-color: rgba(42, 237, 160, 0.4); }
.dash-pill.is-wait { color: var(--mkt); }
.dash-money { display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 8px 0 0; }
.dash-money span { font-size: 13px; color: var(--muted); }
.dash-money b { color: var(--text); }
.dash-scope { margin: 8px 0; padding-left: 18px; color: var(--muted); }
@media (min-width: 900px) {
  .dash-clients { grid-template-columns: 1fr 1fr; }
}
.ticket-thread {
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  padding: 16px;
  min-height: 240px;
}
.ticket-thread h2 { margin: 0 0 6px; font-size: 18px; font-family: var(--serif); font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text); }
.bubbles { display: grid; gap: 10px; margin: 14px 0; }
.bubble {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  max-width: 640px;
}
.bubble header { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.bubble p { margin: 0; font-size: 14px; line-height: 1.5; white-space: pre-wrap; }
.bubble--client { background: var(--elev); }
.bubble--admin { background: rgba(42, 237, 160, 0.08); border-color: rgba(42, 237, 160, 0.22); margin-left: 24px; }
.mail-settings label { display: block; font-size: 12px; color: var(--muted); margin: 0 0 12px; }
.mail-settings input[type="email"],
.mail-settings input[type="password"],
.mail-settings input[type="text"],
.mail-settings input[type="number"] {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--elev);
  color: var(--text);
  font: inherit;
}
.mail-check { display: flex !important; align-items: center; gap: 8px; color: var(--text) !important; font-size: 13px !important; }
.mail-check input { width: auto !important; margin: 0 !important; }
.mail-status { font-size: 14px; margin: 0 0 16px; color: var(--muted); }
.mail-status.is-ok { color: var(--www); }
.mail-status.is-bad { color: var(--auto); }
.mail-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 16px;
}
.mail-toolbar .cta {
  width: auto;
  margin: 0;
  padding: 10px 16px;
}
.mail-read {
  padding: 16px;
  min-height: 240px;
}
.mail-read h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
}
.mail-read__meta { margin: 0 0 16px; }
.mail-read__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mail-read__frame {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--outline);
  border-radius: 10px;
  background: #fff;
}
.mail-read__body a {
  color: var(--shop);
  text-decoration: none;
}
.mail-read__body a:hover {
  color: var(--www);
  text-decoration: underline;
}
.mail-item strong {
  line-height: 1.3;
}
.mail-item span:last-child {
  font-size: 11px;
  color: var(--muted);
}
.mail-item.is-unread strong { color: var(--www); }
.ticket-actions,
.mail-compose-actions,
.modal__actions,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 14px;
}
.ticket-actions .cta,
.mail-compose-actions .cta,
.modal__actions .cta,
.btn-row .cta {
  width: auto;
  max-width: none;
  margin: 0;
  flex: 0 0 auto;
  padding: 11px 16px;
}
.ticket-thread .cta { max-width: none; }

.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.62); }
.modal__box {
  position: relative;
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 22px;
}
.modal__box h2 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 10px; }
.modal__box p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.modal__box--wide { width: min(560px, 100%); }
.modal__box .thanks-mail__addr {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--www);
  margin: -8px 0 16px;
}
.modal__box .cta { max-width: none; }
.modal__actions { margin-top: 8px; }

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: -8px 0 18px;
  font-size: 12px;
  color: var(--muted);
}
.offer-meta strong { color: var(--text); font-weight: 600; }
.once-note {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 28ch;
}
.info-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  font-size: 10px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  cursor: help;
  vertical-align: middle;
}
.info-tip[hidden] { display: none !important; }
.sheet__row--note { font-size: 12px; color: var(--muted); }

.mail {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 14px;
  align-items: stretch;
  min-height: min(70vh, 720px);
}
.mail-inbox {
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.mail-inbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--outline);
}
.mail-inbox__bar h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 500;
}
.mail-inbox__bar .cta { width: auto; margin: 0; padding: 8px 12px; font-size: 13px; }
.mail-inbox .ticket-inbox { overflow: auto; padding: 8px; flex: 1; }
.mail-item { gap: 3px; }
.mail-item__preview {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px !important;
}
.mail-pane { min-height: 100%; }
.mail-pane__head { margin-bottom: 8px; }
.mail-compose label,
.mail-compose-pane label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
.mail-compose input,
.mail-compose textarea,
.mail-compose-pane input,
.mail-compose-pane textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--elev);
  color: var(--text);
  font: inherit;
  resize: vertical;
}
.mail-attach {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}
.mail-attach input[type="file"] {
  display: block;
  margin: 0;
  max-width: 100%;
}
.mail-atts {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mail-atts a {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--outline);
  background: var(--elev);
  font-size: 12px;
  color: var(--shop);
  text-decoration: none;
}
.mail-atts a:hover { color: var(--www); border-color: rgba(42, 237, 160, 0.35); }

@media (min-width: 1500px) {
  .areas { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .panel { grid-template-columns: 1fr; }
  .offer-card__nums { grid-template-columns: 1fr auto 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .burger { display: inline-flex; }
  .rail {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(292px, 88vw);
    height: 100vh;
    z-index: 50;
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    border-right: 1px solid var(--outline);
    overflow: auto;
    align-self: auto;
  }
  .sticky-offer { left: 0; }
  .pay-line { flex-direction: column; gap: 18px; padding-left: 8px; }
  .pay-line::before {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .panel.is-nav .rail { transform: none; }
  .scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }
  .panel.is-nav .scrim { display: block; }
}
@media (max-width: 1400px) {
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  #view-dash .dash-grid,
  .dash-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 800px) {
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
      "ava meta"
      "cta cta";
    align-items: center;
    gap: 12px 14px;
  }
  .staff-card__ava { grid-area: ava; }
  .staff-card__meta { grid-area: meta; width: auto; }
  .staff-card__cta { grid-area: cta; }
}
@media (min-width: 560px) and (max-width: 800px) {
  .staff-card {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    grid-template-areas: "ava meta cta";
  }
  .staff-card__cta {
    width: auto;
    min-width: 168px;
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .values, .split, .dash-grid, .assume, .ticket-layout, .mail { grid-template-columns: minmax(0, 1fr); }
  .rec__nums { grid-template-columns: 1fr; }
  .rec__col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    grid-row: auto;
    grid-template-rows: none;
  }
  .rec__nums > .rec__col > * { grid-column: auto; }
  .pay-split__track, .start-box__split { grid-template-columns: 1fr; }
  .sticky-offer__desk { display: none; }
  .sticky-offer__mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sticky-offer__mob b { font-family: var(--serif); font-size: 18px; font-weight: 500; display: block; }
  .sticky-offer__mob small { color: var(--muted); font-size: 11px; }
  .sticky-offer__mob .cta { width: auto; margin: 0; padding: 10px 12px; }
  body.has-sticky .main { padding-bottom: 96px; }
}
@media (max-width: 720px) {
  .main { padding: 16px 16px 64px; }
  .areas, .foot-grid, .g2, .g3, .steps { grid-template-columns: 1fr; }
  .dash-tl { flex-wrap: wrap; gap: 12px 0; }
  .dash-tl::before { display: none; }
  .dash-tl__step { flex: 1 1 45%; }
  .item { grid-template-columns: 20px 1fr; }
  .item .list { grid-column: 2; justify-self: start; align-items: flex-start; margin-top: 4px; }
  .area__head { flex-direction: column; align-items: flex-start; }
  .area__sum { text-align: left; }
  .offer-card__nums { grid-template-columns: 1fr; }
  .offer-card__nums .times { display: none; }
  .cta-block .cta, .offer-card .cta, .caretaker .cta { max-width: none; }
  .cta-row { grid-template-columns: 1fr; gap: 10px; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  .rail, .no-print, .burger, .scrim, .modal, .cta, .item .box, .sticky-offer, .sheet { display: none !important; }
  .panel { display: block; }
  .main { padding: 0 !important; }
  html, body { background: #fff !important; color: #111 !important; }
  .deco,
  .deco > * {
    position: static !important;
    z-index: auto !important;
  }
  .areas,
  .split,
  .assume {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  .values { grid-template-columns: 1fr 1fr !important; }
  .area,
  .area__items,
  .item-block,
  .card,
  .rec {
    display: block !important;
    flex: none !important;
    height: auto !important;
    overflow: visible !important;
  }
  .rec__col {
    display: grid !important;
    grid-template-rows: subgrid !important;
    grid-row: 1 / span 4 !important;
    min-width: 0 !important;
    height: auto !important;
    overflow: visible !important;
    flex: none !important;
  }
  .area + .area { margin-top: 10px; }
  .item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 6px 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 6px 0 !important;
    align-items: start;
  }
  .item > div { min-width: 0; max-width: 100%; }
  .item h3,
  .item p {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .item .list {
    grid-column: auto !important;
    justify-self: end;
    align-items: flex-end;
    margin-top: 0 !important;
    white-space: nowrap;
  }
  .item-block {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .vcard, .benefit, .save-box, .start-box, .pay-line__step, .thanks-card {
    border-color: #d8d8de;
    background: #fff;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .card {
    border-color: #d8d8de;
    background: #fff;
    break-inside: auto;
    page-break-inside: auto;
  }
  .card.rec {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .area {
    border-color: #d8d8de;
    background: #fff;
    break-inside: auto;
    page-break-inside: auto;
  }
  .deco::before, .deco::after { display: none !important; }
  .save-box, .thanks-mail, .sticky-offer__cell--save, .pay-split, .start-box, .rec-break {
    background: #f3fbf6 !important;
    border-color: #b7e3cb !important;
  }
  .kicker, .sec-lead, .lead, .note, .vcard p, .scope-p, .scope ul, .assume, .step p, .pay-line__when { color: #444 !important; }
  h1, h2, h3, .sec, .rec__nums b, .item h3, .area__title, .pay-line__amt, .start-box__amt, .pay-split__half b, .start-box__split b, .mtable__offer { color: #111 !important; }
  .print-only { display: block; }
  .print-head { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #ddd; }
  .print-accepted { color: #1a7a52 !important; }
  .busy-spin, .pill--busy { animation: none !important; }
  .source-list a { color: #1a4a8a !important; text-decoration: underline; }
  .brand-print { font-family: var(--sans); font-size: 22px; font-weight: 700; margin: 0 0 8px; color: #111; }
  .brand-print span { color: #2a8a64; }
  details.scope { display: none !important; }
  .rec__nums {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto auto !important;
    align-items: start !important;
  }
  .rec__hint,
  .once-note { display: none !important; }
  details.rec-break {
    border-color: #ddd !important;
    background: #f7f7f7 !important;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-top: 8px;
  }
  details.rec-break summary { display: none; }
  details.rec-break ul { display: block !important; padding: 8px 10px !important; }
  details.rec-break li { color: #444 !important; border-color: #e5e5e5 !important; }
  details.rec-break li b { color: #111 !important; }
  .pay-line { display: block; }
  .pay-line::before { display: none; }
  .pay-line__step {
    margin-bottom: 14px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .steps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .step {
    display: block !important;
    break-inside: avoid;
    page-break-inside: avoid;
    height: auto !important;
  }
  .sched {
    break-before: page;
    page-break-before: always;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .is-save { color: #1a7a52 !important; }
  a { color: #111; }
  body.print-contract .contract-form,
  body.print-contract .contract-preview__k,
  body.print-contract .contract-page > .kicker,
  body.print-contract .contract-page > h1,
  body.print-contract .contract-page > .lead,
  body.print-contract .contract-tabs,
  body.print-contract .contract-wait {
    display: none !important;
  }
  body.print-contract .contract-layout { display: block; gap: 0; }
  body.print-contract .contract-sheet {
    background:
      linear-gradient(90deg, #124736 0%, #2AEDA0 48%, #124736 100%) 0 0 / 100% 6px no-repeat,
      linear-gradient(90deg, #124736 0%, #2AEDA0 48%, #124736 100%) 0 100% / 100% 6px no-repeat,
      #fff !important;
    border: 0 !important;
    border-radius: 0;
    padding: 18px 0 22px;
    box-shadow: none;
    color: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body.print-contract .contract-sheet h1,
  body.print-contract .contract-sheet h2,
  body.print-contract .contract-sheet h3,
  body.print-contract .contract-sheet p,
  body.print-contract .contract-sheet li { color: #111 !important; }
}

.wrap--wide { width: 100%; max-width: none; }
.contract-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}
.contract-layout[hidden],
.contract-wait[hidden] {
  display: none !important;
}
.contract-form h2 { margin: 0 0 6px; font-size: 18px; }
.contract-form h3 {
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contract-form label,
.contract-form input {
  display: block;
  width: 100%;
}
.contract-form label {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.contract-form input[type="text"],
.contract-form input[type="email"],
.contract-form input[type="tel"],
.contract-form input[type="date"] {
  margin-top: 6px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--bg);
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  caret-color: var(--www);
  font: inherit;
}
.contract-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.contract-form__row label { min-width: 0; }
.c-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 4px 0 12px;
  color: var(--text) !important;
  font-size: 13px !important;
  cursor: pointer;
}
.c-check input { width: auto; margin: 0; accent-color: var(--www); }
.contract-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
}
.contract-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.contract-tab:hover { color: var(--text); border-color: #3a3a48; }
.contract-tab.is-on {
  color: var(--text);
  border-color: rgba(42, 237, 160, 0.45);
  background: rgba(42, 237, 160, 0.08);
}
.contract-tab.is-wait .pill {
  color: #c9a227;
  border-color: rgba(255, 176, 32, 0.35);
  background: rgba(255, 176, 32, 0.08);
}
.contract-wait {
  max-width: 640px;
  margin: 0 0 8px;
  padding: 24px;
}
.contract-wait h2 { margin: 0 0 10px; font-size: 22px; }
.contract-wait p { margin: 0; color: var(--muted); line-height: 1.55; }
.contract-preview__k {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contract-sheet {
  background:
    linear-gradient(90deg, #124736 0%, #2AEDA0 48%, #124736 100%) 0 0 / 100% 6px no-repeat,
    linear-gradient(90deg, #124736 0%, #2AEDA0 48%, #124736 100%) 0 100% / 100% 6px no-repeat,
    #f7f4ee;
  color: #1a1a1a;
  padding: 22px 32px 28px;
  border-radius: 8px;
  border: 1px solid #d8d0c4;
  font-family: "Times New Roman", Times, serif;
  font-size: 12.5px;
  line-height: 1.45;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.contract-sheet .c-doc__brand {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  text-align: center;
  margin: 6px 0 18px;
  color: #124736;
}
.contract-sheet .c-doc__brand span { color: #0e8f6a; }
.contract-sheet .c-doc__foot {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #3d5c52;
  margin: 22px 0 4px !important;
  text-align: center !important;
}
.contract-sheet h1 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 16px;
  text-align: center;
  color: #111;
}
.contract-sheet h2 {
  font-size: 13px;
  margin: 18px 0 8px;
  color: #111;
}
.contract-sheet h3 {
  font-size: 12.5px;
  margin: 12px 0 6px;
  color: #111;
}
.contract-sheet p { margin: 0 0 8px; text-align: justify; color: #222; }
.contract-sheet .c-sub { font-weight: 700; margin: 10px 0 4px; text-align: left; }
.contract-sheet .c-ol { margin: 0 0 10px; padding-left: 1.4em; color: #222; }
.contract-sheet .c-ol--letter { list-style: lower-alpha; }
.contract-sheet .c-sign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 4px;
  margin-top: 24px;
  align-items: start;
  break-inside: avoid;
}
.contract-sheet .c-sign__who {
  grid-row: 1;
  min-height: 0;
}
.contract-sheet .c-sign__who h3 { margin-top: 0; }
.contract-sheet .c-sign__who p { text-align: left; margin-bottom: 6px; }
.contract-sheet .c-sign__mark { grid-row: 2; }
.contract-sheet .c-sign__extra {
  grid-column: 2;
  grid-row: 3;
  margin-top: 10px;
}
.contract-sheet .c-sign__extra p { text-align: left; }
.contract-sheet .c-sign__line { margin: 16px 0 4px; text-align: left; }
.contract-sheet .c-sign__box {
  height: 52px;
  border-bottom: 1px solid #222;
  margin-bottom: 8px;
}
@media (max-width: 1100px) {
  .contract-layout { grid-template-columns: minmax(0, 1fr); }
  .contract-form__row { grid-template-columns: minmax(0, 1fr); }
}

/* Panel opiekuna — zwarty pulpit, bez rozciągania kart na całą szerokość */
body.panel-admin .main {
  padding: 28px 28px 72px;
}
body.panel-admin #view-dash {
  max-width: 880px;
}
body.panel-admin #view-mail,
body.panel-admin #view-mail-settings {
  max-width: 1100px;
}
body.panel-admin #view-mail-settings {
  max-width: 560px;
}
body.panel-admin #view-tickets {
  max-width: 1100px;
}
body.panel-admin .mail-settings {
  max-width: 520px;
}
body.panel-admin .lead {
  max-width: 52ch;
}
body.panel-admin .dash-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
body.panel-admin .dash-today.card {
  width: auto;
  max-width: 520px;
  margin-bottom: 8px;
}
body.panel-admin .dash-today.is-empty {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 14px 16px;
}
body.panel-admin .dash-today h3,
body.panel-admin .card h3,
body.panel-admin .dash-h {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
body.panel-admin .dash-today.is-empty h3 {
  margin: 0;
}
body.panel-admin .dash-today.is-empty .note {
  margin: 0;
}
body.panel-admin .dash-h {
  margin: 18px 0 10px;
}
body.panel-admin .dash-clients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 420px));
  gap: 12px;
  justify-content: start;
}
body.panel-admin .dash-card {
  width: 100%;
  max-width: 420px;
  gap: 0;
  padding: 16px;
}
body.panel-admin .dash-card header {
  align-items: flex-start;
  gap: 12px;
}
body.panel-admin .dash-card header > div {
  min-width: 0;
}
body.panel-admin .dash-card header b {
  display: block;
  font-size: 18px;
  font-weight: 650;
}
body.panel-admin .dash-card header .note {
  margin: 4px 0 0;
}
body.panel-admin .dash-pill {
  flex-shrink: 0;
  white-space: nowrap;
}
body.panel-admin .dash-card .dash-money {
  margin: 12px 0 0;
}
body.panel-admin .dash-card > .note {
  margin: 6px 0 0;
}
body.panel-admin .dash-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--outline);
}
body.panel-admin .dash-meta span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
body.panel-admin .dash-meta b {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
body.panel-admin .dash-meta .is-off b {
  color: var(--muted);
  font-weight: 500;
}
body.panel-admin .dash-meta .is-on b {
  color: var(--www);
}
body.panel-admin .dash-seen {
  margin: 10px 0 0;
  grid-column: 1 / -1;
}
body.panel-admin #view-dash h2 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
}
@media (min-width: 820px) {
  body.panel-admin .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.panel-admin .dash-grid > .card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  body.panel-admin .main {
    padding: 16px 16px 64px;
  }
  body.panel-admin .dash-clients {
    grid-template-columns: 1fr;
  }
  body.panel-admin .dash-card,
  body.panel-admin .dash-today.card {
    max-width: none;
  }
}

.concept-page { max-width: 1440px; }
.dash-wrap {
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.dash-intro .kicker { margin-bottom: 8px; }
.dash-intro h1 { margin-bottom: 10px; }
.dash-intro .lead { margin: 0; }
.dash-tl { margin: 0; }
.concept-teaser {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  clear: both;
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}
.concept-teaser .cta { max-width: 240px; }
.concept-teaser__lead { margin: 0 0 14px; }

.dash-after {
  margin: 0;
  width: 100%;
  min-width: 0;
}
.dash-after h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.dash-peeks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  width: 100%;
}
.dash-peek {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--outline);
  background: var(--surface);
  color: inherit;
  overflow: hidden;
  cursor: pointer;
}
.dash-peek:hover { border-color: rgba(42, 237, 160, 0.35); }
.dash-peek.is-locked {
  opacity: 0.55;
  filter: grayscale(0.25);
  cursor: default;
}
.dash-peek.is-locked:hover { border-color: var(--outline); }
.dash-peek__lock {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.dash-peek__lock svg { width: 100%; height: 100%; display: block; }
.dash-peek__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 22px;
}
.dash-peek b {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.dash-peek__preview {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.dash-peek__detail {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.dash-peek__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-top: 8px;
}
.dash-peek__bars i {
  display: block;
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(42, 237, 160, 0.35);
  min-height: 6px;
}
.dash-peek__bars i:nth-child(1) { height: 35%; }
.dash-peek__bars i:nth-child(2) { height: 58%; }
.dash-peek__bars i:nth-child(3) { height: 42%; }
.dash-peek__bars i:nth-child(4) { height: 78%; }
.dash-peek__bars i:nth-child(5) { height: 55%; }
.dash-peek.is-locked .dash-peek__bars i { background: rgba(136, 136, 160, 0.35); }
@media (max-width: 1100px) {
  .dash-peeks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .dash-peeks { grid-template-columns: minmax(0, 1fr); }
}

.concept-frame {
  margin: 8px 0 16px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0e;
  box-shadow: 0 24px 64px -28px rgba(0, 0, 0, 0.7);
}
.concept-frame__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--outline);
  background: var(--surface);
}
.concept-frame__dots {
  width: 42px;
  height: 10px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 5px 5px, #ff5f57 4px, transparent 5px),
    radial-gradient(circle at 21px 5px, #febc2e 4px, transparent 5px),
    radial-gradient(circle at 37px 5px, #28c840 4px, transparent 5px);
}
.concept-frame__url {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--elev);
  border-radius: 999px;
  padding: 6px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.concept-narrow-hint {
  display: none;
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid var(--outline);
  background: rgba(255, 176, 32, 0.12);
  color: #f3d9a0;
  font-size: 13px;
  line-height: 1.45;
}
.concept-frame.is-narrow .concept-narrow-hint { display: block; }
@media (max-width: 1100px) {
  .concept-narrow-hint { display: block; }
}
.concept-shot {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.concept-pdf {
  display: block;
  width: 100%;
  height: min(85vh, 1100px);
  border: 0;
  background: #fff;
}
@media (max-width: 720px) {
  .concept-pdf { height: 70vh; }
  .concept-html { height: 70vh; }
}
.concept-html {
  display: block;
  width: 100%;
  height: min(85vh, 1100px);
  border: 0;
  background: #fff;
}
#concept-html {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--outline);
  background: var(--elev);
  color: var(--text);
  font: inherit;
  resize: vertical;
}
