@font-face {
  font-family: "Manrope Stitch";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("assets/fonts/manrope-google-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope Stitch";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("assets/fonts/manrope-google-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope Stitch";
  font-style: normal;
  font-display: swap;
  font-weight: 700 900;
  src: url("assets/fonts/manrope-google-700.ttf") format("truetype");
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-display: block;
  font-weight: 400;
  src: url("assets/fonts/material-symbols-outlined-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat Local";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("assets/fonts/montserrat-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat Local";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("assets/fonts/montserrat-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/fonts/manrope-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f7f0e4;
  --text: #0b0b0b;
  --muted: #383838;
  --panel: #fffdf8;
  --yellow: #ffd426;
  --pink: #ff73b7;
  --blue: #2f52ff;
  --lime: #caff2c;
  --black: #000000;
  --white: #ffffff;
  --shadow: 6px 6px 0 0 var(--black);
  --border: 3px solid var(--black);
  --topbar-bg: #f7f0e4;
  --font-body: "Manrope Local", "Segoe UI", Arial, sans-serif;
  --font-heading: "Montserrat Local", "Arial Black", Arial, sans-serif;
  --font-mono: "Cascadia Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--bg);
  background-image: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 74px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(16px, calc((100vw - 1160px) / 2));
  border-bottom: var(--border);
  background: var(--topbar-bg);
  isolation: isolate;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border: var(--border);
  background: var(--blue);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.nav a,
.mobile-panel a,
.footer a {
  padding: 6px 8px;
  border: 2px solid transparent;
}

.nav a:hover,
.mobile-panel a:hover,
.footer a:hover {
  border-color: var(--black);
  background: var(--lime);
  color: var(--black);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.menu-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: var(--border);
  border-radius: 4px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover,
.menu-button:hover,
.brutal-card:hover,
.tariff-button:hover {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 0 var(--black);
}

.button:active,
.menu-button:active,
.tariff-button:active,
.pricing-switch-button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 0 var(--black);
}

.button-yellow,
.card-yellow {
  background: var(--yellow);
  color: var(--black);
}

.button-blue,
.card-blue {
  background: var(--blue);
  color: var(--white);
}

.button-white,
.card-white {
  background: var(--white);
  color: var(--black);
}

.card-pink {
  background: var(--pink);
  color: var(--black);
}

.card-lime {
  background: var(--lime);
  color: var(--black);
}

.menu-button {
  display: none;
}

.mobile-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: var(--border);
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow);
}

.mobile-panel a {
  min-height: 44px;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  min-width: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  overflow-wrap: break-word;
}

.hero-copy h1,
.section-heading h2,
.split h2,
.faq-grid h2,
.cta-box h2 {
  margin: 22px 0;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 12px 10px;
  border: var(--border);
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-copy h1 .hero-main {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transform: none;
}

.lead {
  max-width: 650px;
  margin: 0;
  padding-left: 18px;
  border-left: var(--border);
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  font-weight: 800;
}

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

.sticker,
.plan-label {
  display: inline-block;
  border: var(--border);
  padding: 8px 12px;
  box-shadow: var(--shadow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sticker-yellow {
  background: var(--yellow);
}

.sticker-pink {
  background: var(--pink);
}

.sticker-blue {
  background: var(--blue);
  color: var(--white);
}

.sticker-lime {
  background: var(--lime);
}

.rotate-left {
  transform: rotate(-2deg);
}

.rotate-right {
  transform: rotate(2deg);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.bot-card,
.logo-tile,
.server-note,
.meter-card {
  position: absolute;
  border: var(--border);
  box-shadow: var(--shadow);
}

.bot-card {
  top: 16px;
  right: 10px;
  width: min(430px, 82%);
  padding: 26px;
}

.bot-card .label,
.meter-card span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bot-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.bot-card p,
.meter-card b {
  display: block;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.logo-tile {
  left: 4px;
  top: 118px;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  transform: rotate(-5deg);
}

.logo-tile img {
  width: 124px;
  height: 124px;
  border: var(--border);
}

.server-note {
  right: 4px;
  bottom: 196px;
  max-width: 190px;
  padding: 20px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.08;
  font-weight: 900;
  transform: rotate(2deg);
}

.meter-card {
  left: 48px;
  bottom: 12px;
  width: min(390px, 76%);
  padding: 22px;
}

.bars {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.bars i {
  display: block;
  height: 14px;
  border: var(--border);
  background: var(--blue);
}

.bars i:nth-child(2) {
  width: 78%;
  background: var(--pink);
}

.bars i:nth-child(3) {
  width: 54%;
  background: var(--lime);
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--black);
  color: var(--yellow);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  justify-content: space-around;
}

.marquee span {
  flex: 0 0 auto;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split h2,
.faq-grid h2,
.cta-box h2 {
  font-size: clamp(32px, 4.5vw, 58px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.bento {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 22px;
}

.brutal-card,
details,
.cta-box {
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.brutal-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.feature-large {
  grid-column: span 2;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border: var(--border);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.brutal-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.brutal-card p,
.faq-list p,
.cta-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.pricing-title {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border: var(--border);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.pricing-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: min(100%, 430px);
  gap: 8px;
  margin: 0 auto 24px;
  padding: 8px;
  border: var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pricing-switch-button {
  min-width: 0;
  min-height: 56px;
  padding: 12px 16px;
  border: var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.pricing-switch-button:hover {
  background: var(--lime);
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--black);
}

.pricing-switch-button.is-active {
  background: var(--yellow);
  box-shadow: 4px 4px 0 0 var(--black);
}

.pricing-switch-button[aria-selected="false"] {
  color: #282828;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.tariff-card {
  position: relative;
  display: flex;
  width: min(100%, 360px);
  min-width: 0;
  min-height: 410px;
  flex: 1 1 280px;
  max-width: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: var(--border);
  box-shadow: var(--shadow);
  color: var(--black);
}

.tariff-pink {
  background: #ffc1ca;
}

.tariff-blue {
  background: var(--blue);
  color: var(--white);
}

.tariff-yellow {
  background: #f0cf32;
}

.tariff-white {
  background: var(--white);
}

.tariff-card h3 {
  margin: 8px 0 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.tariff-card strong {
  display: block;
  margin-top: 26px;
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.1;
}

.tariff-period {
  display: block;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 900;
}

.tariff-period-label {
  display: inline-block;
  padding: 7px 10px;
  border: 2px solid var(--black);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-note {
  min-height: 48px;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.tariff-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.tariff-card li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  line-height: 1.35;
}

.tariff-card li::before {
  content: "✓";
  display: grid;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  place-items: center;
  border: 2px solid currentColor;
  background: transparent;
  box-sizing: border-box;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.tariff-button {
  display: inline-flex;
  justify-content: center;
  margin-top: 28px;
  padding: 13px 18px;
  border: var(--border);
  background: #fffdf8;
  color: var(--black);
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.tariff-button-yellow {
  background: var(--yellow);
}

.tariff-button-dark {
  background: #221f13;
  color: var(--white);
}

.recommend {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  padding: 5px 14px;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
}

.proxy-section {
  border-top: var(--border);
  border-bottom: var(--border);
  background: color-mix(in srgb, var(--blue) 12%, var(--bg));
}

.proxy-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: stretch;
  padding: 36px;
  border: var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proxy-shell::before {
  content: "TG";
  position: absolute;
  right: 24px;
  bottom: -28px;
  color: color-mix(in srgb, var(--blue) 18%, transparent);
  font-family: var(--font-heading);
  font-size: clamp(90px, 16vw, 190px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.proxy-copy,
.proxy-visual {
  position: relative;
  z-index: 1;
}

.proxy-copy h2 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
}

.proxy-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.proxy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.proxy-tags span {
  padding: 10px 12px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  box-shadow: 4px 4px 0 0 var(--black);
  font-size: 13px;
  font-weight: 900;
}

.proxy-connect {
  min-width: min(100%, 280px);
}

.proxy-visual {
  display: grid;
  min-height: 340px;
  align-content: center;
}

.proxy-window,
.proxy-card-mini,
.proxy-badge {
  border: var(--border);
  box-shadow: var(--shadow);
}

.proxy-window {
  padding: 30px;
  transform: rotate(1.5deg);
}

.proxy-window span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
}

.proxy-window strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.proxy-window p {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.proxy-badge {
  justify-self: end;
  margin-top: -22px;
  padding: 14px 22px;
  transform: rotate(-3deg);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
}

.proxy-card-mini {
  width: min(100%, 310px);
  margin-top: -6px;
  padding: 18px;
  background: var(--white);
  color: var(--black);
}

.proxy-card-mini b,
.proxy-card-mini span {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
}

.proxy-card-mini span {
  margin-top: 8px;
  color: var(--blue);
}

.cabinet-body {
  --bg: #f6f3ff;
  --panel: #fffdf8;
  --blue: #6d44ff;
  --yellow: #ffdc4d;
  --lime: #b7ff4a;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(90deg, rgba(109, 68, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(109, 68, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.cabinet-main {
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

.cabinet-hero {
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.cabinet-shell {
  display: grid;
  width: 100%;
  height: 100vh;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  overflow: hidden;
}

.cabinet-sidebar,
.cabinet-panel,
.stat-card {
  border: var(--border);
  box-shadow: var(--shadow);
}

.cabinet-sidebar {
  position: relative;
  top: auto;
  display: grid;
  height: 100vh;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  align-content: start;
  padding: 24px 18px;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  background: color-mix(in srgb, var(--panel) 86%, #e9ddff);
  isolation: isolate;
  overflow: hidden;
}

.cabinet-sidebar-head {
  display: grid;
  gap: 16px;
}

.sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sidebar-brand img {
  width: 54px;
  height: 54px;
  border: 2px solid var(--black);
  background: var(--blue);
  box-shadow: 4px 4px 0 0 var(--black);
}

.cabinet-sidebar h1,
.workspace-head h2,
.panel-title h3 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.cabinet-sidebar h1 {
  margin-top: 6px;
  font-size: 34px;
  line-height: 0.95;
}

.cabinet-sidebar p,
.stat-card p,
.access-plan p,
.activity-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.bot-launch-form,
.access-plans,
.activity-list {
  display: grid;
  gap: 12px;
}

.access-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid var(--black);
  background: var(--yellow);
  box-shadow: 4px 4px 0 0 var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-pill span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--black);
  background: #ff5574;
}

.bot-launch-form label {
  display: grid;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bot-launch-form input,
.bot-launch-form select,
.bot-launch-form textarea {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: 800 14px/1.3 var(--font-body);
}

.bot-launch-form input,
.bot-launch-form select {
  min-height: 44px;
  padding: 0 12px;
}

.bot-launch-form textarea {
  padding: 12px;
  resize: vertical;
}

.cabinet-workspace {
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  gap: 18px;
  height: 100vh;
  min-width: 0;
  min-height: 0;
  padding: 0 28px 24px;
  overflow: hidden;
}

.workspace-head {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  height: 64px;
  margin-top: 0;
  padding: 0 20px;
  border: var(--border);
  border-top: 0;
  background: color-mix(in srgb, var(--white) 72%, var(--yellow));
  box-shadow: var(--shadow);
}

.workspace-head h2 {
  margin-top: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
}

.workspace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cabinet-stats,
.cabinet-grid {
  display: grid;
  gap: 18px;
}

.cabinet-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
  min-height: 0;
}

.stat-card {
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
  padding: 16px;
  color: var(--black);
}

.stat-card.card-yellow {
  background: var(--yellow);
}

.stat-card.card-blue {
  background: var(--blue);
}

.stat-card.card-lime {
  background: var(--lime);
}

.stat-card span,
.access-plan span,
.activity-list time,
.cabinet-console span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card b {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
}

.card-blue .stat-card,
.stat-card.card-blue {
  color: var(--white);
}

.stat-card.card-blue p {
  color: rgba(255, 255, 255, 0.88);
}

.cabinet-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: start;
  height: 100%;
  min-height: 0;
}

.cabinet-panel {
  min-width: 0;
  padding: 18px;
  background: var(--panel);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-title span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.panel-title h3 {
  font-size: 18px;
}

.tab-intro {
  max-width: 780px;
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.tab-intro-dark {
  color: rgba(255, 255, 255, 0.78);
}

.launch-panel,
.orders-panel {
  align-self: stretch;
}

.launch-panel,
.launch-help,
.orders-panel,
.profile-panel,
.current-access,
.console-panel,
.log-actions-panel {
  min-height: 0;
  overflow: hidden;
}

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

.form-feedback {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.access-plan {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.access-plan:hover,
.access-plan.is-selected {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--black);
}

.access-plan.is-selected {
  background: var(--lime);
}

.access-plan.is-popular::after {
  content: "Хит";
  position: absolute;
  top: -13px;
  left: 14px;
  padding: 4px 10px;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-plan.is-selected::before {
  content: "Выбран";
  position: absolute;
  top: -13px;
  right: 12px;
  padding: 4px 10px;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-plan b {
  font-family: var(--font-heading);
  font-size: 28px;
}

.plan-caption {
  margin: -6px 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.plan-specs {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.plan-specs li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  font-size: 14px;
  line-height: 1.25;
}

.plan-specs li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 1px;
  border: 2px solid var(--black);
  background: var(--blue);
}

.access-plan.is-selected .plan-specs li::before {
  background: var(--yellow);
}

.access-plan a {
  display: inline-flex;
  width: max-content;
  padding: 9px 12px;
  border: 2px solid var(--black);
  background: var(--yellow);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.plans-panel {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.activity-list > div {
  padding: 14px;
  border: 2px solid var(--black);
  background: var(--white);
}

.activity-list b {
  display: block;
  margin: 7px 0 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
}

.console-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  background: #151515;
  color: var(--white);
}

.console-panel .panel-title span {
  background: var(--lime);
  color: var(--black);
}

.logs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: start;
  height: 100%;
  min-height: 0;
}

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

.log-status-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 2px solid var(--white);
  background: #242424;
}

.log-status-card span {
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.log-status-card b {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.log-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.log-filter {
  min-height: 36px;
  padding: 0 12px;
  border: 2px solid var(--white);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.log-filter:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.log-filter.is-active,
.log-filter:hover {
  background: var(--lime);
  color: var(--black);
}

.cabinet-console {
  display: grid;
  gap: 0;
  min-height: 0;
  flex: 1;
  padding: 0;
  border: 2px solid var(--white);
  background: #050505;
  font-family: var(--font-mono);
  font-size: 13px;
  overflow: hidden;
}

.cabinet-console p {
  margin: 0;
  overflow-wrap: anywhere;
}

.console-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 2px solid var(--white);
  background: #202020;
}

.console-topline b {
  color: var(--white);
  font-size: 12px;
}

.console-topline code {
  margin-left: auto;
  color: var(--yellow);
  font-size: 11px;
}

.console-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  background: var(--lime);
}

.log-line {
  display: grid;
  grid-template-columns: 78px 76px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #e8e8e8;
}

.log-line time {
  color: #9a9a9a;
}

.log-line span {
  font-weight: 900;
  text-transform: uppercase;
}

.log-info span,
.cabinet-console span {
  color: var(--lime);
}

.log-warn span {
  color: var(--yellow);
}

.log-error span {
  color: #ff6d86;
}

.log-actions-panel {
  background: var(--lime);
}

.log-action-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.log-action-list a,
.log-action-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  box-shadow: 4px 4px 0 0 var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.log-action-list a::after,
.log-action-list button::after {
  content: "→";
}

.log-help-list > div {
  background: color-mix(in srgb, var(--white) 82%, var(--yellow));
}

.cabinet-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cabinet-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 58px;
  padding: 12px 14px;
  border: var(--border);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.cabinet-tab span {
  padding: 4px 7px;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1;
}

.cabinet-tab::after {
  content: "→";
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  font-size: 14px;
}

.cabinet-tab:hover,
.cabinet-tab.is-active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 0 var(--black);
}

.cabinet-tab.is-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 6px 6px 0 0 var(--black);
  transform: translate(0, 0);
}

.cabinet-tab.is-active::after {
  background: var(--lime);
  color: var(--black);
}

.cabinet-tab.is-locked {
  color: color-mix(in srgb, var(--black) 70%, var(--white));
}

.cabinet-panels,
.cabinet-tab-panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.cabinet-panels {
  height: 100%;
  min-height: 0;
}

.overview-screen {
  display: grid;
  grid-template-rows: 108px minmax(0, 1fr);
  gap: 18px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.cabinet-grid-overview {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.82fr);
}

.current-access {
  grid-row: span 2;
  background: var(--yellow);
}

.access-status {
  display: grid;
  gap: 12px;
}

.access-status b {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 0.95;
  text-transform: uppercase;
}

.access-status p {
  max-width: 620px;
  margin: 0;
  color: var(--black);
  line-height: 1.5;
}

.access-meter {
  height: 22px;
  border: 2px solid var(--black);
  background: var(--white);
  overflow: hidden;
}

.access-meter span {
  display: block;
  height: 100%;
  background: var(--blue);
}

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

.recommended-plan,
.locked-notice {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 2px solid var(--black);
  background: color-mix(in srgb, var(--white) 70%, var(--lime));
}

.recommended-plan span,
.locked-notice span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.recommended-plan b,
.locked-notice b {
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
}

.recommended-plan p,
.locked-notice p {
  margin: 0;
  line-height: 1.4;
}

.profile-panel {
  background: var(--white);
}

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

.next-step-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: start;
  padding: 12px;
  border: 2px solid var(--black);
  background: color-mix(in srgb, var(--white) 78%, var(--yellow));
}

.next-step-list span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.next-step-list b,
.locked-feature-grid b {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
}

.next-step-list p,
.locked-feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.profile-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  border: 2px solid var(--black);
  background: color-mix(in srgb, var(--lime) 22%, var(--white));
}

.profile-card img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--black);
  background: var(--blue);
}

.profile-card b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.profile-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.access-plans-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  min-height: 0;
}

.access-plans-wide .access-plan {
  min-height: 0;
  align-content: start;
  gap: 7px;
  padding: 16px;
}

.access-plans-wide .plan-specs {
  gap: 7px;
  margin-bottom: 6px;
}

.access-plans-wide .plan-specs li {
  font-size: 13px;
  line-height: 1.18;
}

.launch-help {
  background: var(--lime);
}

.locked-feature-grid {
  display: grid;
  gap: 10px;
}

.locked-feature-grid button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: start;
  padding: 12px;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.locked-feature-grid button > span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--yellow);
}

.cabinet-grid-locked {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
}

.locked-side {
  background: color-mix(in srgb, var(--lime) 74%, var(--white));
}

.locked-notice {
  margin: 0 0 16px;
  background: color-mix(in srgb, var(--white) 72%, var(--yellow));
}

.locked-notice-dark {
  border-color: var(--white);
  background: #242424;
  color: var(--white);
}

.bot-launch-form.is-disabled {
  opacity: 0.78;
}

.bot-launch-form.is-disabled input,
.bot-launch-form.is-disabled select,
.bot-launch-form.is-disabled textarea {
  background: color-mix(in srgb, var(--white) 68%, #d9d0ee);
  cursor: not-allowed;
}

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

.cabinet-checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 2px solid var(--black);
  background: var(--white);
  font-weight: 900;
}

.cabinet-checklist li::before {
  content: "✓";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  font-family: var(--font-heading);
  font-size: 13px;
}

.cabinet-tab-panel.is-active {
  height: 100%;
  animation: cabinetPanelIn 180ms ease-out;
}

@keyframes cabinetPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  background: color-mix(in srgb, var(--panel) 74%, var(--bg));
  border-top: var(--border);
  border-bottom: var(--border);
  color: var(--text);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.faq-heading {
  text-align: center;
}

.faq-list {
  display: grid;
  width: min(100%, 820px);
  gap: 16px;
}

details {
  padding: 0;
  background: var(--panel);
  color: var(--text);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 180ms ease;
}

details:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

details.is-closing {
  transform: none;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  transition: transform 240ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  box-shadow: 3px 3px 0 0 var(--black);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 260ms ease, opacity 220ms ease, transform 260ms ease;
}

details[open]:not(.is-closing) .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 22px 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  transition: padding-bottom 260ms ease;
}

details[open]:not(.is-closing) .faq-answer p {
  padding-bottom: 20px;
}

details[open]:not(.is-closing) {
  background: color-mix(in srgb, var(--yellow) 12%, var(--panel));
}

.reveal-ready {
  --reveal-shift: 24px;
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-ready.reveal-from-top {
  --reveal-shift: -24px;
}

.reveal-ready:not(.is-revealed) {
  opacity: 0;
  transform: translateY(var(--reveal-shift));
}

.reveal-ready.is-revealed {
  opacity: 1;
}

.final-cta {
  padding-top: 96px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 38px;
}

.cta-actions {
  display: grid;
  gap: 14px;
  min-width: 220px;
}

.footer {
  padding: 0 0 10px;
  background: #efe4cf;
  color: var(--black);
}

.footer .container {
  width: min(100% - 8px, 1880px);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 68px;
  padding: 16px 32px 14px;
  border-top: 3px solid #f5efe4;
  background: #efe4cf;
}

.footer-brand {
  gap: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-brand img {
  display: none;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  flex-wrap: nowrap;
  line-height: 1.1;
}

.footer a {
  padding: 0;
  border: 0;
  background: transparent;
  white-space: nowrap;
}

.footer a:hover {
  border-color: transparent;
  background: transparent;
  color: var(--blue);
}

.footer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar .nav,
  .topbar .hide-mobile {
    display: none;
  }

  .topbar-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% + 3px);
    right: max(16px, calc((100vw - 1160px) / 2));
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav,
  .hide-mobile {
    display: none;
  }

  .topbar-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% + 3px);
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .faq-grid,
  .cabinet-shell,
  .cabinet-grid,
  .cta-box,
  .footer-grid,
  .proxy-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .cabinet-sidebar {
    position: static;
    min-height: 0;
    border-left: var(--border);
  }

  .workspace-head {
    align-items: start;
    flex-direction: column;
  }

  .access-plans-wide {
    grid-template-columns: 1fr;
  }

  .logs-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .log-status-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    gap: 16px;
    margin-top: 36px;
  }

  .bot-card,
  .logo-tile,
  .server-note,
  .meter-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .logo-tile {
    height: 180px;
  }

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

  .feature-large {
    grid-column: span 2;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer p {
    text-align: left;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .section {
    padding: 44px 0;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 10px 14px 10px 10px;
    gap: 6px;
  }

  .brand {
    width: max-content;
    max-width: 172px;
    justify-self: start;
    gap: 8px;
    padding: 5px 7px 5px 5px;
    border: 2px solid var(--black);
    background: var(--yellow);
    box-shadow: 4px 4px 0 0 var(--black);
    font-size: 11px;
    color: var(--black);
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .topbar-actions {
    gap: 6px;
    justify-self: end;
  }

  .cabinet-top {
    min-height: 36px;
    padding: 0 8px;
    font-size: 9px;
  }

  .menu-button {
    min-height: 36px;
    box-shadow: 4px 4px 0 0 var(--black);
  }

  .menu-button {
    width: 46px;
    padding: 0;
    font-size: 10px;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 14px 0 16px;
    font-size: clamp(31px, 10vw, 42px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .faq-grid h2,
  .cta-box h2 {
    font-size: clamp(30px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  .hero-copy h1 span {
    display: block;
    transform: none;
  }

  .hero-copy h1 .hero-main {
    max-width: none;
  }

  .hero-copy h1 > span:not(.hero-main) {
    width: 100%;
    padding: 8px 10px 10px;
  }

  .lead {
    padding: 11px 12px;
    border: var(--border);
    background: color-mix(in srgb, var(--panel) 72%, var(--bg));
    box-shadow: var(--shadow);
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }

  .bot-card strong {
    font-size: 38px;
  }

  .bot-card p,
  .meter-card b {
    font-size: 13px;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
    gap: 10px;
    margin-top: 22px;
  }

  .bot-card {
    grid-column: 1 / -1;
    padding: 17px;
  }

  .logo-tile {
    height: auto;
    min-height: 130px;
    aspect-ratio: 1.12;
  }

  .logo-tile img {
    width: min(112px, 58%);
    height: auto;
    aspect-ratio: 1;
  }

  .server-note {
    align-self: start;
    padding: 13px 12px;
    font-size: 14px;
  }

  .meter-card {
    grid-column: 1 / -1;
    padding: 14px;
  }

  .marquee-track {
    width: max-content;
    animation: marquee 18s linear infinite;
    flex-wrap: nowrap;
  }

  .marquee span {
    flex: 0 0 auto;
    min-width: 0;
    padding: 11px 14px;
    text-align: center;
    font-size: 13px;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
  }

  .brutal-card {
    min-height: auto;
    padding: 18px;
  }

  .tariff-card {
    min-height: 0;
    flex-basis: 100%;
    max-width: none;
    padding: 20px;
  }

  .pricing-switch {
    width: min(100%, 380px);
    gap: 7px;
    margin-bottom: 16px;
  }

  .pricing-switch-button {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 11px;
  }

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

  .pricing-title {
    width: 100%;
    margin-bottom: 20px;
  }

  .cabinet-hero {
    padding-top: 20px;
  }

  .cabinet-shell,
  .cabinet-workspace,
  .cabinet-grid {
    gap: 16px;
  }

  .cabinet-sidebar,
  .cabinet-panel,
  .workspace-head {
    padding: 18px;
  }

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

  .cabinet-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .cabinet-tab {
    min-height: 48px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .log-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .console-topline code {
    width: 100%;
    margin-left: 0;
  }

  .workspace-head h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .launch-actions {
    display: grid;
  }

  .launch-actions .button,
  .workspace-head .button,
  .workspace-actions {
    width: 100%;
  }

  .proxy-shell {
    padding: 22px;
  }

  .proxy-visual {
    min-height: 0;
  }

  .proxy-actions {
    min-width: 0;
    width: 100%;
  }

  .cta-box {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 16px 18px 14px;
  }

  .footer-brand {
    font-size: 16px;
  }

  .footer nav {
    justify-content: flex-start;
    gap: 8px 12px;
    flex-wrap: wrap;
    font-size: 11.5px;
  }

  .footer a {
    padding: 0;
  }

  .footer p {
    font-size: 10.5px;
    white-space: normal;
  }

  .cta-actions {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding-inline: 8px;
  }

  .brand {
    max-width: 146px;
    font-size: 10px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .hero-copy h1 {
    font-size: 29px;
  }

  .pricing-switch {
    padding: 6px;
  }

  .pricing-switch-button {
    padding-inline: 7px;
    font-size: 9.5px;
  }
}

.cabinet-body {
  --black: #171329;
  --border: 1px solid #ddd8f0;
  --shadow: 0 18px 40px rgba(40, 26, 93, 0.11);
}

.cabinet-body .cabinet-sidebar,
.cabinet-body .cabinet-panel,
.cabinet-body .stat-card,
.cabinet-body .workspace-head {
  border-radius: 8px;
}

.cabinet-body .cabinet-sidebar {
  border-radius: 0;
  border-right: 1px solid #ded8f2;
  box-shadow: 10px 0 30px rgba(40, 26, 93, 0.08);
}

.cabinet-body .workspace-head {
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.cabinet-body .button,
.cabinet-body .access-plan a,
.cabinet-body .log-action-list a,
.cabinet-body .log-action-list button {
  border-width: 1px;
  border-radius: 6px;
  box-shadow: none;
}

.cabinet-body .cabinet-tab,
.cabinet-body .access-plan,
.cabinet-body .activity-list > div,
.cabinet-body .next-step-list > div,
.cabinet-body .locked-feature-grid button,
.cabinet-body .recommended-plan,
.cabinet-body .locked-notice,
.cabinet-body .cabinet-checklist li {
  border-width: 1px;
  border-radius: 8px;
  box-shadow: none;
}

.cabinet-body .cabinet-tab:hover,
.cabinet-body .cabinet-tab.is-active,
.cabinet-body .access-plan:hover,
.cabinet-body .access-plan.is-selected {
  transform: none;
  box-shadow: 0 12px 28px rgba(109, 68, 255, 0.16);
}

.cabinet-body .cabinet-tab.is-active {
  background: var(--blue);
}

.cabinet-body .cabinet-tab::after,
.cabinet-body .panel-title span,
.cabinet-body .next-step-list span,
.cabinet-body .locked-feature-grid button > span,
.cabinet-body .cabinet-checklist li::before,
.cabinet-body .access-pill,
.cabinet-body .sidebar-brand img {
  border-width: 1px;
  border-radius: 6px;
  box-shadow: none;
}

.cabinet-body .plans-panel .panel-title {
  justify-content: center;
}

.cabinet-body .plans-panel .tab-intro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.cabinet-body .access-plans-wide {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.cabinet-body .access-plan {
  border-color: #ded8f2;
}

.cabinet-body .access-plan.is-selected,
.cabinet-body .access-plan.is-popular {
  border-color: var(--blue);
}

.cabinet-body .access-plan.is-selected {
  background: color-mix(in srgb, var(--white) 74%, var(--lime));
}

.cabinet-body .access-plan.is-popular {
  transform: translateY(-8px);
}

.cabinet-body .cabinet-tabs {
  align-content: start;
}

.cabinet-body .cabinet-sidebar h1 {
  max-width: 172px;
  font-size: 28px;
  overflow-wrap: anywhere;
}

.cabinet-body .cabinet-tab {
  min-height: 54px;
}

.cabinet-body .console-panel,
.cabinet-body .cabinet-console {
  border-color: #2b2940;
}

@media (max-width: 980px) {
  .cabinet-body .cabinet-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .cabinet-body .cabinet-sidebar {
    position: relative;
    height: 100vh;
    border-left: 0;
  }

  .cabinet-body .cabinet-hero {
    padding-top: 0;
  }

  .cabinet-body .workspace-head {
    align-items: center;
    flex-direction: row;
  }

  .cabinet-body .workspace-actions {
    width: auto;
  }
}

@media (max-width: 760px) {
  .cabinet-body .cabinet-shell {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .cabinet-body .cabinet-sidebar {
    padding: 14px 10px;
  }

  .cabinet-body .sidebar-brand {
    justify-content: center;
  }

  .cabinet-body .sidebar-brand div,
  .cabinet-body .cabinet-sidebar p,
  .cabinet-body .access-pill,
  .cabinet-body .cabinet-tab span {
    display: none;
  }

  .cabinet-body .cabinet-tabs {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cabinet-body .cabinet-tab {
    min-height: 50px;
    justify-content: center;
    padding: 8px;
    font-size: 10px;
  }

  .cabinet-body .cabinet-tab::after {
    display: none;
  }
}

/* Stitch cabinet parity layer */
.cabinet-body {
  --bg: #fafafa;
  --panel: #ffffff;
  --text: #171717;
  --muted: #525252;
  --blue: #7c3aed;
  --yellow: #fef3c7;
  --lime: #ecfccb;
  --black: #171717;
  --white: #ffffff;
  --border: 1px solid #e5e5e5;
  --shadow: none;
  --font-body: "Manrope Stitch", "Manrope", "Manrope Local", "Segoe UI", Arial, sans-serif;
  --font-heading: "Manrope Stitch", "Manrope", "Manrope Local", "Segoe UI", Arial, sans-serif;
  background: #fafafa !important;
  background-image: none !important;
  color: #171717;
  font-weight: 500;
}

.cabinet-body .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.cabinet-body .cabinet-shell {
  grid-template-columns: 280px minmax(0, 1fr);
  background: #fafafa;
}

.cabinet-body .cabinet-sidebar {
  gap: 30px;
  padding: 24px 16px;
  border: 0;
  border-right: 1px solid #e5e5e5;
  background: #ffffff;
  box-shadow: none;
}

.cabinet-body .cabinet-sidebar-head {
  gap: 12px;
  padding: 0 12px;
}

.cabinet-body .sidebar-brand {
  gap: 12px;
}

.cabinet-body .sidebar-brand img {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: #7c3aed;
}

.cabinet-body .sidebar-brand .sticker {
  display: none;
}

.cabinet-body .cabinet-sidebar h1 {
  max-width: none;
  margin: 0;
  color: #7c3aed;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
}

.cabinet-body .cabinet-sidebar p {
  color: #525252;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cabinet-body .access-pill {
  gap: 6px;
  padding: 5px 8px;
  border: 0;
  border-radius: 4px;
  background: #fef2f2;
  box-shadow: none;
  color: #dc2626;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cabinet-body .access-pill span {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: #dc2626;
}

.cabinet-body .cabinet-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-content: start;
}

.cabinet-body .cabinet-tabs-section {
  margin: 14px 0 6px;
  padding: 0 16px;
  color: #a3a3a3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cabinet-body .cabinet-tab {
  display: flex;
  min-height: 42px;
  gap: 12px;
  justify-content: flex-start;
  padding: 10px 14px;
  border: 0;
  border-right: 4px solid transparent;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  color: #737373;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.cabinet-body .cabinet-tab::after {
  display: none;
}

.cabinet-body .cabinet-tab:hover {
  background: #fafafa;
  box-shadow: none;
  color: #7c3aed;
}

.cabinet-body .cabinet-tab.is-active {
  border-right-color: #7c3aed;
  background: #f5f3ff;
  box-shadow: none;
  color: #6d28d9;
}

.cabinet-body .cabinet-tab.is-locked {
  color: #a3a3a3;
  cursor: pointer;
}

.cabinet-body .tab-icon {
  flex: 0 0 auto;
  color: currentColor;
  opacity: 0.95;
}

.cabinet-body .tab-text {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
  line-height: 1.4;
}

.cabinet-body .lock-icon {
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  opacity: 0.55;
}

.cabinet-body .cabinet-workspace {
  grid-template-rows: 64px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: #fafafa;
}

.cabinet-body .workspace-head {
  height: 64px;
  padding: 0 32px;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.cabinet-body .workspace-head .sticker {
  display: none;
}

.cabinet-body .workspace-head h2 {
  color: #171717;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.cabinet-body .workspace-actions {
  gap: 12px;
  align-items: center;
}

.cabinet-body .workspace-icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: #525252;
}

.cabinet-body .workspace-icon-button:hover {
  background: #f5f5f5;
  color: #7c3aed;
}

.cabinet-body .button {
  min-height: 32px;
  gap: 8px;
  padding: 7px 14px;
  border: 0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.cabinet-body .button .material-symbols-outlined {
  font-size: 18px;
}

.cabinet-body .button-white {
  background: transparent;
  color: #525252;
}

.cabinet-body .button-white:hover {
  color: #171717;
}

.cabinet-body .button-blue {
  background: #171717;
  color: #ffffff;
}

.cabinet-body .button-yellow {
  background: #f5f5f5;
  color: #171717;
}

.cabinet-body .cabinet-panels {
  height: 100%;
  padding: 28px 32px 32px;
  overflow: hidden;
}

.cabinet-body .overview-screen {
  grid-template-rows: 112px minmax(0, 1fr);
  gap: 20px;
}

.cabinet-body .cabinet-stats,
.cabinet-body .cabinet-grid {
  gap: 20px;
}

.cabinet-body .cabinet-grid-overview {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.92fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.78fr);
}

.cabinet-body .cabinet-panel,
.cabinet-body .stat-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.cabinet-body .stat-card {
  gap: 7px;
  padding: 18px;
}

.cabinet-body .stat-card.card-yellow {
  background: #ffffff;
}

.cabinet-body .stat-card.card-blue {
  background: #7c3aed;
  color: #ffffff;
}

.cabinet-body .stat-card.card-lime {
  background: #ecfccb;
}

.cabinet-body .stat-card span,
.cabinet-body .access-plan span,
.cabinet-body .activity-list time,
.cabinet-body .cabinet-console span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.cabinet-body .stat-card b {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 900;
  text-transform: none;
}

.cabinet-body .stat-card p {
  color: #525252;
  font-size: 14px;
  font-weight: 600;
}

.cabinet-body .stat-card.card-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.cabinet-body .current-access {
  background: #ffffff;
}

.cabinet-body .panel-title {
  margin-bottom: 18px;
}

.cabinet-body .panel-title span {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: #7c3aed;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 900;
}

.cabinet-body .panel-title h3 {
  color: #171717;
  font-size: 20px;
  font-weight: 900;
  text-transform: none;
}

.cabinet-body .access-status b {
  color: #171717;
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
}

.cabinet-body .access-status p,
.cabinet-body .tab-intro,
.cabinet-body .recommended-plan p,
.cabinet-body .locked-notice p,
.cabinet-body .profile-card p {
  color: #525252;
  font-size: 15px;
  font-weight: 500;
}

.cabinet-body .access-meter {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #ede9fe;
}

.cabinet-body .access-meter span {
  border-radius: inherit;
  background: #7c3aed;
}

.cabinet-body .recommended-plan,
.cabinet-body .next-step-list > div,
.cabinet-body .locked-feature-grid button,
.cabinet-body .locked-notice,
.cabinet-body .cabinet-checklist li {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
  box-shadow: none;
}

.cabinet-body .recommended-plan {
  background: #ecfccb;
}

.cabinet-body .recommended-plan b,
.cabinet-body .locked-notice b,
.cabinet-body .next-step-list b,
.cabinet-body .locked-feature-grid b {
  color: #171717;
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: none;
}

.cabinet-body .next-step-list span,
.cabinet-body .locked-feature-grid button > span {
  border: 0;
  border-radius: 6px;
  background: #7c3aed;
  color: #ffffff;
}

.cabinet-body .locked-feature-grid button {
  min-height: 0;
  gap: 4px 10px;
  padding: 10px 12px;
}

.cabinet-body .locked-feature-grid p {
  font-size: 12px;
  line-height: 1.25;
}

.cabinet-body .locked-feature-grid button > span.material-symbols-outlined {
  width: 34px;
  height: 34px;
  font-size: 20px;
}

.cabinet-body .orders-panel .panel-title {
  margin-bottom: 12px;
}

.cabinet-body .orders-panel .locked-feature-grid {
  gap: 8px;
}

.cabinet-body .orders-panel .locked-feature-grid button {
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 8px 10px;
}

.cabinet-body .orders-panel .locked-feature-grid button > span.material-symbols-outlined {
  width: 30px;
  height: 30px;
}

.cabinet-body .plans-panel {
  padding: 28px 32px;
}

.cabinet-body .access-plans-wide {
  width: min(100%, 1040px);
  gap: 12px;
}

.cabinet-body .access-plan {
  gap: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.cabinet-body .access-plan:hover {
  border-color: #c4b5fd;
  box-shadow: none;
}

.cabinet-body .access-plan.is-selected {
  border-color: #bef264;
  background: #f7fee7;
}

.cabinet-body .access-plan.is-popular {
  border: 2px solid #7c3aed;
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.12);
}

.cabinet-body .access-plan.is-selected::before {
  top: -13px;
  right: 12px;
  border: 0;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-family: var(--font-body);
}

.cabinet-body .access-plan.is-popular::after {
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  border-radius: 999px;
  background: #7c3aed;
  color: #ffffff;
  font-family: var(--font-body);
}

.cabinet-body .access-plan b {
  color: #171717;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 900;
}

.cabinet-body .plan-caption {
  color: #525252;
  font-size: 13px;
}

.cabinet-body .plan-specs li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: #525252;
  font-size: 14px;
  font-weight: 600;
}

.cabinet-body .plan-specs li::before {
  display: none;
  content: none;
}

.cabinet-body .spec-icon {
  color: #a3a3a3;
}

.cabinet-body .access-plan.is-popular .spec-icon {
  color: #7c3aed;
}

.cabinet-body .access-plan a {
  padding: 9px 14px;
  border: 0;
  border-radius: 4px;
  background: #f5f5f5;
  color: #171717;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
}

.cabinet-body .access-plan.is-popular a {
  background: #7c3aed;
  color: #ffffff;
}

.cabinet-body .locked-notice {
  background: #fef2f2;
}

.cabinet-body .locked-side {
  background: #ffffff;
}

.cabinet-body .launch-help {
  background: #ffffff;
}

.cabinet-body .bot-launch-form input,
.cabinet-body .bot-launch-form select,
.cabinet-body .bot-launch-form textarea {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #ffffff;
  color: #171717;
  font: 600 14px/1.35 var(--font-body);
}

.cabinet-body .bot-launch-form.is-disabled input,
.cabinet-body .bot-launch-form.is-disabled select,
.cabinet-body .bot-launch-form.is-disabled textarea {
  background: #f5f5f5;
  color: #a3a3a3;
}

.cabinet-body .console-panel {
  background: #171717;
}

.cabinet-body .console-panel .panel-title h3,
.cabinet-body .tab-intro-dark {
  color: #ffffff;
}

.cabinet-body .cabinet-console {
  border: 1px solid #404040;
  border-radius: 8px;
}

.cabinet-body .material-symbols-outlined {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  overflow: hidden;
  font-size: 0 !important;
}

.cabinet-body .material-symbols-outlined::before {
  display: block;
  font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.cabinet-body .icon-dashboard::before {
  content: "▦";
}

.cabinet-body .icon-storage::before {
  content: "▤";
}

.cabinet-body .icon-payments::before {
  content: "₽";
  font-weight: 900;
}

.cabinet-body .icon-memory::before {
  content: "▣";
}

.cabinet-body .icon-cpu::before {
  content: "▤";
}

.cabinet-body .icon-speed::before {
  content: "↯";
  font-weight: 900;
}

.cabinet-body .icon-bot::before {
  content: "◉";
}

.cabinet-body .icon-shield::before {
  content: "◆";
}

.cabinet-body .icon-rocket::before {
  content: "↗";
  font-weight: 900;
}

.cabinet-body .icon-terminal::before {
  content: ">_";
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
}

.cabinet-body .icon-lock::before {
  content: "🔒";
  font-size: 15px;
}

.cabinet-body .icon-help::before {
  content: "?";
  font-weight: 900;
}

.cabinet-body .icon-notifications::before {
  content: "●";
  font-size: 14px;
}

.cabinet-body .icon-open::before {
  content: "↗";
  font-weight: 900;
}

.cabinet-body .icon-check::before {
  content: "✓";
  font-weight: 900;
}

.cabinet-body .icon-support::before {
  content: "☎";
  font-size: 17px;
}

.cabinet-body .tab-icon,
.cabinet-body .lock-icon,
.cabinet-body .workspace-icon-button .material-symbols-outlined,
.cabinet-body .button .material-symbols-outlined,
.cabinet-body .sidebar-support .material-symbols-outlined {
  padding: 0;
  border: 0;
  background: transparent;
}

.cabinet-body .sidebar-footer {
  display: grid;
  gap: 14px;
  align-self: end;
}

.cabinet-body .sidebar-buy-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #ede9fe;
  border-radius: 4px;
  background: #f5f3ff;
}

.cabinet-body .sidebar-buy-card p {
  margin: 0;
  color: #5b21b6;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.cabinet-body .sidebar-buy-card button {
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  background: #7c3aed;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.cabinet-body .sidebar-support {
  display: flex;
  min-height: 38px;
  gap: 12px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 4px;
  color: #737373;
  font-size: 14px;
  font-weight: 700;
}

.cabinet-body .sidebar-support:hover {
  background: #fafafa;
  color: #7c3aed;
}

.cabinet-body.material-icons-ready .material-symbols-outlined {
  width: 22px;
  height: 22px;
  overflow: visible;
  font-family: "Material Symbols Outlined";
  font-size: 22px !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.cabinet-body.material-icons-ready .material-symbols-outlined::before {
  content: none !important;
}

.cabinet-body.material-icons-ready .lock-icon,
.cabinet-body.material-icons-ready .button .material-symbols-outlined {
  font-size: 18px !important;
}

.cabinet-body.material-icons-ready .spec-icon {
  font-size: 18px !important;
}
