:root {
  color-scheme: light;
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-strong: #10251f;
  --text: #17211e;
  --muted: #63716b;
  --line: #dce4dd;
  --accent: #0e8f68;
  --accent-strong: #087251;
  --warning: #f4c95d;
  --shadow: 0 18px 50px rgba(19, 43, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
input,
summary,
code[data-copy-text],
.sh-plan,
.sh-benefit,
.sh-review-card,
.sh-stat-card,
.sh-access-preview,
.sh-cabinet-tariff,
.sh-install-panel,
.sh-telegram-panel,
.sh-ref-table tr {
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

button:not(:disabled):hover,
a:hover,
summary:hover {
  transform: translateY(-1px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
code[data-copy-text]:focus-visible {
  outline: 2px solid rgba(167, 251, 37, 0.86);
  outline-offset: 3px;
}

button:disabled {
  transform: none;
}

.topbar {
  align-items: center;
  background: rgba(245, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 800;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(16, 37, 31, 0.84), rgba(14, 143, 104, 0.58)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 72vh;
  padding: clamp(72px, 12vw, 132px) clamp(20px, 5vw, 72px);
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  margin-bottom: 24px;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.button--primary {
  background: var(--accent);
  color: white;
}

.button--primary:hover {
  background: var(--accent-strong);
}

.button:hover,
.tariff:hover,
.panel:hover,
.auth-card:hover {
  box-shadow: 0 20px 56px rgba(19, 43, 35, 0.16);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.button--full {
  width: 100%;
}

.section,
.cabinet {
  padding: 56px clamp(20px, 5vw, 72px);
}

.section__head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section__head p {
  color: var(--muted);
  max-width: 520px;
}

.section__head--compact {
  align-items: start;
  display: block;
}

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

.tariff,
.panel,
.auth-card,
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tariff {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 240px;
  padding: 24px;
}

.tariff--accent {
  border-color: rgba(14, 143, 104, 0.5);
}

.tariff strong,
.panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.auth {
  display: grid;
  min-height: calc(100vh - 73px);
  padding: 48px 20px;
  place-items: center;
}

.auth-card {
  max-width: 420px;
  padding: 28px;
  width: 100%;
}

.muted,
.auth-links,
.panel span {
  color: var(--muted);
}

label {
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 16px;
}

input {
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  min-height: 46px;
  padding: 0 12px;
}

.alert {
  background: #fff4d6;
  border: 1px solid #f1d17c;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 12px;
}

.auth-links {
  font-size: 13px;
  margin-top: 14px;
}

.dashboard-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.panel {
  min-height: 170px;
  padding: 24px;
}

.panel--subscription {
  background: var(--surface-strong);
  color: white;
}

.panel--subscription span,
.panel--subscription .panel__label {
  color: rgba(255, 255, 255, 0.72);
}

.panel__label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.table-section {
  margin-top: 32px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.cabinet-shell {
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
  padding: 32px clamp(20px, 4vw, 56px) 56px;
}

.cabinet-rail,
.cabinet-panel,
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cabinet-rail {
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 137px);
  padding: 22px;
  position: sticky;
  top: 92px;
}

.rail-kicker,
.section-label,
.summary-card span,
.cabinet-tariff span,
.access-box span,
.referral-link span,
.telegram-state {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cabinet-rail h1 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 28px;
}

.rail-nav {
  display: grid;
  gap: 8px;
}

.rail-nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  padding: 13px 14px;
}

.rail-nav a:hover {
  border-color: rgba(14, 143, 104, 0.45);
  color: var(--accent-strong);
}

.rail-logout {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin-top: auto;
}

.cabinet-workspace {
  display: grid;
  gap: 20px;
}

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

.summary-card {
  min-height: 150px;
  padding: 22px;
}

.summary-card--dark {
  background: var(--surface-strong);
  color: white;
}

.summary-card--dark span,
.summary-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.summary-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}

.summary-card p {
  color: var(--muted);
  margin: 0;
}

.cabinet-panel {
  padding: 24px;
}

.panel-title-row {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-title-row h2 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}

.cabinet-tariffs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cabinet-tariff {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.cabinet-tariff.is-selected {
  border-color: rgba(14, 143, 104, 0.5);
}

.cabinet-tariff strong {
  font-size: 28px;
  line-height: 1;
}

.cabinet-tariff p {
  color: var(--muted);
  margin: 0;
}

.cabinet-tariff button {
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 40px;
  width: 100%;
}

.install-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr);
}

.access-box,
.referral-link {
  background: #f0f4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.access-box code,
.referral-link code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.install-steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.install-steps strong {
  display: block;
  margin-bottom: 6px;
}

.install-steps p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.referral-link {
  margin-bottom: 16px;
}

.telegram-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  min-height: 40px;
  padding: 12px 14px;
}

.telegram-state.is-linked {
  border-color: rgba(14, 143, 104, 0.45);
  color: var(--accent-strong);
}

.telegram-link-box {
  align-items: center;
  background: #f0f4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px;
}

.telegram-link-box p {
  color: var(--muted);
  line-height: 1.55;
  margin: 6px 0 0;
  max-width: 620px;
}

@media (max-width: 920px) {
  .tariffs,
  .dashboard-grid,
  .cabinet-summary,
  .cabinet-tariffs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__head {
    align-items: start;
    display: block;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .tariffs,
  .dashboard-grid,
  .cabinet-shell,
  .cabinet-summary,
  .cabinet-tariffs,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .cabinet-rail {
    min-height: auto;
    position: static;
  }

  .panel-title-row {
    align-items: stretch;
    display: grid;
  }

  .telegram-link-box {
    align-items: stretch;
    display: grid;
  }

  .hero h1 {
    font-size: 42px;
  }
}

.shredder-page {
  --sh-black: #050505;
  --sh-white: #ffffff;
  --sh-green: #a7fb25;
  --sh-green-dark: #82d80e;
  --sh-purple: #771fe3;
  --sh-purple-light: #9036ff;
  --sh-card: rgba(4, 4, 5, 0.76);
  --sh-line: rgba(167, 251, 37, 0.72);
  background: var(--sh-black);
  color: var(--sh-white);
  font-family: Rubik, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.shredder-page main {
  overflow: hidden;
}

.shredder-page .topbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
  border: 0;
  color: white;
  left: 0;
  padding: 44px clamp(28px, 12vw, 240px) 18px;
  position: absolute;
  right: 0;
}

.shredder-page .brand {
  color: var(--sh-green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.86;
  max-width: 260px;
  text-shadow: 0 4px 18px #000;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.shredder-page .brand::after {
  content: "VPS СЕРВИС";
  display: block;
  font-family: Rubik, sans-serif;
  font-size: 10px;
  letter-spacing: 0;
  margin-left: 18px;
  margin-top: 4px;
}

.shredder-page .nav {
  color: white;
  font-size: 16px;
  gap: 28px;
}

.shredder-page .nav a {
  text-shadow: 0 3px 12px #000;
}

.shredder-page .nav a:last-child {
  border: 2px solid var(--sh-purple);
  border-radius: 16px;
  padding: 12px 30px;
}

.sh-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.25) 46%, rgba(0, 0, 0, 0.1) 100%), url("/static/figma-assets/hero-desktop.png");
  background-position: center top;
  background-size: cover;
  min-height: 1080px;
  padding: 0 clamp(28px, 12vw, 240px);
  position: relative;
}

.sh-hero__logo {
  display: none;
}

.sh-hero__content {
  margin-left: auto;
  max-width: 680px;
  padding-top: clamp(330px, 19.6vw, 376px);
  text-shadow: 0 4px 48px #000;
}

.sh-hero h1 {
  font-size: clamp(72px, 8vw, 138px);
  line-height: 0.92;
  margin-bottom: 10px;
}

.sh-hero__tagline {
  font-size: clamp(19px, 1.5vw, 27px);
  margin-bottom: 20px;
}

.sh-hero__price {
  font-family: Montserrat, Rubik, sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0;
  padding-left: 100px;
  position: relative;
}

.sh-hero__price strong,
.sh-hero__trial,
.sh-telegram strong {
  color: var(--sh-green);
}

.sh-hero__price span {
  font-size: 0.86em;
}

.sh-hero__price small {
  display: inline-block;
  font-size: 0.62em;
  font-weight: 700;
  line-height: 1.05;
}

.sh-hero__rocket {
  filter: drop-shadow(0 0 24px rgba(167, 251, 37, 0.42));
  height: auto;
  left: -4px;
  pointer-events: none;
  position: relative;
  top: -94px;
  transform: rotate(-14deg);
  width: 128px;
}

.sh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: -70px;
  margin-bottom: 18px;
}

.sh-button {
  align-items: center;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: clamp(16px, 1.6vw, 30px);
  font-weight: 900;
  justify-content: center;
  min-height: 64px;
  padding: 0 38px;
}

.sh-button--purple {
  background: var(--sh-purple);
  color: white;
}

.sh-button--green {
  background: var(--sh-green);
  box-shadow: 0 4px 24px rgba(167, 251, 37, 0.38);
  color: #141414;
}

.sh-button:hover,
.sh-mini-button:not(:disabled):hover,
.sh-cabinet-tariff button:not(:disabled):hover,
.sh-copy-button:not(:disabled):hover {
  box-shadow: 0 0 0 3px rgba(167, 251, 37, 0.16), 0 10px 24px rgba(167, 251, 37, 0.14);
  filter: brightness(1.04);
}

.sh-button:active,
.sh-mini-button:not(:disabled):active,
.sh-cabinet-tariff button:not(:disabled):active,
.sh-copy-button:not(:disabled):active {
  transform: translateY(0) scale(0.985);
}

.sh-plan:hover,
.sh-benefit:hover,
.sh-review-card:hover,
.sh-stat-card:hover,
.sh-access-preview:hover,
.sh-cabinet-tariff:hover,
.sh-install-panel:hover,
.sh-telegram-panel:hover,
.sh-ref-table tr:hover {
  border-color: rgba(167, 251, 37, 0.36);
  box-shadow: 0 0 24px rgba(167, 251, 37, 0.1), 0 18px 44px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.sh-hero__trial {
  font-size: 22px;
  max-width: 390px;
  text-align: right;
}

.sh-benefits-wrap,
.sh-plan-slider {
  position: relative;
}

.sh-benefits-wrap {
  background: #020202;
}

.sh-mobile-arrow {
  display: none;
}

.sh-benefits {
  background: #020202;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(-55px, -2.8vw, -15px);
  padding: 0 clamp(28px, 12vw, 240px) 70px;
  position: relative;
}

.sh-benefits article {
  margin-top: -40px;
  position: relative;
  text-align: center;
}

.sh-benefit-visual {
  height: 260px;
  margin: -58px auto -18px;
  position: relative;
  width: min(100%, 400px);
}

.sh-benefit-splash {
  height: auto;
  left: var(--splash-left, 50%);
  max-width: 410px;
  pointer-events: none;
  position: absolute;
  top: var(--splash-top, -34px);
  transform: translateX(-50%);
  width: var(--splash-width, 360px);
  z-index: 0;
}

.sh-benefit-art {
  filter: drop-shadow(0 0 22px rgba(167, 251, 37, 0.42));
  height: auto;
  left: var(--icon-left, 50%);
  max-width: 180px;
  position: absolute;
  top: var(--icon-top, 62px);
  transform: translateX(-50%);
  width: var(--icon-width, 150px);
  z-index: 1;
}

.sh-benefit-full {
  display: none;
}

.sh-benefit--security {
  --icon-left: 45%;
  --icon-top: 60px;
  --icon-width: 150px;
  --splash-left: 52%;
  --splash-top: -64px;
  --splash-width: 356px;
}

.sh-benefit--speed {
  --icon-left: 52%;
  --icon-top: 40px;
  --icon-width: 150px;
  --splash-left: 52%;
  --splash-top: -64px;
  --splash-width: 398px;
}

.sh-benefit--stability {
  --icon-left: calc(62% - 10px);
  --icon-top: 45px;
  --icon-width: 150px;
  --splash-left: 52%;
  --splash-top: -80px;
  --splash-width: 364px;
}

.sh-benefits h2,
.sh-reviews h2,
.sh-steps h2,
.sh-plans h2,
.sh-faq h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 4px 18px #000;
}

.sh-benefits h2 {
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.05;
}

.sh-benefits p {
  font-size: clamp(17px, 1.4vw, 26px);
  line-height: 1.22;
  margin: 0 auto;
  max-width: 430px;
}

.sh-tapes {
  background: #020202;
  height: 250px;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.sh-tape {
  align-items: center;
  background: var(--sh-green);
  color: #050505;
  display: flex;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 54px);
  gap: 80px;
  height: 54px;
  left: -8vw;
  overflow: hidden;
  position: absolute;
  right: -8vw;
  text-transform: uppercase;
  white-space: nowrap;
}

.sh-tape__track {
  animation: sh-marquee 15s linear infinite;
  display: flex;
  min-width: max-content;
  will-change: transform;
}

.sh-tape__track--reverse {
  animation-duration: 12s;
  animation-name: sh-marquee-reverse;
}

.sh-tape__group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(32px, 4vw, 80px);
  padding-right: clamp(32px, 4vw, 80px);
}

.sh-tape--one {
  box-shadow: 28px 5px 20px #000;
  top: 50px;
  transform: rotate(5deg);
}

.sh-tape--two {
  top: 95px;
  transform: rotate(-3deg);
}

@keyframes sh-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sh-marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.sh-page-bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), #000 85%), url("/static/figma-assets/city-depth.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: min(1920px, 100%) auto;
  margin-top: -105px;
  padding: 140px clamp(28px, 12vw, 240px) 80px;
}

.sh-reviews h2,
.sh-faq h2 {
  font-size: clamp(44px, 4vw, 64px);
}

.sh-review-stage {
  align-items: center;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(280px, 0.64fr) 52px;
  margin: 28px auto 16px;
  max-width: 1320px;
}

.sh-review-card {
  background: rgba(4, 5, 5, 0.72);
  border: 2px solid var(--sh-line);
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(167, 251, 37, 0.2);
  min-height: 290px;
  padding: clamp(22px, 4vw, 62px);
  position: relative;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1;
}

.sh-review-card.is-fading {
  opacity: 0;
  transform: translateY(6px) scale(0.985);
}

.sh-review-card__head {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.sh-avatar {
  background: linear-gradient(135deg, #342047, var(--sh-green));
  border-radius: 50%;
  height: 58px;
  width: 58px;
}

.sh-review-card strong,
.sh-rating {
  color: var(--sh-green);
}

.sh-review-card p {
  font-size: clamp(20px, 2vw, 36px);
  line-height: 1.2;
}

.sh-rating {
  font-size: 24px;
}

.sh-review-knight {
  align-self: end;
  margin-left: -120px;
  max-width: 520px;
  width: min(42vw, 520px);
  z-index: 2;
}

.sh-review-knight-mobile {
  display: none;
}

.sh-slider-btn {
  align-items: center;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 44px;
  z-index: 3;
}

.sh-slider-btn::before {
  display: block;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.sh-slider-btn[data-review-prev]::before {
  content: "‹";
}

.sh-slider-btn[data-review-next]::before {
  content: "›";
}

.sh-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.sh-dots button {
  background: white;
  border: 0;
  border-radius: 50%;
  height: 12px;
  padding: 0;
  width: 12px;
}

.sh-dots button.is-active {
  background: var(--sh-purple-light);
}

.sh-mobile-dots {
  display: none;
}

.sh-steps {
  margin: 90px auto 0;
  max-width: 1150px;
}

.sh-steps h2,
.sh-plans h2 {
  font-size: clamp(38px, 3.4vw, 48px);
  margin-bottom: 44px;
}

.sh-steps__title-img,
.sh-step-number-img {
  display: block;
  height: auto;
  user-select: none;
}

.sh-steps__title-img {
  max-width: 100%;
  width: min(100%, 820px);
}

.sh-step-number-img {
  filter: drop-shadow(0 0 18px rgba(167, 251, 37, 0.5));
  width: clamp(62px, 8vw, 138px);
}

.sh-step-heading {
  color: var(--sh-green);
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 3.1vw, 49px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(119, 31, 227, 0.7), 0 0 12px rgba(167, 251, 37, 0.36);
  text-transform: uppercase;
}

.sh-steps ol {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-steps li {
  border-bottom: 2px solid rgba(167, 251, 37, 0.55);
  display: grid;
  gap: 30px;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 18px 0 32px;
}

.sh-steps li:last-child {
  border-bottom: 0;
}

.sh-steps span {
  display: block;
}

.sh-steps h3 {
  margin: 12px 0 8px;
}

.sh-steps p {
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.16;
  max-width: 820px;
}

.sh-plans {
  margin-top: 74px;
}

.sh-plan-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(3, minmax(280px, 420px));
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
}

.sh-plan {
  background: rgba(5, 5, 5, 0.9);
  border: 3px solid var(--sh-green);
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(167, 251, 37, 0.28);
  min-height: 650px;
  padding: 44px 42px 34px;
  text-align: center;
}

.sh-plan.is-featured {
  border-color: var(--sh-purple-light);
}

.sh-plan__logo {
  display: block;
  height: auto;
  margin: -74px auto 12px;
  max-width: 330px;
  width: min(100%, 330px);
}

.sh-plan h3 {
  color: white;
  font-size: 32px;
  margin-bottom: 8px;
}

.sh-plan strong {
  display: block;
  font-size: clamp(42px, 4vw, 58px);
  margin-bottom: 28px;
}

.sh-plan ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}

.sh-plan li {
  font-size: 21px;
}

.sh-plan li::before {
  color: var(--sh-green);
  content: "●";
  margin-right: 10px;
}

.sh-plan p {
  font-size: 18px;
  text-align: left;
}

.sh-plan .sh-button {
  font-size: 30px;
  margin-top: 12px;
  min-height: 72px;
  width: 100%;
}

.sh-telegram {
  color: white;
  font-family: ljTurtlesTMNT, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(24px, 2vw, 39px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 44px 0 0;
  text-align: center;
  text-shadow: 0 4px 16.1px #000;
  transform: none;
}

.sh-telegram strong {
  color: var(--sh-green);
  display: inline-block;
  transform: none;
}

.sh-faq {
  margin: 80px auto 0;
  max-width: 1100px;
}

.sh-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  padding: 18px 0;
}

.sh-faq summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: clamp(19px, 1.8vw, 38px);
  gap: 24px;
  grid-template-columns: 78px 1fr 48px;
  list-style: none;
}

.sh-faq summary::-webkit-details-marker {
  display: none;
}

.sh-faq summary::after {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--sh-purple);
  content: "+";
  display: flex;
  font-size: 32px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.sh-faq details[open] summary::after {
  content: "-";
}

.sh-faq details p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.45;
  margin: 12px 0 0 102px;
}

.sh-footer {
  align-items: start;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.82) 58%, #000 100%), url("/static/figma-assets/city-depth.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  margin-left: calc(50% - 50vw);
  min-height: 250px;
  padding: 76px clamp(28px, 12vw, 240px) 64px;
  width: 100vw;
}

.sh-footer p,
.sh-footer a,
.sh-footer strong {
  font-size: clamp(16px, 1.6vw, 30px);
}

.sh-footer nav,
.sh-footer > div {
  display: grid;
  gap: 10px;
}

.sh-socials {
  display: flex;
  gap: 10px;
}

.sh-socials a {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 16px;
  height: 61px;
  justify-content: center;
  width: 61px;
}

.sh-socials img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.login-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), #050505 74%),
    url("/static/figma-assets/city-depth.png");
  background-color: #050505;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.login-page main {
  min-height: 100vh;
}

.sh-login {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 86px);
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 520px);
  min-height: 100vh;
  padding: 150px clamp(28px, 12vw, 240px) 72px;
  position: relative;
}

.sh-login::before {
  background:
    linear-gradient(90deg, rgba(119, 31, 227, 0.34), rgba(167, 251, 37, 0.72), rgba(119, 31, 227, 0.34));
  box-shadow: 0 0 34px rgba(167, 251, 37, 0.28);
  content: "";
  height: 3px;
  left: clamp(28px, 12vw, 240px);
  position: absolute;
  right: clamp(28px, 12vw, 240px);
  top: 112px;
}

.sh-login__visual {
  min-height: 560px;
  position: relative;
}

.sh-login__logo {
  display: block;
  filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.8));
  height: auto;
  max-width: 620px;
  position: relative;
  width: min(100%, 620px);
  z-index: 2;
}

.sh-login__knight {
  bottom: -22px;
  filter: drop-shadow(0 0 34px rgba(167, 251, 37, 0.32));
  height: auto;
  max-width: 440px;
  position: absolute;
  right: 5%;
  width: min(62%, 440px);
  z-index: 1;
}

.sh-login-card {
  background: rgba(5, 5, 5, 0.84);
  border: 2px solid rgba(167, 251, 37, 0.76);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(167, 251, 37, 0.2), 0 28px 70px rgba(0, 0, 0, 0.5);
  justify-self: end;
  max-width: 520px;
  padding: clamp(28px, 4vw, 44px);
  width: 100%;
}

.sh-login-card__eyebrow {
  color: var(--sh-green);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sh-login-card h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 0.9;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(119, 31, 227, 0.74), 0 0 18px rgba(167, 251, 37, 0.28);
  text-transform: uppercase;
}

.sh-login--register .sh-login-card h1 {
  font-size: clamp(46px, 4.3vw, 72px);
}

.sh-login-card__lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 28px;
}

.sh-login-field {
  color: white;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sh-login-field input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: white;
  min-height: 58px;
  outline: 0;
  padding: 0 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sh-login-field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.sh-login-field input:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--sh-green);
  box-shadow: 0 0 0 3px rgba(167, 251, 37, 0.16);
}

.sh-login-alert {
  background: rgba(119, 31, 227, 0.28);
  border: 1px solid rgba(167, 251, 37, 0.55);
  border-radius: 12px;
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 13px 15px;
}

.sh-login-submit {
  border: 0;
  cursor: pointer;
  font-size: 22px;
  margin-top: 4px;
  width: 100%;
}

.sh-login-card__links {
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.sh-login-card__links a {
  color: var(--sh-green);
  font-weight: 900;
}

.sh-cabinet-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), #050505 68%),
    url("/static/figma-assets/city-depth.png");
  background-color: #050505;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.sh-cabinet-page .topbar {
  display: none;
}

.sh-cabinet-page main {
  min-height: 100vh;
}

.sh-cabinet {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.sh-cabinet-sidebar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(5, 5, 5, 0.78));
  border-right: 1px solid rgba(167, 251, 37, 0.2);
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 100vh;
  padding: 28px 20px;
  position: sticky;
  top: 0;
  z-index: 4;
}

.sh-cabinet-logo img {
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.8));
  height: auto;
  width: min(100%, 230px);
}

.sh-cabinet-user {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 14px;
}

.sh-cabinet-user img {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.sh-cabinet-user span,
.sh-panel-head p,
.sh-stat-card span,
.sh-access-preview span,
.sh-one-click span,
.sh-cabinet-tariff span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.sh-cabinet-user strong {
  display: block;
  font-size: 18px;
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.sh-cabinet-menu-toggle {
  display: none;
}

.sh-cabinet-menu-backdrop {
  display: none;
}

.sh-cabinet-nav__head {
  display: none;
}

.sh-cabinet-nav {
  display: grid;
  gap: 10px;
}

.sh-cabinet-nav a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 13px;
  font-weight: 900;
  padding: 15px 16px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sh-cabinet-nav a:hover,
.sh-cabinet-nav a.is-active {
  background: linear-gradient(90deg, rgba(119, 31, 227, 0.74), rgba(167, 251, 37, 0.16));
  border-color: rgba(167, 251, 37, 0.68);
  color: white;
  transform: translateX(4px);
}

.sh-cabinet-logout {
  color: rgba(255, 255, 255, 0.58);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 13px;
  font-weight: 900;
  margin-top: auto;
  text-transform: uppercase;
}

.sh-cabinet-main {
  min-width: 0;
  padding: 36px clamp(24px, 5vw, 72px);
}

.sh-cabinet-top {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto 28px;
  max-width: 1220px;
}

.sh-cabinet-top p {
  color: var(--sh-green);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sh-cabinet-top h1,
.sh-panel-head h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  text-shadow: 3px 3px 0 rgba(119, 31, 227, 0.7), 0 0 16px rgba(167, 251, 37, 0.28);
  text-transform: uppercase;
}

.sh-cabinet-top h1 {
  font-size: clamp(54px, 6vw, 96px);
}

.sh-cabinet-top img {
  filter: drop-shadow(0 0 24px rgba(167, 251, 37, 0.24));
  height: auto;
  max-width: 170px;
  width: 18vw;
}

.sh-cabinet-panels {
  margin: 0 auto;
  max-width: 1220px;
  min-height: 560px;
  position: relative;
  width: 100%;
}

.sh-cabinet-panel {
  animation: sh-panel-in 0.34s ease both;
  background: rgba(5, 5, 5, 0.84);
  border: 2px solid rgba(167, 251, 37, 0.56);
  border-radius: 20px;
  box-shadow: 0 0 32px rgba(167, 251, 37, 0.15), 0 28px 70px rgba(0, 0, 0, 0.44);
  display: none;
  min-height: 560px;
  padding: clamp(22px, 4vw, 42px);
}

.sh-cabinet-panel.is-active {
  display: block;
}

@keyframes sh-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.sh-panel-head h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.sh-mini-button,
.sh-cabinet-tariff button {
  align-items: center;
  background: var(--sh-green);
  border: 0;
  border-radius: 12px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

.sh-mini-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.sh-mini-button--earned:disabled {
  background: rgba(167, 251, 37, 0.14);
  border: 1px solid rgba(167, 251, 37, 0.58);
  color: var(--sh-green);
  opacity: 1;
}

.sh-mini-button--danger {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.sh-cabinet-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.sh-stat-card,
.sh-access-preview,
.sh-cabinet-tariff,
.sh-one-click,
.sh-autopay-card,
.sh-telegram-panel,
.sh-ref-table {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-width: 0;
}

.sh-stat-card {
  min-height: 156px;
  padding: 22px;
}

.sh-stat-card--accent {
  background: linear-gradient(135deg, rgba(119, 31, 227, 0.72), rgba(5, 5, 5, 0.68));
  border-color: rgba(167, 251, 37, 0.58);
}

.sh-stat-card strong {
  color: var(--sh-green);
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 12px;
}

.sh-stat-card .sh-stat-card__username {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.sh-stat-card p,
.sh-access-preview p,
.sh-cabinet-tariff p,
.sh-install-steps p,
.sh-telegram-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  margin: 0;
}

.sh-cabinet-split,
.sh-setup-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-width: 0;
}

.sh-access-preview {
  padding: 22px;
  max-width: 100%;
  overflow: hidden;
}

.sh-access-preview code {
  color: white;
  display: block;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-access-preview--visual {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px minmax(0, 1fr);
}

.sh-access-preview--visual > div {
  min-width: 0;
}

.sh-access-preview--visual img {
  display: block;
  height: auto;
  width: 120px;
}

.sh-access-preview--visual strong,
.sh-install-steps strong,
.sh-telegram-panel strong {
  color: var(--sh-green);
  display: block;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.sh-cabinet-tariffs {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(220px, 300px));
  justify-content: center;
}

.sh-cabinet-tariff {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 18px;
  text-align: center;
}

.sh-cabinet-tariff.is-selected {
  border-color: rgba(119, 31, 227, 0.9);
  box-shadow: 0 0 24px rgba(119, 31, 227, 0.22);
}

.sh-cabinet-tariff img {
  display: block;
  height: auto;
  margin: -30px auto 6px;
  max-width: 160px;
  width: 100%;
}

.sh-cabinet-tariff strong {
  color: var(--sh-green);
  display: block;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}

.sh-cabinet-tariff form {
  margin-top: auto;
}

.sh-cabinet-tariff button {
  width: 100%;
}

.sh-autopay-card {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
  padding: 22px;
}

.sh-autopay-card span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.sh-autopay-card strong {
  color: var(--sh-green);
  display: block;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sh-autopay-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  margin: 0;
}

.sh-autopay-confirm {
  background: rgba(119, 31, 227, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: none;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 16px;
}

.sh-autopay-card.is-confirming .sh-autopay-confirm {
  display: grid;
}

.sh-autopay-confirm > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sh-install-steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.sh-one-click {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.sh-one-click strong {
  color: var(--sh-green);
  display: block;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sh-one-click p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  margin: 0;
}

.sh-one-click__apps,
.sh-one-click__buttons {
  display: grid;
  gap: 10px;
}

.sh-one-click__apps,
.sh-one-click__buttons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sh-one-click__apps a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  min-height: 38px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.sh-one-click__buttons .sh-mini-button {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.sh-install {
  display: grid;
  gap: 16px;
}

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

.sh-platform-tabs button {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 12px;
  font-weight: 900;
  min-height: 42px;
  text-transform: uppercase;
}

.sh-platform-tabs button.is-active {
  background: linear-gradient(90deg, rgba(119, 31, 227, 0.68), rgba(167, 251, 37, 0.14));
  border-color: rgba(167, 251, 37, 0.62);
  color: white;
}

.sh-install-panel {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: none;
  padding: 22px;
}

.sh-install-panel.is-active {
  display: grid;
  gap: 16px;
}

.sh-install-panel > span,
.sh-manual-key p {
  color: rgba(255, 255, 255, 0.6);
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sh-install-panel strong {
  color: var(--sh-green);
  display: block;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sh-install-panel ol {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 10px;
  line-height: 1.42;
  margin: 0;
  padding-left: 22px;
}

.sh-install-panel a:not(.sh-mini-button) {
  color: var(--sh-green);
  font-weight: 900;
}

.sh-install-panel .sh-mini-button {
  justify-self: start;
}

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

.sh-manual-key p {
  line-height: 1.35;
  margin: 0;
}

.sh-manual-key code {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  cursor: copy;
  display: block;
  font-size: 13px;
  overflow-wrap: anywhere;
  padding: 12px;
  word-break: break-all;
}

.sh-manual-key code:hover,
.sh-access-preview code[data-copy-text]:hover {
  background: rgba(167, 251, 37, 0.08);
  border-color: rgba(167, 251, 37, 0.38);
}

.sh-copy-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  display: inline-flex;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  text-transform: uppercase;
}

.sh-copy-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.is-copied {
  animation: sh-copy-pulse 0.55s ease;
  background: var(--sh-green) !important;
  border-color: rgba(167, 251, 37, 0.8) !important;
  color: #111 !important;
}

.is-copy-error {
  animation: sh-copy-shake 0.34s ease;
  background: rgba(119, 31, 227, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: white !important;
}

@keyframes sh-copy-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 251, 37, 0.46);
    transform: scale(1);
  }
  55% {
    box-shadow: 0 0 0 10px rgba(167, 251, 37, 0);
    transform: scale(1.035);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sh-copy-shake {
  0%, 100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(4px);
  }
}

.sh-install-steps li {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 18px;
}

.sh-install-steps li > span {
  color: var(--sh-green);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 38px;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(119, 31, 227, 0.7);
}

.sh-status-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 12px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 16px;
  align-items: center;
  text-transform: uppercase;
}

.sh-status-pill.is-linked {
  border-color: rgba(167, 251, 37, 0.68);
  color: var(--sh-green);
}

.sh-telegram-panel {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  padding: 24px;
}

.sh-telegram-panel img {
  height: auto;
  width: 82px;
}

.sh-ref-table {
  margin-top: 18px;
  overflow-x: auto;
}

.sh-ref-table table {
  color: white;
  min-width: 0;
  width: 100%;
}

.sh-ref-table th {
  color: var(--sh-green);
}

.sh-ref-table th,
.sh-ref-table td {
  padding: 14px 16px;
}

.sh-ref-table td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-ref-status {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-family: Montserrat, Rubik, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  min-height: 28px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.sh-ref-status.is-paid {
  background: rgba(167, 251, 37, 0.14);
  border-color: rgba(167, 251, 37, 0.58);
  color: var(--sh-green);
}

.sh-ref-status.is-registered {
  background: rgba(119, 31, 227, 0.22);
  border-color: rgba(164, 112, 255, 0.46);
  color: #d8c7ff;
}

@media (max-width: 980px) {
  .shredder-page .topbar {
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    padding: 22px 40px 0;
  }

  .shredder-page .brand {
    display: none;
  }

  .shredder-page .nav {
    gap: 12px;
  }

  .shredder-page .nav a[href="/#tariffs"] {
    display: none;
  }

  .shredder-page .nav a:last-child {
    padding: 8px 18px;
  }

  .sh-hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16) 58%, rgba(2, 2, 2, 0.86) 100%), url("/static/figma-assets/hero-mobile.png");
    background-position: center top;
    min-height: 800px;
    padding: 0 40px;
  }

  .sh-hero__logo {
    display: block;
    height: auto;
    left: 8%;
    pointer-events: none;
    position: absolute;
    top: 88px;
    width: min(82vw, 351px);
  }

  .sh-hero__content {
    margin: 0;
    padding-top: 505px;
  }

  .sh-hero h1 {
    font-size: 70px;
  }

  .sh-hero__trial {
    text-align: left;
  }

  .sh-benefits,
  .sh-footer {
    grid-template-columns: 1fr;
  }

  .sh-login {
    grid-template-columns: 1fr;
    padding: 118px 40px 56px;
  }

  .sh-login::before {
    left: 40px;
    right: 40px;
    top: 82px;
  }

  .sh-login__visual {
    min-height: 300px;
  }

  .sh-login__logo {
    margin: 0 auto;
    max-width: 430px;
  }

  .sh-login__knight {
    bottom: -18px;
    left: 50%;
    max-width: 260px;
    right: auto;
    transform: translateX(-50%);
    width: 52%;
  }

  .sh-cabinet {
    grid-template-columns: 1fr;
  }

  .sh-cabinet-sidebar {
    border-bottom: 1px solid rgba(167, 251, 37, 0.2);
    border-right: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(124px, 210px) minmax(0, 1fr) auto;
    min-height: auto;
    position: sticky;
    top: 0;
  }

  .sh-cabinet-logo img {
    width: 210px;
  }

  .sh-cabinet-user {
    min-width: 0;
  }

  .sh-cabinet-menu-toggle {
    align-items: center;
    align-self: center;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(167, 251, 37, 0.62);
    border-radius: 14px;
    color: white;
    cursor: pointer;
    display: grid;
    gap: 5px;
    height: 48px;
    justify-items: center;
    padding: 7px 12px;
    width: 74px;
  }

  .sh-cabinet-menu-toggle span {
    background: var(--sh-green);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: 24px;
  }

  .sh-cabinet-menu-toggle strong {
    font-family: Montserrat, Rubik, sans-serif;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .sh-cabinet.is-menu-open .sh-cabinet-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .sh-cabinet.is-menu-open .sh-cabinet-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .sh-cabinet.is-menu-open .sh-cabinet-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sh-cabinet-nav {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.96)),
      url("/static/figma-assets/city-depth.png");
    background-position: center top;
    background-size: cover;
    border-left: 1px solid rgba(167, 251, 37, 0.34);
    box-shadow: -20px 0 48px rgba(0, 0, 0, 0.48);
    display: grid;
    align-content: start;
    gap: 8px;
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    height: 100vh;
    max-height: none;
    max-width: min(280px, calc(100vw - 44px));
    opacity: 0;
    overflow-y: auto;
    padding: 22px 14px 20px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: opacity 0.2s ease, transform 0.28s ease;
    width: 74vw;
    z-index: 12;
  }

  .sh-cabinet-nav__head {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    display: grid;
    gap: 10px;
    grid-template-columns: 62px minmax(0, 1fr);
    margin-bottom: 8px;
    padding: 0 2px 16px;
  }

  .sh-cabinet-nav__head img {
    display: block;
    filter: drop-shadow(0 0 14px rgba(167, 251, 37, 0.24));
    height: auto;
    width: 62px;
  }

  .sh-cabinet-nav__head span {
    color: var(--sh-green);
    font-family: Montserrat, Rubik, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .sh-cabinet-nav a {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    font-size: 11px;
    min-height: 38px;
    padding: 11px 12px;
    text-align: left;
    transform: none;
  }

  .sh-cabinet-nav a:hover,
  .sh-cabinet-nav a.is-active {
    background: linear-gradient(90deg, rgba(119, 31, 227, 0.56), rgba(167, 251, 37, 0.12));
    border-color: rgba(167, 251, 37, 0.58);
    color: white;
    transform: none;
  }

  .sh-cabinet.is-menu-open .sh-cabinet-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .sh-cabinet-menu-backdrop {
    background: rgba(0, 0, 0, 0.54);
    border: 0;
    cursor: pointer;
    display: block;
    inset: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.22s ease;
    z-index: 11;
  }

  .sh-cabinet.is-menu-open .sh-cabinet-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .sh-cabinet-logout {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .sh-cabinet-main {
    padding: 30px 40px 48px;
  }

  .sh-cabinet-tariffs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-cabinet-split,
  .sh-setup-grid,
  .sh-telegram-panel {
    grid-template-columns: 1fr;
  }

  .sh-benefits-wrap,
  .sh-plan-slider {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .sh-mobile-arrow {
    align-items: center;
    background: rgba(0, 0, 0, 0.42);
    border: 1.4px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 28px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 3px;
    position: absolute;
    width: 28px;
    z-index: 4;
  }

  .sh-benefits-wrap .sh-mobile-arrow--prev,
  .sh-benefits-wrap .sh-mobile-arrow--next {
    top: 170px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--prev {
    left: 42px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--next {
    left: min(360px, calc(100% - 70px));
    right: auto;
  }

  .sh-plan-slider .sh-mobile-arrow--prev,
  .sh-plan-slider .sh-mobile-arrow--next {
    top: 52%;
  }

  .sh-plan-slider .sh-mobile-arrow--prev {
    left: 12px;
  }

  .sh-plan-slider .sh-mobile-arrow--next {
    left: min(386px, calc(100% - 46px));
    right: auto;
  }

  .sh-benefits {
    display: flex;
    gap: 96px;
    grid-template-columns: none;
    margin-top: -64px;
    overflow-x: auto;
    padding: 0 calc((100vw - min(78vw, 360px)) / 2) 18px;
    scroll-padding: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sh-benefits::-webkit-scrollbar,
  .sh-plan-grid::-webkit-scrollbar {
    display: none;
  }

  .sh-benefits article {
    flex: 0 0 min(78vw, 360px);
    margin-top: 0;
    scroll-snap-align: center;
  }

  .sh-benefit-visual {
    height: 230px;
    margin: -20px auto -10px;
    width: min(100%, 320px);
  }

  .sh-benefit--security,
  .sh-benefit--speed,
  .sh-benefit--stability {
    --icon-top: 70px;
    --icon-width: 126px;
    --splash-top: -28px;
    --splash-width: 286px;
  }

  .sh-benefit--security {
    --splash-left: 52%;
  }

  .sh-benefit--speed {
    --splash-left: 52%;
    --splash-top: -44px;
    --splash-width: 308px;
  }

  .sh-benefit--stability {
    --icon-left: calc(50% - 9px);
    --splash-left: 52%;
  }

  .sh-page-bg {
    background-size: cover;
    margin-top: -70px;
    padding: 82px 40px 70px;
  }

  .sh-review-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .sh-review-knight {
    display: none;
  }

  .sh-plan-grid {
    display: flex;
    gap: 0;
    margin: 0;
    max-width: none;
    overflow-x: auto;
    padding: 40px 0 18px;
    scroll-padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100vw;
  }

  .sh-plan {
    --sh-plan-card-width: min(78vw, 430px);
    flex: 0 0 var(--sh-plan-card-width);
    margin-left: calc((100vw - var(--sh-plan-card-width)) / 2);
    margin-right: calc((100vw - var(--sh-plan-card-width)) / 2);
    max-width: var(--sh-plan-card-width);
    min-height: auto;
    scroll-snap-align: center;
    width: var(--sh-plan-card-width);
  }

  .sh-plan > * {
    max-width: 100%;
  }

  .sh-mobile-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 14px 0 0;
  }

  .sh-mobile-dots button {
    background: rgba(255, 255, 255, 0.78);
    border: 0;
    border-radius: 999px;
    height: 10px;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
    width: 10px;
  }

  .sh-mobile-dots button.is-active {
    background: var(--sh-purple-light);
    width: 24px;
  }
}

@media (max-width: 560px) {
  .shredder-page .topbar {
    padding: 22px 40px 0;
    justify-content: center;
  }

  .shredder-page .nav {
    font-size: 13px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .shredder-page .nav a:last-child {
    border-width: 1.7px;
    border-radius: 10px;
    padding: 8px 18px;
  }

  .sh-hero {
    min-height: 800px;
    padding: 0 clamp(24px, 8vw, 40px);
  }

  .sh-hero__logo {
    left: 34px;
    top: 88px;
    width: min(82vw, 351px);
  }

  .sh-hero__content {
    max-width: calc(100vw - 80px);
    padding-top: 505px;
  }

  .sh-hero h1 {
    font-size: 72px;
    margin-bottom: 2px;
  }

  .sh-hero__tagline,
  .sh-hero__price,
  .sh-hero__trial {
    font-size: 13.7px;
  }

  .sh-hero__price {
    font-size: 14.3px;
    padding-left: 60px;
  }

  .sh-hero__price span {
    font-size: 12.3px;
  }

  .sh-hero__rocket {
    top: -45px;
    width: 52px;
  }

  .sh-actions {
    display: grid;
    gap: 5px;
    grid-template-columns: minmax(0, 0.585fr) minmax(0, 1fr);
    margin-top: -28px;
    margin-bottom: 14px;
    max-width: 100%;
    width: 100%;
  }

  .sh-button {
    border-radius: 9px;
    font-size: 16.6px;
    min-height: 39px;
    min-width: 0;
    padding: 0 10px;
    white-space: nowrap;
  }

  .sh-actions .sh-button--purple {
    min-width: 0;
  }

  .sh-actions .sh-button--green {
    min-width: 0;
  }

  .sh-hero__trial {
    font-size: 11.6px;
    margin-left: 0;
    max-width: 100%;
    text-align: right;
    width: 100%;
  }

  .sh-benefits,
  .sh-page-bg,
  .sh-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sh-benefits {
    margin-left: 0;
    margin-right: 0;
    margin-top: -28px;
    padding-left: 0;
    padding-right: 0;
    scroll-padding: 0;
  }

  .sh-benefits article {
    flex-basis: 100vw;
  }

  .sh-benefit-visual {
    height: 198px;
    margin: -8px auto -2px;
    width: 206px;
  }

  .sh-benefit--security,
  .sh-benefit--speed,
  .sh-benefit--stability {
    --icon-left: 50%;
    --icon-top: 69px;
    --icon-width: 78px;
    --splash-left: 52%;
    --splash-top: -6px;
    --splash-width: 198px;
  }

  .sh-benefit--security {
    --icon-top: 67px;
    --icon-left: calc(47% - 5px);
    --splash-top: -4px;
  }

  .sh-benefit--speed {
    --icon-top: 40px;
    --icon-width: 82px;
    --icon-left: calc(55% - 5px);
    --splash-top: -18px;
    --splash-width: 220px;
  }

  .sh-benefit--stability {
    --icon-left: calc(60% - 5px);
    --icon-top: 68px;
    --splash-width: 206px;
  }

  .sh-benefits h2 {
    font-size: 18px;
  }

  .sh-benefits p {
    font-size: 14px;
    line-height: 1.18;
    max-width: 220px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--prev,
  .sh-benefits-wrap .sh-mobile-arrow--next {
    top: 144px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--prev {
    left: 40px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--next {
    left: min(360px, calc(100% - 68px));
    right: auto;
  }

  .sh-plan-slider .sh-mobile-arrow--prev {
    left: 12px;
  }

  .sh-plan-slider .sh-mobile-arrow--next {
    left: min(386px, calc(100% - 46px));
    right: auto;
  }

  .sh-tapes {
    height: 118px;
  }

  .sh-tape {
    font-size: 24px;
    height: 34px;
  }

  .sh-review-stage {
    grid-template-columns: 24px minmax(0, 294px) 24px;
    justify-content: center;
    margin-top: 12px;
    min-width: 0;
  }

  .sh-slider-btn {
    height: 24px;
    width: 24px;
  }

  .sh-slider-btn::before {
    font-size: 20px;
    transform: translateY(-1px);
  }

  .sh-review-card {
    margin: 0;
    min-height: 0;
    min-width: 0;
    padding: 18px 30px;
    z-index: 2;
  }

  .sh-review-knight-mobile {
    display: none;
  }

  .sh-reviews h2,
  .sh-faq h2 {
    font-size: 24px;
  }

  .sh-review-card p {
    font-size: 10.6px;
    overflow-wrap: break-word;
  }

  .sh-rating {
    font-size: 10.6px;
  }

  .sh-avatar {
    height: 22px;
    width: 22px;
  }

  .sh-review-card__head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .sh-review-card strong {
    font-size: 10.6px;
  }

  .sh-page-bg {
    overflow: hidden;
    margin-top: -42px;
    padding-top: 70px;
  }

  .sh-steps {
    margin-top: 54px;
  }

  .sh-steps h2,
  .sh-plans h2 {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: left;
  }

  .sh-plans h2 {
    text-align: center;
  }

  .sh-steps__title-img {
    width: min(100%, 348px);
  }

  .sh-steps li {
    gap: 10px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 8px 0 12px;
  }

  .sh-steps li > div {
    min-width: 0;
  }

  .sh-steps span {
    align-self: start;
    padding-top: 2px;
  }

  .sh-step-number-img {
    width: 58px;
  }

  .sh-steps h3 {
    margin: 9px 0 5px;
  }

  .sh-step-heading {
    font-size: 15px;
    line-height: 1.05;
  }

  .sh-steps p,
  .sh-plan li,
  .sh-plan p,
  .sh-faq details p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .sh-plan {
    --sh-plan-card-width: 206px;
    flex-basis: var(--sh-plan-card-width);
    margin-left: calc((100vw - var(--sh-plan-card-width)) / 2);
    margin-right: calc((100vw - var(--sh-plan-card-width)) / 2);
    max-width: var(--sh-plan-card-width);
    min-height: 322px;
    padding: 20px 16px 16px;
    border-left-width: 3px;
    border-right-width: 3px;
    width: var(--sh-plan-card-width);
  }

  .sh-plan__logo {
    margin: -36px auto 8px;
    max-width: 156px;
  }

  .sh-plan h3 {
    font-size: 16px;
  }

  .sh-plan strong {
    font-size: 29px;
    margin-bottom: 14px;
  }

  .sh-plan .sh-button {
    border-radius: 8px;
    font-size: 14px;
    min-height: 34px;
    padding: 0 12px;
  }

  .sh-plan ul {
    gap: 8px;
    margin-bottom: 10px;
  }

  .sh-plan li,
  .sh-plan p {
    font-size: 12px;
  }

  .sh-faq summary {
    font-size: 15px;
    gap: 12px;
    grid-template-columns: 28px 1fr 32px;
  }

  .sh-faq summary::after {
    font-size: 24px;
    height: 28px;
    width: 28px;
  }

  .sh-faq details p {
    margin-left: 40px;
  }

  .sh-footer {
    gap: 18px 34px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
    padding-top: 48px;
  }

  .sh-login {
    gap: 22px;
    padding: 96px 40px 48px;
  }

  .sh-login::before {
    top: 72px;
  }

  .sh-login__visual {
    min-height: 252px;
  }

  .sh-login__logo {
    max-width: 340px;
  }

  .sh-login__knight {
    max-width: 184px;
  }

  .sh-login-card {
    justify-self: center;
    padding: 24px 20px;
  }

  .sh-login-card h1 {
    font-size: 52px;
  }

  .sh-login--register .sh-login-card h1 {
    font-size: 42px;
  }

  .sh-login-card__lead {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .sh-login-field input {
    min-height: 52px;
  }

  .sh-cabinet-sidebar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 22px 40px;
  }

  .sh-cabinet-logo {
    display: none;
  }

  .sh-cabinet-main {
    padding: 26px 40px 42px;
  }

  .sh-cabinet-top img {
    display: none;
  }

  .sh-cabinet-panel {
    border-radius: 16px;
    min-height: 520px;
    padding: 20px;
  }

  .sh-panel-head {
    align-items: stretch;
    display: grid;
  }

  .sh-cabinet-stats,
  .sh-cabinet-tariffs {
    grid-template-columns: 1fr;
  }

  .sh-autopay-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .sh-autopay-card > .sh-mini-button {
    width: 100%;
  }

  .sh-cabinet-split,
  .sh-setup-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sh-access-preview--visual {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .sh-access-preview--visual img {
    width: 88px;
  }

  .sh-one-click__apps,
  .sh-one-click__buttons {
    grid-template-columns: 1fr;
  }

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

  .sh-install-panel .sh-mini-button {
    justify-self: stretch;
  }

  .sh-cabinet-top h1 {
    font-size: 52px;
  }

  .sh-panel-head h2 {
    font-size: 34px;
  }

  .sh-ref-table {
    background: transparent;
    border: 0;
    overflow: visible;
  }

  .sh-ref-table table,
  .sh-ref-table thead,
  .sh-ref-table tbody,
  .sh-ref-table tr,
  .sh-ref-table td {
    display: block;
    width: 100%;
  }

  .sh-ref-table thead {
    display: none;
  }

  .sh-ref-table tbody {
    display: grid;
    gap: 12px;
  }

  .sh-ref-table tr {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 6px 14px;
  }

  .sh-ref-table td {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 42px;
    overflow-wrap: anywhere;
    padding: 10px 0;
    text-align: right;
  }

  .sh-ref-status {
    max-width: min(190px, 58vw);
    text-align: right;
  }

  .sh-ref-table td:first-child {
    border-top: 0;
  }

  .sh-ref-table td::before {
    color: rgba(255, 255, 255, 0.55);
    content: attr(data-label);
    flex: 0 0 auto;
    font-family: Montserrat, Rubik, sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .sh-ref-table .sh-ref-table__empty {
    display: block;
    min-height: 0;
    padding: 14px 0;
    text-align: left;
  }

  .sh-ref-table .sh-ref-table__empty::before {
    content: none;
  }

  .sh-footer p,
  .sh-footer a,
  .sh-footer strong {
    font-size: 12px;
  }

  .sh-footer nav,
  .sh-footer > div {
    gap: 4px;
  }
}

@media (max-width: 400px) {
  .shredder-page .topbar,
  .sh-hero,
  .sh-benefits,
  .sh-page-bg,
  .sh-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sh-hero__logo {
    left: 24px;
    width: min(86vw, 335px);
  }

  .sh-hero__content {
    max-width: calc(100vw - 48px);
  }

  .sh-login {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sh-login::before {
    left: 24px;
    right: 24px;
  }

  .sh-login-submit {
    font-size: 18px;
  }

  .sh-cabinet-sidebar,
  .sh-cabinet-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sh-cabinet-sidebar {
    gap: 12px;
  }

  .sh-cabinet-user {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .sh-cabinet-user img {
    height: 48px;
    width: 48px;
  }

  .sh-cabinet-nav a {
    font-size: 12px;
    padding: 12px 14px;
  }

  .sh-cabinet-top h1 {
    font-size: 44px;
  }

  .sh-panel-head h2 {
    font-size: 28px;
  }

  .sh-cabinet-panel {
    padding: 16px;
  }

  .sh-access-preview,
  .sh-stat-card,
  .sh-one-click,
  .sh-autopay-card,
  .sh-install-panel {
    padding: 16px;
  }

  .sh-platform-tabs {
    gap: 8px;
  }

  .sh-platform-tabs button {
    font-size: 11px;
    min-height: 38px;
  }

  .sh-access-preview code {
    font-size: 13px;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
    word-break: break-all;
  }

  .sh-access-preview--visual {
    align-items: start;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
  }

  .sh-access-preview--visual img {
    width: 76px;
  }

  .sh-access-preview--visual strong {
    font-size: 19px;
  }

  .sh-access-preview--visual p {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .sh-install-steps li {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 14px;
  }

  .sh-install-steps li > span {
    font-size: 30px;
  }

  .sh-mini-button,
  .sh-cabinet-tariff button {
    width: 100%;
  }

  .sh-actions {
    gap: 4px;
  }

  .sh-button {
    font-size: 14.2px;
    padding: 0 6px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--prev {
    left: 24px;
  }

  .sh-benefits-wrap .sh-mobile-arrow--next {
    left: min(338px, calc(100% - 52px));
  }
}

.vault-body {
  --vault-bg: #050606;
  --vault-panel: rgba(18, 18, 17, 0.86);
  --vault-panel-strong: rgba(25, 25, 24, 0.94);
  --vault-line: rgba(255, 200, 30, 0.16);
  --vault-line-soft: rgba(255, 255, 255, 0.08);
  --vault-text: #f6f3eb;
  --vault-muted: #85837d;
  --vault-gold: #ffc400;
  --vault-gold-dark: #8a6a00;
  --vault-green: #00f09a;
  background: var(--vault-bg);
  color: var(--vault-text);
  display: grid;
  font-weight: 700;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  overflow-x: hidden;
}

.vault-sidebar {
  background: rgba(0, 0, 0, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 18px 22px;
  position: sticky;
  top: 0;
  z-index: 4;
}

.vault-logo {
  font-size: 18px;
  font-weight: 950;
  margin: 0 14px 42px;
  text-transform: uppercase;
}

.vault-logo span {
  color: var(--vault-gold);
}

.vault-nav {
  display: grid;
  gap: 12px;
}

.vault-nav a {
  align-items: center;
  border-radius: 14px;
  color: var(--vault-muted);
  display: flex;
  font-size: 13px;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  text-transform: uppercase;
}

.vault-nav a.is-active {
  background: linear-gradient(90deg, rgba(255, 196, 0, 0.28), rgba(255, 196, 0, 0.08));
  color: var(--vault-gold);
}

.vault-logout {
  color: var(--vault-muted);
  font-size: 13px;
  margin: auto 14px 0;
}

.vault-main {
  min-height: 100vh;
  padding: 36px clamp(28px, 4vw, 56px);
  position: relative;
}

.vault-bg {
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 196, 0, 0.08), transparent 23%),
    radial-gradient(circle at 26% 42%, rgba(31, 75, 64, 0.18), transparent 24%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.78), rgba(5, 6, 6, 0.94)),
    url("https://images.unsplash.com/photo-1519817650390-64a93db51149?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.vault-page {
  max-width: 1280px;
  min-height: calc(100vh - 72px);
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.vault-title {
  margin-bottom: 34px;
}

.vault-title h1,
.support-card h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vault-title p,
.support-card p {
  color: var(--vault-muted);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vault-home-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
}

.access-panel,
.status-card,
.setup-panel,
.profile-panel,
.ref-table,
.support-card {
  background: linear-gradient(180deg, rgba(20, 20, 19, 0.88), rgba(9, 9, 9, 0.84));
  border: 1px solid var(--vault-line-soft);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.access-panel {
  padding: 28px;
}

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

.panel-head h2,
.profile-panel h2,
.ref-table h2 {
  color: var(--vault-gold);
  font-size: 15px;
  margin: 0;
  text-transform: uppercase;
}

.panel-head span {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: #bcb7aa;
  font-size: 10px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.access-key {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
  border-radius: 16px;
  color: #7b7b83;
  display: flex;
  gap: 14px;
  min-height: 78px;
  padding: 0 22px;
  text-align: left;
  width: 100%;
}

.renew-row {
  align-items: center;
  border-top: 1px solid var(--vault-line-soft);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
}

.renew-row h3 {
  font-size: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.renew-row p {
  color: var(--vault-muted);
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}

.gold-button {
  align-items: center;
  background: var(--vault-gold);
  border: 0;
  border-radius: 12px;
  color: #080808;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  text-transform: uppercase;
}

.status-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 34px 30px;
  text-align: center;
}

.shield-mark,
.support-icon {
  align-items: center;
  background: rgba(255, 196, 0, 0.14);
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 22px;
  color: var(--vault-gold);
  display: grid;
  font-size: 26px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  width: 76px;
}

.status-card h2 {
  font-size: 20px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.status-ok {
  color: var(--vault-green);
  font-size: 12px;
  text-transform: uppercase;
}

.status-warn {
  color: var(--vault-gold);
}

.status-row {
  align-items: center;
  border-top: 1px solid var(--vault-line-soft);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  text-transform: uppercase;
  width: 100%;
}

.status-row span,
.status-card small {
  color: var(--vault-muted);
  font-size: 12px;
}

.status-row strong {
  color: var(--vault-gold);
  font-size: 16px;
}

.setup-panel {
  padding: 36px;
}

.device-tabs,
.app-tabs {
  background: rgba(0, 0, 0, 0.62);
  border-radius: 14px;
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding: 8px;
}

.app-tabs {
  background: transparent;
  margin-bottom: 34px;
  padding: 0;
}

.device-tabs button,
.app-tabs button,
.step-actions button,
.light-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 950;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  text-transform: uppercase;
}

.device-tabs button,
.app-tabs button {
  background: transparent;
  color: #f3f0e6;
}

.device-tabs button.is-active {
  background: var(--vault-gold);
  color: #080808;
}

.app-tabs button.is-active {
  border-color: rgba(255, 196, 0, 0.66);
  color: var(--vault-gold);
}

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

.steps li {
  display: grid;
  gap: 22px;
  grid-template-columns: 48px minmax(0, 1fr);
  position: relative;
}

.steps li:not(:last-child)::before {
  background: rgba(255, 196, 0, 0.45);
  content: "";
  height: calc(100% + 36px);
  left: 23px;
  position: absolute;
  top: 46px;
  width: 1px;
}

.steps li > span {
  align-items: center;
  background: var(--vault-gold);
  border-radius: 12px;
  color: #050505;
  display: grid;
  font-weight: 950;
  height: 46px;
  place-items: center;
  position: relative;
  width: 46px;
  z-index: 1;
}

.steps h3 {
  font-size: 16px;
  text-transform: uppercase;
}

.steps p {
  color: #9b978e;
  font-weight: 650;
  line-height: 1.6;
  max-width: 720px;
}

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

.step-actions button,
.light-button {
  background: #f6f2e8;
  color: #080808;
}

.profile-panel {
  max-width: 660px;
  padding: 28px;
}

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

.profile-stats div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  min-height: 86px;
  padding: 18px;
}

.profile-stats span {
  color: var(--vault-muted);
  display: block;
  font-size: 11px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.profile-stats strong {
  font-size: 28px;
}

.green {
  color: var(--vault-green);
}

.ref-link-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 22px;
}

.ref-link-row code {
  background: rgba(0, 0, 0, 0.72);
  border-radius: 12px;
  color: #bdb7a7;
  display: block;
  overflow: hidden;
  padding: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ref-table {
  margin-top: 22px;
  max-width: 760px;
  overflow: hidden;
  padding: 24px;
}

.ref-table table {
  color: var(--vault-text);
  margin-top: 14px;
  min-width: 0;
}

.ref-table th,
.ref-table td {
  border-bottom-color: var(--vault-line-soft);
}

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

.support-card {
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  max-width: 520px;
  text-align: center;
}

.support-button {
  margin-top: 20px;
  min-width: 360px;
}

.gift-pill {
  align-items: center;
  background: var(--vault-gold);
  border-radius: 14px 0 0 14px;
  bottom: 28%;
  color: #050505;
  display: flex;
  font-size: 12px;
  font-weight: 950;
  min-height: 42px;
  padding: 0 16px;
  position: fixed;
  right: 0;
  text-transform: uppercase;
  z-index: 3;
}

@media (max-width: 980px) {
  .vault-body {
    grid-template-columns: 1fr;
  }

  .vault-sidebar {
    min-height: auto;
    padding: 18px;
    position: relative;
  }

  .vault-logo {
    margin-bottom: 16px;
  }

  .vault-nav {
    display: flex;
    overflow-x: auto;
  }

  .vault-nav a {
    flex: 0 0 auto;
  }

  .vault-home-grid,
  .profile-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vault-main {
    padding: 26px 16px;
  }

  .renew-row,
  .ref-link-row,
  .panel-head {
    align-items: stretch;
    display: grid;
  }

  .setup-panel,
  .access-panel,
  .profile-panel,
  .ref-table {
    padding: 20px;
  }

  .support-button {
    min-width: 0;
    width: 100%;
  }
}
