:root {
  --bg: #070a10;
  --bg2: #0d1421;
  --panel: rgba(15, 23, 38, 0.82);
  --panel2: rgba(21, 33, 52, 0.72);
  --line: rgba(148, 247, 255, 0.18);
  --text: #ecf7ff;
  --muted: rgba(236, 247, 255, 0.68);
  --neon: #6ee7ff;
  --green: #7dffb2;
  --pink: #ff6bd6;
  --danger: #ff8f8f;
  --shadow: rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font: 16px/1.55 Arial, Helvetica, sans-serif;
  background:
    radial-gradient(900px 520px at 82% 12%, rgba(110, 231, 255, 0.14), transparent 60%),
    radial-gradient(760px 520px at 12% 88%, rgba(255, 107, 214, 0.12), transparent 62%),
    linear-gradient(135deg, var(--bg), var(--bg2) 54%, #070a10);
}

a { color: inherit; text-decoration-color: rgba(110, 231, 255, 0.45); text-underline-offset: 0.24em; }
a:hover { color: var(--neon); }

.neo-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.neo-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 18px clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #070a10;
  overflow: visible;
}

body {
  padding-top: 76px;
}

.neo-brand {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.neo-nav { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.neo-nav a,
.neo-nav-group-button { text-decoration: none; }
.neo-nav a.active,
.neo-nav-group.active > .neo-nav-group-button { color: var(--neon); }

.neo-nav-group {
  position: relative;
  display: inline-flex;
}

.neo-nav-group-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 247, 255, 0.16);
  border-radius: 8px;
  min-height: 36px;
  padding: 8px 10px;
  color: inherit;
  background: rgba(110, 231, 255, 0.06);
  font: 700 14px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.neo-nav-group-button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.neo-subnav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: none;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #09101a;
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
}

.neo-nav-group.is-open .neo-subnav,
.neo-nav-group:hover .neo-subnav,
.neo-nav-group:focus-within .neo-subnav {
  display: grid;
  gap: 2px;
}

.neo-subnav a {
  display: block;
  border-radius: 6px;
  padding: 9px 10px;
  white-space: nowrap;
}

.neo-subnav a:hover {
  background: rgba(110, 231, 255, 0.08);
}

.neo-header-storefront .neo-brand {
  max-width: min(38vw, 420px);
}

.neo-header-storefront .neo-nav {
  flex: 0 0 auto;
}

.neo-header-storefront .neo-nav a {
  white-space: nowrap;
}

.neo-menu {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  background: var(--panel);
}

.sk-header-cart {
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 8px;
  min-width: 118px;
  height: 44px;
  border: 1px solid rgba(255, 196, 0, .44);
  border-radius: 4px;
  padding: 4px 5px 4px 8px;
  background: #05080d;
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
}

.sk-header-cart.is-visible {
  display: inline-flex;
}

.sk-header-cart strong {
  position: relative;
  z-index: 2;
  color: #ffc400;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(255, 196, 0, .72), 0 0 12px rgba(255, 196, 0, .34);
}

.sk-header-cart img {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: saturate(1.15) brightness(1.08);
}

.sk-header-cart span {
  position: absolute;
  z-index: 3;
  top: -8px;
  right: -8px;
  min-width: 34px;
  border: 2px solid #ffc400;
  border-radius: 6px;
  padding: 1px 5px 2px;
  background: #05080d;
  color: #ffc400;
  box-shadow: 0 0 8px rgba(255, 196, 0, .62);
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  font-weight: 900;
}

.sk-header-cart.is-gold-live {
  animation: sk-gold-pulse 1.8s ease-in-out infinite;
}

.sk-header-cart.is-gold-live::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sk-header-cart.is-gold-live::after {
  inset: 0;
  z-index: 2;
  border-radius: 4px;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .42) 46%, rgba(255, 238, 120, .7) 52%, transparent 66%, transparent 100%);
  transform: translateX(-120%);
  mix-blend-mode: screen;
  animation: sk-gold-shimmer 2.6s ease-in-out infinite;
}

.sk-header-cart.is-gold-live span {
  animation: sk-gold-badge 1.8s ease-in-out infinite;
}

.sk-header-cart.is-gold-live strong {
  animation: sk-gold-text 1.8s ease-in-out infinite;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 24px;
  align-items: stretch;
  min-height: 520px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 70px var(--shadow), inset 0 0 0 1px rgba(255,255,255,.03);
}

.hero-card { padding: clamp(24px, 5vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(42px, 8vw, 92px); }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 46px); }
h3 { margin: 0 0 10px; }
.lead { max-width: 680px; color: var(--muted); font-size: 20px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(110, 231, 255, 0.08);
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary { background: linear-gradient(90deg, rgba(110,231,255,.95), rgba(125,255,178,.9)); color: #061019; }
.btn.danger { background: rgba(255, 143, 143, 0.12); border-color: rgba(255,143,143,.36); }

.stats {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.stat { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(0,0,0,.18); }
.stat b { display: block; color: var(--neon); font-size: 34px; line-height: 1; }
.stat span { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel2); }
.card p { color: var(--muted); margin-bottom: 0; }

.list { display: grid; gap: 12px; }
.tool-link {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 38, 0.72);
  text-decoration: none;
}
.tool-link small { display: block; color: var(--green); margin-bottom: 4px; }

.form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}
label { color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(0,0,0,.25);
}

.admin-light-form,
form[style*="background:#f8fafc"],
form[style*="background: #f8fafc"] {
  color: #111827;
}

.admin-light-form label,
.admin-light-form small,
.admin-light-form strong,
.admin-light-form p,
form[style*="background:#f8fafc"] label,
form[style*="background:#f8fafc"] small,
form[style*="background:#f8fafc"] strong,
form[style*="background:#f8fafc"] p,
form[style*="background: #f8fafc"] label,
form[style*="background: #f8fafc"] small,
form[style*="background: #f8fafc"] strong,
form[style*="background: #f8fafc"] p {
  color: #111827;
}

.admin-light-form a,
form[style*="background:#f8fafc"] a,
form[style*="background: #f8fafc"] a {
  color: #0f5f73;
}

.admin-light-form input,
.admin-light-form select,
.admin-light-form textarea,
form[style*="background:#f8fafc"] input,
form[style*="background:#f8fafc"] select,
form[style*="background:#f8fafc"] textarea,
form[style*="background: #f8fafc"] input,
form[style*="background: #f8fafc"] select,
form[style*="background: #f8fafc"] textarea {
  color: #111827;
  background: #ffffff;
  border-color: #9ca3af;
}

.admin-light-form input::placeholder,
.admin-light-form textarea::placeholder,
form[style*="background:#f8fafc"] input::placeholder,
form[style*="background:#f8fafc"] textarea::placeholder,
form[style*="background: #f8fafc"] input::placeholder,
form[style*="background: #f8fafc"] textarea::placeholder {
  color: #6b7280;
}

.notice, .error {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.notice { border: 1px solid rgba(125,255,178,.3); background: rgba(125,255,178,.1); }
.error { border: 1px solid rgba(255,143,143,.35); background: rgba(255,143,143,.1); }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--green); }

.admin-license-shell h1 {
  font-size: clamp(36px, 6vw, 68px);
}

.admin-license-toolbar {
  display: grid;
  gap: 18px;
  padding: 18px;
  margin-top: 24px;
}

.admin-license-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto auto;
  gap: 12px;
  align-items: end;
}

.admin-license-search label,
.admin-compact-form label,
.admin-inline-form label {
  color: rgba(236, 247, 255, 0.82);
}

.admin-license-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-license-stats span {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(0,0,0,.18);
}

.admin-license-stats b {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1.1;
}

.tone-green b,
.tone-green { color: var(--green); }
.tone-red b,
.tone-red { color: var(--danger); }
.tone-gray b,
.tone-gray { color: rgba(236,247,255,.72); }

.admin-license-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-window-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.admin-window {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
}

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

.admin-window-head h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.admin-window-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 14px;
  align-items: start;
}

.admin-window-card {
  border: 1px solid rgba(148,247,255,.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0,0,0,.16);
}

.admin-window-card h3 {
  margin-bottom: 12px;
}

.admin-window-section {
  display: grid;
  gap: 12px;
}

.admin-empty-state {
  padding: 22px;
  color: var(--muted);
}

.admin-client-card {
  overflow: clip;
}

.admin-client-card.is-green {
  border-color: rgba(125,255,178,.45);
}

.admin-client-card.is-red {
  border-color: rgba(255,143,143,.5);
}

.admin-client-card.is-gray {
  border-color: rgba(236,247,255,.22);
}

.admin-client-summary {
  display: grid;
  grid-template-columns: 14px minmax(170px, 1.25fr) repeat(4, minmax(110px, .65fr)) auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 16px 18px;
  list-style: none;
}

.admin-client-summary::-webkit-details-marker {
  display: none;
}

.license-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(236,247,255,.46);
  box-shadow: 0 0 18px rgba(236,247,255,.22);
}

.is-green .license-dot {
  background: var(--green);
  box-shadow: 0 0 18px rgba(125,255,178,.48);
}

.is-red .license-dot {
  background: var(--danger);
  box-shadow: 0 0 18px rgba(255,143,143,.48);
}

.client-main,
.client-meta {
  min-width: 0;
}

.client-main strong,
.client-main small,
.client-meta b,
.client-meta small {
  display: block;
  overflow-wrap: anywhere;
}

.client-main strong {
  color: var(--text);
  font-size: 18px;
}

.client-main small,
.client-meta small,
.admin-muted,
.admin-device-card small,
.admin-data-grid dt {
  color: rgba(236,247,255,.68);
}

.client-meta b {
  color: var(--text);
  font-size: 14px;
}

.admin-client-body {
  border-top: 1px solid var(--line);
  padding: 16px 18px 18px;
  background: rgba(0,0,0,.14);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.admin-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(110, 231, 255, .06);
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button.active {
  border-color: rgba(110,231,255,.48);
  color: #061019;
  background: var(--neon);
}

.admin-tab-panel {
  display: none;
  min-height: 260px;
}

.admin-tab-panel.active {
  display: block;
}

.admin-compact-form {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.admin-compact-form h3,
.admin-compact-form .admin-check,
.admin-compact-form .admin-muted,
.admin-compact-form .stable-save {
  grid-column: span 3;
}

.admin-muted {
  margin: 0;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.admin-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.stable-save {
  width: fit-content;
  min-width: 188px;
  white-space: nowrap;
}

.stable-save.is-saving {
  opacity: .72;
  pointer-events: none;
}

.admin-device-list {
  display: grid;
  gap: 12px;
}

.admin-device-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(9, 16, 26, .72);
}

.admin-device-card.revoked {
  opacity: .78;
}

.admin-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-device-grid span,
.admin-data-grid div {
  border: 1px solid rgba(148,247,255,.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(0,0,0,.16);
}

.admin-device-grid small,
.admin-device-grid b,
.admin-data-grid dt,
.admin-data-grid dd {
  display: block;
  overflow-wrap: anywhere;
}

.admin-device-grid b,
.admin-data-grid dd {
  margin: 0;
  color: var(--text);
}

.admin-inline-form {
  max-width: none;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, auto) auto;
  align-items: end;
}

.admin-action-form {
  margin: 0;
}

.admin-storefront-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.admin-badge {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  background: rgba(236,247,255,.08);
}

.admin-badge.green {
  border-color: rgba(125,255,178,.42);
  color: var(--green);
  background: rgba(125,255,178,.1);
}

.admin-badge.gray {
  border-color: rgba(236,247,255,.16);
  color: rgba(236,247,255,.7);
}

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

.neo-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.club-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(720px 420px at 80% 10%, rgba(125,255,178,.16), transparent 62%),
    radial-gradient(760px 520px at 18% 78%, rgba(110,231,255,.13), transparent 64%);
}

.club-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 24px;
  align-items: end;
  padding-top: 64px;
}

.club-copy {
  padding: clamp(12px, 3vw, 34px) 0;
}

.club-form {
  padding: 26px;
  background: rgba(236, 247, 255, 0.96);
  color: #07101a;
}

.club-form p,
.club-form label {
  color: rgba(7, 16, 26, .72);
}

.club-form input,
.club-form select,
.club-form textarea {
  color: #07101a;
  background: #ffffff;
  border-color: rgba(7, 16, 26, .18);
}

.club-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.neo-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.neo-list li + li {
  margin-top: 8px;
}

.neo-list li::before {
  content: "• ";
  color: var(--green);
}

.club-program {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.club-program .tool-link p {
  margin: 10px 0 0;
  color: var(--muted);
}

.club-benefits,
.club-next,
.club-final {
  padding: 26px;
}

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

.club-benefit-grid div,
.club-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0,0,0,.18);
}

.club-facts {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.club-facts span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.club-facts strong {
  display: block;
  margin-top: 4px;
}

.club-final {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.partners-page,
.partner-yulia-page {
  background:
    radial-gradient(760px 420px at 86% 8%, rgba(214, 167, 93, .14), transparent 62%),
    linear-gradient(180deg, rgba(255, 246, 224, .04), transparent 34%);
}

.partner-directory-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(214, 167, 93, .24);
}

.partner-directory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 24px;
  align-items: center;
}

.partner-card-note,
.yulia-profile-sheet,
.yulia-paper-panel,
.yulia-step,
.yulia-list-card,
.yulia-fit,
.yulia-request-form {
  border: 1px solid rgba(82, 54, 28, .18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(82, 54, 28, .055) 1px, transparent 1px),
    linear-gradient(#f4dfb8, #edd2a3);
  background-size: 24px 24px, auto;
  color: #2b2019;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
}

.partner-card-note {
  padding: 28px;
  transform: rotate(-1deg);
}

.partner-card-note span,
.sheet-kicker {
  color: #8b4f30;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.partner-card-note h2,
.yulia-profile-sheet h2 {
  color: #1f1712;
}

.partner-card-note p {
  color: rgba(43, 32, 25, .76);
}

.yulia-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(214, 167, 93, .22);
  background:
    radial-gradient(600px 380px at 22% 16%, rgba(255, 233, 181, .16), transparent 62%),
    radial-gradient(680px 420px at 86% 70%, rgba(125, 255, 178, .08), transparent 62%);
}

.yulia-hero-grid,
.yulia-intro,
.yulia-paid,
.yulia-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  gap: 28px;
  align-items: center;
}

.yulia-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(40px, 6.6vw, 82px);
}

.yulia-profile-sheet {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  transform: rotate(1.2deg);
}

.sheet-pin {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(82, 54, 28, .55);
  border-radius: 50%;
}

.sheet-pin::before,
.sheet-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: 26px;
  background: rgba(82, 54, 28, .52);
}

.sheet-pin::before { transform: translateX(-50%) rotate(45deg); }
.sheet-pin::after { transform: translateX(-50%) rotate(-45deg); }

.sheet-line {
  display: grid;
  gap: 4px;
  border-top: 1px dashed rgba(82, 54, 28, .38);
  padding: 14px 0;
}

.sheet-line span {
  color: rgba(43, 32, 25, .58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-line strong {
  font-size: 19px;
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sheet-tags span {
  border: 1px solid rgba(82, 54, 28, .2);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .22);
  font-weight: 900;
}

.yulia-paper-panel {
  padding: 26px;
  font-size: 18px;
}

.yulia-paper-panel p {
  margin: 0;
  color: rgba(43, 32, 25, .78);
}

.yulia-paper-panel p + p {
  margin-top: 16px;
}

.yulia-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.yulia-step {
  padding: 24px;
}

.yulia-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 54, 28, .3);
  border-radius: 50%;
  color: #8b4f30;
  font-weight: 900;
}

.yulia-step h3,
.yulia-step p,
.yulia-list-card div,
.yulia-fit li {
  color: #2b2019;
}

.yulia-step p {
  margin-bottom: 0;
}

.yulia-list-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.yulia-list-card div,
.yulia-fit li {
  border: 1px dashed rgba(82, 54, 28, .32);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .2);
}

.yulia-fit {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  padding: 28px;
}

.yulia-fit ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yulia-request-band {
  border-top: 1px solid rgba(214, 167, 93, .22);
  background: rgba(255, 246, 224, .05);
}

.yulia-request-form {
  display: grid;
  gap: 13px;
  padding: 26px;
}

.yulia-request-form label {
  color: rgba(43, 32, 25, .74);
}

.yulia-request-form input,
.yulia-request-form select,
.yulia-request-form textarea {
  color: #2b2019;
  background: rgba(255, 255, 255, .72);
  border-color: rgba(82, 54, 28, .22);
}

.yulia-request-form textarea::placeholder {
  color: rgba(43, 32, 25, .52);
}

.sk-order {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 52px;
  color: #111827;
}

.sk-order-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.sk-order-head h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.sk-order .lead {
  max-width: 740px;
  color: #5b6472;
}

.sk-cart-jump {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 9px 12px;
  color: #111827;
  background: #ffc400;
  font-weight: 800;
  text-decoration: none;
}

.sk-cart-jump span {
  min-width: 24px;
  border-radius: 999px;
  padding: 2px 7px;
  background: #111827;
  color: #fff;
  text-align: center;
}

.sk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.sk-menu-panel {
  min-width: 0;
}

.sk-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.sk-chip {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 12px;
  color: #111827;
  background: #f3f4f6;
  cursor: pointer;
  font-weight: 700;
}

.sk-chip.active {
  border-color: #ffc400;
  background: #ffc400;
}

.sk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
}

.sk-product {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  color: #111827;
}

.sk-product-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.sk-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sk-product-image strong {
  color: #ffc400;
  font-size: 34px;
}

.sk-product h3 {
  min-height: 40px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.sk-product-meta {
  min-height: 16px;
  color: #8b93a1;
  font-size: 12px;
  text-align: center;
}

.sk-product-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.sk-product-bottom strong {
  justify-self: end;
}

.sk-product-bottom .btn {
  min-width: 44px;
  padding: 8px 12px;
}

.sk-product-qty {
  grid-column: 1 / -1;
  color: #5b6472;
  font-size: 12px;
}

.sk-cart,
.sk-memory {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .08);
}

.sk-memory {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 20px;
  padding: 16px;
}

.sk-memory h2,
.sk-memory p,
.sk-cart h2 {
  margin: 0;
  color: #111827;
}

.sk-memory p {
  color: #6b7280;
}

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

.sk-cart {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.sk-cart-title,
.sk-total,
.sk-cart-line,
.sk-qty-controls,
.sk-field-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-cart-title,
.sk-total,
.sk-cart-line {
  justify-content: space-between;
}

.sk-link-button {
  border: 0;
  background: transparent;
  color: #5b6472;
  cursor: pointer;
  font-weight: 800;
}

.sk-cart-lines {
  display: grid;
  gap: 10px;
}

.sk-cart-line {
  border-bottom: 1px solid #eef0f4;
  padding-bottom: 10px;
}

.sk-cart-item {
  display: grid;
  min-width: 0;
}

.sk-cart-item span {
  font-weight: 800;
}

.sk-cart-item small {
  color: #6b7280;
}

.sk-qty-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid #111827;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font-weight: 800;
}

.sk-total {
  border-top: 1px solid #eef0f4;
  padding-top: 12px;
  font-size: 20px;
}

.sk-checkout-form {
  display: grid;
  gap: 12px;
}

.sk-field-row > label {
  flex: 1 1 0;
}

.sk-cart label {
  display: grid;
  gap: 6px;
  color: #5b6472;
  font-size: 13px;
  font-weight: 700;
}

.sk-cart input,
.sk-cart select,
.sk-cart textarea {
  width: 100%;
  border: 1px solid #d8dde5;
  border-radius: 6px;
  padding: 10px 11px;
  color: #111827;
  background: #fff;
  font: inherit;
}

.sk-cart textarea {
  resize: vertical;
}

.sk-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  background: #f3f4f6;
  padding: 3px;
}

.sk-segmented button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  font-weight: 800;
}

.sk-segmented button.active {
  background: #ffc400;
}

.sk-submit {
  width: 100%;
}

.sk-submit.is-ready {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background: linear-gradient(100deg, #64ddff 0%, #78f0b0 46%, #ffc400 100%);
  background-size: 220% 100%;
  color: #07111f;
  box-shadow: 0 0 18px rgba(100, 221, 255, .55), 0 0 30px rgba(120, 240, 176, .35);
  animation: sk-submit-glow 1.45s ease-in-out infinite, sk-submit-flow 2.4s linear infinite;
}

.sk-submit.is-ready::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  animation: sk-submit-shine 1.9s ease-in-out infinite;
}

.sk-submit.is-ready:disabled {
  animation: none;
}

.sk-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

@keyframes sk-submit-glow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(100, 221, 255, .48), 0 0 28px rgba(120, 240, 176, .28);
  }
  50% {
    box-shadow: 0 0 24px rgba(100, 221, 255, .75), 0 0 44px rgba(120, 240, 176, .48);
  }
}

@keyframes sk-submit-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes sk-submit-shine {
  0% { left: -45%; }
  55%, 100% { left: 120%; }
}

@keyframes sk-gold-pulse {
  0%, 100% {
    border-color: rgba(255, 196, 0, .52);
    box-shadow: 0 0 12px rgba(255, 196, 0, .36), 0 0 28px rgba(255, 196, 0, .18);
  }
  50% {
    border-color: rgba(255, 232, 91, .95);
    box-shadow: 0 0 20px rgba(255, 214, 0, .74), 0 0 46px rgba(255, 196, 0, .34);
  }
}

@keyframes sk-mobile-gold-pulse {
  0%, 100% {
    border-color: rgba(255, 196, 0, .48);
    box-shadow: 0 0 8px rgba(255, 196, 0, .26);
  }
  50% {
    border-color: rgba(255, 232, 91, .82);
    box-shadow: 0 0 14px rgba(255, 196, 0, .38);
  }
}

@keyframes sk-gold-shimmer {
  0% { transform: translateX(-125%); opacity: 0; }
  18% { opacity: .9; }
  52%, 100% { transform: translateX(125%); opacity: 0; }
}

@keyframes sk-gold-badge {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 196, 0, .58);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 232, 91, .96);
  }
}

@keyframes sk-gold-text {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 196, 0, .72), 0 0 18px rgba(255, 196, 0, .38);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 232, 91, .98), 0 0 28px rgba(255, 196, 0, .64);
  }
}

.sk-status,
.sk-empty {
  color: #6b7280;
  margin: 0;
}

@media (max-width: 820px) {
  body {
    padding-top: 64px;
  }
  .neo-header {
    gap: 10px;
    min-height: 64px;
    height: 64px;
    padding: 8px 14px;
    overflow: visible;
    backdrop-filter: none;
    transform: translateZ(0);
    will-change: auto;
  }
  .neo-brand {
    flex: 1 1 auto;
    font-size: 18px;
    line-height: 1;
  }
  .neo-menu { display: inline-flex; }
  .neo-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #09101a;
  }
  .sk-header-cart {
    min-width: 112px;
    height: 42px;
    box-shadow: none;
  }
  .sk-header-cart strong {
    font-size: 23px;
  }
  .sk-header-cart img {
    width: 38px;
    height: 38px;
  }
  .sk-header-cart span {
    top: -7px;
    right: -7px;
    min-width: 32px;
    font-size: 12px;
  }
  .sk-header-cart.is-gold-live {
    animation: sk-mobile-gold-pulse 2.2s ease-in-out infinite;
  }
  .sk-header-cart.is-gold-live::after {
    display: none;
  }
  .sk-header-cart.is-gold-live span,
  .sk-header-cart.is-gold-live strong {
    animation: none;
  }
  .neo-nav.is-open { display: flex; }
  .neo-nav a { padding: 10px; }
  .neo-nav-group {
    display: grid;
    width: 100%;
  }
  .neo-nav-group-button {
    width: 100%;
    min-height: 42px;
    text-align: left;
  }
  .neo-subnav {
    position: static;
    display: grid;
    gap: 2px;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
  }
  .hero, .grid { grid-template-columns: 1fr; }
  .club-hero-grid,
  .club-program,
  .club-final {
    grid-template-columns: 1fr;
  }
  .partner-directory-grid,
  .yulia-hero-grid,
  .yulia-intro,
  .yulia-paid,
  .yulia-fit,
  .yulia-request-grid {
    grid-template-columns: 1fr;
  }
  .partner-directory-hero,
  .yulia-hero {
    min-height: 0;
  }
  .partner-card-note,
  .yulia-profile-sheet {
    transform: none;
  }
  .yulia-step-grid {
    grid-template-columns: 1fr;
  }
  .club-role-grid,
  .club-benefit-grid {
    grid-template-columns: 1fr;
  }
  .sk-order-head,
  .sk-layout,
  .sk-memory {
    grid-template-columns: 1fr;
  }
  .sk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sk-cart {
    position: static;
  }
  .sk-field-row {
    flex-direction: column;
    align-items: stretch;
  }
  .sk-cart-jump {
    justify-content: center;
  }
  .hero { min-height: 0; }
  .neo-footer { flex-direction: column; }
  .admin-license-search,
  .admin-license-stats,
  .admin-client-summary,
  .admin-compact-form,
  .admin-device-grid,
  .admin-inline-form,
  .admin-data-grid,
  .admin-window-grid {
    grid-template-columns: 1fr;
  }
  .admin-compact-form .admin-check,
  .admin-compact-form .admin-muted,
  .admin-compact-form .stable-save {
    grid-column: auto;
  }
  .admin-client-summary {
    gap: 10px;
  }
  .admin-window-head,
  .admin-storefront-head {
    flex-direction: column;
  }
  .stable-save {
    width: 100%;
  }
}

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

.sk-history-link,
.sk-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #111827;
  border-radius: 8px;
  padding: 9px 12px;
  color: #111827;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
}

.sk-history-link:hover,
.sk-link-button:hover {
  border-color: #ffc400;
  background: #fff8d8;
}

.sk-grid,
.sk-menu-panel,
.sk-layout {
  overflow: visible;
}

.sk-product {
  position: relative;
  border: 3px solid transparent;
  border-radius: 10px;
  padding: 8px;
  overflow: visible;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.sk-product.is-selected {
  border-color: #ffc400;
  background: #fffdf3;
  box-shadow: 0 10px 26px rgba(255, 196, 0, .28);
}

.sk-cart-item span,
.sk-line-sum,
.sk-total strong,
.sk-history-card h2,
.sk-history-line strong,
.sk-history-line b,
.sk-history-total strong {
  color: #07111f;
  font-weight: 900;
}

.sk-cart-item small,
.sk-cart label,
.sk-status,
.sk-empty,
.sk-history-card p,
.sk-history-line small {
  color: #3f4b5b;
}

.sk-product h3,
.sk-product-bottom strong {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
}

.sk-product .sk-product-meta {
  color: rgba(255, 255, 255, .78);
}

.sk-product.is-selected h3,
.sk-product.is-selected .sk-product-bottom strong {
  color: #07111f;
  text-shadow: none;
}

.sk-product.is-selected .sk-product-meta {
  color: #3f4b5b;
}

.sk-product-qty {
  position: absolute;
  z-index: 5;
  top: -10px;
  right: -8px;
  grid-column: auto;
  min-width: 34px;
  border: 2px solid #d69a00;
  border-radius: 999px;
  padding: 4px 9px;
  background: #ffc400;
  color: #07111f;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .22);
  font-size: 13px;
  line-height: 1;
  text-align: center;
  font-weight: 900;
}

.sk-add-button.is-active {
  border-color: #07111f;
  background: #ffc400;
  color: #07111f;
  box-shadow: 0 5px 14px rgba(255, 196, 0, .35);
}

.sk-cart-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  justify-content: stretch;
}

.sk-cart-line .sk-qty-controls {
  margin-top: 8px;
  justify-content: start;
}

.sk-cart-thumb,
.sk-history-img,
.sk-history-mini-img {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.sk-cart-thumb {
  width: 58px;
  height: 58px;
}

.sk-history-img {
  width: 70px;
  height: 70px;
}

.sk-history-mini-img {
  width: 44px;
  height: 44px;
}

.sk-cart-thumb img,
.sk-history-img img,
.sk-history-mini-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sk-image-fallback {
  border: 1px solid #d8dde5;
  color: #07111f;
  font-weight: 900;
}

.sk-history-page {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 56px;
  color: #07111f;
}

.sk-history-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.sk-history-head h1 {
  margin: 0;
  color: #ecf7ff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.sk-history-head .lead {
  color: rgba(236, 247, 255, .88);
}

.sk-history-shell,
.sk-history-list,
.sk-history-lines {
  display: grid;
  gap: 14px;
}

.sk-history-card {
  border: 1px solid #d8dde5;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .08);
}

.sk-active-current {
  border-color: #ffc400;
  box-shadow: 0 18px 44px rgba(255, 196, 0, .18);
}

.sk-history-card-head,
.sk-history-total,
.sk-history-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.sk-history-card-head h2 {
  margin: 0;
  font-size: 24px;
  color: #07111f;
}

.sk-service-order {
  display: block;
  margin-top: 3px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.sk-status-pill {
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffc400;
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.sk-ready-note {
  border-left: 4px solid #20c46b;
  padding: 10px 12px;
  background: #edfff5;
  color: #07111f;
  font-weight: 800;
}

.sk-history-line {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #eef0f4;
  padding-top: 12px;
}

.sk-history-line > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sk-history-total {
  border-top: 1px solid #eef0f4;
  padding-top: 12px;
  font-size: 20px;
}

.sk-repeat-button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

@media (max-width: 820px) {
  .sk-head-actions,
  .sk-history-head {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .sk-head-actions,
  .sk-history-head .sk-history-link,
  .sk-cart-jump {
    width: 100%;
  }
  .sk-history-link,
  .sk-cart-jump {
    justify-content: center;
  }
  .sk-cart-line {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .sk-qty-controls,
  .sk-line-sum {
    grid-column: 2;
    justify-self: start;
  }
  .sk-cart-line .sk-qty-controls {
    grid-column: auto;
    justify-self: start;
  }
  .sk-history-line {
    grid-template-columns: 62px minmax(0, 1fr);
  }
  .sk-history-line b {
    grid-column: 2;
  }
  .sk-history-card-head,
  .sk-history-total,
  .sk-history-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
