.znet-shell-page {
  --znet-bg: #010409;
  --znet-surface: rgba(255, 255, 255, 0.04);
  --znet-surface-strong: rgba(255, 255, 255, 0.06);
  --znet-border: rgba(255, 255, 255, 0.1);
  --znet-border-accent: rgba(134, 239, 172, 0.18);
  --znet-text: #ffffff;
  --znet-text-soft: rgba(255, 255, 255, 0.68);
  --znet-accent: #4ade80;
  --znet-accent-soft: #86efac;
  --znet-accent-dark: #03250f;
  --znet-container: 1440px;
  --znet-radius: 20px;
  --znet-radius-sm: 10px;
  --znet-header-offset: 84px;
  --znet-flyout-border: rgba(134, 239, 172, 0.14);
  --znet-flyout-radius: 14px;
  --znet-flyout-bg: rgba(1, 4, 9, 0.96);
  --znet-flyout-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --znet-flyout-blur: 16px;
  background: var(--znet-bg);
  color: var(--znet-text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  scrollbar-gutter: stable;
}

.znet-shell-page a {
  color: inherit;
  text-decoration: none;
}

.znet-shell-page img {
  display: block;
  max-width: 100%;
}

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

.znet-shell-page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--znet-header-offset);
  overflow-x: hidden;
}

.znet-shell-page .znet-shell-header,
.znet-shell-page .znet-shell-stage,
.znet-shell-page .znet-shell-footer {
  position: relative;
  z-index: 1;
}

.znet-shell-page .znet-shell-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: rgba(1, 4, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.znet-shell-page .znet-shell-header-mobile {
  display: none;
}

.znet-shell-page .znet-shell-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.znet-shell-page .znet-shell-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.znet-shell-page .znet-shell-brand-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.znet-shell-page .znet-shell-nav,
.znet-shell-page .znet-shell-footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.znet-shell-page .znet-shell-nav a,
.znet-shell-page .znet-shell-footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.znet-shell-page .znet-shell-nav a:hover,
.znet-shell-page .znet-shell-nav a.is-active,
.znet-shell-page .znet-shell-footer-nav a:hover,
.znet-shell-page .znet-shell-footer-nav a.is-active {
  color: var(--znet-accent);
}

.znet-shell-page .znet-shell-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.znet-shell-page .znet-shell-cart-link {
  position: relative;
}

.znet-shell-page .znet-shell-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--znet-accent);
  color: var(--znet-accent-dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.znet-shell-page .znet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--znet-radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.znet-shell-page .znet-btn-with-icon {
  gap: 10px;
}

.znet-shell-page .znet-btn-icon-only {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
}

.znet-shell-page .znet-btn-svg-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.znet-shell-page .znet-btn-accent,
.znet-shell-page .btn-primary {
  background: var(--znet-accent);
  color: var(--znet-accent-dark);
  border-color: transparent;
  box-shadow: none;
}

.znet-shell-page .znet-btn-accent:hover,
.znet-shell-page .btn-primary:hover,
.znet-shell-page .btn-primary:focus {
  background: var(--znet-accent);
  color: var(--znet-accent-dark);
  box-shadow: 0 16px 36px rgba(74, 222, 128, 0.22);
}

.znet-shell-page .znet-btn-ghost,
.znet-shell-page .znet-btn-outline,
.znet-shell-page .btn-outline-primary {
  background: transparent;
  color: var(--znet-text);
  border-color: var(--znet-border-accent);
}

.znet-shell-page .znet-btn-ghost:hover,
.znet-shell-page .znet-btn-outline:hover,
.znet-shell-page .btn-outline-primary:hover,
.znet-shell-page .btn-outline-primary:focus {
  background: rgba(255, 255, 255, 0.05);
  color: var(--znet-text);
  border-color: rgba(134, 239, 172, 0.32);
  box-shadow: 0 14px 30px rgba(74, 222, 128, 0.16);
}

.znet-shell-page .znet-shell-locale-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.znet-shell-page .znet-shell-locale-btn {
  min-height: 36px;
  min-width: 74px;
  padding: 0 12px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.znet-shell-page .znet-shell-locale-btn:hover,
.znet-shell-page .znet-shell-locale-btn.is-active {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--znet-accent-soft);
}

.znet-shell-page .znet-shell-locale-btn .fi {
  width: 1.15em;
  height: 0.9em;
  border-radius: 2px;
}

.znet-shell-page .znet-shell-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--znet-flyout-border);
  border-radius: var(--znet-flyout-radius);
  background: var(--znet-flyout-bg);
  box-shadow: var(--znet-flyout-shadow);
  backdrop-filter: blur(var(--znet-flyout-blur));
  -webkit-backdrop-filter: blur(var(--znet-flyout-blur));
}

.znet-shell-page .znet-shell-header-mobile.is-menu-open .znet-shell-menu {
  display: flex;
}

.znet-shell-page .znet-shell-menu a {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
}

.znet-shell-page .znet-shell-menu a:hover,
.znet-shell-page .znet-shell-menu a.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.znet-shell-page .znet-shell-menu-language {
  padding-top: 6px;
}

.znet-shell-page .znet-shell-menu-language .znet-shell-locale-switch {
  width: 100%;
  justify-content: flex-start;
}

.znet-shell-page .znet-shell-stage {
  position: relative;
  flex: 1 0 auto;
  min-height: calc(100vh - var(--znet-header-offset));
  padding: 28px 0 56px;
}

.znet-shell-page .znet-shell-stage-inner {
  position: relative;
  display: grid;
  align-content: start;
  min-height: calc(100vh - var(--znet-header-offset) - 84px);
}

.znet-shell-page .znet-shell-globe {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(78vw, 1040px);
  pointer-events: none;
  opacity: 0.94;
}

.znet-shell-page .znet-shell-globe img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.36));
}

.znet-shell-page .znet-shell-panel-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-self: start;
}

.znet-shell-page .znet-shell-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: min(820px, calc(100vh - var(--znet-header-offset) - 84px));
  padding: 28px;
  border: 1px solid rgba(134, 239, 172, 0.14);
  border-radius: 14px;
  background: rgba(1, 4, 9, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.znet-shell-page .znet-shell-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  height: 126px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.znet-shell-page .znet-shell-panel-head > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  align-content: start;
}

.znet-shell-page .znet-shell-eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--znet-accent-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.znet-shell-page .znet-shell-panel-head h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.znet-shell-page .znet-shell-panel-head p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--znet-text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.znet-shell-page .znet-shell-head-actions {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.znet-shell-page .znet-shell-layout {
  display: grid;
  gap: 28px;
  padding-top: 28px;
  align-items: start;
  align-content: start;
}

.znet-shell-page .znet-shell-layout-client {
  grid-template-columns: 260px minmax(0, 1fr);
}

.znet-shell-page .znet-shell-layout-public {
  grid-template-columns: minmax(0, 1fr);
}

.znet-shell-page .znet-shell-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.znet-shell-page .znet-shell-sidebar-block {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.znet-shell-page .znet-shell-sidebar-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.znet-shell-page .znet-shell-side-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.znet-shell-page .znet-shell-side-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.znet-shell-page .znet-shell-side-nav a,
.znet-shell-page .znet-shell-mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.znet-shell-page .znet-shell-side-nav a::after,
.znet-shell-page .znet-shell-mobile-links a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(134, 239, 172, 0.24);
}

.znet-shell-page .znet-shell-side-nav a:hover,
.znet-shell-page .znet-shell-side-nav a.is-active,
.znet-shell-page .znet-shell-mobile-links a:hover,
.znet-shell-page .znet-shell-mobile-links a.is-active {
  border-color: rgba(134, 239, 172, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--znet-accent-soft);
}

.znet-shell-page .znet-shell-account-list {
  display: grid;
  gap: 10px;
}

.znet-shell-page .znet-shell-account-item {
  display: grid;
  gap: 4px;
}

.znet-shell-page .znet-shell-account-item span:first-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.znet-shell-page .znet-shell-account-item strong {
  font-size: 16px;
  font-weight: 500;
}

.znet-shell-page .znet-shell-main {
  display: grid;
  align-content: start;
  align-items: start;
}

.znet-shell-page .znet-shell-content {
  display: grid;
  gap: 24px;
  align-content: start;
  align-items: start;
}

.znet-shell-page .znet-shell-mobile-links {
  display: none;
}

.znet-shell-page .znet-shell-section {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-content: start;
  align-items: start;
}

.znet-shell-page .znet-shell-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.znet-shell-page .znet-shell-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.znet-shell-page .znet-shell-section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.znet-shell-page .znet-shell-section-head p {
  margin: 10px 0 0;
  color: var(--znet-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

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

.znet-shell-page .znet-shell-stat {
  display: grid;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.znet-shell-page .znet-shell-stat-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.znet-shell-page .znet-shell-stat span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.znet-shell-page .znet-shell-stat strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.znet-shell-page .znet-shell-stat p {
  margin: 0;
  color: var(--znet-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.znet-shell-page .znet-shell-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.znet-shell-page .znet-plan-card {
  --znet-plan-border-color: rgba(255, 255, 255, 0.1);
  --znet-plan-badge-bg: rgba(1, 4, 9, 0.92);
  position: relative;
  padding: 26px;
  border: 1px solid var(--znet-plan-border-color);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.znet-shell-page .znet-plan-card-featured {
  --znet-plan-border-color: rgba(74, 222, 128, 0.5);
  --znet-plan-badge-bg: rgb(12, 23, 17);
  border-color: var(--znet-plan-border-color);
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.98), rgba(4, 15, 11, 0.98));
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.12);
}

.znet-shell-page .znet-plan-top {
  min-height: 0;
}

.znet-shell-page .znet-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
  padding: 8px 12px;
  border: 1px solid var(--znet-plan-border-color);
  border-radius: 999px;
  background: var(--znet-plan-badge-bg);
  color: var(--znet-accent-soft);
  font-size: 12px;
  font-weight: 500;
}

.znet-shell-page .znet-plan-card-featured .znet-plan-badge {
  box-shadow: 0 0 0 1px var(--znet-bg);
}

.znet-shell-page .znet-plan-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: end;
}

.znet-shell-page .znet-plan-name {
  grid-column: 1;
  grid-row: 1;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.znet-shell-page .znet-plan-price {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
  font-size: 36px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 600;
  justify-self: start;
  white-space: nowrap;
}

.znet-shell-page .znet-plan-period {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  justify-self: start;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.znet-shell-page .znet-plan-highlight {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
}

.znet-shell-page .znet-plan-highlight span:last-child {
  color: var(--znet-text-soft);
  font-weight: 400;
  line-height: 1.5;
}

.znet-shell-page .znet-plan-btn {
  width: 100%;
  margin-top: 18px;
}

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

.znet-shell-page .znet-shell-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.znet-shell-page .znet-shell-inline-note {
  padding: 16px 18px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--znet-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.znet-shell-page .znet-shell-checklist {
  display: grid;
  gap: 12px;
}

.znet-shell-page .znet-shell-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--znet-text-soft);
}

.znet-shell-page .znet-shell-check-item .znet-check {
  margin-top: 1px;
}

.znet-shell-page .znet-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.18);
  color: var(--znet-accent-soft);
  font-size: 12px;
  line-height: 1;
  flex: 0 0 auto;
}

.znet-shell-page .znet-shell-auth-wrap {
  width: min(640px, 100%);
}

.znet-shell-page .znet-shell-auth-card {
  width: 100%;
}

.znet-shell-page .znet-shell-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.znet-shell-page .znet-shell-link-row .btn {
  flex: 1 1 220px;
}

.znet-shell-page .znet-appbridge-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.znet-shell-page .znet-appbridge-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.znet-shell-page .znet-appbridge-stat span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.znet-shell-page .znet-appbridge-stat strong {
  color: var(--znet-text);
  font-size: 24px;
  font-weight: 700;
}

.znet-shell-page .znet-appbridge-device-list {
  display: grid;
  gap: 12px;
}

.znet-shell-page .znet-appbridge-device {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.znet-shell-page .znet-appbridge-device-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.znet-shell-page .znet-appbridge-device-copy strong {
  display: block;
  margin-bottom: 4px;
}

.znet-shell-page .znet-appbridge-device-copy p {
  word-break: break-word;
}

.znet-shell-page .znet-appbridge-device-actions {
  flex: 0 0 auto;
}

.znet-shell-page .znet-appbridge-device-empty {
  justify-content: flex-start;
}

.znet-appbridge-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  padding: 24px 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.znet-appbridge-modal[hidden] {
  display: none;
}

.znet-appbridge-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 9, 0.56);
  backdrop-filter: blur(10px);
}

.znet-appbridge-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  max-width: 100%;
  margin: auto;
}

.znet-appbridge-token-field {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--znet-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.znet-appbridge-token-field:hover {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.znet-appbridge-token-field span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  word-break: break-all;
}

.znet-appbridge-token-field.is-masked span {
  filter: blur(8px);
  user-select: none;
}

.znet-appbridge-modal-open {
  overflow: hidden;
}

.znet-shell-page .content-block,
.znet-shell-page .row,
.znet-shell-page .col,
.znet-shell-page [class*="col-"] {
  min-width: 0;
}

.znet-shell-page .card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--znet-text);
  box-shadow: none;
}

.znet-shell-page .card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.znet-shell-page .text-secondary,
.znet-shell-page .text-muted,
.znet-shell-page .small,
.znet-shell-page .form-text {
  color: var(--znet-text-soft) !important;
}

.znet-shell-page .list-group-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--znet-text);
}

.znet-shell-page .table-responsive {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.znet-shell-page .table {
  --bs-table-color: var(--znet-text);
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
  --bs-table-striped-color: var(--znet-text);
  --bs-table-hover-bg: rgba(255, 255, 255, 0.05);
  --bs-table-hover-color: var(--znet-text);
  margin-bottom: 0;
  color: var(--znet-text);
}

.znet-shell-page .table > :not(caption) > * > * {
  padding: 14px 16px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}

.znet-shell-page .table > thead > tr > th {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.znet-shell-page .table > tbody > tr > td {
  vertical-align: middle;
}

.znet-shell-page .table a {
  color: var(--znet-text);
}

.znet-shell-page .table a:hover {
  color: var(--znet-accent-soft);
}

.znet-shell-page .znet-shell-empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--znet-text-soft);
  font-size: 15px;
  text-align: center;
}

.znet-shell-page .pagination {
  gap: 8px;
}

.znet-shell-page .pagination .page-item .page-link {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.znet-shell-page .pagination .page-item.active .page-link,
.znet-shell-page .pagination .page-item .page-link:hover {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--znet-accent-soft);
}

.znet-shell-page .pagination .page-item.disabled .page-link {
  opacity: 0.38;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.42);
}

.znet-shell-page .pagination .svg-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.znet-shell-page .badge.text-bg-success,
.znet-shell-page .badge.text-bg-warning,
.znet-shell-page .badge.text-bg-danger,
.znet-shell-page .badge.text-bg-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--znet-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.znet-shell-page .form-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
}

.znet-shell-page .form-control,
.znet-shell-page .form-select {
  min-height: 48px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--znet-text);
}

.znet-shell-page .form-select {
  color-scheme: dark;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d1fae5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.znet-shell-page .form-select option,
.znet-shell-page .form-select optgroup {
  background: #06110b;
  color: var(--znet-text);
}

.znet-shell-page textarea.form-control {
  min-height: 140px;
}

.znet-shell-page .form-control::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.znet-shell-page .form-control:focus,
.znet-shell-page .form-select:focus {
  outline: none;
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--znet-text);
  box-shadow: none;
}

.znet-shell-page .form-check-input {
  border-color: rgba(134, 239, 172, 0.18);
  background-color: rgba(255, 255, 255, 0.03);
}

.znet-shell-page .form-check-input:checked {
  background-color: var(--znet-accent);
  border-color: var(--znet-accent);
}

.znet-shell-page .form-check-label,
.znet-shell-page .form-check-label span {
  color: var(--znet-text-soft);
}

.znet-shell-page .znet-shell-inline-tabs {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.znet-shell-page .znet-shell-inline-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.znet-shell-page .znet-shell-inline-tab:hover,
.znet-shell-page .znet-shell-inline-tab.is-active {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--znet-accent-soft);
}

.znet-shell-page .znet-shell-inline-tab-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(134, 239, 172, 0.16);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.znet-shell-page .znet-shell-table-actions {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.znet-shell-page .znet-shell-inline-form {
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
}

.znet-shell-page .znet-shell-table-actions .znet-btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.znet-shell-page .znet-shell-table-actions .znet-btn-icon-only {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  align-self: flex-start;
}

.znet-shell-page .breadcrumb {
  display: none !important;
}

.znet-shell-page .znet-shell-footer {
  margin-top: 12px;
  padding-bottom: 24px;
}

.znet-shell-page .znet-shell-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.znet-shell-page .znet-shell-footer-brand {
  display: inline-flex;
  align-items: center;
}

.znet-shell-page .znet-shell-footer-brand-logo {
  height: 44px;
}

@media (max-width: 1100px) {
  .znet-shell-page .znet-shell-globe {
    width: min(88vw, 860px);
  }

  .znet-shell-page .znet-shell-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .znet-shell-page .znet-shell-layout-client {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .znet-shell-page .znet-shell-header-desktop {
    display: none;
  }

  .znet-shell-page .znet-shell-header-mobile {
    display: block;
  }

  .znet-shell-page .znet-shell-stage {
    padding: 18px 0 36px;
  }

  .znet-shell-page .znet-shell-stage-inner {
    min-height: auto;
  }

  .znet-shell-page .znet-shell-globe {
    top: 10px;
    width: min(94vw, 560px);
    opacity: 0.9;
  }

  .znet-shell-page .znet-shell-panel-shell {
    padding-top: min(46vw, 280px);
  }

  .znet-shell-page .znet-shell-panel {
    min-height: auto;
    padding: 22px 20px;
  }

  .znet-shell-page .znet-shell-panel-head,
  .znet-shell-page .znet-shell-section-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .znet-shell-page .znet-shell-panel-head {
    height: 108px;
  }

  .znet-shell-page .znet-shell-layout-client,
  .znet-shell-page .znet-shell-layout-public,
  .znet-shell-page .znet-shell-plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .znet-shell-page .znet-shell-sidebar {
    display: none;
  }

  .znet-shell-page .znet-shell-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 20px;
  }

  .znet-shell-page .znet-shell-stat-grid,
  .znet-shell-page .znet-shell-card-grid,
  .znet-shell-page .znet-shell-card-grid-2,
  .znet-shell-page .znet-appbridge-stats {
    grid-template-columns: 1fr;
  }

  .znet-shell-page .znet-appbridge-device {
    flex-direction: column;
    align-items: stretch;
  }

  .znet-shell-page .znet-appbridge-device-actions .btn {
    width: 100%;
  }

  .znet-shell-page .znet-shell-footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .znet-shell-page {
    --znet-header-offset: 72px;
  }

  .znet-shell-page .znet-container {
    width: min(var(--znet-container), calc(100% - 20px));
  }

  .znet-shell-page .znet-shell-brand-logo {
    height: 46px;
  }

  .znet-shell-page .znet-shell-stage {
    padding: 12px 0 28px;
  }

  .znet-shell-page .znet-shell-globe {
    width: min(108vw, 520px);
  }

  .znet-shell-page .znet-shell-panel-shell {
    padding-top: min(52vw, 250px);
  }

  .znet-shell-page .znet-shell-panel {
    padding: 18px 16px;
  }

  .znet-shell-page .znet-shell-panel-head {
    height: 96px;
  }

  .znet-shell-page .znet-shell-panel-head h1 {
    font-size: 34px;
  }

  .znet-shell-page .znet-plan-card {
    padding: 22px 18px;
  }

  .znet-shell-page .znet-plan-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .znet-shell-page .znet-plan-name {
    font-size: 22px;
  }

  .znet-shell-page .znet-plan-price {
    font-size: 34px;
  }

  .znet-shell-page .znet-shell-section-head h2 {
    font-size: 24px;
  }

  .znet-shell-page .znet-shell-mobile-links {
    grid-template-columns: 1fr;
  }

  .znet-shell-page .znet-shell-head-actions,
  .znet-shell-page .znet-shell-link-row {
    width: 100%;
  }

  .znet-shell-page .znet-shell-head-actions .znet-btn,
  .znet-shell-page .znet-shell-link-row .btn {
    flex: 1 1 100%;
  }
}
