:root {
  --bg: #0d1213;
  --bg-secondary: #13191a;
  --surface: rgba(21, 29, 29, 0.7);
  --surface-strong: rgba(14, 20, 20, 0.82);
  --surface-soft: rgba(88, 219, 192, 0.08);
  --text: #eef7f4;
  --muted: #a8b8b3;
  --line: rgba(189, 255, 241, 0.12);
  --line-strong: rgba(120, 235, 214, 0.24);
  --primary: #42d0b4;
  --primary-dark: #2ea58d;
  --accent: #bff8ec;
  --accent-soft: #6edec9;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at 18% 10%, rgba(80, 212, 190, 0.12), transparent 20%),
    radial-gradient(circle at 82% 14%, rgba(124, 247, 220, 0.08), transparent 22%),
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(180deg, #0c1112 0%, #121818 46%, #0d1213 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

body::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.section-block,
.product-grid,
.review-preview-grid,
.cart-layout,
.checkout-layout,
.tracking-layout,
.executor-layout,
.details-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 820px;
}

main,
section,
article,
div,
form,
aside {
  min-width: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(49, 79, 148, 0.24);
  border-radius: 14px;
  background: rgba(5, 10, 21, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(2, 7, 18, 0.45);
  position: sticky;
  top: 18px;
  z-index: 20;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #dbe7ff;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), #5a9eff);
  box-shadow:
    0 0 0 8px rgba(63, 130, 255, 0.08),
    0 10px 24px rgba(19, 58, 143, 0.18);
  animation: brandPulse 4.6s ease-in-out infinite;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  border: 1px solid rgba(5, 8, 22, 0.4);
}

.brand-mark::after {
  inset: auto 5px 5px auto;
  width: 7px;
  height: 7px;
  background: #edf4ff;
  border: 0;
}

.brand-text,
h1,
h2,
h3 {
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
}

.brand-text {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  color: #dbe7ff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
  background: rgba(34, 101, 255, 0.14);
  border-color: rgba(58, 123, 255, 0.24);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 136, 255, 0.9), transparent);
  transform: scaleX(0.24);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.cart-count {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  background: rgba(35, 102, 255, 0.18);
  color: #8fb7ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero,
.inner-page {
  margin-top: 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.info-card,
.contact-card,
.page-heading,
.contact-panel,
.store-card,
.review-card,
.product-layout,
.order-summary,
.checkout-summary-card,
.checkout-form,
.empty-state,
.details-card,
.cart-item,
.review-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(189, 255, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 37, 37, 0.62), rgba(14, 20, 20, 0.54)),
    radial-gradient(circle at top right, rgba(191, 248, 236, 0.1), transparent 28%),
    rgba(18, 24, 24, 0.36);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.hero-copy,
.hero-card,
.info-card,
.contact-card,
.page-heading,
.contact-panel,
.store-card,
.review-card,
.product-layout,
.order-summary,
.checkout-summary-card,
.checkout-form,
.empty-state,
.details-card,
.cart-item,
.review-form,
.tracking-card,
.executor-card,
.auth-card,
.executor-session-card,
.account-panel,
.account-order-card {
  color: var(--text);
}

.hero-copy::before,
.hero-card::before,
.info-card::before,
.contact-card::before,
.page-heading::before,
.contact-panel::before,
.store-card::before,
.review-card::before,
.product-layout::before,
.order-summary::before,
.checkout-summary-card::before,
.checkout-form::before,
.empty-state::before,
.details-card::before,
.cart-item::before,
.review-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(191, 248, 236, 0.06), transparent 38%);
}

.hero-copy,
.hero-card,
.page-heading,
.contact-panel,
.product-layout,
.empty-state,
.details-card,
.checkout-form,
.checkout-summary-card {
  border-radius: var(--radius-xl);
}

.hero-copy,
.hero-card,
.page-heading,
.contact-panel,
.product-layout,
.checkout-form,
.checkout-summary-card,
.empty-state,
.details-card {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #6ea0ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

h1,
h2,
h3,
.hero-text,
.page-heading p,
.info-card p,
.contact-card p,
.store-card p,
.review-card p,
.product-copy p,
.detail-text,
.checkout-form p,
.empty-state p,
.cart-item-copy p,
.order-summary p,
.card-label,
.summary-label {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3,
.hero-card h1,
.hero-card h2,
.hero-card h3,
.page-heading h1,
.page-heading h2,
.page-heading h3,
.product-layout h1,
.product-layout h2,
.product-layout h3,
.details-card h1,
.details-card h2,
.details-card h3,
.auth-card h1,
.auth-card h2,
.auth-card h3,
.tracking-card h1,
.tracking-card h2,
.tracking-card h3,
.executor-card h1,
.executor-card h2,
.executor-card h3,
.account-panel h1,
.account-panel h2,
.account-panel h3,
.account-order-card h1,
.account-order-card h2,
.account-order-card h3,
.empty-state h1,
.empty-state h2,
.empty-state h3 {
  color: var(--text);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 1.06;
  max-width: 11.5ch;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.04rem;
  text-wrap: balance;
}

.hero-text,
.page-heading p,
.info-card p,
.contact-card p,
.store-card p,
.review-card p,
.product-copy p,
.detail-text,
.checkout-form p,
.empty-state p,
.cart-item-copy p,
.order-summary p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.product-price,
.tracking-card strong,
.executor-card strong,
.account-panel strong,
.account-order-card strong,
.summary-total strong {
  color: var(--primary);
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -32%;
  width: 28%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0;
}

.button:hover::after {
  opacity: 1;
  animation: buttonSweep 0.72s ease;
}

.button-primary {
  color: #edf4ff;
  background: linear-gradient(135deg, var(--primary), #5a9eff);
  box-shadow: 0 14px 34px rgba(33, 84, 188, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(58, 123, 255, 0.18);
}

.button-secondary:hover {
  border-color: var(--line-strong);
}

.hero-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(29, 24, 21, 0.98), rgba(18, 15, 13, 0.95)),
    radial-gradient(circle at top right, rgba(179, 58, 47, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(215, 180, 122, 0.06), transparent);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(31, 26, 22, 0.92), rgba(18, 15, 13, 0.96)),
    radial-gradient(circle at top left, rgba(215, 180, 122, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(179, 58, 47, 0.08), rgba(215, 180, 122, 0.08));
  animation: floatCard 6.2s ease-in-out infinite;
  will-change: transform;
}

.hero-benefits,
.hero-benefit,
.hero-proof,
.hero-side-title,
.hero-side-text,
.hero-offer-grid,
.hero-offer,
.hero-offer-tag {
  position: relative;
  z-index: 1;
}

.hero-text-lead {
  max-width: 56ch;
}

.hero-benefits {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-benefit {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(215, 180, 122, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(215, 180, 122, 0.04), transparent);
}

.hero-benefit strong {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-benefit span {
  display: block;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(215, 180, 122, 0.14);
  color: #f3e2cf;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-side-title {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.08;
}

.hero-side-text {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-offer {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(215, 180, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-offer-site {
  background:
    radial-gradient(circle at top right, rgba(215, 180, 122, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.hero-offer-telegram {
  background:
    radial-gradient(circle at top right, rgba(107, 138, 122, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.hero-offer-vk {
  background:
    radial-gradient(circle at top right, rgba(179, 58, 47, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.hero-offer-max {
  background:
    radial-gradient(circle at top right, rgba(215, 180, 122, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.hero-offer-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2dbc1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-offer strong {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-kicker {
  margin: 0 0 12px;
  color: #d7dded;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.card-label,
.summary-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.hero-card-score {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-card-score strong {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #fff5e9;
}

.hero-card-score span {
  color: var(--muted);
  line-height: 1.55;
}

.feature-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(215, 180, 122, 0.18);
  font-weight: 700;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-metric {
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(215, 180, 122, 0.06), transparent);
}

.hero-metric strong,
.hero-metric span,
.hero-card-note,
.hero-card-note p,
.hero-note-label {
  position: relative;
  z-index: 1;
}

.hero-metric strong {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.hero-metric span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.84rem;
}

.hero-card-note {
  margin-top: 14px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(215, 180, 122, 0.08));
}

.hero-note-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffd4a7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-note p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.92rem;
}

.hero-card-note-compact {
  margin-top: 18px;
}

.section-block,
.content-split,
.contact-panel,
.product-grid,
.steps-grid,
.review-preview-grid,
.cart-layout,
.checkout-layout {
  margin-top: 22px;
}

.section-block {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(45, 77, 145, 0.18);
  background:
    linear-gradient(180deg, rgba(7, 13, 27, 0.96), rgba(4, 9, 20, 0.96)),
    radial-gradient(circle at top right, rgba(40, 102, 255, 0.12), transparent 30%);
  box-shadow: 0 24px 72px rgba(2, 7, 18, 0.34);
}

.section-head h2,
.prestige-item p,
.prestige-label {
  color: #edf4ff;
}

.prestige-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.prestige-item {
  position: relative;
  overflow: hidden;
  padding: 20px 22px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(29, 24, 21, 0.96), rgba(18, 15, 13, 0.94)),
    linear-gradient(135deg, rgba(215, 180, 122, 0.05), transparent);
  box-shadow: var(--shadow);
}

.prestige-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #7fb0ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prestige-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tracking-search-card,
.tracking-card,
.executor-card,
.auth-card,
.executor-session-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 64, 44, 0.12);
  background: linear-gradient(180deg, rgba(29, 24, 21, 0.96), rgba(18, 15, 13, 0.94));
  box-shadow: var(--shadow);
}

.tracking-search-card::before,
.tracking-card::before,
.executor-card::before,
.auth-card::before,
.executor-session-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(179, 58, 47, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(215, 180, 122, 0.06), transparent 40%);
}

.tracking-search-card,
.tracking-card,
.executor-card,
.auth-card,
.executor-session-card {
  border-radius: var(--radius-xl);
}

.tracking-search-card {
  margin-top: 22px;
  padding: 24px;
}

.tracking-search {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.tracking-search label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.tracking-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(215, 180, 122, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  color: var(--text);
}

.tracking-layout,
.executor-layout {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.tracking-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tracking-card,
.executor-card {
  padding: 24px;
}

.tracking-card-primary {
  background:
    linear-gradient(160deg, rgba(39, 31, 26, 0.98), rgba(20, 16, 13, 0.94)),
    radial-gradient(circle at top right, rgba(215, 180, 122, 0.14), transparent 24%);
}

.tracking-card-wide {
  grid-column: 1 / -1;
}

.tracking-progress,
.tracking-meta,
.tracking-items,
.tracking-stage-list,
.tracking-history,
.executor-grid,
.executor-stage-row,
.executor-footer {
  position: relative;
  z-index: 1;
}

.tracking-progress {
  margin-top: 18px;
}

.tracking-progress strong {
  display: block;
  margin-top: 10px;
}

.tracking-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.tracking-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #ffe2bb);
  box-shadow: 0 0 24px rgba(179, 58, 47, 0.24);
}

.tracking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tracking-items {
  display: grid;
  gap: 12px;
}

.tracking-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tracking-contact,
.executor-contact,
.executor-note {
  color: var(--muted);
  line-height: 1.6;
}

.tracking-stage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tracking-stage {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.tracking-stage strong {
  display: block;
  margin-bottom: 8px;
}

.tracking-stage p,
.tracking-history-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.tracking-stage-done {
  border-color: rgba(215, 180, 122, 0.22);
}

.tracking-stage-current {
  border-color: rgba(255, 214, 150, 0.26);
  background: linear-gradient(135deg, rgba(255, 214, 150, 0.1), rgba(215, 180, 122, 0.08));
}

.tracking-history {
  display: grid;
  gap: 12px;
}

.tracking-history-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tracking-history-item strong,
.tracking-history-item span {
  display: block;
}

.tracking-history-item span {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.executor-layout {
  grid-template-columns: 1fr;
}

.executor-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.executor-section {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.executor-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.executor-card-head,
.executor-grid,
.executor-footer {
  display: grid;
  gap: 16px;
}

.executor-card-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.executor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(215, 180, 122, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.executor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.executor-stage-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.executor-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.executor-stage-button {
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.executor-stage-button:hover,
.executor-stage-button.is-current {
  border-color: rgba(215, 180, 122, 0.22);
  background: rgba(215, 180, 122, 0.1);
}

.executor-stage-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.executor-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
}

.executor-helper {
  color: var(--muted);
  line-height: 1.5;
}

.auth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.auth-layout.is-hidden {
  display: none;
}

.account-dashboard {
  margin-top: 22px;
}

.account-dashboard-grid,
.account-orders {
  display: grid;
  gap: 18px;
}

.account-dashboard-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.account-panel,
.account-order-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(90, 64, 44, 0.12);
  background: linear-gradient(180deg, rgba(29, 24, 21, 0.96), rgba(18, 15, 13, 0.94));
  box-shadow: var(--shadow);
}

.account-panel::before,
.account-order-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(179, 58, 47, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(215, 180, 122, 0.06), transparent 40%);
}

.account-panel > *,
.account-order-card > * {
  position: relative;
  z-index: 1;
}

.account-panel-primary {
  background:
    linear-gradient(160deg, rgba(40, 24, 20, 0.98), rgba(18, 15, 13, 0.94)),
    radial-gradient(circle at top right, rgba(179, 58, 47, 0.12), transparent 26%);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.account-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-order-meta {
  margin: 12px 0 16px;
  color: var(--muted);
}

.client-session {
  margin-top: 18px;
}

.auth-card {
  padding: 24px;
}

.auth-card-wide {
  grid-column: 1 / -1;
}

.auth-card-primary {
  background:
      linear-gradient(160deg, rgba(18, 29, 56, 0.98), rgba(9, 15, 31, 0.92)),
      radial-gradient(circle at top right, rgba(255, 214, 150, 0.12), transparent 24%);
}

.auth-card-head,
.auth-form,
.executor-session-card {
  position: relative;
  z-index: 1;
}

.auth-card-head p:last-child {
  color: var(--muted);
}

.auth-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(215, 180, 122, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  color: var(--text);
}

.auth-form input.is-invalid {
  border-color: rgba(196, 53, 53, 0.5);
  box-shadow: 0 0 0 3px rgba(196, 53, 53, 0.12);
}

.field-error {
  min-height: 18px;
  margin: 4px 0 0;
  color: #b33a2f;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-message.is-success {
  color: #2a6b44;
}

.form-message.is-error {
  color: #b33a2f;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 64px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 40px;
  height: 36px;
  border: 1px solid rgba(217, 119, 50, 0.18);
  border-radius: 999px;
  background: rgba(244, 230, 214, 0.92);
  color: #5b3720;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.password-toggle:hover {
  border-color: rgba(217, 119, 50, 0.32);
}

.password-toggle::before {
  content: "👁";
  font-size: 1rem;
}

.password-toggle[aria-pressed="true"]::before {
  content: "🙈";
}

.auth-switcher {
  grid-column: 1 / -1;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(242, 229, 212, 0.72);
}

.auth-switcher-button {
  min-width: 120px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b3720;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-switcher-button.is-active {
  background: #d97732;
  color: #fff7f0;
  box-shadow: 0 10px 24px rgba(139, 79, 34, 0.18);
}

.auth-card.is-hidden {
  display: none;
}

.executor-session {
  margin-top: 18px;
}

.executor-return {
  margin-top: 18px;
}

.executor-return-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.executor-return-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.executor-session-card {
  display: inline-grid;
  gap: 6px;
  min-width: 260px;
  padding: 16px 18px;
}

.executor-session-card span {
  color: var(--muted);
}

.executor-session-card strong {
  font-size: 1rem;
}

.executor-logout {
  min-height: 44px;
}

.section-head {
  max-width: 720px;
}

.product-grid,
.steps-grid,
.review-preview-grid,
.content-split {
  display: grid;
  gap: 16px;
}

.product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-preview-grid,
.content-split {
  grid-template-columns: repeat(2, 1fr);
}

.store-card,
.review-card,
.info-card,
.contact-card {
  border-radius: var(--radius-lg);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    background 0.26s ease;
  will-change: transform;
}

.store-card:hover,
.review-card:hover,
.info-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 58, 47, 0.22);
  box-shadow: 0 32px 70px rgba(34, 23, 17, 0.28);
}

.store-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  background: linear-gradient(180deg, rgba(57, 41, 30, 0.16), rgba(18, 15, 13, 0));
}

.store-visual {
  width: 100%;
  min-height: 280px;
  padding: 26px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-bottom: 1px solid rgba(90, 64, 44, 0.1);
  overflow: clip;
  transition: transform 0.36s ease, filter 0.36s ease;
  will-change: transform;
}

.store-visual-site {
  background:
    radial-gradient(circle at top right, rgba(255, 194, 115, 0.28), transparent 28%),
    linear-gradient(135deg, #fff7ec, #ecd4bb);
}

.store-visual-telegram {
  background:
    radial-gradient(circle at top right, rgba(39, 167, 231, 0.26), transparent 28%),
    linear-gradient(135deg, #eef9ff, #d9eefc);
}

.store-visual-vk {
  background:
    radial-gradient(circle at top right, rgba(0, 119, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #eef4ff, #dce8ff);
}

.store-visual-max {
  background:
    radial-gradient(circle at top right, rgba(107, 60, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #f5f0ff, #e8dcff);
}

.service-mockup-scene {
  position: relative;
  width: min(100%, 420px);
  min-height: 230px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-mockup-scene::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 28px;
  border-radius: 999px;
  background: rgba(150, 98, 45, 0.18);
  filter: blur(18px);
}

.service-device {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  filter: drop-shadow(0 24px 28px rgba(34, 22, 11, 0.16));
  transition: transform 0.36s ease;
}

.service-device-frame {
  position: relative;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(180deg, #26272d, #141519);
}

.service-device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.service-device-laptop {
  width: min(100%, 348px);
}

.service-device-laptop .service-device-frame {
  border-radius: 24px 24px 12px 12px;
  padding: 10px 10px 12px;
}

.service-device-laptop .service-device-screen {
  aspect-ratio: 16 / 10;
}

.service-device-base {
  width: 116%;
  height: 14px;
  margin: -2px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #d7d8de, #aeb1b8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.service-device-tablet {
  position: absolute;
  left: -2px;
  bottom: 10px;
  width: 152px;
}

.service-device-tablet .service-device-screen {
  aspect-ratio: 4 / 5;
}

.service-device-phone {
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 94px;
}

.service-device-phone .service-device-frame {
  border-radius: 24px;
  padding: 7px;
}

.service-device-phone .service-device-screen {
  aspect-ratio: 9 / 18.5;
  border-radius: 18px;
}

.service-screen-topbar {
  display: flex;
  gap: 6px;
  padding: 10px 12px 0;
}

.service-screen-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 55, 37, 0.18);
}

.service-screen-site,
.service-screen-tablet,
.service-screen-phone {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(245, 230, 212, 0.98));
}

.service-screen-site {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 224, 185, 0.44), transparent 26%),
    linear-gradient(180deg, #08152f, #0b1632);
}

.service-site-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 14px 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(7, 15, 33, 0.84);
  box-shadow: inset 0 0 0 1px rgba(121, 153, 226, 0.12);
}

.service-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.service-site-brand i {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7) 0 18%, transparent 20%),
    linear-gradient(145deg, #d87834, #f0bf8e);
  box-shadow: 0 4px 12px rgba(216, 120, 52, 0.38);
}

.service-site-brand span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.9);
  white-space: nowrap;
}

.service-site-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.service-site-nav span {
  font-size: 0.46rem;
  font-weight: 700;
  color: rgba(237, 239, 244, 0.82);
  white-space: nowrap;
}

.service-site-nav span:first-child {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(232, 202, 170, 0.92);
  color: #3d2517;
}

.service-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 12px;
  padding: 14px;
}

.service-site-panel {
  border-radius: 22px;
  overflow: hidden;
}

.service-site-panel-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 224, 182, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(245, 233, 217, 0.98));
}

.service-site-kicker {
  font-size: 0.44rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(78, 59, 43, 0.72);
}

.service-site-title {
  font-size: 1.68rem;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #1a120d;
}

.service-site-copy-text {
  margin: 0;
  font-size: 0.56rem;
  line-height: 1.45;
  color: rgba(88, 69, 50, 0.82);
}

.service-site-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.service-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(193, 153, 116, 0.45);
  background: rgba(255, 250, 243, 0.72);
  color: #50301c;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.service-site-button-primary {
  border-color: transparent;
  background: linear-gradient(145deg, #da7b36, #f0ae6e);
  color: #fff7ef;
  box-shadow: 0 10px 18px rgba(217, 119, 50, 0.28);
}

.service-site-panel-visual {
  position: relative;
  min-height: 182px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 230, 197, 0.44), transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(227, 229, 236, 0.96));
}

.service-site-panel-visual::before {
  content: "";
  position: absolute;
  inset: 18% 10% 12%;
  background-image:
    linear-gradient(rgba(99, 136, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 136, 230, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  perspective: 600px;
  transform: perspective(360px) rotateX(70deg);
  transform-origin: center bottom;
  opacity: 0.55;
}

.service-site-orbital {
  position: absolute;
  inset: 0;
}

.service-site-float-card {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: linear-gradient(145deg, #2f62f5, #5584ff);
  box-shadow: 0 20px 24px rgba(47, 98, 245, 0.24);
}

.service-site-float-card::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(236, 243, 255, 0.42);
  border-radius: inherit;
}

.service-site-float-card-large {
  width: 120px;
  height: 150px;
  top: 28px;
  left: 52%;
  transform: translateX(-50%) rotate(14deg);
}

.service-site-float-card-left {
  width: 34px;
  height: 54px;
  left: 56px;
  top: 104px;
  transform: rotate(16deg);
}

.service-site-float-card-bottom {
  width: 42px;
  height: 58px;
  left: 96px;
  bottom: 28px;
  transform: rotate(12deg);
}

.service-site-float-card-right {
  width: 36px;
  height: 54px;
  right: 52px;
  bottom: 40px;
  transform: rotate(14deg);
}

.service-site-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8bc0ff;
  box-shadow: 0 0 0 6px rgba(139, 192, 255, 0.08);
}

.service-site-dot-left {
  left: 58px;
  bottom: 44px;
}

.service-site-dot-center {
  left: 150px;
  bottom: 18px;
}

.service-screen-tablet-site,
.service-screen-phone-site {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 225, 185, 0.26), transparent 28%),
    linear-gradient(180deg, #08152f, #0b1632);
}

.service-site-navbar-tablet,
.service-site-navbar-phone {
  margin: 8px 8px 0;
  padding: 8px 9px;
  border-radius: 12px;
}

.service-site-navbar-tablet .service-site-brand span,
.service-site-navbar-phone .service-site-brand span {
  font-size: 0.46rem;
}

.service-site-tablet-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 8px;
  padding: 10px;
}

.service-site-tablet-copy {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.96);
}

.service-site-tablet-copy strong {
  font-size: 0.74rem;
  line-height: 1.02;
  color: #1c130d;
}

.service-site-tablet-copy span {
  font-size: 0.46rem;
  color: rgba(91, 70, 50, 0.82);
}

.service-site-orbital-tablet {
  position: relative;
  min-height: 132px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 230, 197, 0.3), transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(227, 229, 236, 0.96));
}

.service-site-orbital-tablet .service-site-float-card-large {
  width: 64px;
  height: 90px;
  top: 18px;
}

.service-site-orbital-tablet .service-site-float-card-left {
  width: 22px;
  height: 34px;
  left: 16px;
  top: 74px;
}

.service-site-orbital-tablet .service-site-float-card-right {
  width: 22px;
  height: 34px;
  right: 16px;
  bottom: 18px;
}

.service-site-phone-layout {
  display: grid;
  gap: 8px;
  padding: 10px 9px 9px;
}

.service-site-phone-layout strong {
  font-size: 0.82rem;
  line-height: 0.96;
  color: #fff7ee;
}

.service-site-phone-layout span {
  font-size: 0.48rem;
  color: rgba(238, 240, 245, 0.86);
}

.service-site-phone-visual {
  position: relative;
  min-height: 82px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 230, 197, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(227, 229, 236, 0.96));
}

.service-site-phone-visual .service-site-float-card-large {
  width: 46px;
  height: 58px;
  top: 12px;
  left: 50%;
}

.service-site-phone-visual .service-site-float-card-right {
  width: 18px;
  height: 30px;
  right: 12px;
  bottom: 12px;
}

.service-screen-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.service-screen-list i,
.service-phone-stack i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(75, 52, 28, 0.12);
}

.service-screen-list i:nth-child(1) {
  width: 72%;
}

.service-screen-list i:nth-child(2) {
  width: 56%;
}

.service-screen-list i:nth-child(3) {
  width: 82%;
}

.service-screen-showcase {
  height: 72px;
  margin: 0 12px 12px;
  border-radius: 18px;
  background: linear-gradient(145deg, #d97a34, #f0c08f);
}

.service-phone-stack {
  display: grid;
  gap: 8px;
  padding: 14px 10px 12px;
}

.service-phone-stack i {
  height: 12px;
}

.service-phone-stack i.is-accent {
  background: linear-gradient(145deg, #d97732, #efbf8e);
}

.service-screen-messenger {
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(232, 241, 255, 0.98));
}

.service-screen-messenger-telegram {
  background: linear-gradient(180deg, #eef9ff, #d9eefc);
}

.service-screen-messenger-vk {
  background: linear-gradient(180deg, #edf3ff, #dce8ff);
}

.service-screen-messenger-max {
  background: linear-gradient(180deg, #f5f1ff, #e9ddff);
}

.service-messenger-layout {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 12px;
}

.service-messenger-sidebar,
.service-messenger-chat {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.service-messenger-sidebar i,
.service-messenger-chat i {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(68, 54, 37, 0.11);
}

.service-messenger-chat i {
  width: 72%;
}

.service-messenger-chat i.is-accent {
  width: 54%;
  margin-left: auto;
  background: linear-gradient(145deg, #d97732, #efb280);
}

.service-messenger-chat i.is-wide {
  width: 88%;
}

.service-screen-tablet-vk .service-screen-showcase-vk {
  background: linear-gradient(145deg, #3475d8, #8eb5ff);
}

.service-device-tablet-site {
  bottom: 18px;
}

.service-device-phone-site {
  width: 102px;
  bottom: 2px;
}

.service-device-phone-telegram {
  width: 108px;
  right: -6px;
  bottom: -2px;
}

.service-device-tablet-vk {
  width: 164px;
  left: -8px;
}

.service-device-phone-max {
  width: 108px;
  right: -4px;
  bottom: -2px;
}

.store-laptop {
  width: min(100%, 340px);
  margin: 0 auto;
}

.store-laptop-lid {
  padding: 10px 10px 12px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #3d4047, #1f2126);
  box-shadow: 0 18px 32px rgba(27, 20, 16, 0.18);
  transition: transform 0.3s ease;
}

.store-laptop-screen {
  border-radius: 10px;
  overflow: hidden;
  background: #fbf7f1;
  aspect-ratio: 16 / 10;
}

.store-laptop-base {
  width: 112%;
  height: 14px;
  margin: -2px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #d6d6da, #aeb1b6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.messenger-window {
  height: 100%;
  padding: 10px;
}

.messenger-window-telegram {
  background: linear-gradient(180deg, #eef7ff, #ddeefb);
}

.messenger-window-vk {
  background: linear-gradient(180deg, #edf3ff, #dbe8ff);
}

.messenger-window-max {
  background: linear-gradient(180deg, #f5f1ff, #e9ddff);
}

.messenger-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.messenger-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(66, 49, 36, 0.22);
}

.messenger-layout {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  height: calc(100% - 18px);
}

.messenger-sidebar,
.messenger-chat {
  border-radius: 12px;
  padding: 10px;
}

.messenger-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.messenger-sidebar b {
  display: block;
  height: 24px;
  border-radius: 8px;
  background: rgba(60, 46, 37, 0.1);
}

.messenger-chat {
  display: grid;
  align-content: start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.message-bubble,
.message-input {
  display: block;
  border-radius: 999px;
}

.message-bubble {
  height: 18px;
  width: 68%;
  background: rgba(79, 59, 43, 0.12);
}

.message-bubble.is-accent {
  width: 54%;
  margin-left: auto;
  background: linear-gradient(135deg, var(--primary), #d97a63);
}

.message-input {
  height: 26px;
  margin-top: auto;
  background: rgba(79, 59, 43, 0.08);
}

.device-showcase,
.device-slider,
.device-slide,
.device-slide-copy,
.device-slider-controls {
  position: relative;
  z-index: 1;
}

.device-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.device-showcase-compact {
  min-height: 180px;
}

.device-tablet,
.device-phone {
  position: relative;
  flex: 0 0 auto;
  background: #121314;
  box-shadow: 0 20px 36px rgba(31, 20, 12, 0.18);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.device-tablet {
  width: 240px;
  padding: 10px;
  border-radius: 22px;
}

.device-tablet-large {
  width: 390px;
  padding: 12px;
  border-radius: 28px;
}

.device-tablet-secondary {
  width: 270px;
  padding: 10px;
  border-radius: 22px;
}

.device-phone {
  width: 118px;
  padding: 8px;
  border-radius: 24px;
}

.device-phone-large {
  width: 170px;
  padding: 9px;
  border-radius: 28px;
}

.device-phone-floating {
  margin-left: -54px;
  margin-bottom: -8px;
}

.device-screen {
  border-radius: 16px;
  overflow: hidden;
  padding: 14px;
  min-height: 148px;
}

.device-tablet-large .device-screen {
  min-height: 248px;
  border-radius: 20px;
  padding: 18px;
}

.device-phone-large .device-screen {
  min-height: 290px;
  border-radius: 22px;
}

.screen-warm {
  background: linear-gradient(180deg, #fff7ec, #edd4ba);
}

.screen-light {
  background: linear-gradient(180deg, #f4f0e8, #e7dece);
}

.screen-paper {
  background: linear-gradient(180deg, #fbf6ef, #ece1d4);
}

.screen-header {
  height: 16px;
  border-radius: 999px;
  background: rgba(84, 54, 31, 0.12);
  margin-bottom: 14px;
}

.screen-hero {
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(135deg, #c96634, #f0b172);
  margin-bottom: 14px;
}

.screen-hero-soft {
  background: linear-gradient(135deg, #d6bea2, #f3e7d8);
}

.screen-grid,
.screen-lines,
.screen-list,
.screen-form {
  display: grid;
  gap: 10px;
}

.screen-grid span,
.screen-lines span,
.screen-lines b,
.screen-list span,
.screen-list b,
.screen-form span,
.screen-form b {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(84, 54, 31, 0.14);
}

.screen-grid-wide span:nth-child(1) {
  width: 100%;
}

.screen-grid-wide span:nth-child(2) {
  width: 82%;
}

.screen-grid-wide span:nth-child(3) {
  width: 70%;
}

.screen-grid-wide span:nth-child(4) {
  width: 50%;
}

.screen-list b,
.screen-lines b,
.screen-form b {
  height: 18px;
  width: 58%;
  background: #c96634;
}

.device-slider {
  display: grid;
  gap: 18px;
}

.device-slide {
  display: none;
  gap: 18px;
  opacity: 0;
  transform: translateY(10px);
}

.device-slide.is-active {
  display: grid;
  animation: slideFade 0.46s ease forwards;
}

.device-slide-copy {
  display: grid;
  gap: 8px;
}

.device-slide-copy strong {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  color: var(--text);
}

.device-slide-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.device-slide-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(179, 58, 47, 0.12);
  color: #f2dbc1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-slider-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 180, 122, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.device-slider-button:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 180, 122, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.device-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}

.device-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(215, 180, 122, 0.22);
  cursor: pointer;
}

.device-slider-dot.is-active {
  background: var(--primary);
}

.store-brand-orb {
  width: 122px;
  height: 122px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 18px 38px rgba(39, 167, 231, 0.22);
}

.store-brand-orb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-brand-square {
  width: 126px;
  height: 126px;
  border-radius: 32px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 38px rgba(18, 34, 70, 0.16);
}

.store-brand-square span {
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.store-brand-square-vk {
  background: linear-gradient(135deg, #0077ff, #56a0ff);
}

.store-brand-square-max {
  background: linear-gradient(135deg, #6b3cff, #9c74ff);
}

.store-brand-panel {
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(28, 42, 68, 0.08);
}

.store-brand-panel strong {
  display: block;
  color: #16233d;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.store-brand-panel span {
  display: block;
  margin-top: 8px;
  color: #8ea9d6;
  font-size: 0.95rem;
  font-weight: 700;
}

.store-card:hover .store-visual {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.store-card:hover .store-laptop-lid {
  transform: translateY(-4px);
}

.store-card:hover .service-device-laptop {
  transform: translateY(-4px) rotate(-1deg);
}

.store-card:hover .service-device-tablet {
  transform: translateY(-6px) rotate(-4deg);
}

.store-card:hover .service-device-phone {
  transform: translateY(-8px) rotate(5deg);
}

.store-card:hover .device-tablet {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 28px 44px rgba(17, 14, 12, 0.22);
}

.store-card:hover .device-phone {
  transform: translateY(-6px) rotate(2deg);
  box-shadow: 0 28px 44px rgba(17, 14, 12, 0.22);
}

.store-card-body,
.review-card,
.info-card,
.contact-card {
  padding: 24px;
}

.store-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.store-tier {
  color: #8fb7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-card-premium .store-card-body {
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(215, 180, 122, 0.04), transparent 48%);
}

.store-card-premium h3 {
  font-size: 1.34rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.store-card-premium p {
  margin: 0 0 18px;
}

.store-points {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c8d8f4;
}

.store-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.store-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ffd59f);
  box-shadow: 0 0 18px rgba(215, 180, 122, 0.26);
}

.store-card-body,
.review-card,
.info-card,
.contact-card,
.cart-item-copy,
.cart-item-actions,
.summary-item,
.summary-total,
.review-list,
.contact-panel {
  position: relative;
  z-index: 1;
}

.store-chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 180, 122, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link,
.remove-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.page-heading-center {
  text-align: center;
}

.page-heading-center .hero-actions {
  justify-content: center;
}

.page-heading,
.section-head {
  max-width: 100%;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(78, 136, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(8, 15, 32, 0.96), rgba(5, 10, 21, 0.94));
  border: 1px solid rgba(58, 123, 255, 0.18);
  padding: 22px;
}

.product-image-wrap-scene {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 520px;
}

.product-image-wrap-carousel {
  padding: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.88), transparent 26%),
    linear-gradient(180deg, #f0e8dd 0%, #e1d6c8 100%);
  border-color: rgba(104, 85, 63, 0.18);
}

.product-image-wrap-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.52) 0%, transparent 38%),
    linear-gradient(126deg, transparent 58%, rgba(160, 139, 117, 0.16) 58%, rgba(160, 139, 117, 0.16) 100%);
  pointer-events: none;
}

.product-scene {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  gap: 20px;
  align-content: start;
}

.product-scene::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12px;
  height: 32px;
  border-radius: 999px;
  background: rgba(121, 78, 39, 0.16);
  filter: blur(22px);
}

.product-scene-meta,
.product-device-stack {
  position: relative;
  z-index: 1;
}

.product-scene-meta {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.product-scene-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(228, 187, 151, 0.14);
  color: rgba(255, 242, 228, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-scene-meta strong {
  font-size: 1.32rem;
  line-height: 1.08;
  color: #fff5ea;
}

.product-scene-meta p {
  margin: 0;
  max-width: 420px;
  color: rgba(233, 238, 246, 0.72);
  line-height: 1.6;
}

.product-visual-slider {
  align-content: space-between;
  width: 100%;
  min-height: 468px;
  gap: 20px;
}

.product-visual-slide {
  gap: 16px;
}

.product-visual-stage {
  position: relative;
  min-height: 360px;
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2)),
    rgba(255, 250, 244, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 30px 60px rgba(88, 63, 34, 0.16);
}

.product-visual-stage-phone {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14)),
    linear-gradient(180deg, #f8f5f1 0%, #ece4da 100%);
}

.product-visual-stage-laptop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, #eee4d8 0%, #d8cab9 100%);
}

.product-carousel-stack {
  position: relative;
  min-height: 324px;
}

.product-carousel-stack-phone {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-carousel-device {
  position: absolute;
}

.product-carousel-phone-live {
  position: static;
  width: 186px;
  filter: drop-shadow(0 26px 46px rgba(47, 29, 14, 0.22));
}

.product-carousel-device-back {
  left: 8px;
  bottom: 4px;
  transform: rotate(-20deg);
  transform-origin: bottom left;
  z-index: 1;
}

.product-carousel-device-front {
  right: 8px;
  top: 0;
  z-index: 2;
}

.product-carousel-phone {
  position: absolute;
  width: 190px;
  filter: drop-shadow(0 26px 46px rgba(47, 29, 14, 0.22));
}

.product-carousel-phone-back {
  left: 8px;
  bottom: 2px;
  transform: rotate(-20deg);
  transform-origin: bottom left;
  z-index: 1;
}

.product-carousel-phone-front {
  right: 8px;
  top: 0;
  z-index: 2;
}

.product-carousel-phone-shell {
  position: relative;
  padding: 8px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #3e4146 0%, #1a1c20 48%, #0b0c10 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.44);
}

.product-carousel-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 84px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  background: #0b0c10;
  z-index: 2;
}

.product-carousel-phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.2;
  border-radius: 28px;
  overflow: hidden;
}

.product-carousel-phone-screen-front {
  padding: 20px 16px 16px;
  background:
    radial-gradient(circle at 74% 14%, rgba(246, 238, 223, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(15, 23, 39, 0.22), rgba(15, 23, 39, 0.4)),
    linear-gradient(180deg, #69725e 0%, #1f2327 58%, #120f11 100%);
}

.product-carousel-phone-screen-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 250, 244, 0.26), transparent 20%),
    linear-gradient(140deg, rgba(255, 191, 130, 0.12), transparent 44%);
  pointer-events: none;
}

.product-carousel-phone-brand,
.product-carousel-phone-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(252, 247, 238, 0.92);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-carousel-phone-brand {
  margin-bottom: 16px;
  font-weight: 700;
}

.product-carousel-phone-topline span {
  color: #d98549;
}

.product-carousel-phone-topline small {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.54);
}

.product-carousel-phone-badge {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(244, 239, 229, 0.84);
  backdrop-filter: blur(8px);
}

.product-carousel-phone-badge-copy {
  display: grid;
  gap: 6px;
}

.product-carousel-phone-badge-copy small {
  color: rgba(63, 50, 40, 0.68);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-carousel-phone-badge-copy span {
  color: #29211b;
  font-size: 0.58rem;
  line-height: 1.45;
}

.product-carousel-phone-badge i {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 241, 219, 0.52), transparent 18%),
    linear-gradient(135deg, #7f876c, #c78d59);
}

.product-carousel-phone-screen-front strong,
.product-carousel-phone-screen-back strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 10px;
  color: #fffaf2;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.product-carousel-phone-screen-back strong {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.08;
}

.product-carousel-phone-screen-front p,
.product-carousel-phone-screen-back p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(246, 242, 235, 0.76);
  font-size: 0.66rem;
  line-height: 1.5;
}

.product-carousel-phone-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.96);
  color: #2d2016;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-carousel-phone-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.product-carousel-phone-footer span,
.product-carousel-phone-list span {
  display: block;
  height: 1px;
  background: rgba(255, 248, 239, 0.54);
}

.product-carousel-phone-screen-back {
  padding: 20px 14px 14px;
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.1), rgba(6, 9, 14, 0.2)),
    linear-gradient(180deg, #0d0d10 0%, #121214 100%);
}

.product-carousel-phone-card {
  position: relative;
  z-index: 1;
  height: 138px;
  margin: 18px 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 236, 210, 0.18), transparent 22%),
    linear-gradient(135deg, #4b4e45, #1d1f22 60%, #271d16 100%);
}

.product-carousel-phone-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.product-carousel-phone-list span:nth-child(1) {
  width: 82%;
}

.product-carousel-phone-list span:nth-child(2) {
  width: 74%;
}

.product-carousel-phone-list span:nth-child(3) {
  width: 58%;
}

.product-carousel-laptop-scene {
  position: relative;
  min-height: 324px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-carousel-sunbeam {
  position: absolute;
  top: -18px;
  right: 20px;
  width: 54%;
  height: 74%;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 56%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08));
}

.product-carousel-laptop-wrap {
  position: relative;
  width: min(100%, 520px);
  padding: 84px 0 0;
}

.product-carousel-laptop-wrap::before {
  content: "";
  position: absolute;
  inset: auto 6% -4px;
  height: 18px;
  border-radius: 999px;
  background: rgba(124, 99, 72, 0.16);
  filter: blur(16px);
}

.product-carousel-laptop-device {
  margin: 0 auto;
  filter: drop-shadow(0 22px 34px rgba(91, 63, 42, 0.16));
}

.product-carousel-laptop-screen {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 224, 185, 0.44), transparent 26%),
    linear-gradient(180deg, #08152f, #0b1632);
}

.product-visual-copy {
  gap: 10px;
}

.product-visual-copy .device-slide-tag {
  background: rgba(110, 76, 40, 0.08);
  color: #6e4c28;
}

.product-visual-copy strong {
  color: #21160e;
  font-size: 1.32rem;
  line-height: 1.14;
}

.product-visual-copy p {
  color: rgba(54, 40, 29, 0.72);
}

.product-visual-controls {
  padding: 0 4px;
}

.product-visual-slider .device-slider-button {
  border-color: rgba(104, 85, 63, 0.18);
  background: rgba(255, 255, 255, 0.56);
  color: #332218;
}

.product-visual-slider .device-slider-button:hover {
  border-color: rgba(104, 85, 63, 0.36);
  background: rgba(255, 255, 255, 0.82);
}

.product-visual-slider .device-slider-dot {
  background: rgba(104, 85, 63, 0.22);
}

.product-visual-slider .device-slider-dot.is-active {
  background: #8f643b;
}

.product-device-stack {
  position: relative;
  min-height: 340px;
}

.product-device-stack-site {
  min-height: 360px;
}

.product-device-laptop {
  width: min(100%, 620px);
}

.product-device-laptop .service-device-frame {
  padding: 14px 14px 16px;
  border-radius: 28px 28px 16px 16px;
}

.product-device-laptop .service-device-screen {
  border-radius: 22px;
}

.product-device-tablet,
.product-device-phone {
  filter: drop-shadow(0 26px 30px rgba(21, 18, 16, 0.22));
}

.product-device-tablet-site {
  left: 18px;
  bottom: 34px;
  width: 216px;
}

.product-device-phone-site {
  right: 12px;
  bottom: 12px;
  width: 122px;
}

.product-screen-messenger,
.product-screen-phone,
.product-screen-tablet {
  min-height: 0;
}

.product-device-stack-messenger {
  min-height: 320px;
}

.product-device-phone-telegram,
.product-device-phone-max {
  right: 10px;
  bottom: 10px;
  width: 124px;
}

.product-device-tablet-vk {
  left: 18px;
  bottom: 18px;
  width: 208px;
}

.product-scene-site {
  padding-top: 8px;
}

.product-scene-messenger {
  padding-top: 18px;
}

.product-scene-telegram .product-image-wrap-scene,
.product-scene-vk .product-image-wrap-scene,
.product-scene-max .product-image-wrap-scene {
  min-height: 500px;
}

[data-page="product-site"] .service-site-navbar {
  margin: 14px 16px 0;
  padding: 12px 14px;
}

[data-page="product-site"] .service-site-brand i {
  width: 22px;
  height: 22px;
}

[data-page="product-site"] .service-site-brand span {
  font-size: 0.72rem;
}

[data-page="product-site"] .service-site-nav span {
  font-size: 0.54rem;
}

[data-page="product-site"] .service-site-hero {
  gap: 18px;
  padding: 16px;
}

[data-page="product-site"] .service-site-panel-copy {
  padding: 20px 18px 18px;
}

[data-page="product-site"] .service-site-kicker {
  font-size: 0.5rem;
}

[data-page="product-site"] .service-site-title {
  font-size: 2.2rem;
}

[data-page="product-site"] .service-site-copy-text {
  font-size: 0.64rem;
  max-width: 230px;
}

[data-page="product-site"] .service-site-button {
  font-size: 0.54rem;
}

[data-page="product-site"] .service-site-panel-visual {
  min-height: 244px;
}

[data-page="product-site"] .service-site-panel-visual::before {
  inset: 14% 10% 10%;
}

[data-page="product-site"] .service-site-float-card-large {
  width: 160px;
  height: 200px;
  top: 28px;
}

[data-page="product-site"] .service-site-float-card-left {
  width: 42px;
  height: 68px;
  left: 56px;
  top: 128px;
}

[data-page="product-site"] .service-site-float-card-bottom {
  width: 48px;
  height: 72px;
  left: 114px;
  bottom: 30px;
}

[data-page="product-site"] .service-site-float-card-right {
  width: 42px;
  height: 66px;
  right: 52px;
  bottom: 48px;
}

[data-page="product-site"] .service-site-dot-left {
  left: 58px;
  bottom: 52px;
}

[data-page="product-site"] .service-site-dot-center {
  left: 186px;
  bottom: 22px;
}

[data-page="product-site"] .service-site-navbar-tablet {
  margin: 10px 10px 0;
}

[data-page="product-site"] .service-site-tablet-copy strong {
  font-size: 0.92rem;
}

[data-page="product-site"] .service-site-tablet-copy span {
  font-size: 0.54rem;
}

[data-page="product-site"] .service-site-orbital-tablet {
  min-height: 162px;
}

[data-page="product-site"] .service-site-orbital-tablet .service-site-float-card-large {
  width: 82px;
  height: 112px;
}

[data-page="product-site"] .service-site-phone-layout strong {
  font-size: 1rem;
}

[data-page="product-site"] .service-site-phone-layout span {
  font-size: 0.54rem;
}

[data-page="product-site"] .service-site-phone-visual {
  min-height: 96px;
}

[data-page="product-site"] .service-site-phone-visual .service-site-float-card-large {
  width: 54px;
  height: 70px;
}

[data-page="product-site"] .service-site-phone-visual .service-site-float-card-right {
  width: 20px;
  height: 34px;
}

[data-page="product-telegram"] .product-image-wrap-scene {
  background:
    radial-gradient(circle at 82% 18%, rgba(128, 212, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(6, 17, 38, 0.98), rgba(10, 22, 46, 0.96));
}

[data-page="product-vk"] .product-image-wrap-scene {
  background:
    radial-gradient(circle at 82% 18%, rgba(104, 156, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 18, 41, 0.98), rgba(12, 25, 54, 0.96));
}

[data-page="product-max"] .product-image-wrap-scene {
  background:
    radial-gradient(circle at 82% 18%, rgba(174, 128, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(10, 18, 41, 0.98), rgba(14, 24, 52, 0.96));
}

.cart-item-image {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-copy h1,
.product-copy h2,
.product-copy h3 {
  color: var(--text);
}

.product-copy p,
.detail-text,
.details-list,
.details-list li {
  color: var(--muted);
}

.product-price {
  margin: 18px 0 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

body[data-page="home"] {
  color: #edf8f4;
  background:
    radial-gradient(circle at 14% 8%, rgba(61, 201, 177, 0.16), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(122, 236, 214, 0.1), transparent 24%),
    linear-gradient(180deg, #0c1213 0%, #0e1516 46%, #0b1011 100%);
}

body[data-page="home"]::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.26;
}

body[data-page="home"]::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  opacity: 0.34;
}

body[data-page="home"] .site-shell {
  width: min(calc(100% - 52px), 1420px);
}

body[data-page="home"] .site-header {
  border: 1px solid rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(35, 44, 43, 0.58), rgba(15, 21, 21, 0.48)),
    rgba(16, 21, 21, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

body[data-page="home"] .brand,
body[data-page="home"] .site-nav a {
  color: #e7f7f2;
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.is-active {
  color: #ffffff;
  background: rgba(191, 248, 236, 0.1);
  border-color: rgba(191, 248, 236, 0.14);
}

body[data-page="home"] .cart-count {
  background: rgba(51, 200, 170, 0.16);
  color: #d7fff6;
}

.home-main {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.home-hero-copy,
.home-hero-visual,
.home-section,
.home-about-copy,
.home-about-visual,
.home-cta-copy,
.home-cta-form {
  border: 1px solid rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(32, 39, 40, 0.76), rgba(15, 20, 21, 0.7)),
    radial-gradient(circle at top right, rgba(191, 248, 236, 0.08), transparent 28%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.home-hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-copy .eyebrow,
.home-section .eyebrow,
.home-about-copy .eyebrow,
.home-cta-copy .eyebrow {
  color: #6ea0ff;
}

.home-hero-copy h1,
.home-section h2,
.home-about-copy h2,
.home-cta-copy h2 {
  max-width: none;
  color: #ffffff;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
}

.home-hero-copy h1 {
  font-size: clamp(3rem, 4.6vw, 5rem);
  line-height: 1.04;
  max-width: 11ch;
}

.home-hero-text,
.advantage-card p,
.service-card p,
.metric-card span,
.home-about-copy p,
.home-about-list,
.project-card p,
.home-cta-copy p {
  color: #9ba8c5;
}

.home-hero-text {
  max-width: 58ch;
  margin-top: 18px;
}

.home-hero-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tech-scene {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1 / 0.8;
}

.tech-grid,
.tech-cube,
.tech-node {
  position: absolute;
}

.tech-grid {
  inset: 12% 4% 6%;
  background:
    linear-gradient(rgba(56, 107, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 107, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(800px) rotateX(72deg);
  opacity: 0.7;
}

.tech-cube {
  background:
    linear-gradient(135deg, rgba(21, 76, 220, 0.98), rgba(74, 134, 255, 0.88));
  border: 1px solid rgba(143, 188, 255, 0.3);
  box-shadow:
    0 0 0 1px rgba(122, 167, 255, 0.14),
    0 18px 54px rgba(20, 82, 255, 0.26),
    inset 0 0 34px rgba(178, 214, 255, 0.2);
}

.tech-cube::before,
.tech-cube::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(203, 227, 255, 0.34);
}

.tech-cube-main {
  top: 10%;
  right: 16%;
  width: 220px;
  height: 220px;
  transform: rotate(18deg) skew(-10deg, -8deg);
}

.tech-cube-small {
  width: 78px;
  height: 78px;
  transform: rotate(16deg) skew(-10deg, -8deg);
}

.tech-cube-left {
  left: 16%;
  top: 43%;
}

.tech-cube-right {
  right: 5%;
  top: 52%;
}

.tech-cube-bottom {
  left: 29%;
  bottom: 9%;
}

.tech-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8dc2ff;
  box-shadow: 0 0 24px #5a9eff;
}

.tech-node-a {
  left: 18%;
  top: 64%;
}

.tech-node-b {
  right: 22%;
  top: 34%;
}

.tech-node-c {
  left: 46%;
  bottom: 16%;
}

.home-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card,
.metric-card {
  min-height: 100%;
}

.advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(37, 102, 255, 0.14);
  color: #6ea0ff;
  font-weight: 700;
}

.advantage-card h3,
.service-card h3,
.metric-card strong,
.project-card h3 {
  font-family: "IBM Plex Sans", sans-serif;
  color: #ffffff;
}

.home-section,
.home-about-copy,
.home-about-visual,
.home-cta-copy,
.home-cta-form {
  border-radius: 28px;
  padding: 30px;
}

.home-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.home-section-head h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.home-section-head-center {
  text-align: center;
}

.home-section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.home-project-link {
  white-space: nowrap;
}

.service-card .store-card-link {
  background: none;
}

.service-card .store-card-body {
  padding: 22px 22px 24px;
}

.service-card h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
}

.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  text-align: center;
  padding: 28px 22px;
}

.metric-card strong {
  display: block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #4c88ff;
}

.metric-card span {
  display: block;
  margin-top: 10px;
}

.home-about-section,
.home-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.home-about-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-about-list li {
  position: relative;
  padding-left: 22px;
}

.home-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4c88ff;
  box-shadow: 0 0 14px rgba(76, 136, 255, 0.7);
}

.home-about-visual,
.home-cta-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-scene {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.35 / 1;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 15, 32, 0.9), rgba(5, 10, 20, 0.96)),
    radial-gradient(circle at top right, rgba(46, 103, 255, 0.18), transparent 28%);
}

.about-screen {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(94, 146, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(17, 32, 67, 0.96), rgba(9, 18, 38, 0.94)),
    radial-gradient(circle at top right, rgba(74, 134, 255, 0.2), transparent 24%);
  box-shadow: 0 18px 54px rgba(5, 12, 30, 0.48);
}

.about-screen-main {
  inset: 14% 10% 14% 24%;
}

.about-screen-side {
  inset: 24% 48% 24% 8%;
}

.about-glow {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 144, 255, 0.65), transparent 70%);
  filter: blur(12px);
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
}

.project-card-visual {
  min-height: 210px;
  border-bottom: 1px solid rgba(44, 79, 149, 0.16);
  background:
    radial-gradient(circle at center, rgba(70, 132, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #08101f, #0d1832);
}

.project-card-visual-site {
  background:
    radial-gradient(circle at 60% 36%, rgba(85, 145, 255, 0.32), transparent 18%),
    linear-gradient(135deg, #08101f, #12234a);
}

.project-card-visual-telegram {
  background:
    radial-gradient(circle at 38% 48%, rgba(66, 171, 255, 0.28), transparent 16%),
    linear-gradient(135deg, #08101f, #102843);
}

.project-card-visual-vk {
  background:
    radial-gradient(circle at 56% 36%, rgba(83, 133, 255, 0.3), transparent 17%),
    linear-gradient(135deg, #08101f, #10244d);
}

.project-card-visual-max {
  background:
    radial-gradient(circle at 50% 46%, rgba(129, 109, 255, 0.24), transparent 17%),
    linear-gradient(135deg, #08101f, #171d43);
}

.home-cta-form {
  align-items: stretch;
}

.home-cta-form label {
  color: #dbe7ff;
}

.home-cta-form input,
.home-cta-form textarea {
  border: 1px solid rgba(48, 82, 154, 0.28);
  background: rgba(10, 18, 35, 0.96);
  color: #edf4ff;
}

.home-cta-form textarea {
  min-height: 180px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.details-card {
  margin-top: 22px;
}

.details-list {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.cart-item-image {
  width: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(78, 136, 255, 0.2), transparent 50%),
    linear-gradient(135deg, #08101f, #10243f);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(58, 123, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.order-summary,
.checkout-form,
.review-form {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.summary-item,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.summary-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-item span,
.summary-item strong,
.summary-total span,
.summary-total strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.summary-total {
  padding-top: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label,
.review-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.checkout-form input,
.checkout-form textarea,
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(58, 123, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  color: var(--text);
}

.checkout-form textarea,
.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #6f7c9c;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 22px;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-list {
  display: grid;
  gap: 18px;
}

.empty-state {
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  top: 24px;
  z-index: 120;
  width: min(calc(100% - 24px), 620px);
  padding: 16px 20px;
  border-radius: 16px;
  background: #a6ff00;
  color: #07101d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: 0.25s ease;
  font-weight: 800;
  text-align: center;
}

.toast-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: rise 0.7s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientPulse {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: 0.72;
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, 42px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes brandPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(179, 58, 47, 0.12),
      0 10px 30px rgba(179, 58, 47, 0.18);
  }

  50% {
    box-shadow:
      0 0 0 11px rgba(215, 180, 122, 0.08),
      0 16px 34px rgba(255, 122, 0, 0.24);
  }
}

@keyframes buttonSweep {
  0% {
    transform: translateX(0) skewX(-18deg);
  }

  100% {
    transform: translateX(420%) skewX(-18deg);
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .product-grid,
  .steps-grid,
  .review-preview-grid,
  .content-split,
  .prestige-strip,
  .auth-layout,
  .tracking-layout,
  .tracking-stage-list,
  .tracking-search,
  .contact-panel,
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .reviews-layout,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 32px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav a {
    white-space: normal;
  }

  .hero-copy,
  .hero-card,
  .page-heading,
  .contact-panel,
  .product-layout,
  .checkout-form,
  .checkout-summary-card,
  .empty-state,
  .details-card {
    padding: 24px;
  }

  .cart-item-actions {
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  :root {
    --container: 1000px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

  h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    max-width: 13ch;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-offer-grid {
    grid-template-columns: 1fr;
  }

  .product-layout,
  .checkout-layout,
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  }

  .reviews-layout {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  }

  .cart-item {
    grid-template-columns: 136px minmax(0, 1fr);
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 960px) {
  .home-hero,
  .home-advantages,
  .home-metrics-grid,
  .home-projects-grid,
  .home-about-section,
  .home-cta-section {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 420px;
  }

  .hero,
  .product-grid,
  .steps-grid,
  .review-preview-grid,
  .content-split,
  .contact-panel,
  .account-dashboard-grid,
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .reviews-layout,
  .cart-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .site-shell {
    width: min(calc(100% - 26px), 1420px);
  }

  .home-main {
    gap: 22px;
  }

  .home-section,
  .home-about-copy,
  .home-about-visual,
  .home-cta-copy,
  .home-cta-form {
    padding: 22px;
  }

  .home-section-head-inline {
    align-items: start;
    flex-direction: column;
  }

  .site-shell {
    width: min(calc(100% - 24px), var(--container));
    padding: 18px 0 48px;
  }

  .site-header {
    top: 12px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .hero-copy,
  .hero-card,
  .page-heading,
  .contact-panel,
  .product-layout,
  .checkout-form,
  .checkout-summary-card,
  .empty-state,
  .details-card,
  .order-summary,
  .review-form {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
    max-width: 14ch;
  }

  .hero-text,
  .page-heading p,
  .info-card p,
  .contact-card p,
  .store-card p,
  .review-card p,
  .product-copy p,
  .detail-text,
  .checkout-form p,
  .empty-state p,
  .cart-item-copy p,
  .order-summary p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .product-grid,
  .review-preview-grid,
  .content-split,
  .prestige-strip,
  .auth-layout,
  .executor-overview-grid,
  .tracking-layout,
  .tracking-stage-list,
  .contact-panel,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .executor-grid,
  .executor-stage-row,
  .executor-card-head,
  .executor-footer {
    grid-template-columns: 1fr;
  }

  .product-actions .button {
    flex: 1 1 100%;
  }

  .section-block {
    padding: 20px;
  }

  .store-visual {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px 14px;
    overflow: hidden;
  }

  .service-mockup-scene {
    width: 100%;
    min-height: 200px;
    transform: scale(0.94);
    transform-origin: center top;
  }

  .service-device-laptop {
    width: min(100%, 320px);
  }

  .service-device-tablet {
    left: 2px;
    bottom: 6px;
    width: 122px;
  }

  .service-device-phone,
  .service-device-phone-site,
  .service-device-phone-telegram,
  .service-device-phone-max {
    right: 0;
    bottom: 0;
    width: 82px;
  }

  .service-screen-site-layout {
    gap: 10px;
    padding: 12px;
  }

  .service-site-navbar {
    margin: 10px 10px 0;
    padding: 8px 10px;
  }

  .service-site-nav {
    gap: 6px;
  }

  .service-site-nav span {
    font-size: 0.4rem;
  }

  .service-site-brand span {
    font-size: 0.52rem;
  }

  .service-site-hero {
    gap: 8px;
    padding: 10px;
  }

  .service-site-panel-copy {
    padding: 12px 12px 10px;
  }

  .service-site-kicker {
    font-size: 0.38rem;
  }

  .service-site-title {
    font-size: 1.08rem;
  }

  .service-site-copy-text {
    font-size: 0.46rem;
  }

  .service-site-button {
    padding: 7px 10px;
    font-size: 0.42rem;
  }

  .service-site-panel-visual {
    min-height: 132px;
  }

  .service-site-float-card-large {
    width: 82px;
    height: 110px;
    top: 18px;
  }

  .service-site-float-card-left {
    width: 26px;
    height: 40px;
    left: 30px;
    top: 84px;
  }

  .service-site-float-card-bottom {
    width: 30px;
    height: 42px;
    left: 62px;
    bottom: 18px;
  }

  .service-site-float-card-right {
    width: 26px;
    height: 40px;
    right: 28px;
    bottom: 26px;
  }

  .service-site-dot-left {
    left: 26px;
    bottom: 30px;
  }

  .service-site-dot-center {
    left: 96px;
    bottom: 12px;
  }

  .product-image-wrap-scene {
    min-height: 420px;
    padding: 18px;
  }

  .product-visual-slider {
    min-height: auto;
  }

  .product-visual-stage {
    min-height: 300px;
    padding: 14px;
    border-radius: 24px;
  }

  .product-carousel-stack,
  .product-carousel-laptop-scene {
    min-height: 272px;
  }

  .product-carousel-phone {
    width: 152px;
  }

  .product-carousel-phone-live {
    width: 152px;
  }

  .product-carousel-phone-back {
    left: 0;
    bottom: 0;
  }

  .product-carousel-phone-front {
    right: 0;
  }

  .product-carousel-device-back {
    left: 0;
    bottom: 0;
  }

  .product-carousel-device-front {
    right: 0;
  }

  .product-carousel-phone-screen-front strong {
    font-size: 1.52rem;
  }

  .product-carousel-laptop-wrap {
    width: min(100%, 420px);
    padding-top: 62px;
  }

  .product-scene-meta strong {
    font-size: 1.1rem;
  }

  .product-scene-meta p {
    font-size: 0.92rem;
  }

  .product-device-stack,
  .product-device-stack-site,
  .product-device-stack-messenger {
    min-height: 280px;
  }

  .product-device-laptop {
    width: min(100%, 460px);
  }

  .product-device-tablet-site,
  .product-device-tablet-vk {
    width: 164px;
    left: 8px;
    bottom: 18px;
  }

  .product-device-phone-site,
  .product-device-phone-telegram,
  .product-device-phone-max {
    width: 98px;
    right: 2px;
    bottom: 2px;
  }

  [data-page="product-site"] .service-site-title {
    font-size: 1.72rem;
  }

  [data-page="product-site"] .service-site-panel-visual {
    min-height: 180px;
  }

  [data-page="product-site"] .service-site-float-card-large {
    width: 116px;
    height: 146px;
  }

  [data-page="product-site"] .service-site-float-card-left {
    width: 32px;
    height: 52px;
    left: 40px;
    top: 94px;
  }

  [data-page="product-site"] .service-site-float-card-bottom {
    width: 38px;
    height: 54px;
    left: 82px;
    bottom: 18px;
  }

  [data-page="product-site"] .service-site-float-card-right {
    width: 30px;
    height: 50px;
    right: 34px;
    bottom: 34px;
  }

  .store-window,
  .store-brand-panel {
    width: 100%;
  }

  .cart-item {
    padding: 18px;
  }

  .hero-metric {
    padding: 16px 16px 18px;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .site-shell {
    width: min(calc(100% - 20px), 1420px);
  }

  .home-hero-copy h1 {
    max-width: 12ch;
  }

  .home-hero-visual {
    min-height: 320px;
  }

  .tech-cube-main {
    width: 160px;
    height: 160px;
  }

  .messenger-layout {
    grid-template-columns: 62px 1fr;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a,
  .button {
    width: 100%;
  }

  .site-nav a {
    flex-basis: 100%;
  }

  .site-header {
    position: static;
    border-radius: 28px;
  }

  h1 {
    line-height: 0.98;
  }

  .hero-copy,
  .hero-card,
  .page-heading,
  .contact-panel,
  .product-layout,
  .checkout-form,
  .checkout-summary-card,
  .empty-state,
  .details-card,
  .order-summary,
  .review-form,
  .tracking-card,
  .tracking-search-card,
  .executor-card,
  .auth-card {
    padding: 20px 18px;
  }

  .hero-actions,
  .hero-benefits,
  .hero-proof {
    margin-top: 18px;
  }

  .store-card-body,
  .review-card,
  .info-card,
  .contact-card {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cart-item-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-row {
    justify-content: space-between;
    width: 100%;
  }

  .summary-item,
  .summary-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .toast {
    top: 12px;
    width: calc(100% - 24px);
  }

  .product-image-wrap-carousel {
    padding: 16px;
  }

  .product-visual-stage {
    min-height: 236px;
    padding: 10px;
    border-radius: 20px;
  }

  .product-visual-copy strong {
    font-size: 1.08rem;
  }

  .product-carousel-stack,
  .product-carousel-laptop-scene {
    min-height: 214px;
  }

  .product-carousel-phone {
    width: 122px;
  }

  .product-carousel-phone-live {
    width: 122px;
  }

  .product-carousel-phone-shell {
    padding: 6px;
    border-radius: 26px;
  }

  .product-carousel-notch {
    top: 8px;
    width: 58px;
    height: 14px;
  }

  .product-carousel-phone-screen {
    border-radius: 20px;
  }

  .product-carousel-phone-screen-front,
  .product-carousel-phone-screen-back {
    padding: 16px 10px 10px;
  }

  .product-carousel-phone-badge {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 14px;
  }

  .product-carousel-phone-badge i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .product-carousel-phone-screen-front strong {
    font-size: 1.08rem;
  }

  .product-carousel-phone-screen-back strong {
    font-size: 0.74rem;
  }

  .product-carousel-phone-screen-front p,
  .product-carousel-phone-screen-back p,
  .product-carousel-phone-badge-copy span {
    font-size: 0.5rem;
  }

  .product-carousel-phone-card {
    height: 84px;
    margin: 12px 0;
    border-radius: 16px;
  }

  .product-carousel-phone-cta {
    min-height: 34px;
    margin-top: 12px;
    font-size: 0.58rem;
  }

  .product-carousel-phone-footer,
  .product-carousel-phone-list {
    gap: 10px;
    margin-top: 12px;
  }

  .product-carousel-laptop-wrap {
    width: 100%;
    padding-top: 36px;
  }

  .product-carousel-device-back {
    transform: rotate(-16deg);
  }

  .product-visual-controls {
    gap: 10px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1680px;
  }

  body[data-page="home"] .site-shell {
    width: min(calc(100% - 64px), 1440px);
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  }

  .home-hero-copy h1 {
    font-size: clamp(3.6rem, 4.8vw, 5.2rem);
  }

  .site-shell {
    padding-bottom: 72px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  }

  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-copy,
  .hero-card,
  .page-heading,
  .contact-panel,
  .product-layout,
  .checkout-form,
  .checkout-summary-card,
  .empty-state,
  .details-card {
    padding: 40px;
  }

  .product-grid,
  .steps-grid,
  .review-preview-grid,
  .content-split,
  .prestige-strip,
  .contact-panel {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Light client cabinet redesign */
:root {
  --bg: #0d1213;
  --bg-secondary: #151c1d;
  --surface: rgba(24, 31, 32, 0.76);
  --surface-strong: rgba(14, 19, 20, 0.88);
  --surface-soft: rgba(66, 208, 180, 0.08);
  --text: #edf8f4;
  --muted: #9faea9;
  --line: rgba(191, 248, 236, 0.12);
  --line-strong: rgba(118, 231, 211, 0.24);
  --primary: #33c8aa;
  --primary-dark: #23977f;
  --accent: #bdf6ea;
  --accent-soft: #75ddca;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(61, 201, 177, 0.12), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(122, 236, 214, 0.08), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #0b1011 0%, #121819 50%, #0d1213 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.18;
}

body::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  opacity: 0.48;
}

.site-header {
  border: 1px solid rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(34, 43, 43, 0.62), rgba(15, 20, 21, 0.52)),
    rgba(16, 21, 21, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.brand,
.site-nav a,
.summary-label,
.home-hero-copy .eyebrow,
.home-section .eyebrow,
.home-about-copy .eyebrow,
.home-cta-copy .eyebrow {
  color: #e8f7f2;
}

.brand-mark {
  background: linear-gradient(135deg, #73ead4, #2bb798);
  box-shadow:
    0 0 0 8px rgba(51, 200, 170, 0.1),
    0 10px 24px rgba(51, 200, 170, 0.16);
}

.site-nav a:hover,
.site-nav a.is-active,
body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.is-active {
  color: #ffffff;
  background: rgba(191, 248, 236, 0.1);
  border-color: rgba(191, 248, 236, 0.14);
}

.site-nav a::after {
  background: linear-gradient(90deg, transparent, rgba(101, 229, 204, 0.92), transparent);
}

.cart-count,
body[data-page="home"] .cart-count {
  background: rgba(51, 200, 170, 0.16);
  color: #d7fff6;
}

.hero-copy,
.hero-card,
.info-card,
.contact-card,
.page-heading,
.contact-panel,
.store-card,
.review-card,
.product-layout,
.order-summary,
.checkout-summary-card,
.checkout-form,
.empty-state,
.details-card,
.cart-item,
.review-form,
.tracking-search-card,
.tracking-card,
.executor-card,
.auth-card,
.executor-session-card,
.account-panel,
.account-order-card,
.home-hero-copy,
.home-hero-visual,
.home-section,
.home-about-copy,
.home-about-visual,
.home-cta-copy,
.home-cta-form {
  border-color: rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(32, 39, 40, 0.76), rgba(15, 20, 21, 0.7)),
    radial-gradient(circle at top right, rgba(191, 248, 236, 0.08), transparent 28%);
  box-shadow: var(--shadow);
}

.hero-copy::before,
.hero-card::before,
.info-card::before,
.contact-card::before,
.page-heading::before,
.contact-panel::before,
.store-card::before,
.review-card::before,
.product-layout::before,
.order-summary::before,
.checkout-summary-card::before,
.checkout-form::before,
.empty-state::before,
.details-card::before,
.cart-item::before,
.review-form::before,
.tracking-search-card::before,
.tracking-card::before,
.executor-card::before,
.auth-card::before,
.executor-session-card::before,
.account-panel::before,
.account-order-card::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(191, 248, 236, 0.06), transparent 38%);
}

h1,
h2,
h3,
.hero-copy h1,
.home-hero-copy h1,
.home-section h2,
.home-about-copy h2,
.home-cta-copy h2,
.page-heading h1,
.page-heading h2,
.page-heading h3 {
  color: #edf8f4;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
}

.hero-text,
.page-heading p,
.info-card p,
.contact-card p,
.store-card p,
.review-card p,
.product-copy p,
.detail-text,
.checkout-form p,
.empty-state p,
.cart-item-copy p,
.order-summary p,
.home-hero-text,
.advantage-card p,
.service-card p,
.metric-card span,
.home-about-copy p,
.home-about-list,
.project-card p,
.home-cta-copy p,
.auth-card-head p:last-child,
.auth-note,
.account-order-meta {
  color: var(--muted);
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

.button-primary {
  color: #081111;
  background: linear-gradient(135deg, #50dfc1, #29b496);
  box-shadow: 0 14px 26px rgba(51, 200, 170, 0.22);
}

.button-secondary {
  color: #edf8f4;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(191, 248, 236, 0.12);
}

.button-secondary:hover {
  border-color: rgba(191, 248, 236, 0.22);
}

.quantity-button,
.checkout-form input,
.checkout-form textarea,
.review-form input,
.review-form textarea,
.tracking-search input,
.auth-form input,
.home-cta-form input,
.home-cta-form textarea {
  border-color: rgba(195, 162, 135, 0.28);
  background: rgba(255, 252, 247, 0.96);
  color: #2c1e17;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.review-form input::placeholder,
.review-form textarea::placeholder,
.auth-form input::placeholder,
.home-cta-form input::placeholder,
.home-cta-form textarea::placeholder {
  color: #a08c7d;
}

.tracking-item strong,
.executor-card strong,
.account-panel strong,
.account-order-card strong,
.summary-total strong,
.product-price,
.metric-card strong {
  color: #bc6325;
}

.home-main-compact {
  gap: 22px;
}

.home-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.home-entry-copy,
.home-entry-side {
  display: grid;
  gap: 18px;
}

.home-entry-copy {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(196, 165, 138, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(252, 244, 235, 0.98)),
    radial-gradient(circle at top left, rgba(217, 119, 50, 0.12), transparent 26%);
  box-shadow: var(--shadow);
}

.home-entry-copy h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.96;
  font-weight: 700;
}

.home-entry-points {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.home-entry-points span {
  display: inline-flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(196, 165, 138, 0.24);
  background: rgba(255, 255, 255, 0.52);
  color: #3d2d23;
  font-weight: 600;
}

.home-dashboard {
  margin-top: 0;
}

.home-auth-layout {
  margin-top: 0;
}

.account-dashboard-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.56fr);
}

.account-panel,
.account-order-card,
.executor-session-card {
  border-color: rgba(191, 248, 236, 0.12);
}

.account-panel-primary,
.auth-card-primary {
  background:
    linear-gradient(160deg, rgba(28, 35, 36, 0.84), rgba(14, 19, 20, 0.78)),
    radial-gradient(circle at top right, rgba(191, 248, 236, 0.08), transparent 24%);
  backdrop-filter: blur(22px) saturate(132%);
}

.auth-form-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.auth-form-inline .button {
  min-width: 220px;
}

.tracking-item,
.summary-item {
  border-bottom-color: rgba(196, 165, 138, 0.2);
}

.advantage-icon,
.home-about-list li::before {
  background: #d97732;
  color: #fff7f0;
  box-shadow: none;
}

.project-card-visual,
.project-card-visual-site,
.project-card-visual-telegram,
.project-card-visual-vk,
.project-card-visual-max,
.cart-item-image {
  background:
    radial-gradient(circle at center, rgba(217, 119, 50, 0.12), transparent 28%),
    linear-gradient(135deg, #f7ede0, #f2e3d2);
}

.toast {
  background: #201510;
  color: #f9efe3;
}

body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-modal.is-hidden {
  display: none;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 14, 10, 0.5);
  backdrop-filter: blur(8px);
}

.auth-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(196, 165, 138, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(252, 244, 235, 0.98)),
    radial-gradient(circle at top right, rgba(217, 119, 50, 0.1), transparent 30%);
  box-shadow: 0 28px 70px rgba(73, 44, 24, 0.28);
}

.auth-modal-head {
  margin-bottom: 20px;
  padding-right: 42px;
}

.auth-modal-head p:last-child {
  color: var(--muted);
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(242, 229, 212, 0.9);
  color: #34241c;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .home-entry,
  .account-dashboard-grid,
  .auth-form-inline {
    grid-template-columns: 1fr;
  }

  .home-entry-copy {
    padding: 24px;
  }

  .auth-form-inline .button {
    min-width: 0;
  }
}

/* Header and account refinement */
.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(35, 44, 43, 0.58), rgba(15, 21, 21, 0.48)),
    rgba(16, 21, 21, 0.4);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 20px -1px 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 248, 236, 0.16), transparent);
}

.site-nav.site-nav-core {
  justify-content: center;
  gap: 10px;
}

.site-nav-core a {
  color: #edf7f4;
  padding: 12px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  background: transparent;
  border-color: transparent;
}

.site-nav-core a:hover,
.site-nav-core a.is-active {
  color: #ffffff;
  background: rgba(191, 248, 236, 0.1);
  border-color: rgba(191, 248, 236, 0.14);
  box-shadow: 0 0 26px rgba(66, 208, 180, 0.14);
}

.site-nav-core a::after {
  bottom: 6px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-account-link,
.site-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(191, 248, 236, 0.12);
  color: #edf7f4;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.site-account-link:hover,
.site-account-link.is-active,
.site-cart-link:hover,
.site-cart-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(191, 248, 236, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.site-cart-link {
  gap: 10px;
  padding-right: 14px;
}

.site-cart-label {
  font-weight: 600;
}

.site-cart-link .cart-count {
  margin-left: 0;
  min-width: 20px;
  height: 20px;
  font-size: 0.75rem;
  background: rgba(66, 208, 180, 0.18);
  color: #d8fff6;
}

.account-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-bottom: 18px;
}

.account-overview-copy,
.account-quick-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(191, 248, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(32, 39, 40, 0.76), rgba(15, 20, 21, 0.7)),
    radial-gradient(circle at top right, rgba(191, 248, 236, 0.08), transparent 28%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.account-overview-copy h2,
.account-quick-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text);
}

.account-overview-copy .eyebrow,
.account-quick-card .eyebrow {
  color: rgba(191, 248, 236, 0.78);
}

.account-overview-copy p,
.account-quick-card p,
.account-overview-copy a,
.account-quick-card a,
.account-overview-copy strong,
.account-quick-card strong {
  color: var(--text);
}

.account-overview-copy p:last-child,
.account-quick-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.account-quick-card {
  padding: 24px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav.site-nav-core {
    justify-content: flex-start;
  }

  .site-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .account-overview {
    grid-template-columns: 1fr;
  }

  .account-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
    top: 10px;
  }

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

  .site-nav-core a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
    text-align: center;
  }

  .site-header-actions {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }

  .site-account-link,
  .site-cart-link {
    flex: 1 1 0;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .brand {
    min-width: 0;
    justify-self: start;
    gap: 10px;
  }

  .brand-text {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .site-cart-label {
    display: none;
  }

  .site-cart-link .cart-count {
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
    padding: 10px;
  }

  .site-nav.site-nav-core {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav-core a {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .site-header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-account-link {
    min-width: 0;
  }

  .site-cart-link {
    min-width: 52px;
    justify-content: center;
    padding-inline: 10px;
  }

  .brand-text {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}
