:root {
  color-scheme: light;
  --bg: #f7f8ff;
  --paper: #ffffff;
  --ink: #111118;
  --muted: #676b78;
  --soft: #3f4452;
  --line: rgba(17, 17, 24, 0.11);
  --line-strong: rgba(17, 17, 24, 0.2);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --indigo: #5a45ff;
  --indigo-dark: #30208f;
  --green: #25d887;
  --cyan: #35b8ff;
  --coral: #ff6d63;
  --amber: #f6c04f;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(36, 34, 84, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: 0;
}

body::selection {
  background: rgba(90, 69, 255, 0.22);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

strong {
  font-weight: 800;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1040px, calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 12px;
  border: 1px solid rgba(17, 17, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(36, 34, 84, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 17, 24, 0.13);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(36, 34, 84, 0.13);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 10px 0 0;
  font-weight: 900;
}

.brand-creature {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(90, 69, 255, 0.18));
  transform-origin: 50% 62%;
  animation: brandCreature 3.8s ease-in-out infinite;
}

.brand-word {
  white-space: nowrap;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-flow {
  position: relative;
  width: 72px;
  height: 22px;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
}

.brand-flow-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 69, 255, 0), rgba(90, 69, 255, 0.38), rgba(37, 216, 135, 0.42));
  transform: translateY(-50%);
}

.brand-flow-line::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(37, 216, 135, 0.82);
  border-right: 2px solid rgba(37, 216, 135, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.brand-flow-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(37, 216, 135, 0.13), 0 0 18px rgba(37, 216, 135, 0.52);
  transform: translate(0, -50%);
  animation: brandFlow 1.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #424653;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(17, 17, 24, 0.06);
  outline: none;
}

.nav .nav-cta {
  background: #111118;
  color: #ffffff;
}

.nav .nav-bot {
  border: 1px solid rgba(37, 216, 135, 0.28);
  background: rgba(37, 216, 135, 0.1);
  color: #16724d;
}

.nav .nav-cabinet {
  border: 1px solid rgba(90, 69, 255, 0.18);
  background: rgba(90, 69, 255, 0.08);
  color: var(--indigo);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.product-hero {
  min-height: 100svh;
  padding: 132px 0 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(90, 69, 255, 0.11), transparent 34rem),
    linear-gradient(180deg, #fbfbff 0%, #f7f8ff 72%, #eef2ff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at 50% 18%, rgba(90, 69, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #fbfbff, #f1f4ff);
}

#signal-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(247, 248, 255, 0.82) 82%, rgba(247, 248, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(17, 17, 24, 0.035) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.hero-center,
.hero-shell,
.page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero-inner {
  max-width: 880px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  letter-spacing: 0;
  padding-bottom: 0.04em;
}

h1 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(48px, 5.65vw, 86px);
  line-height: 1.12;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.16;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 840px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  border-color: #111118;
  background: #111118;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 24, 0.16);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(17, 17, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  box-shadow: 0 8px 26px rgba(36, 34, 84, 0.06);
}

.hero-metrics strong {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
}

.screen-wall {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  min-height: 390px;
  margin: 54px auto 72px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  perspective: 1400px;
}

.screen-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 24, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.screen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(90, 69, 255, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.screen-card > * {
  position: relative;
  z-index: 1;
}

.checkout-screen {
  grid-column: 1 / span 3;
  margin-top: 52px;
  animation: screenFloat 7.6s ease-in-out infinite;
}

.access-screen {
  grid-column: 4 / span 3;
  margin-top: 0;
  animation: screenFloat 8.2s ease-in-out infinite reverse;
}

.route-screen {
  grid-column: 7 / span 3;
  margin-top: 38px;
  animation: screenFloat 8.8s ease-in-out infinite;
}

.guide-screen {
  grid-column: 10 / span 3;
  margin-top: 0;
  animation: screenFloat 8s ease-in-out infinite reverse;
}

.bot-screen {
  grid-column: 5 / span 4;
  margin-top: -18px;
  min-height: 190px;
  animation: screenFloat 9s ease-in-out infinite;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  margin-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.screen-top span {
  color: var(--muted);
}

.screen-top b {
  color: var(--indigo);
}

.screen-title {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.screen-title small,
.claim-box small {
  color: var(--muted);
  font-weight: 800;
}

.screen-title strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 34px;
  line-height: 1.16;
  padding-bottom: 0.03em;
}

.input-line,
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 24, 0.09);
  border-radius: 14px;
  background: rgba(247, 248, 255, 0.8);
}

.input-line {
  color: var(--muted);
  font-size: 13px;
}

.price-line {
  margin-top: 10px;
}

.price-line strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: #111118;
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.mini-button.ghost {
  border: 1px solid rgba(17, 17, 24, 0.12);
  background: #ffffff;
  color: var(--ink);
}

.key-preview {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(37, 216, 135, 0.34), transparent 44%),
    #111118;
  color: #ffffff;
}

.key-preview span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--green), var(--cyan)),
    #ffffff;
}

.key-preview strong,
.claim-box strong {
  font-family: "JetBrains Mono", monospace;
}

.token-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.token-row i {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(90, 69, 255, 0.16);
}

.token-row i:nth-child(2n) {
  background: rgba(37, 216, 135, 0.28);
}

.access-screen p,
.bot-screen p {
  margin: 14px 0 0;
  color: var(--soft);
  line-height: 1.58;
}

.route-map {
  height: 150px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 78%, rgba(37, 216, 135, 0.16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(90, 69, 255, 0.16), transparent 34%),
    #f3f5ff;
}

.route-map svg {
  width: 100%;
  height: 100%;
}

.route-map path {
  fill: none;
  stroke: url("#unused");
  stroke: var(--indigo);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 18 14;
  animation: routeFlow 1.1s linear infinite;
}

.route-map circle {
  fill: #ffffff;
  stroke: var(--green);
  stroke-width: 4;
}

.route-map circle:nth-of-type(2) {
  stroke: var(--cyan);
}

.route-map circle:nth-of-type(3) {
  stroke: var(--coral);
}

.server-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.server-pills span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 999px;
  background: #111118;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.server-pills span:nth-child(2) {
  background: var(--indigo);
}

.server-pills span:nth-child(3) {
  background: var(--green);
  color: #06140d;
}

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

.guide-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(247, 248, 255, 0.86);
  color: var(--soft);
  font-weight: 800;
}

.guide-list span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.64);
}

.claim-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #111118;
  color: #ffffff;
}

.claim-box small {
  color: rgba(255, 255, 255, 0.58);
}

.claim-box strong {
  font-size: 28px;
  color: var(--green);
}

.reveal-on-load {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 520ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.screen-wall.reveal-on-load {
  animation-delay: 120ms;
}

.status-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.status-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
}

.status-item:last-child {
  border-right: 1px solid var(--line);
}

.status-index,
.status-dot {
  flex: 0 0 auto;
}

.status-index {
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(37, 216, 135, 0.6);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.flow,
.story-block,
.faq-list {
  display: grid;
  gap: 14px;
}

.flow-row,
.story-block p,
.faq-list details,
.pay-panel,
.checkout-form,
.key-panel,
.claim-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.flow-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  padding: 22px;
}

.flow-row span {
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.flow-row p,
.story-block p {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head > p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.benefit-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.benefit-grid span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(90, 69, 255, 0.09);
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.benefit-grid p {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.intent-card,
.power-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.intent-card::before,
.power-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(90, 69, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.intent-card > *,
.power-card > * {
  position: relative;
  z-index: 1;
}

.intent-card:hover,
.intent-card:focus-visible,
.power-card:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 69, 255, 0.34);
  box-shadow: 0 26px 80px rgba(36, 34, 84, 0.16);
  outline: none;
}

.intent-card span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(90, 69, 255, 0.09);
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.intent-card p,
.power-card p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  width: max-content;
  max-width: 100%;
  color: var(--indigo);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.plan {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.plan:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 69, 255, 0.34);
}

.plan-featured {
  border-color: rgba(90, 69, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(90, 69, 255, 0.08), transparent 52%),
    #ffffff;
}

.plan p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.plan-badge {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(90, 69, 255, 0.2);
  border-radius: 999px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 900;
}

.price {
  font-family: "JetBrains Mono", monospace;
  font-size: 30px;
  font-weight: 800;
}

.device-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tab {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.tab:hover,
.tab:focus-visible {
  color: var(--ink);
  outline: none;
}

.tab.active {
  color: #ffffff;
  background: #111118;
}

.tab-panel {
  display: none;
  padding: 28px;
}

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

.tab-panel p,
.tab-panel li {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.link-grid a {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(90, 69, 255, 0.34);
  outline: none;
}

.link-grid span {
  color: var(--muted);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.58;
}

.story-block p {
  padding: 22px;
}

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.conversion-section {
  padding-top: 32px;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(17, 17, 24, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 69, 255, 0.12), transparent 32%),
    radial-gradient(circle at 92% 24%, rgba(37, 216, 135, 0.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow);
}

.conversion-panel h2 {
  max-width: 820px;
}

.conversion-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.checkout-shell {
  min-height: 100svh;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(32px, 8vw, 92px);
  align-items: center;
  padding: 118px 0 76px;
}

.checkout-copy p:not(.eyebrow) {
  max-width: 610px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.62;
}

.checkout-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.checkout-note span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
}

.bot-assist {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bot-assist a {
  color: #16724d;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 900;
}

.consent-row {
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(17, 17, 24, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 248, 255, 0.72);
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--indigo);
}

.consent-row a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  min-height: 0;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--indigo);
}

textarea {
  resize: vertical;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(90, 69, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(90, 69, 255, 0.12);
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-footnote a {
  color: var(--indigo);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.center-stage {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 112px 18px 56px;
}

.pay-panel {
  width: min(520px, 100%);
  padding: 28px;
}

.pay-panel p:not(.eyebrow) {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.legal-text {
  max-width: 900px;
}

.legal-text h2 {
  margin: 36px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.legal-text strong {
  color: var(--ink);
}

.access-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: 54svh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 118px 0 52px;
  border-bottom: 1px solid var(--line);
}

.access-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft);
  font-size: 20px;
}

.access-status {
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.access-status.expired,
.access-status.disabled {
  border-color: rgba(255, 109, 99, 0.28);
  background: linear-gradient(180deg, #ffffff, rgba(255, 109, 99, 0.08));
}

.access-status.limited {
  border-color: rgba(246, 192, 79, 0.38);
  background: linear-gradient(180deg, #ffffff, rgba(246, 192, 79, 0.12));
}

.access-status span {
  color: var(--muted);
}

.access-status strong {
  font-family: "JetBrains Mono", monospace;
  color: var(--indigo);
  font-size: 20px;
}

.access-status small {
  color: var(--muted);
  font-weight: 800;
}

.quick-connect-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.quick-connect-card,
.cabinet-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.quick-connect-card::before,
.cabinet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(90, 69, 255, 0.1), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(37, 216, 135, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.quick-connect-card > *,
.cabinet-card > * {
  position: relative;
  z-index: 1;
}

.quick-connect-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 38px);
}

.quick-connect-card p:not(.eyebrow),
.cabinet-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.62;
}

.quick-connect-actions {
  display: grid;
  gap: 10px;
}

.quick-connect-side {
  display: grid;
  gap: 12px;
}

.quick-connect-side p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.connect-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.connect-steps.compact {
  grid-template-columns: 1fr;
}

.connect-steps div {
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(247, 248, 255, 0.72);
}

.connect-steps span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.connect-steps strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.connect-steps p,
.connect-steps.compact p {
  margin: 7px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

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

.install-strip a,
.install-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(90, 69, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--indigo);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.install-strip a:hover,
.install-strip a:focus-visible,
.install-grid a:hover,
.install-grid a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(90, 69, 255, 0.34);
  background: #ffffff;
  outline: none;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 16px;
}

.key-panel,
.claim-panel {
  padding: 24px;
}

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

.claim-code {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(90, 69, 255, 0.22);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--indigo);
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.linked-state {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 16px 0;
  padding: 0 14px;
  border: 1px solid rgba(37, 216, 135, 0.26);
  border-radius: 999px;
  background: rgba(37, 216, 135, 0.1);
  color: #16724d;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.cabinet-hero {
  width: min(var(--max), calc(100% - 36px));
  min-height: 58svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: end;
  gap: 28px;
  padding: 128px 0 54px;
  border-bottom: 1px solid var(--line);
}

.cabinet-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft);
  font-size: 20px;
}

.cabinet-status-card {
  min-height: 152px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cabinet-status-card strong {
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.18;
}

.cabinet-status-card small {
  color: var(--muted);
  font-weight: 800;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(37, 216, 135, 0.12), 0 0 22px rgba(37, 216, 135, 0.5);
}

.live-dot.expired,
.live-dot.disabled {
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 109, 99, 0.12), 0 0 22px rgba(255, 109, 99, 0.38);
}

.live-dot.limited {
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(246, 192, 79, 0.14), 0 0 22px rgba(246, 192, 79, 0.44);
}

.cabinet-dashboard {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cabinet-card {
  min-height: 260px;
  padding: 24px;
}

.cabinet-main-card {
  grid-column: span 7;
}

.cabinet-key-card {
  grid-column: span 5;
}

.cabinet-connect-card,
.cabinet-telegram-card {
  grid-column: span 6;
}

.cabinet-card-head,
.cabinet-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cabinet-card-head {
  margin-bottom: 20px;
}

.cabinet-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111118;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.expired,
.status-pill.disabled {
  background: rgba(255, 109, 99, 0.13);
  color: #a3312a;
}

.status-pill.limited {
  background: rgba(246, 192, 79, 0.18);
  color: #80600a;
}

.cabinet-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 20px;
}

.cabinet-stats div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(247, 248, 255, 0.78);
}

.cabinet-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cabinet-stats strong {
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cabinet-actions-row {
  justify-content: flex-start;
}

.cabinet-actions-row.compact {
  margin-top: 14px;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.device-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.device-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(90, 69, 255, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 900;
}

.admin-shell {
  width: min(1320px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 122px 0 72px;
}

.admin-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.admin-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.admin-stats div {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.admin-stats span,
.admin-table span,
.admin-table small {
  color: var(--muted);
  font-weight: 800;
}

.admin-stats strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
}

.admin-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(17, 17, 24, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.admin-table td {
  min-width: 180px;
}

.admin-table td > strong,
.admin-table td > span,
.admin-table td > small {
  display: block;
  overflow-wrap: anywhere;
}

.admin-table td > strong {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.admin-table td > small {
  margin-top: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.admin-table .button + .button {
  margin-top: 8px;
}

.admin-empty {
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.admin-preview-banner {
  position: sticky;
  z-index: 25;
  top: 96px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto -68px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(246, 192, 79, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 252, 237, 0.94);
  color: #6a4e00;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(36, 34, 84, 0.1);
  backdrop-filter: blur(16px);
}

.admin-preview-banner button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(106, 78, 0, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #6a4e00;
  cursor: pointer;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 44px 0;
}

.footer-brand {
  font-weight: 900;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes screenFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateZ(0deg);
  }
  50% {
    transform: translateY(-12px) rotateX(1.5deg) rotateZ(0.35deg);
  }
}

@keyframes brandFlow {
  0% {
    opacity: 0;
    transform: translate(0, -50%) scale(0.84);
  }
  18%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(56px, -50%) scale(1);
  }
}

@keyframes brandCreature {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-2deg);
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .flow-row,
  .motion-ready .benefit-grid article,
  .motion-ready .intent-card,
  .motion-ready .power-card,
  .motion-ready .plan,
  .motion-ready .conversion-panel,
  .motion-ready .link-grid a,
  .motion-ready .quick-connect-card,
  .motion-ready .cabinet-card {
    opacity: 0.97;
    transform: translateY(8px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
    will-change: transform, opacity;
  }

  .motion-ready .flow-row.is-visible,
  .motion-ready .benefit-grid article.is-visible,
  .motion-ready .intent-card.is-visible,
  .motion-ready .power-card.is-visible,
  .motion-ready .plan.is-visible,
  .motion-ready .conversion-panel.is-visible,
  .motion-ready .link-grid a.is-visible,
  .motion-ready .quick-connect-card.is-visible,
  .motion-ready .cabinet-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .screen-wall {
    width: min(820px, calc(100% - 32px));
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: auto;
  }

  .checkout-screen,
  .access-screen,
  .route-screen,
  .guide-screen,
  .bot-screen {
    grid-column: span 3;
    margin-top: 0;
  }

  .bot-screen {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 960px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav a.nav-cabinet {
    display: inline-flex;
  }

  .nav a.nav-bot {
    display: inline-flex;
  }

  .status-grid,
  .benefit-grid,
  .intent-grid,
  .power-grid,
  .plans,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .checkout-shell,
  .access-grid,
  .quick-connect-card,
  .cabinet-hero,
  .admin-head,
  .conversion-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    justify-content: flex-start;
  }

  .checkout-shell {
    align-items: start;
  }

  .access-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .cabinet-main-card,
  .cabinet-key-card,
  .cabinet-connect-card,
  .cabinet-telegram-card {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    padding-left: 12px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
    padding-right: 0;
  }

  .brand-creature {
    width: 38px;
    height: 38px;
  }

  .brand-word {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .brand-flow {
    display: none;
  }

  .nav a {
    padding: 0 10px;
    font-size: 13px;
  }

  .nav a.nav-bot {
    display: none;
  }

  .product-hero {
    min-height: auto;
    padding-top: 102px;
  }

  .page-hero {
    min-height: auto;
    padding: 104px 0 88px;
  }

  .hero-center,
  .hero-shell,
  .page-hero-inner {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(38px, 10.9vw, 52px);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.18;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.62;
  }

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

  .screen-wall {
    width: calc(100% - 28px);
    margin-top: 52px;
    margin-bottom: 42px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 22px;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    flex: 0 0 82%;
    min-height: 250px;
    scroll-snap-align: center;
    animation: none;
  }

  .status-grid,
  .benefit-grid,
  .intent-grid,
  .power-grid,
  .plans,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .status-item,
  .status-item:last-child {
    border-right: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 28px);
    padding: 60px 0;
  }

  .flow-row {
    grid-template-columns: 1fr;
  }

  .tab {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line);
  }

  .checkout-shell,
  .access-hero,
  .cabinet-hero {
    width: calc(100% - 28px);
  }

  .quick-connect-card {
    padding: 22px;
  }

  .quick-connect-actions .button,
  .cabinet-actions-row .button,
  .cabinet-actions-row a {
    width: 100%;
  }

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

  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    justify-content: stretch;
  }

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

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

  .connect-steps {
    grid-template-columns: 1fr;
  }

  .connect-steps div {
    min-height: 0;
  }

  .install-strip {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    width: calc(100% - 28px);
    padding-top: 104px;
  }

  .admin-stats,
  .admin-search {
    grid-template-columns: 1fr;
  }

  .admin-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .admin-table {
    min-width: 0;
  }

  .admin-table thead {
    display: none;
  }

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

  .admin-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .admin-table td {
    min-width: 0;
    padding: 14px;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--indigo);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .admin-preview-banner {
    top: 84px;
    width: calc(100% - 28px);
    margin-bottom: -54px;
  }
}

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