:root {
  color-scheme: dark;
  --bg: #05060a;
  --surface: #0b0812;
  --surface-2: #111018;
  --surface-glass: rgba(17, 16, 24, 0.72);
  --surface-glass-strong: rgba(22, 20, 31, 0.84);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(139, 92, 246, 0.34);
  --text: #ffffff;
  --muted: #b7b5c4;
  --muted-2: #7f7c8e;
  --pink: #a855f7;
  --rose: #8b5cf6;
  --red: #6d28d9;
  --gold: #d8d5e5;
  --success: #22c55e;
  --success-strong: #16a34a;
  --violet: #8b5cf6;
  --violet-strong: #6d28d9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --glass-border: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(139, 92, 246, 0.22), rgba(255, 255, 255, 0.06));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(139, 92, 246, 0.13), transparent 31%),
    radial-gradient(circle at 16% 22%, rgba(34, 197, 94, 0.055), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    var(--bg);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 10, 0.76);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.brand,
.site-nav nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  min-width: 0;
}

.brand span {
  line-height: 1.05;
  overflow-wrap: normal;
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.36));
}

.site-nav nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-weight: 850;
}

.site-nav nav a:hover {
  color: var(--text);
}

.site-nav nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.95), rgba(34, 197, 94, 0.82));
}

.panel-body .site-nav {
  grid-template-columns: auto minmax(0, 1fr);
}

.panel-body .site-nav nav {
  display: none;
}

.public-nav {
  grid-template-columns: auto minmax(0, 1fr);
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.nav-balance-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.nav-balance-pill span,
.nav-balance-pill small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-balance-pill strong {
  color: var(--success);
  font-size: 0.95rem;
}

.nav-balance-pill small {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-balance-pill:hover {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.055);
}

.menu-toggle {
  gap: 10px;
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(216, 210, 232, 0.48);
  color: var(--gold);
}

.account-label-short {
  display: none;
}

.menu-bars {
  width: 20px;
  display: grid;
  gap: 4px;
}

.menu-bars i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.panel-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.panel-menu[hidden] {
  display: none;
}

.panel-menu-inner {
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 18px;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(11, 8, 18, 0.94);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(1.05);
}

.panel-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-menu-head div {
  display: grid;
  gap: 4px;
}

.panel-menu-head span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-menu-head strong {
  font-size: 1.35rem;
}

.panel-menu-inner a {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.07), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.panel-menu-inner a:hover {
  transform: translateX(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.panel-menu-inner a[aria-current="page"] {
  border-color: rgba(139, 92, 246, 0.38);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.panel-menu-inner strong {
  color: var(--text);
  font-size: 0.98rem;
}

.panel-menu-inner span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 780;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  font-weight: 950;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  color: #05060a;
  background: linear-gradient(135deg, #30d86f, var(--success-strong));
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.18);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

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

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.24);
}

.button.ghost:hover {
  border-color: rgba(139, 92, 246, 0.36);
  background: rgba(139, 92, 246, 0.08);
}

main {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-main {
  display: grid;
  gap: 18px;
  padding: 24px 0 42px;
}

.landing-nav .button.primary {
  min-width: 112px;
}

.saas-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: 620px;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 14%, rgba(139, 92, 246, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.045), rgba(139, 92, 246, 0.08) 52%, rgba(255, 255, 255, 0.03)),
    rgba(11, 8, 18, 0.88);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px) saturate(1.04);
}

.saas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.saas-hero-copy,
.saas-hero-panel {
  position: relative;
  z-index: 1;
}

.saas-hero-copy {
  display: grid;
  gap: 16px;
}

.saas-hero-copy h1 {
  max-width: 740px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.94;
}

.saas-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 780;
}

.saas-hero-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  animation: floatSoft 5.5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.saas-hero-panel img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(216, 210, 232, 0.12);
}

.metric-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-card span,
.metric-card small {
  color: var(--muted);
  font-weight: 850;
}

.metric-card strong {
  color: var(--success);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.mini-status-list {
  display: grid;
  gap: 8px;
}

.mini-status-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.mini-status-list b,
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.26);
}

.stat-grid,
.status-grid,
.steps-flow {
  display: grid;
  gap: 12px;
}

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

.stat-grid article,
.status-grid article,
.steps-flow article {
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stat-grid span,
.status-grid small,
.steps-flow p {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 820;
}

.stat-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--success);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.service-search-box {
  max-width: 760px;
}

.public-service-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.public-service-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(216, 210, 232, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.public-service-card:hover,
.featured-card:hover,
.benefits-grid article:hover,
.status-grid article:hover,
.steps-flow article:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.055);
}

.public-service-card span,
.public-service-card small {
  color: var(--muted);
  font-weight: 820;
}

.public-service-card strong {
  display: block;
  margin: 4px 0;
}

.public-service-card b {
  color: var(--success);
  white-space: nowrap;
}

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

.status-grid article {
  display: grid;
  gap: 8px;
}

.status-dot.online {
  background: var(--success);
}

.status-dot.warning {
  background: #ffd166;
}

.status-dot.offline {
  background: #ff4d6d;
}

.steps-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #04130b;
  background: var(--success);
  font-weight: 1000;
}

.premium-footer {
  width: min(1220px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 26px 0 38px;
  color: var(--muted);
}

.premium-footer strong {
  color: var(--text);
}

.premium-footer p {
  margin-top: 6px;
}

.premium-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.premium-footer a:hover {
  color: var(--success);
}

.fade-in {
  animation: fadeUp 480ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
  }
}

.panel-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 24px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 16%, rgba(139, 92, 246, 0.18), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(34, 197, 94, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(139, 92, 246, 0.085)),
    rgba(11, 8, 18, 0.86);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.05);
}

.panel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 48%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.panel-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
}

.panel-hero h1 {
  max-width: 660px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.hero-tagline {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.26rem);
  line-height: 1.35;
  text-shadow: none;
}

.panel-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 760;
}

.panel-hero-actions,
.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-line span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(216, 210, 232, 0.24);
  border-radius: 8px;
  color: var(--text);
  background: rgba(53, 229, 141, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(280px, 31vw, 474px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.42);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.panel-main-banner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.02);
}

.hero-visual-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.hero-visual-card.main {
  border-color: rgba(139, 92, 246, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(139, 92, 246, 0.07)),
    rgba(0, 0, 0, 0.18);
}

.hero-visual-card span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-visual-card strong {
  line-height: 1.2;
}

.hero-visual-card small {
  color: var(--muted);
  font-weight: 820;
}

.login-body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.login-shell {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin: auto;
  padding: 28px 0;
}

.login-cover,
.login-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 11, 22, 0.94);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
}

.login-cover {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(12px, 2vw, 18px);
}

.login-banner {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(216, 210, 232, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
}

.login-box {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
}

.login-box p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.login-footer {
  padding-top: 0;
}

.home-grid {
  min-height: calc(100vh - 93px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  grid-template-areas:
    "hero account"
    "order account";
  gap: 18px;
  align-items: start;
  padding: 24px 0 38px;
}

.landing-grid {
  min-height: calc(100vh - 93px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px 0 38px;
}

.landing-hero,
.login-panel,
.network-strip {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: var(--surface-glass);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px) saturate(1.04);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.085), rgba(255, 255, 255, 0.035)),
    var(--surface-glass);
}

.landing-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(216, 210, 232, 0.32);
  border-radius: 8px;
}

.landing-hero p:not(.eyebrow),
.login-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.login-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.network-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
}

.network-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #07070b;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-weight: 950;
}

.trust-strip,
.client-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip {
  padding: 14px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip article,
.client-dashboard article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(139, 92, 246, 0.035)),
    rgba(17, 16, 24, 0.72);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.trust-strip article::after,
.client-dashboard article::after {
  content: "";
  position: absolute;
  inset: auto -26px -42px auto;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.06);
  pointer-events: none;
}

.trust-strip small {
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-strip strong,
.client-dashboard strong {
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
}

.trust-strip article[hidden] {
  display: none;
}

.trust-strip span,
.client-dashboard span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.client-dashboard {
  padding: 14px 0 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0 8px;
}

.mini-hero,
.checkout-card,
.account-card,
.section {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(139, 92, 246, 0.035)),
    var(--surface-glass);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px) saturate(1.04);
}

.mini-hero {
  grid-area: hero;
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(16px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.095), rgba(255, 255, 255, 0.035)),
    var(--surface-glass);
}

.mini-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(216, 210, 232, 0.32);
  border-radius: 8px;
}

.mini-hero .button {
  margin-top: 20px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-order {
  grid-area: order;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.04), rgba(139, 92, 246, 0.05)),
    rgba(11, 8, 18, 0.84);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.account-card {
  grid-area: account;
  position: sticky;
  top: 112px;
  padding: clamp(18px, 3vw, 24px);
}

.panel-grid .account-card {
  grid-area: auto;
  position: sticky;
  top: 112px;
}

.panel-grid .quick-order {
  grid-area: auto;
}

[data-panel-page][hidden] {
  display: none !important;
}

body[data-panel-page="perfil"] .panel-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

body[data-panel-page="perfil"] .panel-grid .account-card {
  position: static;
  width: 100%;
}

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

.section-heading.compact p:not(.eyebrow),
.recharge-section .section-heading p {
  max-width: 640px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

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

.platform-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.platform-quick-buttons button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.055), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-weight: 950;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.platform-quick-buttons button:hover,
.platform-quick-buttons button.is-active {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.38);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 197, 94, 0.055)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.platform-quick-buttons .inline-platform-logo {
  margin-right: 0;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.checkout-steps span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(216, 210, 232, 0.13);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
}

.checkout-steps strong {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #06130c;
  background: var(--success);
  font-size: 0.82rem;
}

.order-step-card {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(139, 92, 246, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.order-step-number {
  position: absolute;
  top: -14px;
  left: 16px;
  min-width: 44px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(139, 92, 246, 0.36);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(109, 40, 217, 0.88));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  font-weight: 1000;
}

.order-step-copy {
  display: grid;
  gap: 5px;
  padding-top: 10px;
}

.order-step-copy strong {
  font-size: 1.06rem;
}

.order-step-copy p {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 780;
}

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

.payment-method-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 78px;
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.payment-method-card:hover,
.payment-method-card:has(input:checked) {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.42);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.payment-method-card input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--violet);
}

.payment-method-card span {
  display: grid;
  gap: 4px;
}

.payment-method-card small,
.min-recharge-note {
  color: var(--muted);
  line-height: 1.42;
  font-weight: 800;
}

.min-recharge-note {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.055);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 6, 10, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-weight: 800;
}

.risk-notice {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(53, 229, 141, 0.24);
  border-radius: 8px;
  background: rgba(53, 229, 141, 0.055);
}

.compact-risk {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.risk-notice strong {
  color: var(--success);
}

.risk-notice p {
  color: var(--muted);
  line-height: 1.5;
}

.confirm-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.confirm-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--success);
}

.button.is-loading {
  cursor: wait;
  opacity: 0.78;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.34);
  outline-offset: 2px;
}

.quote-box,
.balance-card {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.quote-box span,
.balance-card span,
.account-stats span,
.pix-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-box strong,
.balance-card strong {
  font-size: 1.9rem;
}

.quote-box small {
  color: var(--muted);
  line-height: 1.35;
}

.service-details {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(216, 210, 232, 0.28);
  border-radius: 8px;
  background: rgba(216, 210, 232, 0.06);
}

.detail-empty {
  color: var(--muted);
  font-weight: 850;
}

.detail-title {
  display: grid;
  gap: 7px;
}

.detail-title span {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  color: #04130b;
  background: linear-gradient(135deg, var(--success), var(--success-strong));
  font-size: 0.78rem;
  font-weight: 950;
}

.detail-title strong {
  line-height: 1.35;
}

.detail-title p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 820;
}

.service-badges,
.service-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-badges span,
.service-card-badges span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(53, 229, 141, 0.18);
  border-radius: 8px;
  color: var(--success);
  background: rgba(53, 229, 141, 0.055);
  font-size: 0.74rem;
  font-weight: 920;
}

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

.detail-grid article {
  display: grid;
  gap: 5px;
  min-height: 64px;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.detail-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-grid strong {
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.submit-button {
  width: 100%;
  margin-top: 6px;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.checkout-actions .submit-button {
  margin-top: 0;
}

.checkout-actions small {
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.safe-payment-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 950;
}

.safe-payment-seal svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.safe-payment-seal path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.checkout-security-section {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(53, 229, 141, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.065), rgba(139, 92, 246, 0.035)),
    rgba(8, 6, 13, 0.72);
}

.compact-security {
  margin-top: 0;
}

.security-copy {
  display: grid;
  gap: 4px;
  text-align: center;
}

.security-copy span {
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.security-copy strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.security-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-logo-row img {
  max-width: 112px;
  height: 24px;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(1.05);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.security-logo-row img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.security-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.security-pill-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(53, 229, 141, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.76rem;
  font-weight: 900;
}

.message-output {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--pink);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  line-height: 1.5;
}

.message-output.is-visible {
  display: block;
}

.pix-box {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pix-box[hidden],
.hidden {
  display: none !important;
}

.pix-box img {
  width: min(210px, 100%);
  justify-self: center;
  border-radius: 8px;
  background: #fff;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}

.balance-card .button {
  margin-top: 8px;
}

.account-tier {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 210, 232, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(139, 92, 246, 0.04)),
    rgba(255, 255, 255, 0.035);
}

.account-tier span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-tier strong {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: capitalize;
}

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

.profile-mini-stats article {
  display: grid;
  gap: 5px;
  min-height: 76px;
  align-content: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.profile-mini-stats span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-mini-stats strong {
  color: var(--gold);
  font-size: 1rem;
}

.account-stats {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.account-stats article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.section {
  margin: 28px 0;
  padding: clamp(18px, 4vw, 32px);
  scroll-margin-top: 108px;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.075), rgba(255, 255, 255, 0.032)),
    var(--surface-glass);
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.platform-tabs button,
.recharge-option {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.platform-tabs button.active,
.recharge-option:hover {
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.46);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(109, 40, 217, 0.2));
}

.search-field {
  max-width: 560px;
}

.service-table {
  display: grid;
  gap: 10px;
}

.service-summary {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.service-summary > strong {
  font-size: 1.25rem;
}

.service-summary div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-summary span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 850;
}

.service-summary strong,
.service-row em {
  color: var(--gold);
}

.service-row,
.order-row {
  width: 100%;
  display: grid;
  grid-template-columns: 116px minmax(0, 1.35fr) minmax(140px, 0.7fr) minmax(110px, 0.45fr);
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(139, 92, 246, 0.028)),
    rgba(255, 255, 255, 0.03);
  text-align: left;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.service-row:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.34);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.service-row span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.32);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-row strong {
  line-height: 1.3;
}

.service-row small,
.order-row small,
.empty-state {
  color: var(--muted);
}

.price-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.service-row em {
  font-style: normal;
  font-weight: 950;
  text-align: right;
}

.price-meta small {
  max-width: 190px;
  text-align: right;
  line-height: 1.35;
}

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

.recharge-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.recharge-panel {
  display: grid;
  gap: 14px;
}

.recharge-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 14, 0.72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.recharge-picker-card {
  padding: 18px;
}

.recharge-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.recharge-panel-top div {
  display: grid;
  gap: 4px;
}

.recharge-panel-top span,
.recharge-form label span {
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recharge-panel-top strong {
  color: var(--text);
  font-size: 1.25rem;
}

.recharge-panel-top small {
  max-width: 280px;
  color: var(--muted);
  font-weight: 850;
  text-align: right;
}

.recharge-bonus-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.recharge-choice {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.recharge-choice:hover,
.recharge-choice.is-selected {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(34, 197, 94, 0.08);
}

.recharge-choice.is-featured {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.13), rgba(34, 197, 94, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.recharge-choice span {
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recharge-choice strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.15;
}

.recharge-choice small {
  color: var(--muted);
  font-weight: 850;
}

.recharge-form label {
  margin-bottom: 0;
}

.recharge-form {
  padding: 16px;
}

.recharge-form label {
  display: grid;
  gap: 8px;
}

.recharge-form input {
  min-height: 54px;
  font-size: 1.15rem;
  font-weight: 950;
}

.recharge-form .button {
  min-height: 54px;
  padding-inline: 26px;
}

.recharge-form p {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.recharge-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.recharge-trust-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(34, 197, 94, 0.045);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.recharge-option {
  min-height: 70px;
  font-size: 1.25rem;
}

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

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

.featured-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 198px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: -60% 20% auto auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  pointer-events: none;
}

.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.36);
  background: rgba(139, 92, 246, 0.065);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.social-proof-section,
.reviews-section {
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.07), rgba(34, 197, 94, 0.03)),
    var(--surface-glass);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

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

.ranking-card,
.review-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(139, 92, 246, 0.045)),
    rgba(255, 255, 255, 0.04);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.ranking-card::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(139, 92, 246, 0.3), rgba(255, 255, 255, 0.06));
  opacity: 0.58;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ranking-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.ranking-card small,
.review-card small {
  color: var(--success);
  font-weight: 950;
  text-transform: uppercase;
}

.ranking-card strong {
  color: var(--text);
  font-size: 1.12rem;
}

.ranking-card span {
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 1000;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.55;
}

.review-form {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.review-form label {
  margin-bottom: 0;
}

.featured-card.offer-card {
  border-color: rgba(139, 92, 246, 0.34);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.featured-card.offer-card .featured-badge {
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  color: #ffffff;
}

.featured-badge {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.22);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-logo {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #eadfff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(139, 92, 246, 0.055)),
    rgba(11, 10, 16, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.platform-logo svg {
  width: 31px;
  height: 31px;
  position: relative;
  z-index: 1;
}

.platform-logo svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.inline-platform-logo {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: none;
}

.inline-platform-logo svg {
  width: 18px;
  height: 18px;
}

.platform-instagram {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(196, 143, 255, 0.08)),
    rgba(11, 10, 16, 0.9);
}

.platform-tiktok {
  background: rgba(11, 10, 16, 0.9);
  color: #eadfff;
}

.platform-tiktok .tiktok-shadow {
  transform: none;
  stroke: currentColor;
}

.platform-tiktok svg path:not(.tiktok-shadow) {
  filter: none;
}

.platform-youtube {
  background: rgba(11, 10, 16, 0.9);
}

.platform-youtube svg rect {
  fill: none;
  stroke: none;
}

.platform-youtube svg path {
  fill: currentColor;
  stroke: none;
}

.platform-youtube {
  color: #eadfff;
}

.platform-telegram {
  background: rgba(11, 10, 16, 0.9);
}

.platform-telegram svg path:first-child {
  fill: none;
  stroke: currentColor;
}

.platform-telegram svg path:last-child {
  stroke: currentColor;
}

.platform-roblox {
  background: rgba(11, 10, 16, 0.9);
}

.platform-roblox svg rect:first-child {
  fill: none;
  stroke: currentColor;
}

.platform-roblox svg rect:last-child {
  fill: rgba(234, 223, 255, 0.18);
  stroke: currentColor;
}

.platform-facebook {
  background: rgba(11, 10, 16, 0.9);
}

.platform-facebook svg path {
  fill: none;
  stroke: currentColor;
}

.platform-kwai,
.platform-twitter {
  background: rgba(11, 10, 16, 0.9);
}

.platform-kwai svg rect,
.platform-kwai svg circle,
.platform-kwai svg path,
.platform-twitter svg path {
  fill: none;
  stroke: currentColor;
}

.platform-default {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(196, 143, 255, 0.08)),
    rgba(11, 10, 16, 0.9);
  font-weight: 950;
}

.featured-card em {
  color: var(--rose);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-card strong {
  line-height: 1.35;
}

.featured-card small {
  color: var(--muted);
  font-weight: 850;
}

.featured-card b {
  color: var(--gold);
  font-size: 1.18rem;
}

.rewards-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(53, 229, 141, 0.22);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.07), rgba(139, 92, 246, 0.045)),
    rgba(11, 8, 18, 0.86);
}

.reward-spotlight {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}

.reward-best-card {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(53, 229, 141, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.105), rgba(139, 92, 246, 0.075)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.reward-best-card span,
.bonus-grid span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #04130b;
  background: linear-gradient(135deg, var(--success), var(--success-strong));
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reward-best-card strong {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.reward-best-card p,
.bonus-grid small {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 820;
}

.rewards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.bonus-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(53, 229, 141, 0.045)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bonus-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 229, 141, 0.32);
  box-shadow: 0 16px 38px rgba(53, 229, 141, 0.1);
}

.bonus-grid article.is-featured-bonus {
  border-color: rgba(53, 229, 141, 0.36);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(139, 92, 246, 0.055)),
    rgba(255, 255, 255, 0.045);
}

.bonus-grid strong {
  font-size: 1.26rem;
  line-height: 1.18;
}

.bonus-grid b {
  color: var(--success);
  font-size: 1.12rem;
}

.bonus-grid .button {
  margin-top: auto;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
}

.referral-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.referral-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(139, 92, 246, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(139, 92, 246, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.referral-card::after {
  content: "R$";
  position: absolute;
  right: -12px;
  bottom: -24px;
  color: rgba(216, 210, 232, 0.12);
  font-size: 7rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.referral-card span,
.referral-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.referral-card span {
  text-transform: uppercase;
}

.referral-card strong {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.referral-card .button {
  position: relative;
  z-index: 1;
}

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

.referral-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.referral-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07070b;
  background: var(--gold);
  font-size: 1rem;
}

.referral-steps span {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 820;
}

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

.help-guide-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: start;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.help-guide-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07070b;
  background: var(--gold);
  font-weight: 950;
}

.help-guide-grid strong {
  font-size: 1.08rem;
}

.help-guide-grid p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 780;
}

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

.guide-module {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(140, 68, 255, 0.075)),
    rgba(8, 8, 13, 0.62);
}

.guide-module > div:last-child {
  display: grid;
  gap: 8px;
}

.guide-module strong {
  font-size: 1.02rem;
}

.guide-module p {
  color: var(--muted);
  line-height: 1.52;
  font-weight: 780;
}

.guide-visual {
  min-height: 122px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(216, 210, 232, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(139, 92, 246, 0.12), transparent 40%),
    rgba(0, 0, 0, 0.3);
}

.guide-visual span,
.guide-visual i,
.guide-visual b,
.guide-visual button,
.guide-visual strong {
  border-radius: 8px;
}

.guide-visual button {
  min-height: 30px;
  border: 0;
  color: #07070b;
  background: linear-gradient(135deg, var(--gold), #f7e5ff);
  font-weight: 950;
}

.visual-order span {
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-order strong {
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.visual-services {
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.visual-services i {
  height: 46px;
  background: rgba(234, 223, 255, 0.12);
}

.visual-services b {
  grid-column: 1 / -1;
  height: 18px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.32), rgba(255, 255, 255, 0.1));
}

.visual-recharge strong {
  align-self: end;
  color: var(--gold);
  font-size: 1.7rem;
}

.visual-recharge span {
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.visual-orders span,
.visual-comments span,
.visual-referral span {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-orders span:nth-child(1) {
  border-left: 4px solid #74f2a1;
}

.visual-orders span:nth-child(2) {
  border-left: 4px solid #b98cff;
}

.visual-orders span:nth-child(3) {
  border-left: 4px solid var(--gold);
}

.visual-referral {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.visual-referral strong {
  grid-column: 1 / -1;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.visual-referral b {
  display: grid;
  place-items: center;
  min-height: 40px;
  color: #07070b;
  background: var(--gold);
}

.help-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.benefits-section {
  background:
    linear-gradient(135deg, rgba(53, 229, 141, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(16, 16, 25, 0.9);
}

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

.benefits-grid article {
  display: grid;
  gap: 8px;
  min-height: 140px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(216, 210, 232, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.benefits-grid article::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.22);
}

.benefits-grid strong {
  line-height: 1.25;
}

.benefits-grid span {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 820;
}

.faq-grid,
.improvement-grid {
  display: grid;
  gap: 12px;
}

.faq-grid {
  grid-template-columns: minmax(0, 820px);
  justify-content: start;
}

.faq-grid details,
.improvement-grid article {
  border: 1px solid rgba(216, 210, 232, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-grid details {
  overflow: hidden;
}

.faq-grid summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
}

.faq-grid summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #04130b;
  background: var(--success);
  font-weight: 950;
}

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

.faq-grid p {
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 16px 16px 34px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list strong {
  color: var(--text);
}

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

.improvement-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.improvement-grid span {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #07070b;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.improvement-grid strong {
  line-height: 1.35;
}

.improvement-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.order-row {
  grid-template-columns: 0.8fr 1.4fr 0.65fr 0.65fr;
}

.recharge-row {
  grid-template-columns: minmax(120px, 0.8fr) minmax(120px, 1fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr) minmax(160px, auto);
}

.recharge-row-action {
  display: flex;
  justify-content: flex-end;
}

.recharge-row-action .button {
  width: auto;
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}

.balance-history-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.balance-history-card h3 {
  margin: 4px 0 2px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.balance-history-card small {
  color: var(--muted);
  line-height: 1.45;
}

.balance-history-list {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.balance-history-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.55);
}

.balance-history-row div {
  display: grid;
  gap: 3px;
}

.balance-history-row strong,
.balance-history-row b {
  color: var(--text);
}

.balance-history-row span,
.balance-history-row small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.balance-history-row b {
  white-space: nowrap;
}

.balance-history-row.is-credit b {
  color: var(--success);
}

.balance-history-row.is-pending b {
  color: var(--muted);
}

.order-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.order-card-head div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.order-card-head span,
.order-detail-grid strong {
  overflow-wrap: anywhere;
}

.order-card-head small {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.28);
}

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

.order-detail-grid article {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.085);
}

.order-detail-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-detail-grid strong {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
}

.order-detail-grid small {
  color: var(--muted);
}

.order-details {
  display: grid;
  gap: 12px;
}

.order-details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--gold);
  font-weight: 950;
}

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

.order-timeline span {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.order-timeline i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(216, 210, 232, 0.38);
}

.order-timeline strong {
  color: inherit;
  font-size: 0.83rem;
}

.order-timeline small {
  color: inherit;
}

.order-timeline span.is-active {
  color: #ffffff;
  border-color: rgba(34, 197, 94, 0.32);
  background: rgba(34, 197, 94, 0.08);
}

.order-timeline span.is-active i {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

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

.confirm-warning {
  grid-column: 1 / -1;
  border-color: rgba(255, 190, 90, 0.34) !important;
  background: rgba(255, 190, 90, 0.08) !important;
}

.balance-only-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(34, 197, 94, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(139, 92, 246, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.balance-only-card strong {
  color: #ffffff;
}

.balance-only-card span {
  color: var(--muted);
  line-height: 1.45;
}

.balance-only-card .button {
  width: fit-content;
}

.order-status-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.order-status-guide span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.085);
  font-size: 0.84rem;
  font-weight: 850;
}

.order-status-guide b {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(216, 210, 232, 0.7);
}

.order-status-guide span:nth-child(2) b,
.order-status-guide span:nth-child(4) b {
  background: var(--green);
}

.order-status-guide span:nth-child(3) b {
  background: var(--violet);
}

.order-row.status-waiting {
  border-color: rgba(216, 210, 232, 0.4);
}

.order-row.status-paid,
.order-row.status-success {
  border-color: rgba(65, 220, 140, 0.4);
}

.order-row.status-warning {
  border-color: rgba(255, 90, 151, 0.7);
  background: rgba(139, 92, 246, 0.055);
}

.delivery-box {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.06);
}

.delivery-box strong {
  color: var(--gold);
  line-height: 1.45;
}

.warning-box strong {
  color: var(--rose);
}

.delivery-box pre {
  overflow-x: auto;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  white-space: pre-wrap;
}

.order-row small {
  color: var(--rose);
  font-weight: 950;
}

.store-hero {
  display: grid;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  margin: 24px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(17, 16, 24, 0.78);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.store-hero h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
}

.store-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0 36px;
}

.store-main,
.store-detail {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: var(--surface-glass);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  padding: clamp(18px, 3vw, 28px);
}

.store-main .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

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

.store-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  border: 1px dashed rgba(139, 92, 246, 0.28);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.store-empty strong {
  margin-top: 12px;
  font-size: 1.4rem;
}

.store-empty > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.store-empty p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.store-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 14px;
  min-height: 174px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.store-card:hover {
  border-color: rgba(139, 92, 246, 0.34);
  background: rgba(139, 92, 246, 0.06);
}

.store-card-image,
.store-art {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.store-card-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  font-size: 1.2rem;
}

.store-card-image img,
.store-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-card-image span,
.store-art span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.store-card-meta {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
}

.store-card small,
.store-card span,
.store-detail p,
.store-detail label {
  color: var(--muted);
}

.store-card strong {
  font-size: 1.25rem;
}

.store-card em {
  color: var(--gold);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 950;
}

.store-detail {
  position: sticky;
  top: 112px;
}

.store-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.store-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.store-facts article {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.store-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-facts strong {
  display: block;
  margin-top: 6px;
}

.empty-state {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.tutorial-modal .auth-card {
  display: grid;
  gap: 14px;
  width: 100%;
  max-height: calc(100dvh - 28px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(16px, 3vw, 24px);
}

.tutorial-modal {
  width: min(980px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
}

.tutorial-banner {
  width: 100%;
  aspect-ratio: 1920 / 1080;
  max-height: min(44vh, 420px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

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

.tutorial-step-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.tutorial-step-grid span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  font-weight: 1000;
}

.tutorial-step-grid p {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 780;
}

.tutorial-note {
  padding: 12px 14px;
  border: 1px solid rgba(216, 210, 232, 0.3);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(216, 210, 232, 0.07);
  line-height: 1.5;
}

.confirm-summary {
  display: grid;
  gap: 10px;
}

.confirm-summary article {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.confirm-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.confirm-summary strong {
  line-height: 1.35;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-modal {
  width: min(460px, calc(100% - 28px));
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
}

.auth-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.auth-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.security-warning {
  display: grid;
  gap: 9px;
  margin: 4px 0 14px;
  padding: 14px;
  border: 1px solid rgba(216, 210, 232, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(139, 92, 246, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.security-warning[hidden] {
  display: none;
}

.security-warning strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.security-warning p,
.security-warning li {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 780;
}

.security-warning ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.35rem;
}

.text-button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-weight: 900;
}

.google-button {
  width: 100%;
  margin: 14px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.email-change-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.email-change-form label {
  margin-bottom: 0;
}

.site-footer {
  width: min(1220px, calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--muted);
  font-weight: 850;
}

.site-footer a:hover {
  color: var(--text);
}

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

.legal-page p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-shell {
  display: grid;
  gap: 18px;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 44px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-sidebar,
.admin-topbar {
  border: 1px solid rgba(216, 210, 232, 0.14);
  border-radius: 8px;
  background: rgba(7, 7, 12, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.admin-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 18px;
  padding: 16px;
}

.admin-brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.admin-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

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

.admin-brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
}

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

.admin-nav button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.admin-nav button:hover,
.admin-nav button.active {
  color: var(--text);
  border-color: rgba(255, 203, 77, 0.3);
  background: rgba(255, 203, 77, 0.1);
}

.admin-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 1.45rem;
}

.admin-live-message {
  margin-top: 8px;
  max-width: 680px;
}

.admin-products {
  display: grid;
  gap: 12px;
}

.api-doc-box {
  display: grid;
  gap: 9px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(216, 210, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(140, 68, 255, 0.075)),
    rgba(8, 8, 13, 0.62);
}

.api-doc-box code {
  width: max-content;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(216, 210, 232, 0.16);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.24);
  overflow-wrap: anywhere;
}

.api-doc-box small {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 780;
}

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

.admin-stats article,
.admin-row,
.user-manager-stats article {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-stats article {
  padding: 16px;
}

.admin-stats span,
.user-manager-stats span,
.admin-row span,
.admin-row small {
  display: block;
  color: var(--muted);
}

.admin-stats strong,
.user-manager-stats strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.admin-alerts,
.webhook-helper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.admin-alerts article,
.webhook-helper article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-alerts article.is-warning {
  border-color: rgba(255, 203, 77, 0.48);
  background: rgba(255, 203, 77, 0.08);
}

.admin-alerts span,
.webhook-helper span,
.webhook-helper small {
  color: var(--muted);
  font-weight: 820;
  line-height: 1.45;
}

.webhook-helper span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-alerts strong,
.webhook-helper strong {
  overflow-wrap: anywhere;
}

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

.admin-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr);
  gap: 14px;
  padding: 16px;
}

.user-row {
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.9fr) minmax(320px, 1.2fr);
  align-items: start;
}

.admin-row.is-banned {
  border-color: rgba(255, 69, 121, 0.7);
  background: rgba(255, 43, 74, 0.1);
}

.user-profile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.user-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #15110b;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  font-weight: 1000;
}

.user-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.user-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(216, 210, 232, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 900;
}

.user-metrics,
.user-manager-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.user-manager-stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 14px;
}

.user-metrics article,
.user-manager-stats article {
  padding: 12px;
}

.user-metrics strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

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

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

.admin-filterbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 10px;
  margin-bottom: 14px;
}

.user-filterbar {
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px));
}

.user-count {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.admin-product {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

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

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
}

.admin-store-order select {
  min-height: 42px;
}

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

.level-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.level-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #07070b;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-weight: 950;
}

.level-grid h3 {
  margin-top: 12px;
}

.level-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

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

  .site-nav nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .panel-body .site-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .panel-body .site-nav nav {
    display: none;
  }

  .nav-actions {
    width: 100%;
  }

  .panel-body .nav-actions {
    width: auto;
  }

  .home-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "order"
      "account";
  }

  .login-shell,
  .saas-hero,
  .landing-grid,
  .store-layout,
  .panel-hero,
  .panel-grid,
  .client-dashboard,
  .reward-spotlight,
  .referral-layout {
    grid-template-columns: 1fr;
  }

  .saas-hero {
    min-height: 0;
  }

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

  .panel-hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .panel-main-banner {
    height: 100%;
    min-height: 0;
  }

  .account-card {
    position: static;
  }

  .panel-grid .account-card {
    position: static;
  }

  .store-detail {
    position: static;
  }

  .service-row,
  .order-row {
    grid-template-columns: 1fr;
  }

  .store-grid,
  .store-card,
  .stat-grid,
  .status-grid,
  .steps-flow,
  .store-facts,
  .detail-grid,
  .benefits-grid,
  .help-guide-grid,
  .guide-module-grid,
  .payment-method-grid,
  .tutorial-step-grid,
  .featured-grid,
  .ranking-grid,
  .reviews-grid,
  .rewards-grid,
  .bonus-grid,
  .referral-steps,
  .faq-grid,
  .improvement-grid,
  .form-row,
  .level-grid,
  .admin-workspace,
  .admin-stats,
  .user-manager-stats,
  .user-metrics,
  .admin-alerts,
  .webhook-helper,
  .admin-row,
  .admin-filterbar,
  .admin-controls,
  .recharge-bonus-grid,
  .order-detail-grid,
  .order-timeline,
  .order-status-guide {
    grid-template-columns: 1fr;
  }

  .order-card-head {
    flex-direction: column;
  }

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

  .recharge-row-action {
    justify-content: stretch;
  }

  .recharge-row-action .button {
    width: 100%;
  }

  .recharge-bonus-grid,
  .recharge-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recharge-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .recharge-panel-top small {
    max-width: none;
    text-align: left;
  }

  .order-card-head small {
    width: fit-content;
  }

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

  .admin-sidebar {
    position: static;
  }

  .admin-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-nav button {
    text-align: center;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .guide-module {
    grid-template-columns: 1fr;
  }

  .price-meta {
    justify-items: start;
  }

  .service-row em,
  .price-meta small {
    text-align: left;
  }
}

@media (max-width: 680px) {
  main {
    width: min(100% - 24px, 1220px);
  }

  .admin-shell {
    width: min(100% - 24px, 1220px);
  }

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

  .site-nav {
    gap: 10px;
    padding: 10px 12px;
  }

  .panel-body .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .site-nav nav {
    gap: 8px;
    padding-bottom: 2px;
  }

  .panel-menu-inner {
    width: min(390px, 100%);
    grid-template-columns: 1fr;
  }

  .saas-hero {
    padding: 24px 18px;
  }

  .saas-hero-copy h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .public-service-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .public-service-card b {
    grid-column: 2;
  }

  .premium-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-nav nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    white-space: nowrap;
  }

  .panel-hero {
    padding: 14px;
  }

  .panel-hero-visual {
    width: 100%;
  }

  .panel-main-banner {
    aspect-ratio: 1920 / 1080;
    height: 100%;
  }

  .trust-strip article {
    min-height: 88px;
    padding: 13px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
  }

  .brand span {
    max-width: 112px;
    font-size: 0.88rem;
    line-height: 1.08;
    white-space: normal;
  }

  .panel-body .brand {
    gap: 8px;
    min-width: 0;
  }

  .panel-body .nav-actions {
    gap: 6px;
    flex: 0 0 auto;
  }

  .nav-balance-pill {
    min-height: 38px;
    gap: 6px;
    padding: 0 8px;
  }

  .nav-balance-pill span {
    display: none;
  }

  .nav-balance-pill strong {
    font-size: 0.8rem;
  }

  .nav-balance-pill small {
    padding-left: 6px;
    font-size: 0.65rem;
  }

  .panel-body .nav-actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .panel-body .account-label-full {
    display: none;
  }

  .panel-body .account-label-short {
    display: inline;
  }

  .panel-body .menu-toggle {
    gap: 7px;
  }

  .panel-body .menu-bars {
    width: 18px;
  }

  .nav-actions,
  .quick-grid,
  .checkout-steps,
  .recharge-form,
  .recharge-grid,
  .mini-hero,
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .panel-body .nav-actions .button,
  .panel-menu-head .button {
    width: auto;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .landing-grid,
  .panel-grid {
    padding-top: 14px;
  }

  .panel-hero {
    margin-top: 14px;
    padding: 18px;
  }

  .panel-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

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

  .platform-quick-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-quick-buttons button {
    width: 100%;
    justify-content: center;
  }

  .tutorial-modal {
    width: min(100% - 16px, 520px);
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .tutorial-modal .auth-card {
    max-height: calc(100dvh - 16px);
    padding: 14px;
  }

  .tutorial-banner {
    max-height: 28vh;
  }

  .tutorial-step-grid article {
    padding: 12px;
  }

  .section {
    margin: 18px 0;
  }

  .checkout-card,
  .account-card,
  .section,
  .landing-hero,
  .login-panel,
  .login-cover,
  .login-box {
    padding: 16px;
  }

  .login-shell {
    width: min(100% - 24px, 1120px);
  }

  .login-banner {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 390px) {
  .recharge-bonus-grid {
    grid-template-columns: 1fr;
  }

  .panel-body .site-nav {
    padding: 9px 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand span {
    max-width: 86px;
    font-size: 0.78rem;
  }

  .panel-body .nav-actions .button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .panel-body .menu-toggle {
    gap: 6px;
  }

  .panel-body .menu-toggle > span:last-child {
    display: none;
  }

  input,
  select,
  textarea {
    min-height: 48px;
  }
}
