:root {
  color-scheme: light;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  background: #f5f6f8;
  color: #1e2430;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.admin-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 28px;
  background: #151922;
  color: white;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
}

.admin-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.wrap {
  width: min(1120px, calc(100vw - 32px));
  margin: 28px auto;
}

.login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  background: white;
  border: 1px solid #e2e6ef;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(24, 31, 43, .08);
}

.narrow {
  width: min(420px, 100%);
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.brand-chip {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.brand-chip.active {
  border-color: #246bfe;
  box-shadow: 0 0 0 2px rgba(36, 107, 254, .12);
}

.brand-chip span {
  color: #667085;
  font-size: 13px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.metric-card {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(24, 31, 43, .06);
}

.metric-card span,
.metric-card small {
  color: #667085;
}

.metric-card strong {
  font-size: 26px;
  line-height: 1.1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  gap: 16px;
  align-items: start;
}

.dashboard-grid .panel h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.work-list {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.work-list li {
  padding: 12px;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.work-list li.hot {
  border-color: #246bfe;
  background: #f3f7ff;
}

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

.rating-bars,
.rating-trend {
  display: grid;
  gap: 12px;
}

.bar-row,
.trend-day {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 82px;
  gap: 10px;
  align-items: center;
}

.trend-day {
  grid-template-columns: 96px minmax(0, 1fr) 110px;
}

.bar-row strong,
.trend-day strong {
  white-space: nowrap;
}

.bar-row em {
  color: #667085;
  font-style: normal;
  text-align: right;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf1f7;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #246bfe, #17b26a);
}

.reason-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  padding: 12px;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.reason-list p {
  margin: 8px 0;
}

.contact-status-form {
  display: grid;
  grid-template-columns: 120px minmax(160px, 1fr) auto;
  gap: 8px;
  min-width: 360px;
}

.contact-status-form button {
  min-height: 38px;
}

.note {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #475467;
  background: #f2f4f7;
}

.full {
  width: 100%;
}

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

.usage-card,
.status-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(24, 31, 43, .06);
}

.usage-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.usage-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf1f7;
}

.usage-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #246bfe;
}

.status-card.ok {
  border-color: #b8dfca;
  background: #f3fbf6;
}

.status-card.warn {
  border-color: #f0c7c0;
  background: #fff7f5;
}

.status-card span,
.usage-card span,
.usage-card small {
  color: #667085;
}

h1, h2, p {
  margin-top: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
}

h2 {
  margin: 34px 0 12px;
  font-size: 21px;
}

.muted {
  color: #667085;
}

.error {
  color: #c0362c;
  min-height: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #303848;
}

input, textarea, select {
  width: 100%;
  min-width: 0;
  border: 1px solid #cdd5e1;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: #1e2430;
  background: white;
}

textarea {
  resize: vertical;
}

button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: #246bfe;
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
}

.button.ghost {
  background: #edf1f7;
  color: #1e2430;
}

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

.form-grid h1,
.form-grid .wide,
.form-grid .actions {
  grid-column: 1 / -1;
}

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

.check input {
  width: auto;
}

.actions {
  display: flex;
  gap: 12px;
}

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

.table-head,
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.table-head {
  margin-bottom: 12px;
}

.table-head h2 {
  margin: 0;
}

.pager {
  margin-top: 16px;
  color: #667085;
}

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

.button.disabled {
  pointer-events: none;
  cursor: default;
  opacity: .48;
}

.upload-box {
  border: 1px dashed #b8c4d6;
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.upload-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 13px 10px;
  border-bottom: 1px solid #e7ebf2;
  text-align: left;
  vertical-align: middle;
}

th {
  color: #667085;
  font-size: 13px;
}

code {
  background: #f0f3f8;
  padding: 3px 6px;
  border-radius: 5px;
}

.swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.asset-list {
  line-height: 2;
}

.public {
  --brand: #246bfe;
  background: #f4f7fb;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.public * {
  max-width: 100%;
  min-width: 0;
}

.mobile-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  padding: 20px max(18px, calc((100vw - 1040px) / 2)) 30px;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    radial-gradient(circle at 82% 12%, rgba(119, 214, 255, .38), transparent 24%),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, .18), transparent 22%),
    linear-gradient(145deg, color-mix(in srgb, var(--brand), #031026 36%), color-mix(in srgb, var(--brand), #0b66ff 8%) 52%, #1357e8);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .2), 0 16px 34px rgba(17, 67, 180, .22);
}

.mobile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .12) 42% 43%, transparent 43% 100%),
    linear-gradient(22deg, rgba(255, 255, 255, .09), transparent 38%);
  opacity: .72;
  pointer-events: none;
}

.mobile-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

.mobile-topbar strong {
  font-size: 18px;
}

.mobile-topbar span {
  opacity: .82;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff4a9;
  background: rgba(6, 22, 50, .32);
  border: 1px solid rgba(255, 221, 72, .48);
  font-size: 13px;
  font-weight: 900;
  opacity: 1;
  box-shadow: 0 10px 22px rgba(0, 18, 55, .18);
}

.lang-toggle {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
}

.mobile-hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.mobile-hero p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  opacity: .95;
}

.pill-action,
.quick-actions a,
.mail-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .16);
  color: white;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .25);
}

.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.product-hero .quick-actions {
  margin-bottom: 24px;
}

.kllstrat-page {
  background: #eef3f8;
}

.kllstrat-page .mobile-hero {
  --brand: #1f6bff;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    radial-gradient(circle at 83% 10%, rgba(255, 221, 72, .26), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(91, 197, 255, .34), transparent 28%),
    linear-gradient(150deg, #071832 0%, #113f95 48%, #1f6bff 100%);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
}

.kllstrat-page .mobile-topbar strong {
  letter-spacing: .04em;
}

.kllstrat-page .mobile-hero h1 {
  max-width: 560px;
  text-wrap: balance;
}

.story-copy {
  max-width: 620px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .92);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  margin: 2px 0 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 221, 72, .45);
  border-radius: 999px;
  color: #fff4a9;
  background: rgba(6, 22, 50, .32);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-name-line {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.support-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.support-path a {
  min-width: 0;
  padding: 16px;
  border: 1px solid #dce5f1;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  color: inherit;
  text-decoration: none;
}

.support-path span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #10213f;
  background: #ffe15a;
  font-weight: 900;
  font-size: 12px;
}

.support-path strong {
  display: block;
  margin-bottom: 7px;
  color: #0f172a;
  font-size: 16px;
}

.support-path p {
  margin: 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.55;
}

.kllstrat-page .manual-link,
.kllstrat-page .contact-form button,
.kllstrat-page .rating-submit {
  background: linear-gradient(135deg, #1f6bff, #0e4ccc);
}

.mobile-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.mobile-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

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

.manual-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.mobile-section h2 {
  margin-top: 0;
}

.step-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.step-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand), white 84%);
  color: var(--brand);
  font-weight: 900;
}

.step-list p {
  margin: 4px 0 0;
}

.contact-card {
  border-color: color-mix(in srgb, var(--brand), white 55%);
}

.warranty-card {
  border-color: color-mix(in srgb, var(--brand), white 48%);
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--brand), white 94%));
}

.warranty-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
}

.warranty-head > span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  text-align: center;
}

.warranty-head h2 {
  margin-bottom: 6px;
}

.warranty-form {
  margin-top: 14px;
}

.coupon-box {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 14px;
  border: 1px dashed color-mix(in srgb, var(--brand), white 35%);
  border-radius: 12px;
  background: white;
}

.coupon-box span {
  color: #667085;
  font-weight: 800;
}

.coupon-box strong {
  font-size: 26px;
  color: var(--brand);
}

.coupon-box code {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #dfe6f0;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 900;
}

.coupon-box p {
  margin: 0;
}

.rating-box {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.rating-box h3,
.rating-box p {
  margin: 0;
}

.stars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.stars input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stars span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: white;
  color: #475467;
  font-weight: 900;
  white-space: nowrap;
}

.stars input:checked + span {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand), transparent 84%);
}

.review-reason {
  font-weight: 800;
}

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

.contact-form button {
  width: 100%;
}

.contact-form .mail-link {
  background: #eef2f7;
  color: #1e2430;
  border-color: #d9e0ea;
}

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

.support-actions .button {
  width: 100%;
}

.success {
  border-radius: 8px;
  padding: 10px 12px;
  background: #ecfdf3;
  color: #067647;
  font-weight: 800;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.chat-bubble {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  max-width: calc(100vw - 28px);
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .24);
  background: var(--brand);
}

.chat-panel {
  width: min(360px, calc(100vw - 28px));
  max-height: 78vh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  border-radius: 18px;
  padding: 14px;
  background: white;
  border: 1px solid #d8e0ec;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
  animation: rise .18s ease-out;
}

.chat-panel[hidden],
.chat-bubble[hidden],
.chat-profile[hidden],
.chat-send[hidden] {
  display: none;
}

.chat-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-close {
  width: 32px;
  min-height: 32px;
  border-radius: 50%;
  padding: 0;
  background: #eef2f7;
  color: #1e2430;
}

.chat-intro {
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

.chat-messages {
  display: grid;
  gap: 8px;
  min-height: 120px;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border-radius: 12px;
  background: #f6f8fb;
}

.buyer-chat {
  justify-self: end;
  max-width: 86%;
  padding: 9px 11px;
  border-radius: 12px;
  color: white;
  background: var(--brand);
  border: 1px solid var(--brand);
}

.buyer-chat.admin {
  justify-self: start;
  color: #1e2430;
  background: white;
  border-color: #e3e8f0;
}

.buyer-chat span,
.chat-msg span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  opacity: .7;
  text-transform: uppercase;
}

.buyer-chat p,
.chat-msg p {
  margin: 3px 0 0;
}

.chat-profile,
.chat-send,
.reply-form {
  display: grid;
  gap: 8px;
}

.chat-send {
  grid-template-columns: 1fr auto;
}

.chat-admin-grid {
  display: grid;
  gap: 16px;
}

.chat-admin-card {
  display: grid;
  gap: 12px;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  padding: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.chat-admin-card.unread {
  border-color: #246bfe;
  box-shadow: 0 0 0 2px rgba(36, 107, 254, .12), 0 12px 34px rgba(15, 23, 42, .06);
}

.inline-form {
  margin: 0;
}

.stacked-form {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.stacked-form input[type="date"] {
  min-height: 36px;
  padding: 8px 10px;
}

.chat-admin-card header {
  display: grid;
  gap: 3px;
}

.chat-admin-card header span,
.chat-admin-card header small {
  color: #667085;
}

.chat-linked-warranty {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid #b7dfc9;
  border-radius: 8px;
  background: #f0fdf4;
}

.chat-linked-warranty.warn {
  border-color: #fedf89;
  background: #fffbeb;
}

.chat-linked-warranty span {
  color: #475467;
  font-size: 13px;
}

.chat-log {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
  padding: 10px;
  border-radius: 10px;
  background: #f7f9fc;
}

.chat-msg {
  width: fit-content;
  max-width: min(680px, 92%);
  padding: 9px 11px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e3e8f0;
}

.chat-msg.admin {
  justify-self: end;
  color: white;
  background: #246bfe;
}

.chat-msg small {
  color: inherit;
  opacity: .72;
}

.stat-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 10px;
  background: white;
  border: 1px solid #dfe6f0;
  color: inherit;
  text-decoration: none;
}

.stat-card:hover {
  border-color: #246bfe;
  box-shadow: 0 0 0 2px rgba(36, 107, 254, .10);
}

@keyframes rise {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero {
  padding: 44px max(24px, calc((100vw - 1040px) / 2)) 38px;
  color: white;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand), #111 18%), var(--brand));
}

.brandmark {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 6vw, 58px);
  margin-bottom: 12px;
}

.hero p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}

.public-list,
.content {
  width: min(1040px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.product-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 14px;
  background: white;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.product-card strong {
  font-size: 20px;
}

.product-card span {
  color: #667085;
}

.cover {
  display: block;
  width: min(620px, 100%);
  height: auto;
  max-height: 390px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  margin-top: 18px;
  padding: clamp(10px, 2.8vw, 20px);
  border: 1px solid rgba(255, 255, 255, .38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(245, 249, 255, .88)),
    radial-gradient(circle at 50% 100%, rgba(51, 111, 255, .18), transparent 56%);
  box-shadow:
    0 24px 55px rgba(0, 22, 81, .28),
    inset 0 1px 0 rgba(255, 255, 255, .86);
}

.product-hero .cover {
  transform: translateY(var(--cover-y, 0px)) scale(var(--cover-scale, 1));
  transform-origin: center top;
  opacity: var(--cover-opacity, 1);
  filter: saturate(var(--cover-saturation, 1)) blur(var(--cover-blur, 0px));
  will-change: transform, opacity, filter;
  transition: transform .12s linear, opacity .12s linear, filter .12s linear;
}

.motion-ready .support-path a,
.motion-ready .mobile-section {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition:
    opacity .56s ease,
    transform .56s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .28s ease;
}

.motion-ready .support-path a.is-visible,
.motion-ready .mobile-section.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .support-path a:nth-child(2) {
  transition-delay: .06s;
}

.motion-ready .support-path a:nth-child(3) {
  transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {
  .product-hero .cover,
  .motion-ready .support-path a,
  .motion-ready .mobile-section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.content {
  font-size: 17px;
  line-height: 1.75;
  max-width: calc(100vw - 32px);
  overflow-x: hidden;
}

.content ol {
  padding-left: 24px;
}

.video-grid, .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.video-grid iframe,
.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #111;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e4e8f0;
}

details {
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

summary {
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 720px) {
  html,
  body,
  .public {
    overscroll-behavior-x: none;
    touch-action: pan-y;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .admin-nav {
    overflow-x: auto;
    padding: 12px 16px;
  }

  .page-head,
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .dashboard-grid,
  .server-grid,
  .rating-layout {
    grid-template-columns: 1fr;
  }

  .bar-row,
  .trend-day {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .bar-row em,
  .trend-day strong {
    grid-column: 2;
    text-align: left;
  }

  .contact-status-form {
    grid-template-columns: 1fr;
    min-width: 220px;
  }

  .warranty-head {
    grid-template-columns: 1fr;
  }

  .warranty-head > span {
    width: 92px;
  }

  .mobile-hero {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .mobile-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .mobile-topbar strong {
    overflow-wrap: anywhere;
  }

  .mobile-topbar .lang-toggle {
    justify-self: end;
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .support-badge {
    grid-column: 1 / 2;
    width: fit-content;
    min-height: 30px;
    justify-content: flex-start;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12px;
  }

  .mobile-hero h1 {
    font-size: clamp(27px, 7.5vw, 34px);
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .product-hero .quick-actions {
    margin: 12px 0 14px;
  }

  .kllstrat-page .mobile-hero {
    padding-bottom: 16px;
  }

  .kllstrat-page .mobile-hero h1 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .story-copy {
    max-width: calc(100vw - 24px);
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-trust {
    display: flex;
    width: 100%;
    min-height: auto;
    padding: 9px 11px;
    border-radius: 12px;
    line-height: 1.35;
  }

  .product-name-line {
    font-size: 12px;
    line-height: 1.45;
  }

  .support-path {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-path a {
    padding: 14px;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  .public-list,
  .content {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-top: 14px;
  }

  .mobile-product .content,
  .mobile-section,
  .warranty-card,
  .rating-box {
    min-width: 0;
  }

  .mobile-section h2,
  .rating-box h3,
  .rating-box p,
  .mobile-section p,
  label {
    overflow-wrap: anywhere;
  }

  .cover {
    width: 100%;
    max-width: calc(100vw - 24px);
    max-height: 204px;
    aspect-ratio: 16 / 10;
    margin-top: 10px;
    padding: 8px;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    box-shadow: 0 18px 38px rgba(0, 20, 80, .22);
  }

  .video-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .mobile-section {
    padding: 14px;
  }

  .quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .quick-actions a {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .stars {
    gap: 4px;
  }

  .stars span {
    min-height: 38px;
    font-size: 13px;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-bubble {
    min-height: 42px;
    max-width: min(190px, calc(100vw - 24px));
    padding: 0 14px;
    font-size: 13px;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .chat-panel {
    width: calc(100vw - 24px);
  }

  .mobile-product .content {
    padding-bottom: 92px;
  }
}
