:root {
  --bg: #030711;
  --bg-soft: #07101f;
  --panel: rgba(9, 18, 34, 0.86);
  --panel-solid: #091322;
  --line: rgba(151, 190, 255, 0.14);
  --line-bright: rgba(80, 155, 255, 0.32);
  --blue: #1877ff;
  --blue-bright: #38a0ff;
  --cyan: #35d8ff;
  --white: #f7fbff;
  --text: #a9b7ca;
  --muted: #65758b;
  --green: #3fe39b;
  --purple: #9084ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.official-brand-icon {
  display: block;
  fill: currentColor;
  stroke: none;
}

.official-brand-icon path {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(3, 7, 17, 0.84);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 700 14px/1 var(--font-display);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand > span:last-child > span {
  color: var(--blue-bright);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(54, 143, 255, 0.6);
  border-radius: 11px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(31, 122, 255, 0.3), rgba(8, 27, 54, 0.9));
  box-shadow: inset 0 0 15px rgba(54, 155, 255, 0.18), 0 0 22px rgba(28, 108, 255, 0.16);
}

.brand-mark svg {
  width: 23px;
}

.brand-mark svg,
.core-logo svg,
.bot-avatar svg,
.order-product-icon svg {
  display: none;
}

.brand-mark::before,
.core-logo::before,
.bot-avatar::before,
.order-product-icon::before {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  background: url("assets/cloud-bots-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(42, 166, 255, 0.24));
}

.brand-mark::before {
  width: 24px;
  height: 24px;
}

.core-logo::before {
  width: 55px;
  height: 55px;
}

.site-footer .brand-mark::before,
.dashboard-brand .brand-mark::before {
  width: 21px;
  height: 21px;
}

.auth-brand .brand-mark::before {
  width: 28px;
  height: 28px;
}

.bot-avatar::before {
  width: 30px;
  height: 30px;
}

.bot-avatar.large::before {
  width: 46px;
  height: 46px;
}

.order-product-icon::before {
  width: 25px;
  height: 25px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 80px;
}

.main-nav a {
  color: #8e9caf;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
}

.main-nav a:hover {
  color: var(--white);
}

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

.text-button,
.dashboard-close,
.notification-button,
.menu-toggle,
.modal-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-button {
  color: #a7b3c3;
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
}

.button-primary {
  border-color: #3a9bff;
  color: white;
  background: linear-gradient(135deg, #0b63ed, #1694ff);
  box-shadow: 0 10px 28px rgba(10, 106, 246, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-primary:hover {
  box-shadow: 0 15px 34px rgba(10, 106, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-secondary {
  border-color: var(--line-bright);
  color: #d5e5f8;
  background: rgba(7, 19, 38, 0.72);
}

.button-secondary:hover {
  border-color: rgba(72, 163, 255, 0.65);
  background: rgba(13, 35, 66, 0.8);
}

.button-small {
  min-height: 39px;
  padding: 0 17px;
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  column-gap: clamp(44px, 6vw, 92px);
  min-height: 790px;
  padding: 185px max(28px, calc((100vw - 1240px) / 2)) 125px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(45, 99, 165, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 99, 165, 0.065) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
  display: none;
}

.hero-glow-one {
  top: 80px;
  right: 3%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(12, 94, 230, 0.16), transparent 66%);
}

.hero-glow-two {
  bottom: -220px;
  left: -200px;
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(18, 101, 194, 0.12), transparent 67%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  color: #65b4ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  background: rgba(5, 24, 50, 0.65);
  box-shadow: inset 0 0 12px rgba(32, 122, 255, 0.08);
}

.status-dot,
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.eyebrow-divider {
  width: 1px;
  height: 12px;
  background: var(--line-bright);
}

.hero h1 {
  margin: 29px 0 23px;
  font: 700 clamp(54px, 5.4vw, 82px)/0.98 var(--font-display);
  letter-spacing: -0.055em;
}

.hero h1 span,
.section-heading h2 span,
.cta-section h2 span,
.welcome-banner h3 span {
  color: transparent;
  background: linear-gradient(100deg, #1886ff, #65d9ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 545px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(100, 170, 255, 0.35);
  border-radius: 50%;
  color: #7bc3ff;
  font-size: 8px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 43px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: -8px;
  border: 2px solid #06101f;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #1a4d86, #10223e);
  font-size: 8px;
  font-weight: 700;
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(145deg, #4556a7, #18213e);
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(145deg, #11767c, #102f3b);
}

.avatar-stack span:last-child {
  color: #76c5ff;
  background: #0c1729;
}

.stars {
  color: #5caeff;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-proof p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.hero-proof strong {
  color: #d4e2f1;
}

.server-showcase {
  position: relative;
  overflow: hidden;
  padding: 34px max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(45, 99, 165, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 99, 165, 0.045) 1px, transparent 1px),
    #040a14;
  background-size: 48px 48px;
}

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

.server-showcase-heading h2 {
  margin: 7px 0 0;
  font: 600 20px var(--font-display);
}

.server-showcase-heading p {
  margin: 0;
  color: #5c6e84;
  font-size: 8px;
}

.server-carousel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.server-carousel-track {
  display: flex;
  width: max-content;
  gap: 11px;
  animation: server-marquee var(--server-marquee-duration, 90s) linear infinite;
}

.server-carousel:hover .server-carousel-track {
  animation-play-state: paused;
}

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

.server-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 225px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #08111e;
}

.server-chip-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 37px;
  height: 37px;
  overflow: hidden;
  border: 1px solid rgba(63, 154, 255, 0.3);
  border-radius: 10px;
  color: #76bdff;
  background: #0d2038;
  font: 700 10px var(--font-display);
}

.server-chip-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-chip strong,
.server-chip small {
  display: block;
}

.server-chip strong {
  max-width: 145px;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-chip small {
  margin-top: 4px;
  color: #53667d;
  font-size: 7px;
}

.server-chip > i {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
}

.server-showcase-empty {
  width: min(560px, calc(100vw - 56px));
  padding: 15px;
  border: 1px dashed rgba(84, 145, 214, 0.22);
  border-radius: 8px;
  color: #586b82;
  background: #07101c;
  font-size: 9px;
  text-align: center;
}

.server-carousel-track.is-empty {
  width: 100%;
  animation: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(590px, 100%);
  min-height: 490px;
  perspective: 900px;
}

.hero-visual::before {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 85%;
  height: 85%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 95, 222, 0.18), transparent 62%);
  filter: blur(18px);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 51%;
  border: 1px solid rgba(56, 153, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-11deg);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.orbit-one {
  width: 440px;
  height: 440px;
  animation: orbit 16s linear infinite;
}

.orbit-two {
  width: 310px;
  height: 310px;
  opacity: 0.7;
  animation: orbit 11s linear infinite reverse;
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(349deg); }
}

.core-sphere {
  position: absolute;
  top: 50%;
  left: 51%;
  display: grid;
  place-items: center;
  width: 182px;
  height: 182px;
  border: 1px solid rgba(71, 158, 255, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(103, 202, 255, 0.3), transparent 20%),
    radial-gradient(circle at center, #102d5b, #07152a 62%, #030a15 72%);
  box-shadow: inset -18px -20px 45px rgba(0, 0, 0, 0.4), inset 12px 12px 35px rgba(63, 165, 255, 0.12), 0 0 80px rgba(12, 100, 235, 0.25);
  transform: translate(-50%, -50%);
  animation: float 5s ease-in-out infinite;
}

.core-sphere::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px dashed rgba(87, 174, 255, 0.22);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.core-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.core-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 77px;
  height: 77px;
  border: 1px solid rgba(63, 164, 255, 0.55);
  border-radius: 24px;
  color: #7ad9ff;
  background: rgba(7, 30, 61, 0.72);
  box-shadow: 0 0 38px rgba(39, 142, 255, 0.38), inset 0 0 24px rgba(55, 157, 255, 0.14);
  transform: translate(-50%, -50%);
}

.core-logo svg {
  width: 45px;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(102, 168, 255, 0.22);
  border-radius: 9px;
  background: linear-gradient(110deg, rgba(11, 26, 48, 0.9), rgba(6, 14, 28, 0.77));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.float-card small,
.float-card strong {
  display: block;
}

.float-card small {
  margin-bottom: 3px;
  color: #6e8097;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.float-card strong {
  font-size: 11px;
}

.float-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.float-icon svg {
  width: 17px;
}

.float-icon.blue {
  color: #72b9ff;
  background: rgba(27, 117, 255, 0.15);
}

.float-icon.cyan {
  color: #49e1ff;
  background: rgba(38, 214, 255, 0.12);
}

.trend {
  margin-left: auto;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.float-card-sales {
  top: 42px;
  right: -3px;
  animation: card-float 5s ease-in-out infinite 0.5s;
}

.float-card-security {
  right: 26px;
  bottom: 55px;
  animation: card-float 5.5s ease-in-out infinite;
}

.float-card-users {
  bottom: 93px;
  left: 11px;
  min-width: 170px;
  animation: card-float 6s ease-in-out infinite 1s;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 2px;
  width: 40px;
  height: 29px;
}

.mini-bars i {
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #1767ee, #48c6ff);
}

.mini-bars i:nth-child(1) { height: 35%; }
.mini-bars i:nth-child(2) { height: 52%; }
.mini-bars i:nth-child(3) { height: 43%; }
.mini-bars i:nth-child(4) { height: 76%; }
.mini-bars i:nth-child(5) { height: 61%; }
.mini-bars i:nth-child(6) { height: 96%; }

.data-chip {
  position: absolute;
  color: rgba(99, 178, 255, 0.4);
  font: 500 7px var(--font-display);
  letter-spacing: 0.14em;
}

.data-chip-one { top: 90px; left: 30px; }
.data-chip-two { right: 55px; bottom: 155px; }

.trust-strip {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - 1240px) / 2));
  bottom: 26px;
  left: max(28px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.trust-strip > span {
  margin-right: auto;
  color: #536379;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-strip strong {
  color: #b9cce2;
  font: 600 14px var(--font-display);
}

.trust-strip small {
  color: #536379;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-banner-section {
  position: relative;
  padding: 38px max(28px, calc((100vw - 1160px) / 2)) 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #030713 0%, #050a14 100%);
}

.brand-banner-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(73, 153, 255, 0.3);
  border-radius: 28px;
  background: #050a14;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 42px rgba(18, 108, 255, 0.14);
}

.brand-banner-card::before,
.brand-banner-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}


.brand-banner-card::after {
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 70px rgba(47, 150, 255, 0.18);
}

.brand-banner-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(1.16) contrast(1.05);
}


@media (max-width: 760px) {
  .brand-banner-section {
    padding: 26px 20px 10px;
  }

  .brand-banner-card {
    min-height: 260px;
    border-radius: 22px;
  }


  .brand-banner-card img {
    height: 260px;
  }


}

.section {
  position: relative;
  padding: 115px max(28px, calc((100vw - 1160px) / 2));
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.cta-section h2 {
  margin: 17px 0 18px;
  font: 700 clamp(36px, 4vw, 52px)/1.08 var(--font-display);
  letter-spacing: -0.04em;
}

.section-heading > p,
.cta-section p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.solutions {
  background: #050a14;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10, 21, 39, 0.92), rgba(5, 11, 22, 0.92));
  transition: 0.3s;
}

.feature-card:hover,
.price-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.feature-card {
  min-height: 330px;
  padding: 42px 34px 31px;
  border-radius: 10px;
}

.feature-card::before {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(46, 139, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(25, 116, 239, 0.06);
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #2c3b50;
  font: 600 10px var(--font-display);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  border: 1px solid rgba(58, 150, 255, 0.34);
  border-radius: 9px;
  color: #62bdff;
  background: rgba(18, 91, 188, 0.12);
  box-shadow: inset 0 0 18px rgba(31, 131, 255, 0.09);
}

.feature-icon svg {
  width: 25px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font: 600 19px var(--font-display);
}

.feature-card p {
  margin: 0;
  color: #78889d;
  font-size: 12px;
  line-height: 1.7;
}

.card-link {
  position: absolute;
  bottom: 31px;
  color: #589ad5;
  font-size: 10px;
  font-weight: 600;
}

.card-link b {
  margin-left: 5px;
  color: #70c3ff;
}

.plans {
  background:
    linear-gradient(rgba(9, 21, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 21, 40, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
}

.pricing-grid {
  align-items: center;
}

.price-card {
  min-height: 540px;
  padding: 38px 33px 31px;
  border-radius: 11px;
}

.price-card.featured {
  min-height: 580px;
  padding-top: 52px;
  border-color: rgba(39, 137, 255, 0.56);
  background:
    radial-gradient(circle at 50% 0, rgba(22, 111, 240, 0.18), transparent 37%),
    linear-gradient(145deg, rgba(10, 24, 47, 0.97), rgba(5, 11, 23, 0.97));
  box-shadow: 0 28px 70px rgba(0, 46, 126, 0.22);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 15px;
  border-radius: 0 0 6px 6px;
  color: white;
  background: linear-gradient(90deg, #0c66ec, #259dff);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.plan-label {
  color: #429cff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.price-top {
  min-height: 105px;
}

.price-top h3 {
  margin: 13px 0 9px;
  font: 600 21px var(--font-display);
}

.price-top p {
  margin: 0;
  color: #718197;
  font-size: 11px;
}

.price {
  display: flex;
  align-items: flex-start;
  height: 92px;
  margin: 14px 0 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.price small {
  margin: 13px 7px 0 0;
  color: #7e91aa;
  font-size: 12px;
}

.price > strong {
  font: 700 49px/1 var(--font-display);
  letter-spacing: -0.05em;
}

.price > span {
  margin: 7px 0 0 3px;
  color: #a5b7cd;
  font-size: 13px;
  line-height: 1.15;
}

.price em {
  color: #586a81;
  font-size: 9px;
  font-style: normal;
}

.custom-price {
  align-items: center;
}

.custom-price strong {
  font-size: 26px;
}

.price-card ul {
  min-height: 165px;
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 24px;
  color: #91a2b6;
  font-size: 11px;
}

.price-card li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  content: "✓";
  border: 1px solid rgba(55, 157, 255, 0.35);
  border-radius: 50%;
  color: #4babff;
  font-size: 8px;
}

.price-card .button {
  width: 100%;
}

.process {
  border-top: 1px solid var(--line);
  background: #050a13;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.process-line::before {
  position: absolute;
  top: 29px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(54, 148, 255, 0.45), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(0.2, 0.75, 0.25, 1) 0.2s;
}

.process-line.visible::before {
  transform: scaleX(1);
}

.process-line article {
  position: relative;
  text-align: center;
}

.process-line article::after {
  display: none;
}

.process-line article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: #63b7ff;
  background: #07101f;
  box-shadow: 0 0 25px rgba(27, 120, 255, 0.12);
  font: 600 11px var(--font-display);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.process-line article:hover > span {
  border-color: rgba(86, 178, 255, 0.72);
  color: #b9e1ff;
  box-shadow: 0 0 34px rgba(31, 132, 255, 0.24);
  transform: translateY(-4px) scale(1.04);
}

.process-line h3 {
  margin: 0 0 8px;
  font: 600 14px var(--font-display);
}

.process-line p {
  margin: 0;
  color: #607188;
  font-size: 10px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 125px 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(rgba(18, 83, 159, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 83, 159, 0.05) 1px, transparent 1px),
    #030814;
  background-size: 45px 45px;
}

.cta-section::after {
  position: absolute;
  right: -200px;
  bottom: -420px;
  left: -200px;
  height: 530px;
  content: "";
  border: 1px solid rgba(25, 116, 245, 0.18);
  border-radius: 50%;
  box-shadow: 0 -30px 100px rgba(14, 96, 221, 0.12);
}

.cta-section > div:last-child {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-top: 19px;
}

.centered {
  justify-content: center;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  justify-content: center;
  gap: 13px;
  margin-top: 34px;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid var(--line-bright);
  border-radius: 9px;
  background: rgba(7, 18, 34, 0.84);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: 0.25s ease;
}

.support-card:hover {
  border-color: rgba(82, 170, 255, 0.68);
  background: rgba(11, 30, 56, 0.9);
  box-shadow: 0 18px 42px rgba(4, 70, 163, 0.2);
  transform: translateY(-3px);
}

.support-channel-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 9px;
}

.support-channel-icon svg {
  width: 24px;
  height: 24px;
}

.discord-support .support-channel-icon {
  color: #a9afff;
  background: rgba(88, 101, 242, 0.17);
}

.whatsapp-support .support-channel-icon {
  color: #55e5a2;
  background: rgba(37, 211, 102, 0.13);
}

.support-card > span:nth-child(2) {
  min-width: 0;
}

.support-card small,
.support-card strong {
  display: block;
}

.support-card small {
  color: #54708f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.support-card strong {
  margin: 6px 0 4px;
  font: 600 12px var(--font-display);
}

.support-card > b {
  margin-left: auto;
  color: #67b8ff;
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 115px;
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: #02050c;
}

.site-footer p,
.site-footer a {
  color: #4f5e71;
  font-size: 9px;
}

.site-footer .brand {
  color: var(--white);
  font-size: 13px;
}

.site-footer .brand-mark {
  width: 31px;
  height: 31px;
}

.site-footer .brand-mark svg {
  width: 19px;
}

.site-footer > div {
  display: flex;
  gap: 23px;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay),
    filter 0.78s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay),
    transform 0.78s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay);
  will-change: opacity, filter, transform;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-left {
  --reveal-x: -42px;
  --reveal-y: 12px;
}

.reveal-right {
  --reveal-x: 42px;
  --reveal-y: 12px;
}

.reveal-card {
  --reveal-y: 46px;
  --reveal-scale: 0.955;
}

.reveal-step {
  --reveal-y: 30px;
  --reveal-scale: 0.9;
}

.delay-one { --reveal-delay: 120ms; }
.delay-two { --reveal-delay: 240ms; }

.reveal-card.visible .feature-icon,
.reveal-card.visible .price-top {
  animation: reveal-detail 0.65s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  animation-delay: calc(var(--reveal-delay) + 180ms);
}

@keyframes reveal-detail {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-modal,
.dashboard-shell,
.checkout-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.auth-modal.open,
.dashboard-shell.open,
.checkout-modal.open {
  visibility: visible;
  opacity: 1;
}

.dashboard-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 9, 0.8);
  backdrop-filter: blur(9px);
}

.auth-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(470px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 34px 38px 27px;
  border: 1px solid rgba(61, 151, 255, 0.34);
  border-radius: 15px;
  background:
    radial-gradient(circle at 90% 0, rgba(25, 112, 236, 0.17), transparent 31%),
    linear-gradient(145deg, #0a1424, #060c16 62%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -47%) scale(0.98);
  transition: 0.3s ease;
}

.auth-modal.open .auth-card {
  transform: translate(-50%, -50%) scale(1);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-brand .brand-mark {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
}

.auth-brand h2 {
  margin: 5px 0 0;
  font: 600 21px var(--font-display);
  letter-spacing: -0.025em;
}

.auth-intro {
  margin: 14px 0 21px;
  color: #718298;
  font-size: 10px;
  line-height: 1.6;
}

.discord-auth-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 49px;
  padding: 0 16px;
  border: 1px solid rgba(114, 128, 255, 0.55);
  border-radius: 7px;
  color: white;
  background: linear-gradient(135deg, #5865f2, #4752ca);
  box-shadow: 0 10px 25px rgba(58, 69, 190, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.discord-auth-button:hover {
  border-color: #919aff;
  transform: translateY(-2px);
  box-shadow: 0 14px 29px rgba(58, 69, 190, 0.32);
}

.discord-auth-button svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.discord-auth-button b {
  margin-left: auto;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 21px 0 17px;
  color: #52637a;
  font-size: 8px;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;
  height: 1px;
  content: "";
  background: var(--line);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #050a13;
}

.auth-tabs button {
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  color: #68798f;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}

.auth-tabs button.active {
  color: #dceeff;
  background: linear-gradient(135deg, rgba(21, 103, 218, 0.34), rgba(17, 72, 142, 0.22));
  box-shadow: inset 0 0 0 1px rgba(50, 145, 255, 0.19);
}

.auth-form {
  display: none;
  animation: view-in 0.25s ease;
}

.auth-form.active {
  display: block;
}

.auth-form > label,
.auth-name-grid label {
  display: block;
  margin-bottom: 14px;
}

.auth-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #bdcbdb;
  font-size: 9px;
  font-weight: 600;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  outline: none;
  border: 1px solid rgba(106, 145, 190, 0.19);
  border-radius: 6px;
  color: #e6f1ff;
  background: #050a13;
  font-size: 10px;
  transition: 0.2s;
}

.auth-form input:focus {
  border-color: rgba(52, 151, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.09);
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -2px 0 17px;
}

.remember-label,
.terms-label {
  display: flex !important;
  align-items: flex-start;
  gap: 7px;
}

.remember-label {
  margin: 0 !important;
}

.remember-label input,
.terms-label input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--blue);
}

.remember-label span,
.terms-label span {
  margin: 0 !important;
  color: #66798f !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.auth-options button {
  padding: 0;
  border: 0;
  color: #5ba9f2;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  min-height: 45px;
  margin-top: 2px;
}

.auth-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-linked-bot {
  margin: 2px 0 15px;
  padding: 13px;
  border: 1px solid rgba(75, 153, 244, 0.16);
  border-radius: 8px;
  background: rgba(12, 31, 57, 0.42);
}

.auth-linked-bot > span {
  display: block;
  color: #dce9f8;
  font-size: 9px;
  font-weight: 700;
}

.auth-linked-bot > p {
  margin: 5px 0 12px;
  color: #66798f;
  font-size: 8px;
  line-height: 1.5;
}

.auth-linked-bot .auth-name-grid label {
  margin-bottom: 0;
}

.terms-label {
  margin: 3px 0 15px !important;
}

.auth-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #4f637b;
  font-size: 7px;
}

.auth-security svg {
  width: 13px;
  color: #449ff1;
}

.dashboard-panel {
  position: absolute;
  z-index: 1;
  inset: 24px;
  display: grid;
  grid-template-columns: 238px 1fr;
  overflow: hidden;
  border: 1px solid rgba(70, 143, 234, 0.24);
  border-radius: 15px;
  background: #060b14;
  box-shadow: var(--shadow);
  transform: scale(0.98) translateY(10px);
  transition: 0.3s ease;
}

.dashboard-shell.open .dashboard-panel {
  transform: scale(1) translateY(0);
}

.dashboard-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px 18px 18px;
  border-right: 1px solid var(--line);
  background: #070d17;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px 25px;
}

.dashboard-brand .brand {
  font-size: 13px;
}

.dashboard-brand .brand-mark {
  width: 32px;
  height: 32px;
}

.dashboard-brand .brand-mark svg {
  width: 19px;
}

.dashboard-close {
  display: none;
  color: #8392a6;
  font-size: 25px;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.dashboard-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #74849a;
  background: transparent;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
}

.dashboard-nav button:hover,
.dashboard-nav button.active {
  border-color: rgba(45, 135, 255, 0.2);
  color: #cce6ff;
  background: linear-gradient(90deg, rgba(19, 96, 211, 0.2), rgba(14, 55, 106, 0.05));
}

.dashboard-nav button.active {
  box-shadow: inset 3px 0 0 #278dff;
}

.dashboard-nav svg {
  width: 18px;
}

.sidebar-help {
  margin-top: auto;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(11, 24, 43, 0.72);
}

.sidebar-help > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-bottom: 13px;
  border: 1px solid rgba(54, 153, 255, 0.5);
  border-radius: 6px;
  color: #70baff;
  font-size: 11px;
}

.sidebar-help strong,
.sidebar-help p {
  display: block;
}

.sidebar-help strong {
  font-size: 10px;
}

.sidebar-help p {
  margin: 5px 0 13px;
  color: #64758a;
  font-size: 8px;
}

.sidebar-help button,
.sidebar-help a {
  padding: 0;
  border: 0;
  color: #55a9f8;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 14px 5px 0;
  border-top: 1px solid var(--line);
}

.sidebar-user > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  color: #bde6ff;
  background: linear-gradient(145deg, #174f8d, #0e284a);
  font-size: 9px;
  font-weight: 700;
}

.sidebar-user div {
  min-width: 0;
}

.sidebar-user strong,
.sidebar-user small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-user strong {
  font-size: 9px;
}

.sidebar-user small {
  margin-top: 3px;
  color: #58697f;
  font-size: 7px;
}

.sidebar-user button {
  margin-left: auto;
  border: 0;
  color: #64758a;
  background: none;
  cursor: pointer;
}

.dashboard-content {
  overflow-y: auto;
  background:
    radial-gradient(circle at 60% 0, rgba(13, 78, 170, 0.09), transparent 35%),
    #050a13;
}

.dashboard-header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 31px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 19, 0.86);
  backdrop-filter: blur(15px);
}

.dashboard-header small {
  color: #4d6380;
  font-size: 7px;
  letter-spacing: 0.17em;
}

.dashboard-header h2 {
  margin: 5px 0 0;
  font: 600 19px var(--font-display);
}

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

.notification-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #7d8da2;
}

.notification-button svg {
  width: 16px;
}

.notification-button i {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border: 1px solid #07101b;
  border-radius: 50%;
  background: #238bff;
}

.dashboard-view {
  display: none;
  padding: 28px 31px 40px;
  animation: view-in 0.35s ease;
}

.dashboard-view.active {
  display: block;
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.welcome-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 145px;
  padding: 28px 35px;
  overflow: hidden;
  border: 1px solid rgba(43, 136, 255, 0.23);
  border-radius: 11px;
  background:
    radial-gradient(circle at 85% 50%, rgba(16, 105, 235, 0.2), transparent 27%),
    linear-gradient(110deg, rgba(10, 27, 52, 0.95), rgba(7, 16, 30, 0.95));
}

.welcome-banner h3 {
  margin: 10px 0 7px;
  font: 600 23px var(--font-display);
}

.welcome-banner p {
  margin: 0;
  color: #718298;
  font-size: 10px;
}

.health-score {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-right: 15px;
}

.health-score > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding-top: 23px;
  border: 5px solid rgba(47, 152, 255, 0.15);
  border-top-color: #2f9aff;
  border-right-color: #2f9aff;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.health-score strong,
.health-score small {
  transform: rotate(15deg);
}

.health-score strong {
  font: 600 24px var(--font-display);
}

.health-score small {
  color: #60748e;
  font-size: 8px;
}

.health-score > span {
  max-width: 70px;
  color: #6e8097;
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.stats-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 93px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 16, 29, 0.88);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 18px;
}

.stat-icon.blue { color: #60b2ff; background: rgba(24, 113, 240, 0.13); }
.stat-icon.cyan { color: #43d9f8; background: rgba(28, 202, 235, 0.11); }
.stat-icon.purple { color: #9c91ff; background: rgba(120, 101, 239, 0.11); }

.stats-grid small,
.stats-grid strong,
.stats-grid em {
  display: block;
}

.stats-grid small {
  color: #718298;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-grid strong {
  margin: 5px 0 4px;
  font: 600 20px var(--font-display);
}

.stats-grid em {
  color: #53657b;
  font-size: 7px;
  font-style: normal;
}

.stats-grid em.positive {
  color: #35b886;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
}

.panel-card,
.bot-list-card,
.configuration-form,
.configuration-help,
.current-plan-card,
.payment-method-card,
.invoice-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 16, 29, 0.88);
}

.panel-card {
  padding: 22px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading small {
  color: #4e6179;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.panel-heading h3 {
  margin: 5px 0 0;
  font: 600 14px var(--font-display);
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(51, 223, 155, 0.24);
  border-radius: 4px;
  color: #45d49a;
  background: rgba(36, 189, 127, 0.08);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.online-badge::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: #40de9f;
  box-shadow: 0 0 7px #40de9f;
}

.bot-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(84, 142, 209, 0.1);
  border-radius: 8px;
  background: #070e1a;
}

.bot-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(61, 153, 255, 0.4);
  border-radius: 11px;
  color: #67baff;
  background: linear-gradient(145deg, #123e72, #091b33);
}

.bot-avatar svg {
  width: 25px;
}

.bot-avatar.large {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.bot-avatar.large svg {
  width: 37px;
}

.bot-identity strong,
.bot-identity small {
  display: block;
}

.bot-identity strong {
  font-size: 11px;
}

.bot-identity small {
  margin-top: 4px;
  color: #5d6f85;
  font-size: 8px;
}

.bot-identity button {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  color: #6db7fb;
  background: rgba(15, 70, 135, 0.1);
  font-size: 8px;
  cursor: pointer;
}

.bot-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bot-metrics div {
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.bot-metrics div:first-child { padding-left: 0; }
.bot-metrics div:last-child { border: 0; }

.bot-metrics span,
.bot-metrics strong {
  display: block;
}

.bot-metrics span {
  color: #53667d;
  font-size: 7px;
  text-transform: uppercase;
}

.bot-metrics strong {
  margin-top: 7px;
  font-size: 10px;
}

.activity-card .panel-heading button {
  border: 0;
  color: #559de1;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.activity-card ul {
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.activity-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  border-top: 1px solid rgba(107, 145, 190, 0.08);
}

.activity-card strong,
.activity-card small {
  display: block;
}

.activity-card strong {
  font-size: 9px;
}

.activity-card small {
  margin-top: 3px;
  color: #56687e;
  font-size: 7px;
}

.activity-card time {
  margin-left: auto;
  color: #475970;
  font-size: 7px;
}

.event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.event-dot.success { background: var(--green); box-shadow: 0 0 7px var(--green); }
.event-dot.blue { background: var(--blue-bright); box-shadow: 0 0 7px var(--blue-bright); }
.event-dot.muted { background: #485a70; }

.content-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 27px;
}

.content-intro h3 {
  margin: 10px 0 6px;
  font: 600 25px var(--font-display);
}

.content-intro p {
  margin: 0;
  color: #708197;
  font-size: 10px;
}

.step-badge {
  padding: 7px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  color: #65adf0;
  background: rgba(17, 82, 161, 0.1);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bot-list-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 27px;
}

.client-bots-list {
  display: grid;
  gap: 12px;
}

.bot-list-card .subscription-status {
  display: inline-flex;
  margin-bottom: 8px;
}

.subscription-status.awaiting_invite,
.subscription-status.starting {
  border-color: rgba(60, 151, 244, 0.3);
  color: #69b5fb;
  background: rgba(37, 116, 207, 0.1);
}

.subscription-status.template_unavailable,
.subscription-status.token_invalid,
.subscription-status.invalid_id,
.subscription-status.offline {
  border-color: rgba(240, 90, 112, 0.28);
  color: #ff7e91;
  background: rgba(210, 54, 78, 0.09);
}

.bot-list-main {
  flex: 1;
}

.bot-list-main h3 {
  margin: 10px 0 5px;
  font: 600 17px var(--font-display);
}

.bot-list-main p {
  margin: 0;
  color: #65768b;
  font-size: 9px;
}

.bot-list-info {
  display: flex;
  gap: 45px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.bot-list-info small,
.bot-list-info strong {
  display: block;
}

.bot-list-info small {
  margin-bottom: 6px;
  color: #53657b;
  font-size: 7px;
  text-transform: uppercase;
}

.bot-list-info strong {
  font-size: 9px;
}

.configuration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 15px;
}

.configuration-form {
  padding: 25px;
}

.security-notice {
  display: flex;
  gap: 13px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid rgba(47, 145, 255, 0.2);
  border-radius: 7px;
  background: rgba(16, 74, 143, 0.08);
}

.security-notice svg {
  flex: 0 0 auto;
  width: 20px;
  color: #52adff;
}

.security-notice strong {
  display: block;
  font-size: 9px;
}

.security-notice p {
  margin: 4px 0 0;
  color: #63778f;
  font-size: 8px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.configuration-form label > span,
.checkout-card label > span {
  display: block;
  margin-bottom: 8px;
  color: #c1d0e1;
  font-size: 9px;
  font-weight: 600;
}

.configuration-form input,
.configuration-form select,
.checkout-card input {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  outline: none;
  border: 1px solid rgba(106, 145, 190, 0.18);
  border-radius: 6px;
  color: #e6f1ff;
  background: #060c16;
  font-size: 10px;
  transition: 0.2s;
}

.configuration-form input:focus,
.configuration-form select:focus,
.checkout-card input:focus {
  border-color: rgba(52, 151, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.09);
}

.configuration-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #66819f 50%),
    linear-gradient(135deg, #66819f 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 18px,
    calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.configuration-form select:disabled {
  color: #51647a;
  cursor: not-allowed;
}

.configuration-form input.invalid {
  border-color: rgba(255, 86, 106, 0.65);
}

.configuration-form label > small {
  display: block;
  margin-top: 6px;
  color: #4d6077;
  font-size: 7px;
  line-height: 1.45;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 42px;
}

.password-field button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  color: #60748c;
  background: none;
  cursor: pointer;
}

.password-field svg {
  width: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 20px;
  color: #71849a;
  font-size: 8px;
  line-height: 1.5;
}

.checkbox-label input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.checkbox-label span {
  margin: 0 !important;
  color: #71849a !important;
  font-size: 8px !important;
  font-weight: 400 !important;
}

.form-feedback {
  min-height: 16px;
  margin-top: 10px;
  color: #ff7084;
  font-size: 8px;
}

.activation-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 4px 0 17px;
  padding: 14px;
  border: 1px solid rgba(61, 213, 155, 0.24);
  border-radius: 8px;
  background: rgba(35, 163, 111, 0.07);
}

.activation-result[hidden] {
  display: none;
}

.activation-result strong {
  color: #58dba4;
  font-size: 9px;
}

.activation-result p {
  margin: 4px 0 0;
  color: #71869d;
  font-size: 8px;
  line-height: 1.5;
}

.activation-result .button {
  flex: 0 0 auto;
  min-height: 37px;
  padding: 0 13px;
  font-size: 8px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.form-actions .button {
  min-height: 39px;
  padding: 0 16px;
  font-size: 9px;
}

.configuration-help {
  align-self: start;
  padding: 25px 22px;
}

.help-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(45, 147, 255, 0.38);
  border-radius: 8px;
  color: #63b5ff;
  background: rgba(25, 101, 198, 0.12);
  font: 600 13px var(--font-display);
}

.configuration-help h3 {
  margin: 0 0 20px;
  font: 600 14px var(--font-display);
}

.configuration-help ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.configuration-help li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.configuration-help li span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: #5faefa;
  font-size: 7px;
}

.configuration-help p {
  margin: 2px 0 0;
  color: #66788e;
  font-size: 8px;
  line-height: 1.5;
}

.configuration-help strong {
  color: #a6b7ca;
}

.configuration-help a {
  color: #5caaf2;
  font-size: 8px;
  font-weight: 600;
}

.billing-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

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

.billing-message,
.billing-empty {
  padding: 18px;
  border: 1px dashed rgba(81, 151, 230, 0.25);
  border-radius: 8px;
  color: #61758d;
  background: rgba(7, 15, 28, 0.72);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.subscription-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
}

.subscription-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.subscription-card-meta span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #71869f;
  background: rgba(9, 22, 40, 0.72);
  font-size: 7px;
}

.subscription-card-meta .subscription-vip-badge {
  border-color: rgba(143, 101, 255, 0.34);
  color: #bca6ff;
  background: rgba(112, 67, 224, 0.1);
}

.subscription-status {
  justify-self: end;
  padding: 6px 8px;
  border: 1px solid rgba(61, 213, 155, 0.22);
  border-radius: 5px;
  color: #49d59b;
  background: rgba(38, 186, 128, 0.08);
  font-size: 7px;
  font-weight: 700;
}

.subscription-status.payment_due {
  border-color: rgba(246, 177, 62, 0.28);
  color: #ffc35c;
  background: rgba(210, 137, 20, 0.09);
}

.subscription-status.suspended,
.subscription-status.cancelled {
  border-color: rgba(240, 90, 112, 0.28);
  color: #ff7e91;
  background: rgba(210, 54, 78, 0.09);
}

.subscription-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.subscription-actions .button {
  min-height: 37px;
  padding: 0 15px;
  font-size: 8px;
}

.subscription-vip-buy {
  min-height: 37px;
  padding: 0 13px;
  border: 1px solid rgba(142, 104, 255, 0.34);
  border-radius: 7px;
  color: #c3b0ff;
  background: rgba(104, 67, 216, 0.1);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.subscription-vip-buy:hover {
  border-color: rgba(170, 139, 255, 0.58);
  color: #e2d8ff;
  transform: translateY(-1px);
}

.subscription-cancel {
  min-height: 37px;
  padding: 0 13px;
  border: 1px solid rgba(235, 78, 102, 0.24);
  border-radius: 7px;
  color: #df7183;
  background: rgba(171, 43, 62, 0.07);
  font-size: 8px;
  cursor: pointer;
}

.billing-next-note,
.billing-due-note {
  color: #667b93;
  font-size: 7px;
  line-height: 1.5;
}

.billing-due-note {
  color: #d9a84d;
}

.billing-grace-note {
  color: #647991;
  font-size: 7px;
}

.current-plan-card,
.payment-method-card {
  min-height: 210px;
  padding: 27px;
}

.current-plan-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.current-plan-card h3 {
  margin: 11px 0 7px;
  font: 600 22px var(--font-display);
}

.current-plan-card p {
  color: #66788e;
  font-size: 9px;
}

.billing-price {
  text-align: right;
}

.billing-price strong {
  display: block;
  font: 600 24px var(--font-display);
}

.billing-price small {
  color: #5d7088;
  font-size: 8px;
}

.current-plan-card .button {
  justify-self: start;
  min-height: 38px;
  font-size: 9px;
}

.payment-method-card {
  display: flex;
  flex-direction: column;
}

.pix-payment-mini {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 105px;
  margin: 17px 0;
  padding: 15px;
  border: 1px solid rgba(61, 149, 255, 0.3);
  border-radius: 9px;
  background:
    radial-gradient(circle at 100% 0, rgba(39, 221, 171, 0.11), transparent 42%),
    linear-gradient(135deg, #0b2845, #081525);
}

.pix-payment-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(65, 224, 180, 0.32);
  border-radius: 11px;
  color: #54e1b7;
  background: rgba(31, 191, 147, 0.1);
  font: 700 10px var(--font-display);
}

.pix-payment-mini strong,
.pix-payment-mini small {
  display: block;
}

.pix-payment-mini strong {
  font: 600 11px var(--font-display);
}

.pix-payment-mini small {
  margin-top: 5px;
  color: #698098;
  font-size: 7px;
  line-height: 1.4;
}

.pix-payment-mini i {
  padding: 5px 7px;
  border: 1px solid rgba(61, 213, 155, 0.22);
  border-radius: 4px;
  color: #49d59b;
  background: rgba(38, 186, 128, 0.08);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.credit-card-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
  margin: 17px 0;
  padding: 15px;
  border: 1px solid rgba(61, 149, 255, 0.3);
  border-radius: 9px;
  background: linear-gradient(135deg, #0d3567, #0a172a);
}

.credit-card-mini span {
  align-self: flex-end;
  font-weight: 800;
  font-style: italic;
}

.credit-card-mini strong {
  font: 500 13px var(--font-display);
  letter-spacing: 0.12em;
}

.credit-card-mini small {
  color: #7188a5;
  font-size: 7px;
}

.payment-method-card button {
  align-self: flex-start;
  padding: 0;
  border: 0;
  color: #5aa9f4;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.invoice-card {
  margin-top: 14px;
  padding: 23px;
}

.invoice-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.7fr 0.7fr auto;
  align-items: center;
  min-height: 53px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  color: #7c8ca0;
  font-size: 8px;
}

.invoice-row-highlight {
  border-radius: 14px;
  padding-inline: 14px;
  background: rgba(42, 166, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(42, 166, 255, 0.28);
}

.invoice-row strong {
  color: #b4c4d7;
}

.invoice-row em {
  color: #3dcc91;
  font-style: normal;
}

.invoice-row button {
  border: 0;
  color: #5ea9ef;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.invoice-status {
  font-style: normal;
}

.invoice-status.pending { color: #ffc35c; }
.invoice-status.overdue { color: #ff7e91; }
.invoice-status.cancelled { color: #77889d; }
.invoice-status.paid { color: #3dcc91; }

.invoice-pay-button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-bright) !important;
  border-radius: 5px;
  background: rgba(22, 99, 194, 0.12) !important;
  font-weight: 700;
}

.sales-page-intro {
  align-items: center;
}

.sales-instance-selector {
  min-width: 205px;
}

.sales-instance-selector > span {
  display: block;
  margin-bottom: 7px;
  color: #53667d;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sales-instance-selector select {
  width: 100%;
  height: 39px;
  padding: 0 32px 0 11px;
  outline: none;
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  color: #c5d7e9;
  background: #07101c;
  font-size: 9px;
  cursor: pointer;
}

.sales-access-message {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid rgba(238, 167, 68, 0.24);
  border-radius: 8px;
  color: #dba150;
  background: rgba(218, 139, 31, 0.07);
  font-size: 9px;
  line-height: 1.6;
}

.sales-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.sales-metric-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 16, 29, 0.9);
}

.sales-metric-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 9px;
  font: 700 9px var(--font-display);
}

.sales-metric-icon.blue { color: #62b6ff; background: rgba(24, 113, 240, 0.13); }
.sales-metric-icon.cyan { color: #48ddfa; background: rgba(28, 202, 235, 0.11); }
.sales-metric-icon.purple { color: #a197ff; background: rgba(120, 101, 239, 0.11); }
.sales-metric-icon.green { color: #4fe0a4; background: rgba(36, 195, 134, 0.1); }

.sales-metric-grid small,
.sales-metric-grid strong,
.sales-metric-grid em {
  display: block;
}

.sales-metric-grid small {
  color: #67798e;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sales-metric-grid strong {
  margin: 6px 0 4px;
  font: 600 17px var(--font-display);
  white-space: nowrap;
}

.sales-metric-grid em {
  color: #4f6279;
  font-size: 7px;
  font-style: normal;
}

.sales-metric-grid em b {
  color: #6f849d;
  font-weight: 600;
}

.sales-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  gap: 14px;
  margin-bottom: 14px;
}

.sales-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 16, 29, 0.9);
}

.sales-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sales-panel-heading h3 {
  margin: 6px 0 0;
  font: 600 14px var(--font-display);
}

.sales-chart-total {
  text-align: right;
}

.sales-chart-total span,
.sales-chart-total strong {
  display: block;
}

.sales-chart-total span {
  color: #52657b;
  font-size: 7px;
  text-transform: uppercase;
}

.sales-chart-total strong {
  margin-top: 5px;
  color: #d67485;
  font-size: 10px;
}

.sales-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 185px;
  padding-top: 10px;
  border-bottom: 1px solid rgba(98, 143, 194, 0.13);
  background-image: linear-gradient(rgba(78, 123, 174, 0.07) 1px, transparent 1px);
  background-size: 100% 25%;
}

.sales-chart-column {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
  height: 100%;
}

.sales-chart-column i {
  width: 100%;
  min-height: 2px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #1462dc, #45c5ff);
  box-shadow: 0 0 12px rgba(39, 141, 255, 0.12);
  transition: 0.25s;
}

.sales-chart-column:hover i {
  filter: brightness(1.25);
}

.sales-chart-column span {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: calc(var(--bar-height, 0%) + 8px);
  display: none;
  min-width: 82px;
  padding: 6px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  color: #bbd5ec;
  background: #081321;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  font-size: 7px;
  text-align: center;
  transform: translateX(50%);
}

.sales-chart-column:hover span {
  display: block;
}

.sales-summary-ring {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 6px auto 21px;
  border: 9px solid rgba(48, 146, 255, 0.12);
  border-top-color: #2d98ff;
  border-right-color: #2d98ff;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(31, 128, 242, 0.11);
  transform: rotate(-30deg);
}

.sales-summary-ring > div {
  text-align: center;
  transform: rotate(30deg);
}

.sales-summary-ring strong,
.sales-summary-ring small {
  display: block;
}

.sales-summary-ring strong {
  font: 600 22px var(--font-display);
}

.sales-summary-ring small {
  margin-top: 4px;
  color: #5c7088;
  font-size: 7px;
  text-transform: uppercase;
}

.sales-summary-lines > div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid rgba(101, 142, 188, 0.09);
  color: #65788e;
  font-size: 8px;
}

.sales-summary-lines strong {
  color: #afc1d4;
}

.sales-history-panel {
  overflow-x: auto;
}

.sales-panel-heading > span {
  color: #52657b;
  font-size: 7px;
}

.sales-history-head,
.sales-history-row {
  display: grid;
  grid-template-columns: 1.35fr 1.2fr 0.7fr 0.65fr 0.65fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-width: 700px;
}

.sales-history-head {
  min-height: 35px;
  color: #4e6076;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sales-history-row {
  min-height: 54px;
  border-top: 1px solid rgba(100, 141, 188, 0.1);
  color: #71839a;
  font-size: 8px;
}

.sales-history-row strong,
.sales-history-row small {
  display: block;
}

.sales-history-row strong {
  color: #b9cada;
  font-size: 9px;
}

.sales-history-row small {
  margin-top: 3px;
  color: #506278;
  font-size: 7px;
}

.sale-status {
  justify-self: start;
  padding: 5px 7px;
  border-radius: 4px;
  font-size: 7px;
}

.sale-status.approved { color: #3ed397; background: rgba(42, 196, 135, 0.09); }
.sale-status.refunded { color: #e3a44b; background: rgba(212, 137, 35, 0.09); }
.sale-status.cancelled { color: #f06a7d; background: rgba(222, 75, 96, 0.09); }

.sales-empty {
  display: grid;
  place-items: center;
  min-height: 90px;
  color: #53667d;
  font-size: 8px;
}

.checkout-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(455px, calc(100% - 32px));
  padding: 37px;
  border: 1px solid rgba(60, 149, 255, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 117, 242, 0.14), transparent 35%),
    #080f1c;
  box-shadow: var(--shadow);
  transform: translate(-50%, -47%) scale(0.98);
  transition: 0.3s;
}

.checkout-modal.open .checkout-card {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  color: #718197;
  font-size: 25px;
}

.checkout-card h2 {
  margin: 14px 0 10px;
  font: 600 25px var(--font-display);
  letter-spacing: -0.03em;
}

.checkout-card h2 span {
  color: #48a7ff;
}

.checkout-card > p {
  margin: 0;
  color: #718197;
  font-size: 10px;
  line-height: 1.6;
}

.checkout-summary {
  margin: 23px 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #060c16;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: #6a7c92;
  font-size: 9px;
}

.checkout-summary strong {
  color: #c9daeb;
}

.checkout-card label {
  display: block;
  margin-bottom: 14px;
}

.checkout-card .button {
  width: 100%;
  margin-top: 7px;
}

.checkout-footnote {
  display: block;
  margin-top: 15px;
  color: #485b72;
  font-size: 7px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 285px;
  padding: 15px;
  border: 1px solid rgba(53, 218, 155, 0.3);
  border-radius: 9px;
  background: #091821;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #3fe39b;
  background: rgba(46, 208, 144, 0.12);
}

.toast strong,
.toast p {
  display: block;
}

.toast strong {
  font-size: 10px;
}

.toast p {
  margin: 3px 0 0;
  color: #64768c;
  font-size: 8px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: #c2d2e5;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
    margin-left: 20px;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .float-card-sales {
    right: -60px;
  }

  .float-card-security {
    right: -25px;
  }

  .configuration-layout {
    grid-template-columns: 1fr;
  }

  .sales-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .configuration-help {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 7, 17, 0.98);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 5px;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 8px;
  }

  .header-actions .text-button {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 140px 22px 110px;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(49px, 13vw, 68px);
  }

  .hero-copy > p {
    margin: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 45px;
  }

  .float-card-sales {
    right: 3%;
  }

  .float-card-security {
    right: 7%;
  }

  .trust-strip {
    gap: 18px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: auto;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .process-line::before {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    gap: 20px;
    padding: 35px 20px;
    text-align: center;
  }

  .dashboard-panel {
    inset: 8px;
    grid-template-columns: 72px 1fr;
  }

  .dashboard-sidebar {
    padding: 18px 9px;
  }

  .dashboard-brand {
    justify-content: center;
    padding: 0 0 18px;
  }

  .dashboard-brand .brand > span:last-child,
  .sidebar-help,
  .sidebar-user div,
  .sidebar-user button,
  .dashboard-nav button {
    font-size: 0;
  }

  .dashboard-nav button {
    justify-content: center;
    padding: 0;
  }

  .dashboard-nav svg {
    width: 19px;
  }

  .sidebar-user {
    justify-content: center;
    padding: 14px 0 0;
  }

  .dashboard-view {
    padding: 20px;
  }

  .stats-grid,
  .dashboard-grid,
  .billing-grid,
  .billing-subscriptions {
    grid-template-columns: 1fr;
  }

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

  .welcome-banner {
    padding: 25px;
  }

  .health-score > span {
    display: none;
  }

  .bot-list-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .bot-list-info {
    flex-wrap: wrap;
    gap: 20px;
  }

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

@media (max-width: 560px) {
  .header-actions .button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 10px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 360px;
    transform: scale(0.84);
    margin: 10px -45px -25px;
  }

  .trust-strip {
    display: none;
  }

  .section {
    padding: 85px 20px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 36px;
  }

  .cta-section {
    padding: 90px 20px;
  }

  .dashboard-panel {
    inset: 0;
    display: block;
    border: 0;
    border-radius: 0;
  }

  .dashboard-sidebar {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    width: 230px;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
  }

  .dashboard-sidebar.mobile-open {
    transform: translateX(0);
  }

  .dashboard-brand {
    justify-content: space-between;
  }

  .dashboard-brand .brand > span:last-child,
  .dashboard-nav button,
  .sidebar-user div {
    font-size: inherit;
  }

  .dashboard-close {
    display: block;
  }

  .dashboard-nav button {
    justify-content: flex-start;
    padding: 0 13px;
  }

  .dashboard-header {
    min-height: 70px;
    padding: 0 15px;
  }

  .dashboard-header::before {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    content: "☰";
    border: 1px solid var(--line);
    border-radius: 6px;
    color: #8294aa;
    cursor: pointer;
  }

  .dashboard-header > div:first-child {
    margin-right: auto;
  }

  .dashboard-header small,
  .notification-button {
    display: none;
  }

  .dashboard-header h2 {
    margin: 0;
    font-size: 16px;
  }

  .dashboard-header-actions .button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 9px;
  }

  .dashboard-view {
    padding: 15px;
  }

  .welcome-banner {
    display: block;
  }

  .health-score {
    margin-top: 20px;
  }

  .stats-grid article {
    min-height: 77px;
  }

  .bot-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bot-metrics div {
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bot-identity {
    flex-wrap: wrap;
  }

  .bot-identity button {
    width: 100%;
    margin: 5px 0 0;
  }

  .content-intro {
    align-items: flex-start;
    gap: 15px;
  }

  .sales-page-intro {
    display: block;
  }

  .sales-instance-selector {
    margin-top: 17px;
  }

  .sales-metric-grid {
    grid-template-columns: 1fr;
  }

  .content-intro .button {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 9px;
  }

  .content-intro h3 {
    font-size: 21px;
  }

  .bot-list-card {
    padding: 20px;
  }

  .bot-list-main {
    flex-basis: calc(100% - 90px);
  }

  .bot-list-card > .button {
    width: 100%;
  }

  .configuration-form {
    padding: 17px;
  }

  .form-actions .button {
    flex: 1;
  }

  .current-plan-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .subscription-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .subscription-status {
    align-self: flex-start;
  }

  .subscription-actions {
    width: 100%;
  }

  .billing-cycle-options {
    grid-template-columns: 1fr;
  }

  .billing-price {
    text-align: left;
  }

  .invoice-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .auth-card {
    width: calc(100% - 20px);
    padding: 28px 20px 22px;
  }

  .auth-brand h2 {
    font-size: 18px;
  }

  .auth-name-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .server-showcase-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-aura {
    position: fixed;
    z-index: 40;
    top: -190px;
    left: -190px;
    width: 380px;
    height: 380px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, rgba(37, 138, 255, 0.095), rgba(20, 92, 210, 0.035) 38%, transparent 70%);
    filter: blur(4px);
    transition: opacity 0.35s ease;
    will-change: translate;
  }

  .cursor-aura.visible {
    opacity: 1;
  }

  .mouse-reactive {
    position: relative;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    --mouse-lift: 0px;
    transform: perspective(950px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--mouse-lift));
    transform-style: preserve-3d;
    transition:
      transform 0.16s ease-out,
      border-color 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease;
    will-change: transform;
  }

  .mouse-reactive::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    content: "";
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle 150px at var(--mouse-x) var(--mouse-y),
      rgba(88, 178, 255, 0.16),
      rgba(26, 107, 230, 0.055) 42%,
      transparent 72%
    );
    transition: opacity 0.25s ease;
  }

  .mouse-reactive.mouse-active::after {
    opacity: 1;
  }

  .feature-card.mouse-reactive:hover,
  .price-card.mouse-reactive:hover {
    --mouse-lift: -5px;
    transform: perspective(950px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--mouse-lift));
  }

  .support-card.mouse-reactive:hover,
  .server-chip.mouse-reactive:hover,
  .sales-panel.mouse-reactive:hover,
  .sales-metric-grid article.mouse-reactive:hover,
  .bot-card.mouse-reactive:hover {
    --mouse-lift: -3px;
    transform: perspective(950px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--mouse-lift));
  }

  .mouse-magnetic {
    transition:
      translate 0.16s ease-out,
      transform 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.2s ease;
    will-change: translate;
  }

  .hero-visual {
    transition: translate 0.22s ease-out;
    will-change: translate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .process-line::before {
    transform: scaleX(1);
    transition: none;
  }
}

.terms-label a,
.checkout-terms a {
  color: #5eb5ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0, rgba(22, 111, 240, 0.13), transparent 34%),
    #030711;
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(151, 190, 255, 0.12);
  background: rgba(3, 7, 17, 0.88);
  backdrop-filter: blur(18px);
}

.legal-header .button {
  gap: 8px;
}

.legal-main {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 100px;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 75px;
  border-bottom: 1px solid var(--line);
}

.legal-grid {
  position: absolute;
  inset: 0 -50vw;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(rgba(33, 104, 190, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 104, 190, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.legal-hero > *:not(.legal-grid) {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 17px 0 16px;
  font: 700 clamp(48px, 7vw, 78px)/0.98 var(--font-display);
  letter-spacing: -0.055em;
}

.legal-hero h1 span {
  color: #309bff;
}

.legal-hero > p {
  max-width: 660px;
  margin: 0;
  color: #8393a9;
  font-size: 14px;
  line-height: 1.75;
}

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(8, 18, 34, 0.76);
}

.legal-update span {
  color: #5f7188;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-update strong {
  color: #bbdcff;
  font-size: 10px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  padding-top: 65px;
}

.legal-index {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 16, 30, 0.72);
}

.legal-index > span {
  color: #3e9cff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.legal-index nav {
  display: grid;
  gap: 2px;
  margin-top: 15px;
}

.legal-index a {
  padding: 9px 10px;
  border-radius: 5px;
  color: #718298;
  font-size: 10px;
  transition: 0.2s ease;
}

.legal-index a:hover {
  color: #dceeff;
  background: rgba(36, 127, 237, 0.12);
  transform: translateX(3px);
}

.legal-document section {
  position: relative;
  scroll-margin-top: 115px;
  padding: 0 0 48px 58px;
  border-bottom: 1px solid var(--line);
}

.legal-document section + section {
  padding-top: 48px;
}

.legal-number {
  position: absolute;
  top: 2px;
  left: 0;
  color: #2e91f3;
  font: 700 11px var(--font-display);
  letter-spacing: 0.1em;
}

.legal-document section + section .legal-number {
  top: 50px;
}

.legal-document h2 {
  margin: 0 0 18px;
  color: #f5faff;
  font: 600 25px var(--font-display);
  letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
  color: #8494a9;
  font-size: 13px;
  line-height: 1.85;
}

.legal-document p {
  margin: 0 0 13px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.legal-document li {
  position: relative;
  padding-left: 20px;
}

.legal-document li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: #2f9dff;
  box-shadow: 0 0 9px rgba(47, 157, 255, 0.72);
}

.legal-contact {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  color: #8bcaff;
  background: rgba(19, 83, 164, 0.11);
  font-size: 10px;
  font-weight: 700;
  transition: 0.2s ease;
}

.legal-contact:hover {
  border-color: #489df4;
  color: white;
  transform: translateY(-2px);
}

.legal-signature {
  display: grid;
  gap: 7px;
  margin: 42px 0 0 58px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(12, 37, 70, 0.72), rgba(5, 14, 27, 0.75));
}

.legal-signature span {
  color: #687b92;
  font-size: 10px;
}

.legal-signature strong {
  font: 600 15px var(--font-display);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: #526379;
  font-size: 9px;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a:hover {
  color: #7cbdff;
}

@media (max-width: 800px) {
  .legal-header {
    height: 70px;
    padding: 0 20px;
  }

  .legal-header .brand {
    font-size: 12px;
  }

  .legal-header .button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 8px;
  }

  .legal-main {
    width: min(100% - 36px, 720px);
  }

  .legal-hero {
    padding: 75px 0 55px;
  }

  .legal-layout {
    display: block;
    padding-top: 45px;
  }

  .legal-index {
    position: static;
    margin-bottom: 45px;
  }

  .legal-index nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .legal-header .brand > span:last-child {
    display: none;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-update {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .legal-index nav {
    grid-template-columns: 1fr;
  }

  .legal-document section,
  .legal-document section + section {
    padding-left: 42px;
  }

  .legal-document h2 {
    font-size: 21px;
  }

  .legal-signature {
    margin-left: 0;
  }

  .legal-footer {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.footer-admin-link {
  padding: 0;
  border: 0;
  color: #4f5e71;
  background: none;
  font-size: 9px;
  cursor: pointer;
}

.footer-admin-link:hover {
  color: #83bfff;
}

.admin-auth-modal,
.admin-shell {
  position: fixed;
  z-index: 60;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.admin-auth-modal.open,
.admin-shell.open {
  visibility: visible;
  opacity: 1;
}

.admin-login-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(410px, calc(100% - 32px));
  padding: 38px;
  border: 1px solid rgba(60, 149, 255, 0.32);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 117, 242, 0.16), transparent 34%),
    #080f1c;
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, -47%) scale(0.98);
  transition: 0.3s;
}

.admin-auth-modal.open .admin-login-card {
  transform: translate(-50%, -50%) scale(1);
}

.admin-lock {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 17px;
  border: 1px solid rgba(59, 157, 255, 0.42);
  border-radius: 13px;
  color: #66baff;
  background: rgba(19, 90, 184, 0.13);
  box-shadow: 0 0 28px rgba(30, 125, 244, 0.15);
}

.admin-lock svg {
  width: 25px;
}

.admin-login-card h2 {
  margin: 10px 0 8px;
  font: 600 24px var(--font-display);
}

.admin-login-card > p {
  margin: 0 0 23px;
  color: #6d7f95;
  font-size: 10px;
}

.admin-login-card form {
  text-align: left;
}

.admin-login-card label {
  display: block;
  margin-bottom: 14px;
}

.admin-login-card label > span,
.admin-form-card label > span,
.gateway-admin-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #bacbdd;
  font-size: 9px;
  font-weight: 600;
}

.admin-login-card input,
.admin-form-card input,
.gateway-admin-form input {
  width: 100%;
  height: 43px;
  padding: 0 13px;
  outline: none;
  border: 1px solid rgba(106, 145, 190, 0.2);
  border-radius: 6px;
  color: #e6f1ff;
  background: #050a13;
  font-size: 10px;
}

.admin-login-card input:focus,
.admin-form-card input:focus,
.gateway-admin-form input:focus {
  border-color: rgba(52, 151, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.09);
}

.admin-login-card .button {
  width: 100%;
  margin-top: 2px;
}

.admin-login-feedback,
.admin-form-feedback {
  min-height: 18px;
  color: #ff7185;
  font-size: 8px;
}

.admin-demo-button {
  display: block;
  margin: 14px auto 0;
  padding: 0;
  border: 0;
  color: #5daaf2;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.admin-login-card > small {
  display: block;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #4d6077;
  font-size: 7px;
  line-height: 1.5;
}

.admin-panel {
  position: absolute;
  z-index: 1;
  inset: 18px;
  display: grid;
  grid-template-columns: 228px 1fr;
  overflow: hidden;
  border: 1px solid rgba(70, 143, 234, 0.24);
  border-radius: 15px;
  background: #050a13;
  box-shadow: var(--shadow);
  transform: scale(0.98) translateY(10px);
  transition: 0.3s ease;
}

.admin-shell.open .admin-panel {
  transform: scale(1) translateY(0);
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  padding: 24px 17px 18px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #08101c, #050a12);
}

.admin-sidebar .dashboard-brand {
  padding: 0 5px 23px;
  border-bottom: 1px solid var(--line);
}

.admin-label {
  padding: 5px 7px;
  border: 1px solid rgba(46, 142, 255, 0.28);
  border-radius: 4px;
  color: #5cacfa;
  background: rgba(20, 90, 181, 0.11);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
}

.admin-nav button {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #718198;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.admin-nav button > span {
  display: grid;
  place-items: center;
  width: 20px;
  color: #557492;
  font-size: 13px;
}

.admin-nav button:hover,
.admin-nav button.active {
  border-color: rgba(45, 135, 255, 0.2);
  color: #d1e7ff;
  background: linear-gradient(90deg, rgba(19, 96, 211, 0.2), rgba(14, 55, 106, 0.05));
  box-shadow: inset 3px 0 0 #278dff;
}

.admin-environment {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(8, 18, 32, 0.8);
}

.admin-environment > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.admin-environment strong,
.admin-environment small {
  display: block;
}

.admin-environment strong {
  font-size: 8px;
}

.admin-environment small {
  margin-top: 3px;
  color: #52657c;
  font-size: 7px;
}

.admin-logout {
  margin-top: 10px;
  padding: 11px;
  border: 0;
  color: #64768c;
  background: transparent;
  font-size: 8px;
  cursor: pointer;
}

.admin-content {
  overflow-y: auto;
  background:
    radial-gradient(circle at 68% 0, rgba(13, 78, 170, 0.1), transparent 35%),
    #050a13;
}

.admin-header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 19, 0.88);
  backdrop-filter: blur(15px);
}

.admin-header small {
  color: #4f6279;
  font-size: 7px;
  letter-spacing: 0.16em;
}

.admin-header h2 {
  margin: 5px 0 0;
  font: 600 18px var(--font-display);
}

.admin-header > div:last-child {
  display: flex;
  align-items: center;
  gap: 17px;
}

.admin-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #60738a;
  font-size: 8px;
}

.admin-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.admin-panel-close {
  display: block;
}

.admin-view {
  display: none;
  padding: 26px 30px 40px;
  animation: view-in 0.3s ease;
}

.admin-view.active {
  display: block;
}

.admin-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 135px;
  padding: 27px 32px;
  border: 1px solid rgba(44, 138, 255, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 50%, rgba(18, 108, 238, 0.19), transparent 25%),
    linear-gradient(110deg, rgba(9, 26, 50, 0.95), rgba(7, 15, 28, 0.95));
}

.admin-welcome h3 {
  margin: 10px 0 7px;
  font: 600 23px var(--font-display);
}

.admin-welcome h3 span {
  color: #4eaeff;
}

.admin-welcome p,
.admin-page-intro p {
  margin: 0;
  color: #687a90;
  font-size: 9px;
}

.admin-period {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 12, 23, 0.62);
}

.admin-period span,
.admin-period strong {
  display: block;
}

.admin-period span {
  color: #53667d;
  font-size: 7px;
  text-transform: uppercase;
}

.admin-period strong {
  margin-top: 5px;
  font-size: 9px;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.admin-metric-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 91px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 16, 29, 0.9);
}

.admin-metric-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #65b5ff;
  background: rgba(23, 109, 229, 0.13);
  font: 600 11px var(--font-display);
}

.admin-metric-grid small,
.admin-metric-grid strong,
.admin-metric-grid em {
  display: block;
}

.admin-metric-grid small {
  color: #66788e;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-metric-grid strong {
  margin: 5px 0 3px;
  font: 600 18px var(--font-display);
}

.admin-metric-grid em {
  color: #4e6076;
  font-size: 7px;
  font-style: normal;
}

.admin-overview-grid,
.admin-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 16, 29, 0.9);
}

.admin-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}

.admin-card-heading h3,
.admin-form-section h3 {
  margin: 6px 0 0;
  font: 600 14px var(--font-display);
}

.admin-card-heading button {
  border: 0;
  color: #5ba9ef;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.admin-empty {
  display: grid;
  place-items: center;
  min-height: 95px;
  color: #53667d;
  font-size: 8px;
  text-align: center;
}

.rental-type-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 15px;
  margin-bottom: 17px;
}

.rental-type-row > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rental-type-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a9cff;
  box-shadow: 0 0 7px #3a9cff;
}

.rental-type-row span,
.rental-type-row strong {
  font-size: 9px;
}

.rental-type-row small {
  grid-column: 1 / -1;
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: #0d1929;
}

.rental-type-row small b {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #176bed, #4bc5ff);
}

.recent-order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(110, 148, 192, 0.08);
}

.recent-order-row strong {
  font-size: 9px;
}

.recent-order-row span,
.recent-order-row small {
  color: #607289;
  font-size: 7px;
}

.recent-order-row em {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 5px 7px;
  border-radius: 4px;
  color: #40cf94;
  background: rgba(42, 196, 135, 0.09);
  font-size: 7px;
  font-style: normal;
}

.admin-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.admin-page-intro h3 {
  margin: 10px 0 6px;
  font: 600 24px var(--font-display);
}

.gateway-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 175, 68, 0.24);
  border-radius: 5px;
  color: #e5a549;
  background: rgba(212, 137, 35, 0.08);
  font-size: 8px;
}

.gateway-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.gateway-status.connected {
  border-color: rgba(49, 214, 151, 0.25);
  color: #3bd397;
  background: rgba(40, 190, 131, 0.08);
}

.admin-table-card {
  padding: 0 22px;
  overflow-x: auto;
}

.admin-table-head,
.admin-table-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.55fr 0.75fr 0.65fr 1fr;
  gap: 15px;
  align-items: center;
  min-width: 900px;
}

.admin-table-head {
  min-height: 46px;
  color: #52647a;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-table-row {
  min-height: 61px;
  border-top: 1px solid var(--line);
  color: #73849a;
  font-size: 8px;
}

.admin-table-row strong,
.admin-table-row small {
  display: block;
}

.admin-table-row strong {
  color: #c1d1e2;
  font-size: 9px;
}

.admin-table-row small {
  margin-top: 3px;
  color: #506278;
  font-size: 7px;
}

.admin-status {
  justify-self: start;
  padding: 5px 7px;
  border-radius: 4px;
  font-size: 7px;
}

.admin-status.paid { color: #3ed397; background: rgba(42, 196, 135, 0.09); }
.admin-status.pending { color: #e3a44b; background: rgba(212, 137, 35, 0.09); }
.admin-status.failed { color: #f06a7d; background: rgba(222, 75, 96, 0.09); }
.admin-status.bot-online { color: #3ed397; background: rgba(42, 196, 135, 0.09); }
.admin-status.bot-offline { color: #9aabc0; background: rgba(117, 137, 161, 0.1); }
.admin-status.bot-expired { color: #e3a44b; background: rgba(212, 137, 35, 0.09); }
.admin-status.bot-token_invalid,
.admin-status.bot-invalid_id { color: #f06a7d; background: rgba(222, 75, 96, 0.09); }
.admin-status.bot-awaiting_configuration { color: #65aff3; background: rgba(45, 136, 231, 0.1); }
.admin-status.bot-admin_stopped { color: #e3a44b; background: rgba(212, 137, 35, 0.09); }

.admin-bulk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -10px 0 13px;
  padding: 11px 13px;
  border: 1px solid rgba(79, 145, 220, 0.15);
  border-radius: 8px;
  color: #60748c;
  background: rgba(8, 17, 31, 0.72);
  font-size: 8px;
}

.admin-bulk-actions,
.admin-bot-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.admin-bulk-actions button,
.admin-bot-actions button {
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(72, 158, 245, 0.28);
  border-radius: 5px;
  color: #72baff;
  background: rgba(28, 105, 206, 0.09);
  font: 600 7px var(--font-body);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-bulk-actions button:hover,
.admin-bot-actions button:hover {
  border-color: rgba(87, 177, 255, 0.58);
  color: #b8ddff;
  background: rgba(35, 126, 239, 0.16);
  transform: translateY(-1px);
}

.admin-bulk-actions button.danger,
.admin-bot-actions button.danger {
  border-color: rgba(231, 91, 112, 0.28);
  color: #f17b8d;
  background: rgba(205, 54, 77, 0.08);
}

.admin-bulk-actions button.danger:hover,
.admin-bot-actions button.danger:hover {
  border-color: rgba(241, 105, 125, 0.55);
  color: #ffb3be;
  background: rgba(213, 58, 82, 0.15);
}

.admin-bulk-actions button:disabled,
.admin-bot-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.admin-form-card .plan-label {
  display: block;
  margin-bottom: 19px;
}

.admin-form-card > label {
  display: block;
  margin-bottom: 15px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-form-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.admin-form-card fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 2px 0 15px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.admin-form-card legend {
  padding: 0 5px;
  color: #607289;
  font-size: 8px;
}

.admin-form-card fieldset label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7c8da2;
  font-size: 8px;
}

.admin-form-card fieldset input {
  width: 13px;
  height: 13px;
  accent-color: var(--blue);
}

.admin-form-card .button {
  width: 100%;
  min-height: 42px;
}

.coupon-admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 13px;
  align-items: center;
  min-height: 57px;
  border-top: 1px solid var(--line);
}

.coupon-admin-row:first-child {
  border-top: 0;
}

.coupon-admin-row strong,
.coupon-admin-row small {
  display: block;
}

.coupon-admin-row strong {
  color: #bcd0e5;
  font: 600 10px var(--font-display);
  letter-spacing: 0.06em;
}

.coupon-admin-row small {
  margin-top: 4px;
  color: #53667d;
  font-size: 7px;
}

.coupon-admin-row > span {
  color: #45c4ff;
  font-size: 9px;
  font-weight: 700;
}

.coupon-admin-row button {
  border: 0;
  color: #d96978;
  background: none;
  font-size: 8px;
  cursor: pointer;
}

.gateway-admin-form {
  padding: 0;
  overflow: hidden;
}

.admin-form-section {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.admin-form-section > div:first-child p {
  margin: 8px 0 0;
  color: #5f7187;
  font-size: 8px;
  line-height: 1.55;
}

.admin-security-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 28px;
  padding: 13px;
  border: 1px solid rgba(52, 151, 255, 0.18);
  border-radius: 7px;
  color: #60758e;
  background: rgba(18, 78, 148, 0.07);
  font-size: 8px;
}

.admin-security-note svg {
  flex: 0 0 auto;
  width: 19px;
  color: #54adff;
}

.gateway-admin-form > .admin-form-feedback {
  margin: 0 28px;
}

.gateway-admin-form > .button {
  min-height: 42px;
  margin: 0 28px 25px;
}

.checkout-wide {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow-y: auto;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
  animation: view-in 0.3s ease;
}

.checkout-heading,
.pix-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 23px;
  border-bottom: 1px solid var(--line);
}

.checkout-heading h2,
.pix-heading h2 {
  margin: 7px 0 5px;
  font: 600 23px var(--font-display);
}

.checkout-heading p,
.pix-heading p {
  margin: 0;
  color: #687a90;
  font-size: 9px;
}

.secure-checkout-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(51, 211, 150, 0.23);
  border-radius: 5px;
  color: #44ce97;
  background: rgba(38, 188, 130, 0.07);
  font-size: 8px;
}

.secure-checkout-badge svg {
  width: 14px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.checkout-details {
  padding: 27px 31px;
  border-right: 1px solid var(--line);
}

.checkout-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-section:first-child {
  padding-top: 0;
}

.checkout-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.checkout-section-title > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  color: #59adfa;
  background: rgba(20, 87, 176, 0.11);
  font-size: 8px;
  font-weight: 700;
}

.checkout-section-title h3 {
  margin: 0;
  font: 600 12px var(--font-display);
}

.checkout-section-title p {
  margin: 3px 0 0;
  color: #586a80;
  font-size: 7px;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-details label {
  display: block;
  margin-bottom: 12px;
}

.checkout-details label > span,
.copy-pix-label > span {
  display: block;
  margin-bottom: 7px;
  color: #b9cadd;
  font-size: 8px;
  font-weight: 600;
}

.checkout-details input,
.copy-pix-label input {
  width: 100%;
  height: 41px;
  padding: 0 12px;
  outline: none;
  border: 1px solid rgba(106, 145, 190, 0.19);
  border-radius: 6px;
  color: #e3effd;
  background: #050a13;
  font-size: 9px;
}

.checkout-details input:focus {
  border-color: rgba(52, 151, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.09);
}

.coupon-control {
  display: flex;
  gap: 8px;
}

.coupon-control input {
  text-transform: uppercase;
}

.coupon-control button {
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  color: #65b3fa;
  background: rgba(18, 77, 148, 0.13);
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
}

.coupon-feedback {
  min-height: 15px;
  margin-top: 7px;
  color: #52667d;
  font-size: 7px;
}

.coupon-feedback.success {
  color: #42cf96;
}

.coupon-feedback.error {
  color: #f06d80;
}

.billing-cycle-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.billing-cycle-options label {
  margin: 0;
  cursor: pointer;
}

.billing-cycle-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.billing-cycle-options label > span {
  display: grid;
  gap: 4px;
  min-height: 58px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(106, 145, 190, 0.19);
  border-radius: 7px;
  color: #8ca0b8;
  background: #050a13;
  transition: 0.2s ease;
}

.billing-cycle-options strong {
  color: #c7d8e9;
  font-size: 9px;
}

.billing-cycle-options small {
  color: #5a6e86;
  font-size: 7px;
}

.billing-cycle-options input:checked + span {
  border-color: rgba(53, 151, 255, 0.68);
  color: white;
  background: rgba(20, 89, 181, 0.15);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.07);
}

.sales-vip-option {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 13px;
  border: 1px solid rgba(135, 90, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(112, 66, 232, 0.13), transparent 45%),
    #050a13;
  cursor: pointer;
  transition: 0.2s ease;
}

.sales-vip-option:has(input:checked) {
  border-color: rgba(139, 99, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(104, 61, 213, 0.08);
}

.sales-vip-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sales-vip-mark {
  display: grid !important;
  place-items: center;
  width: 39px;
  height: 39px;
  margin: 0 !important;
  border: 1px solid rgba(150, 111, 255, 0.42);
  border-radius: 9px;
  color: #bca6ff !important;
  background: rgba(115, 72, 226, 0.13);
  font: 700 9px var(--font-display) !important;
  letter-spacing: 0.08em;
}

.sales-vip-copy {
  display: block !important;
  margin: 0 !important;
}

.sales-vip-copy strong,
.sales-vip-copy small {
  display: block;
}

.sales-vip-copy strong {
  color: #d8e5f4;
  font-size: 9px;
}

.sales-vip-copy small {
  margin-top: 4px;
  color: #687c94;
  font-size: 7px;
  line-height: 1.45;
}

.sales-vip-price {
  color: #bca6ff;
  font-size: 9px;
  white-space: nowrap;
}

.vip-addon-line {
  color: #a995eb;
}

.vip-addon-line strong {
  color: #bca6ff;
}

.payment-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 14px;
  border: 1px solid rgba(53, 151, 255, 0.42);
  border-radius: 7px;
  background: rgba(16, 73, 142, 0.1);
}

.payment-option > input {
  display: none;
}

.pix-symbol {
  display: grid !important;
  place-items: center;
  width: 37px;
  height: 37px;
  margin: 0 !important;
  border-radius: 7px;
  color: #52e2c3 !important;
  background: rgba(36, 202, 169, 0.11);
  font: 700 9px var(--font-display) !important;
}

.payment-option > span:nth-child(3) {
  margin: 0 !important;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option strong {
  color: #c9d9ea;
  font-size: 9px;
}

.payment-option small {
  margin-top: 4px;
  color: #5c6e84;
  font-size: 7px;
}

.payment-option i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-left: auto;
  border-radius: 50%;
  color: white;
  background: #258bfb;
  font-size: 8px;
  font-style: normal;
}

.order-summary {
  padding: 29px 27px;
  background: rgba(5, 11, 21, 0.75);
}

.order-product {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin: 18px 0 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.9);
}

.order-product-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(58, 153, 255, 0.35);
  border-radius: 9px;
  color: #64b7ff;
  background: rgba(19, 90, 184, 0.13);
}

.order-product-icon svg {
  width: 22px;
}

.order-product div strong,
.order-product div small {
  display: block;
}

.order-product div strong {
  font-size: 9px;
}

.order-product div small {
  margin-top: 4px;
  color: #566a81;
  font-size: 7px;
}

.order-product > strong {
  font: 600 10px var(--font-display);
}

.order-description {
  min-height: 35px;
  color: #61748a;
  font-size: 8px;
  line-height: 1.55;
}

.order-lines {
  margin-top: 17px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-lines > div,
.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-lines > div {
  margin: 8px 0;
  color: #6c7e93;
  font-size: 8px;
}

.order-lines strong {
  color: #aebfd2;
}

.discount-line {
  color: #40c993 !important;
}

.discount-line em {
  color: #4e806d;
  font-size: 7px;
  font-style: normal;
}

.discount-line strong {
  color: #40c993;
}

.order-total {
  padding: 17px 0;
}

.order-total > span {
  color: #a4b5c8;
  font-size: 9px;
  font-weight: 600;
}

.order-total > div {
  text-align: right;
}

.order-total strong,
.order-total small {
  display: block;
}

.order-total strong {
  font: 700 21px var(--font-display);
}

.order-total small {
  margin-top: 3px;
  color: #53667d;
  font-size: 7px;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #63758b;
  font-size: 7px;
  line-height: 1.45;
}

.checkout-terms input {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--blue);
}

.checkout-error {
  min-height: 16px;
  margin-top: 8px;
  color: #f06d80;
  font-size: 7px;
}

.checkout-pay-button {
  width: 100%;
  min-height: 46px;
}

.checkout-pay-button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.gateway-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  color: #4f6177;
  font-size: 7px;
}

.gateway-signature strong {
  color: #58b9ff;
  font: 700 9px var(--font-display);
  letter-spacing: 0.08em;
}

.pix-heading {
  justify-content: flex-start;
  gap: 14px;
}

.pix-status-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 11px;
  color: #58e1c5;
  background: rgba(37, 198, 166, 0.11);
  font-size: 20px;
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 8px;
}

.payment-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.payment-status.pending {
  color: #e4a54c;
  background: rgba(215, 143, 41, 0.09);
}

.payment-status.paid {
  color: #40d398;
  background: rgba(41, 195, 133, 0.09);
}

.payment-status.failed {
  color: #ed6c7e;
  background: rgba(215, 69, 91, 0.09);
}

.pix-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 450px;
}

.qr-code-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: rgba(4, 10, 18, 0.68);
}

.qr-code-wrap {
  width: min(290px, 100%);
  padding: 15px;
  border: 1px solid rgba(69, 165, 255, 0.28);
  border-radius: 13px;
  background: white;
  box-shadow: 0 0 45px rgba(28, 125, 245, 0.14);
}

.qr-code-wrap img {
  display: block;
  width: 100%;
}

.pix-expiration {
  margin-top: 16px;
  color: #607289;
  font-size: 8px;
}

.pix-expiration strong {
  color: #aebfd1;
  font: 600 10px var(--font-display);
}

.pix-instructions {
  padding: 38px;
}

.pix-order-data {
  margin: 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 13, 24, 0.85);
}

.pix-order-data > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: #61738a;
  font-size: 8px;
}

.pix-order-data > div:last-child {
  border-bottom: 0;
}

.pix-order-data strong {
  color: #b6c7d9;
}

.copy-pix-label {
  display: block;
}

.copy-pix-label > div {
  display: flex;
}

.copy-pix-label input,
.copy-pix-label textarea {
  border-radius: 6px 0 0 6px;
  color: #71849a;
}

.copy-pix-label textarea {
  min-height: 74px;
  resize: vertical;
  line-height: 1.45;
  word-break: break-all;
}

.copy-pix-label button {
  padding: 0 16px;
  border: 1px solid rgba(54, 150, 255, 0.42);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  color: #62b3fb;
  background: rgba(18, 76, 147, 0.13);
  font-size: 8px;
  cursor: pointer;
}

.pix-instructions ol {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pix-instructions li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #687a90;
  font-size: 8px;
}

.pix-instructions li span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: #5cacf5;
  font-size: 7px;
}

.pix-back-button {
  min-height: 38px;
  font-size: 8px;
}

@media (max-width: 980px) {
  .admin-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-form-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-layout {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 760px) {
  .admin-panel {
    inset: 7px;
    grid-template-columns: 66px 1fr;
  }

  .admin-sidebar {
    padding: 16px 8px;
  }

  .admin-sidebar .brand > span:last-child,
  .admin-label,
  .admin-nav button {
    font-size: 0;
  }

  .admin-sidebar .dashboard-brand,
  .admin-nav button {
    justify-content: center;
  }

  .admin-nav button {
    padding: 0;
  }

  .admin-nav button > span {
    font-size: 13px;
  }

  .admin-environment,
  .admin-logout {
    display: none;
  }

  .admin-view {
    padding: 20px;
  }

  .admin-overview-grid,
  .admin-split-layout {
    grid-template-columns: 1fr;
  }

  .admin-bulk-toolbar {
    align-items: flex-start;
  }

  .admin-bulk-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-welcome {
    display: block;
  }

  .admin-period {
    display: inline-block;
    margin-top: 18px;
  }

  .admin-form-grid.three {
    grid-template-columns: 1fr;
  }

  .checkout-layout,
  .pix-layout {
    grid-template-columns: 1fr;
  }

  .checkout-details,
  .qr-code-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .order-summary {
    padding: 25px 31px;
  }
}

@media (max-width: 520px) {
  .admin-login-card {
    padding: 30px 20px;
  }

  .admin-panel {
    inset: 0;
    display: block;
    border: 0;
    border-radius: 0;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-header {
    padding: 0 15px;
  }

  .admin-live {
    display: none;
  }

  .admin-view {
    padding: 15px;
  }

  .admin-bulk-toolbar {
    display: block;
  }

  .admin-bulk-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
  }

  .admin-welcome {
    padding: 23px;
  }

  .admin-metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid,
  .checkout-field-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-section {
    padding: 20px;
  }

  .admin-security-note {
    margin: 15px 20px;
  }

  .gateway-admin-form > .admin-form-feedback {
    margin: 0 20px;
  }

  .gateway-admin-form > .button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .checkout-wide {
    width: calc(100% - 10px);
    max-height: calc(100vh - 10px);
  }

  .checkout-heading,
  .pix-heading {
    align-items: flex-start;
    padding: 24px 20px 20px;
  }

  .secure-checkout-badge,
  .payment-status {
    display: none;
  }

  .checkout-details,
  .order-summary,
  .pix-instructions,
  .qr-code-panel {
    padding: 22px 20px;
  }

  .copy-pix-label > div {
    display: grid;
    gap: 10px;
  }

  .copy-pix-label textarea {
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
  }

  .copy-pix-label button {
    min-height: 46px;
    border-left: 1px solid rgba(54, 150, 255, 0.42);
    border-radius: 8px;
    font-size: 11px;
  }
}

/* Cloud Bots System readability polish */
.discord-auth-button .discord-button-logo {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex: 0 0 auto;
  object-fit: contain;
}

@media (min-width: 801px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    align-self: flex-start;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
    text-align: left;
  }
}

.checkout-section-title h3 {
  font-size: 15px;
}

.checkout-section-title p,
.checkout-heading p,
.pix-heading p {
  color: #91a5bd;
  font-size: 12px;
  line-height: 1.65;
}

.checkout-section-title > span {
  font-size: 11px;
}

.checkout-details label > span,
.copy-pix-label > span {
  color: #dce9f8;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.checkout-details input,
.copy-pix-label input,
.copy-pix-label textarea {
  font-size: 13px;
}

.billing-cycle-options strong,
.sales-vip-copy strong,
.payment-option strong,
.order-product div strong {
  font-size: 12px;
}

.billing-cycle-options small,
.sales-vip-copy small,
.payment-option small,
.order-product div small,
.order-total small,
.discount-line em,
.order-description,
.order-lines > div,
.checkout-terms,
.secure-checkout-badge,
.coupon-feedback {
  color: #8fa6c0;
  font-size: 11px;
  line-height: 1.65;
}

.order-total > span {
  font-size: 11px;
}

.dashboard-header small,
.panel-heading small,
.stats-grid small,
.bot-metrics span,
.sales-metric-grid small,
.admin-header small,
.admin-page-intro p,
.admin-form-section > div:first-child p,
.admin-metric-grid small,
.admin-table-row small,
.bot-list-info small {
  color: #8ea2ba;
  font-size: 11px;
  line-height: 1.55;
}

.stats-grid em,
.sales-metric-grid em,
.admin-metric-grid em,
.activity-card small,
.activity-card time,
.bot-identity small,
.sidebar-help p,
.sidebar-user span,
.rental-type-row small,
.recent-order-row small,
.coupon-admin-row small,
.admin-empty,
.admin-security-note,
.admin-login-card > p,
.admin-login-card > small {
  color: #8196af;
  font-size: 11px;
  line-height: 1.55;
}

.bot-metrics strong,
.activity-card strong,
.bot-identity strong,
.admin-table-row strong {
  font-size: 12px;
}

.hero-proof p,
.stars {
  font-size: 12px;
}
/* End Cloud Bots System readability polish */

/* Cloud Bots System server showcase cards */
.server-chip {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 255px;
  padding: 13px 15px;
  border-color: rgba(84, 150, 230, 0.18);
  border-radius: 14px;
  background: rgba(8, 14, 26, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.server-chip-avatar {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  color: #d9e6f7;
  background: linear-gradient(145deg, #242733, #171a23);
  font-size: 15px;
}

.server-chip-main {
  display: block;
  min-width: 0;
}

.server-chip strong {
  max-width: 175px;
  color: #f4f7fb;
  font-size: 12px;
  line-height: 1.15;
}

.server-chip-plan {
  display: block;
  max-width: 175px;
  overflow: hidden;
  margin-top: 3px;
  color: #7f93ad;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-chip-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 8px;
}

.server-chip-metrics span,
.server-chip-metrics b,
.server-chip-metrics em {
  display: block;
}

.server-chip-metrics b {
  color: #dce8f6;
  font-size: 12px;
  line-height: 1;
}

.server-chip-metrics em {
  margin-top: 2px;
  color: #6e7f94;
  font-size: 9px;
  font-style: normal;
  line-height: 1;
}

.server-chip > i {
  display: none;
}
/* End Cloud Bots System server showcase cards */

/* Cloud Bots System hero centered metrics */
.support-channel-icon img,
.discord-auth-button .discord-button-logo {
  display: block;
  object-fit: contain;
}

.support-channel-icon img {
  width: 33px;
  height: 33px;
}

.discord-support .support-channel-icon {
  background: rgba(88, 101, 242, 0.12);
}

@media (min-width: 801px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    justify-items: stretch;
    min-height: 820px;
    padding-top: 150px;
    padding-bottom: 105px;
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: 620px;
    justify-self: start;
    text-align: left;
    align-items: flex-start;
  }

  .hero-copy > p {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    align-self: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: min(590px, 100%);
    min-height: 510px;
    margin-top: 0;
  }

  .orbit,
  .core-sphere {
    left: 50%;
  }
}

.float-card-users small,
.float-card-sales small {
  letter-spacing: 0.08em;
}
/* End Cloud Bots System hero centered metrics */

/* Cloud Bots System feature purchase links */
.card-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.card-link:hover {
  color: #7bc8ff;
  transform: translateX(3px);
}
/* End Cloud Bots System feature purchase links */

/* Cloud Bots System discord logo fix */
.discord-support .support-channel-icon {
  overflow: visible;
  background: transparent;
}

.support-discord-logo {
  display: block;
  width: 43px;
  height: 43px;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
}

.discord-auth-button .discord-button-logo {
  width: 30px;
  height: 30px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
}
/* End Cloud Bots System discord logo fix */

/* Cloud Bots System discord support square */
.discord-support .support-channel-icon {
  width: 43px;
  height: 43px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(88, 101, 242, 0.22);
  box-shadow: inset 0 0 0 1px rgba(139, 150, 255, 0.12);
}

.discord-support .support-discord-logo {
  width: 25px;
  height: 25px;
  border-radius: 0;
  object-fit: contain;
}
/* End Cloud Bots System discord support square */

/* Cloud Bots System auth discord square */
.discord-auth-button {
  gap: 12px;
}

.discord-button-icon {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(88, 101, 242, 0.24);
  box-shadow: inset 0 0 0 1px rgba(139, 150, 255, 0.14);
}

.discord-auth-button .discord-button-logo {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
}
/* End Cloud Bots System auth discord square */

/* Cloud Bots System supported banks page */
.banks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 8%, rgba(23, 117, 255, 0.16), transparent 34%),
    radial-gradient(circle at 12% 34%, rgba(41, 167, 255, 0.1), transparent 28%),
    #030713;
}

.banks-main {
  padding-bottom: 80px;
}

.banks-hero {
  position: relative;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 70px;
  border-bottom: 1px solid var(--line);
}

.banks-hero > *:not(.legal-grid) {
  position: relative;
  z-index: 1;
}

.banks-hero h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  color: #f7fbff;
  font: 700 clamp(42px, 5vw, 72px)/1 var(--font-display);
  letter-spacing: -0.055em;
}

.banks-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #1886ff, #65d9ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.banks-hero p {
  max-width: 710px;
  margin: 0;
  color: #b3c2d5;
  font-size: 16px;
  line-height: 1.75;
}

.banks-alert {
  max-width: 850px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(53, 151, 255, 0.32);
  border-radius: 16px;
  color: #aebfd3;
  background: rgba(9, 24, 45, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  line-height: 1.65;
}

.banks-alert strong {
  color: #f6f9ff;
}

.banks-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 54px max(24px, calc((100vw - 1160px) / 2));
}

.bank-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(79, 151, 242, 0.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(9, 20, 37, 0.96), rgba(5, 11, 22, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.bank-card::before {
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 142, 255, 0.2), transparent 68%);
}

.bank-card.featured {
  border-color: rgba(55, 152, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 88px rgba(12, 91, 214, 0.18);
}

.bank-card.manual {
  border-color: rgba(255, 196, 92, 0.28);
}

.bank-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.bank-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(69, 156, 255, 0.4);
  border-radius: 16px;
  color: #f7fbff;
  background: linear-gradient(145deg, rgba(25, 126, 255, 0.32), rgba(9, 28, 55, 0.92));
  font: 700 13px var(--font-display);
  letter-spacing: 0.04em;
}

.bank-card h2 {
  margin: 8px 0 0;
  color: #f7fbff;
  font: 700 26px var(--font-display);
  letter-spacing: -0.025em;
}

.bank-card > p {
  position: relative;
  z-index: 1;
  min-height: 84px;
  margin: 0 0 24px;
  color: #aebed1;
  font-size: 14px;
  line-height: 1.7;
}

.bank-steps {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.bank-steps h3 {
  margin: 0 0 14px;
  color: #e8f1fc;
  font: 700 15px var(--font-display);
}

.bank-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #8fa4bd;
  font-size: 13px;
  line-height: 1.62;
}

.bank-steps strong {
  color: #dce9f8;
}

.bank-doc-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #5eb6ff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bank-doc-link:hover {
  color: #9ed4ff;
}

.manual-warning {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 196, 92, 0.3);
  border-radius: 14px;
  color: #d5b878;
  background: rgba(80, 52, 10, 0.18);
  font-size: 13px;
  line-height: 1.62;
}

.manual-warning strong {
  color: #ffd27a;
}

.bank-support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 max(24px, calc((100vw - 1160px) / 2));
  padding: 34px;
  border: 1px solid rgba(75, 156, 255, 0.28);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(12, 35, 70, 0.86), rgba(5, 10, 20, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.bank-support-box h2 {
  margin: 12px 0 10px;
  color: #f7fbff;
  font: 700 clamp(26px, 3vw, 38px)/1.08 var(--font-display);
  letter-spacing: -0.035em;
}

.bank-support-box p {
  max-width: 640px;
  margin: 0;
  color: #aebed1;
  font-size: 14px;
  line-height: 1.7;
}

.bank-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

  .bank-card > p {
    min-height: 0;
  }

  .bank-support-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .banks-hero {
    padding: 120px 20px 48px;
  }

  .banks-layout {
    padding: 34px 20px;
  }

  .bank-card,
  .bank-support-box {
    padding: 22px;
    border-radius: 20px;
  }

  .bank-card-header {
    align-items: flex-start;
  }

  .bank-support-actions,
  .bank-support-actions .button {
    width: 100%;
  }
}
/* End Cloud Bots System supported banks page */
/* Cloud Bots System help card avatar */
.sidebar-help > .sidebar-help-icon {
  width: 36px;
  height: 36px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(76, 166, 255, 0.55);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(23, 110, 224, 0.22), rgba(8, 25, 50, 0.86));
}

.sidebar-help-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* End Cloud Bots System help card avatar */
/* Legacy public server info sync */
.bot-list-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.legacy-public-info-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(82, 173, 255, 0.22);
  border-radius: 8px;
  background: rgba(18, 77, 148, 0.12);
}

.legacy-public-info-alert strong,
.legacy-public-info-alert small {
  display: block;
}

.legacy-public-info-alert strong {
  color: #dcecff;
  font-size: 9px;
}

.legacy-public-info-alert small {
  margin-top: 4px;
  color: #6e839c;
  font-size: 8px;
  line-height: 1.4;
}

.legacy-public-info-alert button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(72, 158, 245, 0.34);
  border-radius: 6px;
  color: #83c4ff;
  background: rgba(28, 105, 206, 0.12);
  font: 700 8px var(--font-body);
  cursor: pointer;
}

.legacy-public-info-alert button:hover {
  border-color: rgba(87, 177, 255, 0.6);
  color: #c5e5ff;
  background: rgba(35, 126, 239, 0.18);
}

.legacy-public-info-alert button:disabled {
  opacity: 0.5;
  cursor: progress;
}

@media (max-width: 720px) {
  .bot-list-actions {
    align-items: stretch;
    width: 100%;
  }

  .legacy-public-info-alert {
    align-items: stretch;
    flex-direction: column;
  }
}
/* End legacy public server info sync */
/* Cloud Bots System readability and toast status polish */
.toast {
  min-width: min(380px, calc(100vw - 32px));
  padding: 17px 18px;
  border-color: rgba(53, 218, 155, 0.32);
}

.toast.error {
  border-color: rgba(255, 113, 133, 0.42);
  background: #170b13;
}

.toast.info {
  border-color: rgba(75, 165, 255, 0.38);
}

.toast.warning {
  border-color: rgba(227, 164, 75, 0.42);
}

.toast.error > span {
  color: #ff7185;
  background: rgba(255, 113, 133, 0.13);
}

.toast.info > span {
  color: #69bbff;
  background: rgba(75, 165, 255, 0.13);
}

.toast.warning > span {
  color: #f2ba62;
  background: rgba(227, 164, 75, 0.13);
}

.toast strong {
  font-size: 13px;
}

.toast p {
  color: #95a8bf;
  font-size: 12px;
  line-height: 1.55;
}

.checkout-section-title p,
.checkout-heading p,
.pix-heading p,
.checkout-footnote,
.checkout-error,
.coupon-feedback,
.checkout-terms,
.order-description,
.order-lines > div,
.billing-cycle-options small,
.sales-vip-copy small,
.payment-option small,
.order-product div small,
.order-total small,
.copy-pix-label > span,
.checkout-details label > span,
.admin-login-card > p,
.admin-login-card > small,
.admin-login-feedback,
.admin-form-feedback,
.admin-page-intro p,
.admin-form-section > div:first-child p,
.admin-security-note,
.admin-empty,
.admin-table-row small,
.coupon-admin-row small,
.recent-order-row small,
.rental-type-row small {
  font-size: 12px !important;
  line-height: 1.6;
}

.checkout-section-title h3,
.admin-form-section h3,
.admin-card-heading h3,
.admin-login-card h2 {
  letter-spacing: -0.01em;
}

.admin-login-card label > span,
.admin-form-card label > span,
.gateway-admin-form label > span,
.checkout-details label > span,
.copy-pix-label > span {
  font-size: 12px !important;
}

.admin-login-card input,
.admin-form-card input,
.gateway-admin-form input,
.checkout-details input,
.copy-pix-label input,
.copy-pix-label textarea {
  font-size: 13px !important;
}

.admin-nav button,
.admin-bulk-actions button,
.admin-bot-actions button,
.admin-table-row strong,
.admin-status,
.gateway-admin-form > .button,
.checkout-pay-button {
  font-size: 12px !important;
}
/* End Cloud Bots System readability and toast status polish */
/* Cloud Bots System email access flow */
.email-code-login {
  margin: 12px 0 14px;
  padding: 13px;
  border: 1px solid rgba(55, 151, 255, 0.22);
  border-radius: 10px;
  background: rgba(6, 16, 31, 0.62);
}

.email-code-request,
.password-skip {
  width: 100%;
  border: 0;
  color: #68baff;
  background: transparent;
  font: 700 12px var(--font-display);
  cursor: pointer;
}

.email-code-request:hover,
.password-skip:hover {
  color: #ffffff;
}

.email-code-fields {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.email-code-fields[hidden],
.password-setup-panel[hidden],
.auth-tabs[hidden],
.auth-divider[hidden] {
  display: none !important;
}

.email-code-fields label {
  margin-bottom: 0;
}

.email-code-fields small,
.password-setup-panel > small {
  min-height: 18px;
  color: #8fa6c0;
  font-size: 12px;
  line-height: 1.55;
}

.password-setup-panel {
  display: grid;
  gap: 13px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(59, 157, 255, 0.3);
  border-radius: 13px;
  background: rgba(7, 18, 35, 0.8);
  text-align: left;
}

.password-setup-panel h3 {
  margin: 0;
  font: 700 19px var(--font-display);
}

.password-setup-panel p {
  margin: 0;
  color: #91a5bd;
  font-size: 12px;
  line-height: 1.6;
}

.password-setup-panel label > span {
  display: block;
  margin-bottom: 8px;
  color: #dce9f8;
  font-size: 12px;
  font-weight: 700;
}

.password-setup-panel input {
  width: 100%;
  height: 43px;
  padding: 0 13px;
  outline: none;
  border: 1px solid rgba(106, 145, 190, 0.22);
  border-radius: 7px;
  color: #e6f1ff;
  background: #050a13;
  font-size: 13px;
}

.password-setup-panel input:focus {
  border-color: rgba(52, 151, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(26, 116, 236, 0.09);
}
/* End Cloud Bots System email access flow */
/* Cloud Bots System final readability enforcement */
.dashboard-panel,
.admin-panel,
.checkout-wide,
.auth-card,
.admin-login-card {
  font-size: 14px;
}

.dashboard-panel .section-kicker,
.admin-panel .section-kicker,
.checkout-wide .section-kicker,
.auth-card .section-kicker,
.plan-label,
.step-badge,
.admin-label {
  font-size: 12px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.16em;
}

.dashboard-header small,
.admin-header small,
.content-intro p,
.panel-heading small,
.stats-grid small,
.stats-grid em,
.bot-metrics span,
.bot-identity small,
.activity-card small,
.activity-card time,
.bot-list-info small,
.sales-metric-grid small,
.sales-metric-grid em,
.sales-panel-heading > span,
.sales-history-row small,
.rental-type-row small,
.recent-order-row small,
.admin-page-intro p,
.admin-form-section > div:first-child p,
.admin-metric-grid small,
.admin-metric-grid em,
.admin-table-row small,
.admin-empty,
.admin-security-note,
.coupon-admin-row small,
.legacy-public-info-alert small,
.auth-intro,
.auth-divider span,
.auth-linked-bot > p,
.terms-label span,
.remember-label span,
.checkout-heading p,
.checkout-section-title p,
.checkout-footnote,
.checkout-error,
.coupon-feedback,
.order-description,
.order-lines > div,
.order-product div small,
.order-total small,
.discount-line em,
.checkout-terms,
.secure-checkout-badge,
.billing-cycle-options small,
.sales-vip-copy small,
.payment-option small,
.pix-heading p,
.pix-payment-mini small,
.copy-pix-label > span,
.email-code-fields small,
.password-setup-panel p,
.password-setup-panel > small {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: #9fb2ca !important;
}

.configuration-form label > span,
.checkout-details label > span,
.copy-pix-label > span,
.auth-form label > span,
.auth-name-grid label > span,
.auth-linked-bot > span,
.password-setup-panel label > span,
.admin-login-card label > span,
.admin-form-card label > span,
.gateway-admin-form label > span,
.admin-form-card legend,
.admin-form-card fieldset label {
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: #dce9f8 !important;
  font-weight: 700 !important;
}

.configuration-form label > small,
.security-notice p,
.checkbox-label,
.checkbox-label span,
.form-feedback,
.activation-result p,
.configuration-help li p,
.configuration-help a,
.admin-login-feedback,
.admin-form-feedback,
.gateway-admin-form > .admin-form-feedback,
.admin-environment strong,
.admin-environment small,
.admin-logout,
.admin-bulk-toolbar,
.admin-bulk-actions button,
.admin-bot-actions button,
.admin-status,
.coupon-admin-row button {
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.configuration-form input,
.configuration-form select,
.checkout-details input,
.copy-pix-label input,
.copy-pix-label textarea,
.auth-form input,
.password-setup-panel input,
.admin-login-card input,
.admin-form-card input,
.gateway-admin-form input,
.admin-form-card fieldset input {
  min-height: 48px;
  font-size: 14px !important;
}

.configuration-form select,
.configuration-form select option {
  font-size: 14px !important;
}

.security-notice strong,
.activation-result strong,
.bot-identity strong,
.activity-card strong,
.admin-table-row strong,
.coupon-admin-row strong,
.rental-type-row strong,
.recent-order-row strong,
.sales-history-row strong,
.order-product div strong,
.billing-cycle-options strong,
.sales-vip-copy strong,
.payment-option strong {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.dashboard-nav button,
.admin-nav button,
.sidebar-help p,
.sidebar-help a,
.sidebar-user strong,
.sidebar-user small,
.checkout-pay-button,
.form-actions .button,
.activation-result .button,
.email-code-request,
.password-skip {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.content-intro h3,
.panel-heading h3,
.sales-panel-heading h3,
.admin-page-intro h3,
.admin-form-section h3,
.checkout-section-title h3 {
  font-size: clamp(20px, 1.8vw, 28px) !important;
  line-height: 1.2 !important;
}

.dashboard-header h2,
.admin-header h2,
.checkout-heading h2,
.admin-login-card h2 {
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 760px) {
  .dashboard-panel,
  .admin-panel,
  .checkout-wide,
  .auth-card,
  .admin-login-card {
    font-size: 15px;
  }

  .dashboard-header small,
  .admin-header small,
  .content-intro p,
  .configuration-form label > small,
  .security-notice p,
  .checkbox-label span,
  .checkout-section-title p,
  .checkout-terms,
  .order-lines > div,
  .auth-intro,
  .auth-linked-bot > p {
    font-size: 14px !important;
  }

  .configuration-form label > span,
  .checkout-details label > span,
  .auth-form label > span,
  .admin-form-card label > span {
    font-size: 14px !important;
  }
}
/* End Cloud Bots System final readability enforcement */