:root {
  --bg-0: #000000;
  --bg-1: #0e0e12;
  --bg-2: #16161c;
  --glass: #14141a;
  --glass-strong: #121218;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(103, 61, 230, 0.45);
  --text: #ffffff;
  --muted: #a8a8b3;
  --accent: #673de6;
  --accent-hot: #7e56f2;
  --accent-deep: #673de6;
  --cyan: #8c5cff;
  --purple: #673de6;
  --pink: #8c5cff;
  --ok: #16d890;
  --gradient: linear-gradient(90deg, #673de6, #8c5cff);
  --gradient-soft: linear-gradient(160deg, rgba(103, 61, 230, 0.18), rgba(140, 92, 255, 0.1));
  --warn: #f5c16c;
  --danger: #ff6b8a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
  --shadow-lift: 0 18px 40px rgba(103, 61, 230, 0.22);
  --glow: 0 0 40px rgba(103, 61, 230, 0.28);
  --ring: 0 0 0 3px rgba(103, 61, 230, 0.35);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Atmospheric layers */
.fx-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 18%, rgba(103, 61, 230, 0.22), transparent 60%),
    linear-gradient(180deg, #000 0%, #07070b 100%);
}

.fx-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(103, 61, 230, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 61, 230, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 8%, transparent 58%);
}

a { color: var(--accent-hot); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

::selection {
  background: rgba(103, 61, 230, 0.22);
  color: var(--text);
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
  background: #000;
}
.site-chrome.is-stuck .site-header {
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.site-chrome.is-stuck .nav-promo {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border-bottom-width: 0;
}
.site-chrome.is-stuck .nav-bar { min-height: 58px; }
.site-chrome.is-stuck .nav-contact { display: none; }

.nav-promo {
  background: #0b0618;
  color: #ddd6ff;
  border-bottom: 1px solid rgba(103, 61, 230, 0.28);
  max-height: 52px;
  overflow: hidden;
}
.nav-promo .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
}
.nav-promo-offer {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem 0.7rem;
  margin: 0;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 600;
}
.nav-promo-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(103, 61, 230, 0.16);
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-promo-copy { color: #edf4ff; }
.nav-promo-code,
.nav-coupon-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.18rem 0.55rem;
  border-radius: 7px;
  border: 1px dashed rgba(103, 61, 230, 0.5);
  background: rgba(5, 9, 20, 0.55);
  color: var(--cyan);
  font: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-promo-code:hover,
.nav-coupon-chip:hover {
  background: rgba(103, 61, 230, 0.12);
  color: #82e7ff;
}
.nav-promo-code.is-copied,
.nav-coupon-chip.is-copied {
  border-style: solid;
  color: var(--ok);
}
.nav-promo-apply { margin: 0; display: inline-flex; width: auto; }
.nav-promo-apply button,
.nav-promo-applied {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-promo-apply button {
  background: #673de6;
  color: #fff;
}
.nav-promo-apply button:hover { filter: brightness(1.06); }
.nav-promo-applied {
  background: rgba(66, 232, 160, 0.16);
  color: var(--ok);
  cursor: default;
}
.nav-promo-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  color: #8b9bb3;
  font-size: 0.8rem;
  font-weight: 600;
}
.nav-promo-meta a {
  color: #edf4ff !important;
}
.nav-promo-meta a:hover { color: var(--cyan) !important; }

.nav-coupon-chip { display: none; }
.site-chrome.is-stuck .nav-coupon-chip { display: inline-flex; }

.site-header {
  padding: 0;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.site-chrome .wrap {
  width: min(1200px, calc(100% - 2rem));
}
.nav-bar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0.75rem 1rem;
  min-height: 64px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text) !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
  min-width: 0;
}
.brand-logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: none;
  border: 0;
  transition: transform 0.45s var(--ease);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand:hover .brand-logo {
  transform: none;
  box-shadow: none;
}
.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.32rem;
  line-height: 1;
}
.brand-wordmark-main {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.brand-wordmark-sub {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.brand-live {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-left: 0.15rem;
  padding: 0.22rem 0.5rem 0.22rem 0.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #61718a;
  background: transparent;
  border: 0;
}
.brand-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px rgba(66, 232, 160, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand-logo { transform: none; }
}

.nav-center {
  display: flex;
  justify-content: flex-start;
  justify-self: start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.15rem;
  padding: 0;
  min-width: 0;
}
.nav-center .nav-flyout {
  position: static;
  flex: 0 0 auto;
  width: max-content;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.86rem;
  font-weight: 650;
  margin: 10px 0;
  padding: 0.4rem 0.72rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover {
  color: #fff !important;
  background: rgba(103, 61, 230, 0.16);
}
.nav-link.is-active,
.nav-flyout.is-active > .nav-flyout-sum,
.nav-flyout[open] > .nav-flyout-sum {
  color: #fff !important;
  background: rgba(103, 61, 230, 0.18);
  box-shadow: none;
}
.nav-link.is-active::after,
.nav-flyout.is-active > .nav-flyout-sum::after {
  display: none;
}

.nav-flyout { position: relative; }
.nav-flyout-sum,
.nav-user {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border: 0;
  background: none;
  font: inherit;
}
.nav-flyout-sum::-webkit-details-marker,
.nav-user::-webkit-details-marker,
.nav-burger::-webkit-details-marker { display: none; }
.nav-flyout-sum::marker,
.nav-user::marker,
.nav-burger::marker { content: ""; }
.nav-chev {
  opacity: 0.55;
  transition: transform 0.2s var(--ease);
}
.nav-flyout[open] .nav-chev,
.nav-center .nav-flyout:hover .nav-chev { transform: rotate(180deg); opacity: 1; }
.nav-flyout .nav-flyout-panel,
.nav-flyout .nav-mega { display: none; }
.nav-flyout[open] .nav-flyout-panel { display: grid; }
.nav-flyout[open] .nav-mega { display: grid; }
.nav-flyout-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 268px;
  gap: 0.2rem;
  padding: 0.5rem;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: flyIn 0.22s var(--ease);
  z-index: 90;
}
@keyframes flyIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-flyout-panel-end {
  left: auto;
  right: 0;
  transform: none;
  min-width: 220px;
  animation-name: flyInEnd;
}
@keyframes flyInEnd {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: min(640px, calc(100vw - 2rem));
  max-width: 640px;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.8fr);
  justify-content: start;
  gap: 0;
  padding: 0.85rem;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
  animation: megaIn 0.16s var(--ease);
  z-index: 90;
}
.nav-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #673de6;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mega-feat {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-content: start;
  align-items: start;
  column-gap: 0.85rem;
  row-gap: 0.28rem;
  min-height: 100%;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 12px;
  color: var(--text) !important;
  background: #0e0e12;
  border: 1px solid var(--line);
}
.nav-mega-feat:hover {
  border-color: #673de6;
  background: rgba(103, 61, 230, 0.12);
  box-shadow: none;
}
.nav-mega-feat .nav-fly-ico {
  grid-row: 1 / 3;
  margin-top: 0.1rem;
}
.nav-mega-feat strong {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.nav-mega-feat small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}
.nav-mega-go {
  grid-column: 2;
  margin-top: auto;
  padding-top: 0.55rem;
  color: #b9a6ff;
  font-size: 0.86rem;
  font-weight: 700;
}
.nav-mega-feat:hover .nav-mega-go { color: #fff; }
.nav-mega-links {
  display: grid;
  align-content: start;
  gap: 0.08rem;
  margin-left: 0.75rem;
  padding: 0.35rem 0.15rem 0.35rem 0.9rem;
  border-left: 1px solid var(--line);
}
.nav-mega-links p {
  margin: 0 0.35rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9a6ff;
}
.nav-mega-links a {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
}
.nav-mega-links a:hover {
  background: rgba(103, 61, 230, 0.16);
  color: #fff !important;
}
.nav-flyout-panel a,
.nav-flyout-panel button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text) !important;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: none;
}
.nav-flyout-panel a span { display: grid; gap: 0.12rem; min-width: 0; }
.nav-flyout-panel strong { font-size: 0.92rem; letter-spacing: -0.02em; }
.nav-flyout-panel small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 550;
}
.nav-flyout-panel a:hover,
.nav-flyout-panel button:hover {
  background: linear-gradient(90deg, rgba(103, 61, 230, 0.1), rgba(139, 92, 246, 0.08));
  color: var(--accent) !important;
}
.nav-fly-ico {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ddd6ff;
  background: rgba(103, 61, 230, 0.18);
  border: 1px solid rgba(103, 61, 230, 0.35);
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
  position: relative;
}
.nav-phone {
  display: none;
  color: #c5d0e4 !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--cyan) !important; }
.brand { align-self: center; }
.nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text) !important;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-icon:hover, .nav-icon.is-active {
  color: var(--cyan) !important;
  background: rgba(103, 61, 230, 0.1);
  border-color: rgba(103, 61, 230, 0.22);
  box-shadow: 0 0 18px rgba(103, 61, 230, 0.18);
}
.nav-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(103, 61, 230, 0.35);
}
.nav-chip {
  color: var(--text) !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.48rem 0.7rem;
  border-radius: 8px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.nav-chip:hover, .nav-chip.is-active {
  background: rgba(103, 61, 230, 0.1);
  color: var(--cyan) !important;
}
.nav-cta {
  padding: 0.55rem 1.05rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9px !important;
  box-shadow: none;
  white-space: nowrap;
}
.nav-user {
  gap: 0.45rem;
  padding: 0.18rem 0.5rem 0.18rem 0.18rem;
  border-radius: 8px;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
}
.nav-user:hover,
.nav-account[open] .nav-user {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 0 14px rgba(103, 61, 230, 0.35);
}
.nav-user-copy {
  display: grid;
  line-height: 1.05;
  text-align: left;
}
.nav-user-copy small {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.nav-user-copy b {
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 8.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-account .nav-flyout-panel a,
.nav-account .nav-flyout-panel button { padding: 0.62rem 0.8rem; }

.nav-more { display: none; position: relative; z-index: 91; }
.nav-burger {
  list-style: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 92;
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #edf4ff;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.nav-more[open] .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-more[open] .nav-burger span:nth-child(2) { opacity: 0; }
.nav-more[open] .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-more:not([open]) .nav-drawer { display: none; }
.nav-drawer {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  min-width: 220px;
  display: grid;
  padding: 0.45rem;
  background: #121218;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}
.nav-drawer-kicker {
  margin: 0.55rem 0.55rem 0.2rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}
.nav-drawer-kicker:first-child { margin-top: 0.15rem; }
.nav-drawer a, .nav-drawer button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text) !important;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: none;
}
.nav-drawer a:hover, .nav-drawer button:hover {
  background: rgba(103, 61, 230, 0.16);
  color: #fff !important;
}
.nav-drawer-cta {
  margin-top: 0.25rem;
  background: #673de6 !important;
  color: #fff !important;
  text-align: center !important;
}
.nav-drawer-cta:hover { filter: brightness(1.05); color: #fff !important; }

body.nav-locked { overflow: hidden; }

@media (max-width: 1180px) {
  .nav-promo-meta,
  .nav-promo-apply { display: none; }
  .nav-promo .wrap { justify-content: center; }
  .nav-bar { grid-template-columns: 1fr auto; min-height: 60px; }
  .nav-center, .nav-hide-sm { display: none !important; }
  .nav-more { display: block; }
  .nav-more[open] .nav-drawer {
    position: fixed;
    inset: 0;
    top: 60px;
    right: 0;
    left: 0;
    min-width: 0;
    height: calc(100dvh - 60px);
    padding: 0.6rem 1.15rem 1.5rem;
    border-radius: 0;
    border: 0;
    overflow: auto;
    background: #050914;
    animation: none;
  }
  .nav-drawer-kicker { color: var(--muted); }
  .nav-more[open] .nav-drawer a,
  .nav-more[open] .nav-drawer button {
    color: var(--text) !important;
    font-family: var(--font-display);
    font-size: 1.28rem;
    padding: 0.85rem 0.2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-more[open] .nav-drawer a:hover,
  .nav-more[open] .nav-drawer button:hover {
    background: transparent;
    color: var(--cyan) !important;
  }
  .nav-more[open] .nav-drawer-cta {
    margin-top: 1rem;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 0.9rem 1rem !important;
    font-size: 1rem !important;
    background: #673de6 !important;
    color: #fff !important;
    text-align: center !important;
  }
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.15rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.78rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, border-color 0.2s, filter 0.2s;
}
.btn:hover { box-shadow: none; filter: brightness(1.06); }
.btn:active { box-shadow: none; }
.btn:focus-visible { box-shadow: var(--ring); }
.btn-primary {
  position: relative;
  overflow: hidden;
  background: #673de6;
  background-size: 100% 100%;
  color: #fff !important;
  box-shadow: none;
  border: 1px solid #673de6;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
}
.btn-primary:hover {
  background: #7e56f2;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text) !important;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.btn-danger {
  background: rgba(255, 107, 138, 0.12);
  border-color: rgba(255, 107, 138, 0.35);
  color: var(--danger) !important;
}

/* Hero */
.hero {
  padding: 4.25rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0.85rem 0 1.1rem;
  color: var(--text);
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  line-height: 1.65;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  background: #14141a;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  inset: 18% 12%;
  border: 1px dashed rgba(103, 61, 230, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: #14141a;
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat span { color: var(--muted); font-size: 0.8rem; font-weight: 500; }

/* Sections */
.section {
  padding: 2.75rem 0 3.25rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  margin: 0;
}
.section-head p { color: var(--muted); margin: 0.4rem 0 0; max-width: 36rem; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gradient-soft);
  color: var(--accent);
  border: 1px solid rgba(103, 61, 230, 0.22);
  width: fit-content;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.plan-card, .panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 61, 230, 0.35);
  box-shadow: var(--shadow-lift);
}
.plan-card:hover::before { opacity: 1; }
.plan-card.featured {
  border-color: rgba(103, 61, 230, 0.45);
  box-shadow: var(--glow), var(--shadow);
}
.plan-card.featured::before { opacity: 1; }
.plan-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.plan-card .btn { margin-top: auto; width: 100%; }

.price {
  font-family: var(--font-display);
  font-size: 2.05rem;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.spec-list li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.08rem;
  border-radius: 50%;
  background: var(--gradient-soft);
  flex: 0 0 auto;
  background-image:
    linear-gradient(135deg, rgba(103, 61, 230, 0.18), rgba(139, 92, 246, 0.14)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230ea5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6.3 5 8.7l4.5-5'/%3E%3C/svg%3E");
  background-size: cover, 0.7rem 0.7rem;
  background-position: center, center;
  background-repeat: no-repeat;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(103, 61, 230, 0.12), rgba(139, 92, 246, 0.06)),
    var(--glass-strong);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  pointer-events: none;
}

.messages {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.messages li {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.messages .success { border-color: rgba(52, 211, 153, 0.4); }
.messages .error { border-color: rgba(251, 113, 133, 0.45); }
.messages .warning { border-color: rgba(251, 191, 36, 0.45); }

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.field > label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.field-control,
input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]),
select,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e0e12;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color-scheme: dark;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select {
  appearance: none;
  background-color: #0e0e12;
  background-image:
    linear-gradient(45deg, transparent 50%, #b9a6ff 50%),
    linear-gradient(135deg, #b9a6ff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
select option,
select optgroup {
  background-color: #14141a;
  color: #fff;
}
.field-control:focus,
input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #673de6;
  box-shadow: var(--ring);
}
.field-control::placeholder, input::placeholder, textarea::placeholder {
  color: #7a7a88;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  text-align: left;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.table th { color: var(--muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

.pill {
  display: inline-flex;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pill-ok { background: rgba(52, 211, 153, 0.14); color: var(--ok); }
.pill-warn { background: rgba(251, 191, 36, 0.14); color: var(--warn); }
.pill-danger { background: rgba(251, 113, 133, 0.14); color: var(--danger); }
.pill-muted { background: rgba(255, 255, 255, 0.06); color: var(--muted); }

.alert-banner {
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

.access-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(2, 8, 13, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.secret-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.secret-value-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: min(100%, 280px);
  flex: 1 1 auto;
}

.secret-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 12rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  font: inherit;
  letter-spacing: 0.08em;
}

.secret-input:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.12);
}

.secret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(103, 61, 230, 0.08);
  color: var(--accent);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.secret-btn:hover {
  background: rgba(103, 61, 230, 0.16);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.secret-btn.is-copied {
  color: var(--ok);
  border-color: rgba(52, 211, 153, 0.45);
}

.auth-shell {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 2.5rem 0 3rem;
}
.auth-card {
  width: min(440px, 100%);
}

.auth-split {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.auth-aside {
  background: #14141a;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.auth-aside h2 {
  margin: 0 0 0.7rem;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  color: var(--text);
}
.auth-aside p { margin: 0; color: var(--muted); line-height: 1.6; }
.auth-aside ul { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.auth-aside li { font-weight: 600; font-size: 0.95rem; }
.auth-aside li::before { content: "✓  "; color: var(--cyan); }
.auth-panel {
  background: #14141a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}
.auth-aside-foot {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.auth-panel h2 { margin: 0 0 0.35rem; font-size: 1.55rem; }
.auth-panel .btn { width: 100%; }
.field-error { color: var(--danger); font-size: 0.85rem; }
.errorlist {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--danger);
  font-size: 0.85rem;
}
.auth-panel .lead-sm { color: var(--muted); margin: 0 0 1.2rem; }
.auth-foot { margin-top: 1rem; color: var(--muted); font-size: 0.92rem; }
.auth-staff-tag {
  margin: 0 0 0.7rem;
  width: fit-content;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: rgba(103, 61, 230, 0.1);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-panel .errornote {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(251, 113, 133, 0.35);
  background: rgba(251, 113, 133, 0.08);
  color: #be123c;
  font-size: 0.9rem;
  line-height: 1.45;
}
.auth-panel .errorlist {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--danger);
  font-size: 0.85rem;
}
.auth-panel input[type="text"],
.auth-panel input[type="password"] {
  width: 100%;
}
.auth-panel .required {
  font-weight: 600;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-of-type { border-bottom: 0; }
.cart-item h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.cart-item p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
}
.totals-row {
  display: flex;
  justify-content: space-between;
  margin: 0.45rem 0;
  color: var(--muted);
}
.totals-row strong { color: var(--text); }
.about-facts {
  background: #0e0e12;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.45rem;
}
.about-facts p { margin: 0; color: var(--text); font-size: 0.95rem; }
.about-facts strong { color: var(--muted); font-weight: 600; }
.about-facts a { font-weight: 700; }
.founder-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; }
.founder-pills span {
  background: rgba(103, 61, 230, 0.16);
  color: #ddd6ff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.crumb { color: var(--muted); font-size: 0.85rem; margin: 0 0 0.85rem; }
.crumb a { color: var(--muted); }
.hh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 0 0 2.4rem;
}
.hh-step {
  position: relative;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.hh-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.hh-step b {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.55rem;
  border-radius: 9px;
  background: var(--gradient-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.hh-step h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.hh-step p { margin: 0; color: var(--muted); font-size: 0.88rem; }

@media (max-width: 860px) {
  .auth-split, .hh-steps { grid-template-columns: 1fr; }
}

.page-hero {
  padding: 2.4rem 0 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  letter-spacing: -0.045em;
  margin: 0 0 0.85rem;
  line-height: 1.02;
  font-weight: 700;
}
.page-hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  line-height: 1.65;
  margin: 0;
}
.page-hero .hh-checks { max-width: 34rem; }
.page-hero .hh-cta-row { margin-top: 0.35rem; }
.pay-accept-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose h2, .prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--text);
}
.prose p, .prose li { color: var(--muted); line-height: 1.7; }
.prose strong { color: var(--text); }
.legal h2 { margin-top: 1.4rem; font-size: 1.15rem; }
.legal-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.legal-doc-card {
  display: block;
  color: inherit !important;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.legal-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(103, 61, 230, 0.12);
}
.legal-doc-card h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}
.legal-doc-card p { color: var(--muted); margin: 0 0 0.75rem; }
.legal-doc-card span { font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.numbered-steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.announce-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.announce-item:last-child { border-bottom: 0; }
.announce-item h3 {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--font-display);
  color: var(--text);
}

/* Footer */
.site-footer {
  margin-top: 4.5rem;
  padding: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.15rem 1.5rem;
  padding: 2.1rem 0 2rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.footer-cta::before { display: none; }
.footer-cta h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-cta p { margin: 0; color: var(--muted); max-width: 36rem; line-height: 1.55; }
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 2.2rem 1.6rem;
  padding: 2.4rem 0 2.1rem;
}
.footer-brand p {
  margin: 0.85rem 0 0;
  max-width: 22rem;
  line-height: 1.55;
  color: var(--muted);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  margin-top: 1rem;
}
.footer-contact a {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.92rem;
}
.footer-contact a:hover { color: #b9a6ff !important; }
.site-footer .brand-wordmark-main,
.site-footer .brand-wordmark-sub { color: #fff; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  align-items: flex-start;
}
.footer-col h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}
.footer-col a {
  color: var(--muted) !important;
  padding: 0.28rem 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
}
.footer-col a::after { display: none; }
.footer-col a:hover {
  color: #fff !important;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.footer-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-pay-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
}
.footer-pay-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-pay-logos li {
  display: flex;
  line-height: 0;
  opacity: 0.92;
}
.footer-pay-note {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.1rem;
}
.footer-legal a {
  color: var(--muted) !important;
  font-weight: 500;
}
.footer-legal a:hover { color: #fff !important; }

@media (max-width: 900px) {
  .footer-pay-note { margin-left: 0; width: 100%; }
}

/* Payment accept */
.pay-accept {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid var(--line);
  background: transparent;
}
.pay-accept-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  margin-bottom: 1.35rem;
}
.pay-accept-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  letter-spacing: -0.03em;
}
.pay-accept-head p { margin: 0.4rem 0 0; color: var(--muted); max-width: 36rem; line-height: 1.5; }
.pay-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #14141a;
  color: var(--muted);
  font-size: 0.82rem;
}
.pay-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.pay-method {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 0.9rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #14141a;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pay-method:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.pay-method strong {
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-display);
}
.pay-method small { color: var(--muted); font-size: 0.78rem; }
.pay-badge { display: inline-flex; margin-bottom: 0.25rem; }
.pay-badge svg { display: block; border-radius: 6px; }
.pay-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.pay-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.84rem;
}
.pay-trust-item svg { color: var(--accent); flex: 0 0 auto; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45);
}
.whatsapp-float:hover {
  color: #fff !important;
}
.whatsapp-float-label { padding-right: 0.15rem; }

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero, .dashboard-grid, .legal-doc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pay-methods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 0.85rem; right: 0.9rem; bottom: 0.9rem; }
}

@media (max-width: 640px) {
  .nav-promo { max-height: 44px; }
  .nav-promo-kicker,
  .nav-promo-copy { display: none; }
  .nav-promo .wrap { min-height: 36px; }
}

@media (max-width: 520px) {
  .pay-methods { grid-template-columns: 1fr 1fr; }
  .brand { gap: 0.5rem; }
  .brand-logo { width: 28px; height: 28px; }
  .brand-wordmark-main,
  .brand-wordmark-sub { font-size: 0.98rem; }
  .nav-bar { gap: 0.4rem; padding: 0; }
  .nav-cta {
    padding: 0.48rem 0.78rem !important;
    font-size: 0.78rem !important;
    white-space: nowrap;
  }
  .nav-icon { width: 36px; height: 36px; border-radius: 8px; }
  .hh-hero { padding-top: 2.2rem; }
  .hh-checks { grid-template-columns: 1fr; }
  .hh-cta-row .btn { flex: 1 1 auto; }
}

.section, #plans, #advantages, #data-center, #support {
  scroll-margin-top: 7.5rem;
}

.hh-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #b9a6ff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hh-kicker-light {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #b9a6ff;
}

.hh-hero {
  padding: 3.6rem 0 1.6rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.hh-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.hh-hero h1 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  text-shadow: none;
  animation: none;
}

.hh-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.6rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}
.hh-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hh-checks li::before {
  content: "✓";
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #16d890;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: none;
}

.hh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hh-from {
  margin: 1.1rem 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.hh-guarantee {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hh-feature-card {
  position: relative;
  background: #14141a;
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1.45rem 1.4rem;
  box-shadow: var(--shadow);
}
.hh-feature-card::after { display: none; }
.hh-feature-card .badge { margin-bottom: 0.35rem; }
.hh-feature-card .price { font-size: 2.6rem; font-weight: 800; }
.hh-feature-card .price small { font-size: 0.85rem; color: var(--muted); }
.hh-feature-card p { color: var(--muted); margin: 0.35rem 0 1rem; }
.hh-feature-card .btn { width: 100%; margin-top: 0.4rem; }

.hh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0 2.5rem;
}
.hh-stats .stat {
  text-align: center;
  background: #14141a;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.2rem 0.7rem;
  box-shadow: var(--shadow-sm);
}
.hh-stats .stat strong {
  font-size: 1.5rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(103, 61, 230, 0.16);
}

.hh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.hh-feature-item {
  position: relative;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.hh-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 61, 230, 0.3);
  box-shadow: var(--shadow-lift);
}
.hh-feature-item h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.hh-feature-item p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.hh-ddos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hh-ddos span {
  background: rgba(103, 61, 230, 0.1);
  color: var(--cyan);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.hh-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}
.hh-price-card {
  position: relative;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.45rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hh-price-card::before { display: none; }
.hh-price-card:hover {
  transform: none;
  border-color: rgba(103, 61, 230, 0.45);
  box-shadow: var(--shadow-sm);
}
.hh-price-card:hover::before { opacity: 0; }
.hh-price-card.featured {
  border-color: #673de6;
  box-shadow: none;
  overflow: hidden;
  padding-top: 2.7rem;
}
.hh-price-card.featured::before { opacity: 0; }
.hh-price-card h3 { margin: 0; font-size: 1.15rem; }
.hh-price-card .tagline { color: var(--muted); margin: 0; font-size: 0.86rem; min-height: 2.4em; }
.hh-price-card .price { font-size: 1.85rem; }
.hh-locked { color: var(--muted); font-size: 0.8rem; margin: 0; }
.hh-price-card .spec-list { margin-top: 0.35rem; }
.hh-price-card .btn { width: 100%; margin-top: auto; }

.hh-money {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(103, 61, 230, 0.1), rgba(18, 28, 57, 0.82));
  border: 1px solid rgba(103, 61, 230, 0.16);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
}
.hh-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.hh-help-item {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  color: var(--text) !important;
}
.hh-help-item strong { display: block; margin-bottom: 0.25rem; }
.hh-help-item span { color: var(--muted); font-size: 0.86rem; }

.nav-pills {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.deploy-hero { padding: 0.4rem 0 0.2rem; }
.deploy-hero h1 {
  margin: 0.15rem 0 0.45rem;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.04em;
}
.deploy-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}
.deploy-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem 0.35rem 0.35rem;
}
.deploy-steps li span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(103, 61, 230, 0.1);
  color: var(--cyan);
}
.deploy-steps li.is-active {
  color: var(--text);
  border-color: rgba(103, 61, 230, 0.28);
}
.deploy-steps li.is-active span {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 10px rgba(103, 61, 230, 0.3);
}

.deploy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.85fr);
  gap: 1.15rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.deploy-main { display: grid; gap: 1rem; }
.deploy-block { padding: 1.25rem 1.3rem 1.4rem; }
.deploy-block-head h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}
.deploy-block-head h2 span { color: var(--muted); font-weight: 600; font-size: 0.85em; }
.deploy-block-head p { margin: 0; color: var(--muted); }

.dc-grid, .os-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.dc-grid { grid-template-columns: 1fr; }
.os-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.os-family-label {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.dc-card, .os-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 28, 57, 0.88), rgba(8, 13, 28, 0.92));
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.dc-card:hover, .os-card:hover {
  border-color: rgba(103, 61, 230, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(103, 61, 230, 0.1);
}
.dc-card input[type="radio"], .os-card input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  pointer-events: auto;
}
.dc-card:has(input:checked), .os-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.16), 0 14px 30px rgba(103, 61, 230, 0.12);
  background: #14141a;
}
.dc-flag {
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.dc-body { display: grid; gap: 0.12rem; min-width: 0; }
.dc-body strong { font-size: 1.02rem; }
.dc-body small { color: var(--muted); }
.dc-body em { font-style: normal; font-size: 0.78rem; color: var(--accent); font-weight: 700; }
.dc-meta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.dc-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.os-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}
.os-logo-svg { width: 48px; height: 48px; display: block; }
.os-copy { display: grid; gap: 0.15rem; min-width: 0; }
.os-copy strong { font-size: 0.95rem; }
.os-copy small { color: var(--muted); font-size: 0.75rem; word-break: break-all; }
.os-check {
  margin-left: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d7dde8;
  flex: 0 0 auto;
}
.os-card:has(input:checked) .os-check {
  border-color: var(--cyan);
  background: var(--gradient);
  box-shadow: inset 0 0 0 3px #fff;
}

.hostname-row { margin-top: 0.85rem; }
.hostname-hint { display: block; margin-top: 0.4rem; color: var(--muted); font-size: 0.8rem; }

.deploy-summary { position: sticky; top: 5.5rem; }
.deploy-summary h2 { margin: 0.2rem 0 0.2rem; letter-spacing: -0.03em; }
.deploy-tagline { margin: 0; color: var(--muted); }
.deploy-price {
  margin: 0.85rem 0 0.35rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.deploy-price small { font-size: 0.85rem; color: var(--muted); font-weight: 700; margin-left: 0.4rem; white-space: nowrap; }
.deploy-due {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.deploy-summary .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }
.deploy-empty { color: var(--muted); }

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(250px, 0.85fr);
  gap: 1.15rem;
  align-items: start;
}
.tk-page { padding: 0.2rem 0 2.5rem; }
.tk-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}
.tk-hero h1 {
  margin: 0.1rem 0 0.35rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}
.tk-hero .lead { margin: 0; max-width: 36rem; }
.tk-hero-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tk-list { display: grid; gap: 0.75rem; }
.tk-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: #14141a;
  border: 1px solid var(--line);
  color: inherit !important;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.tk-card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 61, 230, 0.32);
  box-shadow: var(--shadow-lift);
}
.tk-card h2 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}
.tk-card-id, .tk-card-meta, .tk-card-flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
}
.tk-hash {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(103, 61, 230, 0.1);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}
.tk-dept { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.tk-card-meta { color: var(--muted); font-size: 0.82rem; }
.tk-card-meta span + span::before { content: "·"; margin-right: 0.7rem; color: #cbd5e1; }
.tk-arrow { margin-left: auto; color: var(--accent); font-weight: 800; }

.tk-status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.tk-status-ok { background: rgba(66, 232, 160, 0.14); color: var(--ok); }
.tk-status-open { background: rgba(103, 61, 230, 0.14); color: var(--cyan); }
.tk-status-wait { background: rgba(245, 193, 108, 0.14); color: var(--warn); }
.tk-status-hold { background: rgba(139, 108, 255, 0.16); color: #c4b5fd; }
.tk-status-off { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
.tk-status-high { background: rgba(255, 107, 138, 0.16); color: var(--danger); }

.tk-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.tk-empty-icon { margin: 0 auto 0.8rem; width: 56px; }
.tk-empty h2 { margin: 0 0 0.35rem; letter-spacing: -0.03em; }
.tk-empty p { color: var(--muted); margin: 0 0 1rem; }

.tk-open-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.85fr);
  gap: 1.15rem;
  align-items: start;
}
.tk-open-main { padding: 1.35rem 1.4rem 1.5rem; }
.tk-fieldset { border: 0; padding: 0; margin: 0 0 1.1rem; }
.tk-fieldset legend {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.tk-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.tk-choice-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tk-choice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0e12;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.tk-choice:has(input:checked) {
  border-color: #673de6;
  background: rgba(103, 61, 230, 0.16);
  box-shadow: var(--ring);
}
.tk-choice input {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: #673de6;
  box-shadow: none;
  border: 0;
}
.tk-composer { min-height: 8rem; resize: vertical; }
.tk-tips {
  background: #14141a;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  box-shadow: none;
}
.tk-tips h3 { margin: 0 0 0.75rem; color: var(--text); letter-spacing: -0.03em; }
.tk-tips ul { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.65; }
.tk-tips p { margin: 1rem 0 0; color: var(--cyan); font-size: 0.88rem; }

.ticket-thread { display: grid; gap: 0.85rem; }
.ticket-msg {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.75rem;
  border-radius: 22px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: #14141a;
}
.tk-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(103, 61, 230, 0.12);
  color: var(--cyan);
}
.tk-avatar-sm { width: 32px; height: 32px; border-radius: 10px; font-size: 0.8rem; }
.ticket-msg.is-staff { border-color: rgba(103, 61, 230, 0.28); background: rgba(103, 61, 230, 0.1); }
.ticket-msg.is-staff .tk-avatar { background: #673de6; color: #fff; }
.ticket-msg header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
}
.ticket-msg header time { color: var(--muted); margin-left: auto; }
.tk-staff-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(103, 61, 230, 0.12);
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
}
.ticket-body { color: var(--muted); line-height: 1.7; }
.ticket-body p:last-child { margin-bottom: 0; }

.tk-reply-box {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.05rem 1.15rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.tk-reply-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.7rem; }
.tk-reply-head h3 { margin: 0; font-size: 1rem; letter-spacing: -0.02em; }
.tk-reply-head .tk-avatar { background: #673de6; color: #fff; }
.tk-reply-actions { margin-top: 0.75rem; }
.tk-closed-note {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #0e0e12;
  border: 1px solid var(--line);
  color: var(--muted);
}

.tk-side {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem 1.25rem;
  position: sticky;
  top: 5.5rem;
}
.tk-side h3 { margin: 0 0 0.85rem; letter-spacing: -0.03em; }
.tk-dl { margin: 0 0 1.1rem; display: grid; gap: 0.65rem; }
.tk-dl div { display: grid; gap: 0.1rem; }
.tk-dl dt { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.tk-dl dd { margin: 0; font-weight: 650; }
.tk-side .btn { width: 100%; justify-content: center; }

.tk-dash {
  margin-top: 1rem;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.15rem 1.25rem 1.25rem;
}
.tk-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.tk-dash-head h3 { margin: 0.1rem 0 0; letter-spacing: -0.03em; }
.tk-dash-list { display: grid; gap: 0.5rem; }
.tk-dash-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: #0e0e12;
  color: inherit !important;
  text-decoration: none;
}
.tk-dash-sub { font-weight: 650; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tk-dash-empty { color: var(--muted); margin: 0; }
.tk-dash-all { display: inline-block; margin-top: 0.75rem; font-weight: 700; }

@media (max-width: 900px) {
  .ticket-layout, .tk-open-layout, .tk-choice-grid, .tk-choice-3 { grid-template-columns: 1fr; }
  .tk-side { position: static; }
}

@media (max-width: 900px) {
  .deploy-layout, .os-grid { grid-template-columns: 1fr; }
  .deploy-summary { position: static; }
}

@media (max-width: 900px) {
  .hh-hero, .hh-money, .hh-feature-grid, .hh-stats, .hh-help-grid { grid-template-columns: 1fr 1fr; }
  .hh-hero { grid-template-columns: 1fr; }
  .hh-stats, .hh-help-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hh-checks, .hh-feature-grid, .hh-stats, .hh-help-grid, .hh-money { grid-template-columns: 1fr; }
}

.field-control.is-frozen,
input.is-frozen {
  background: #121218;
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.06);
  cursor: default;
  box-shadow: none;
}
.pf-optional {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: lowercase;
  letter-spacing: 0;
}
.pf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.pf-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pf-head {
  display: grid;
  grid-template-rows: 1.15rem 1.7rem 2.7rem;
  align-items: start;
  margin-bottom: 0.55rem;
}
.pf-head .hh-kicker {
  margin: 0;
  line-height: 1.15rem;
}
.pf-identity h2,
.pf-billing h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.7rem;
}
.pf-identity .lead-sm,
.pf-billing .lead-sm {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}
.pf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
}
.pf-card > .field,
.pf-card > .pf-grid {
  margin-bottom: 0.85rem;
}
.pf-card > .field:last-child,
.pf-card > .pf-grid:last-child {
  margin-bottom: 0;
}
.pf-card .pf-grid .field {
  margin-bottom: 0;
}
.pf-lock-note {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.pf-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-top: 0.15rem;
}
@media (max-width: 900px) {
  .pf-layout, .pf-grid { grid-template-columns: 1fr; }
  .pf-head { grid-template-rows: auto auto auto; }
}
.ca-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.ca-hero h1 {
  margin: 0.12rem 0 0.35rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
}
.ca-hero .lead { margin: 0; max-width: 38rem; }
.ca-hero-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.ca-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1.15rem;
  padding: 0.28rem;
  background: #0e0e12;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.ca-tabs a {
  color: var(--muted) !important;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.ca-tabs a.is-active, .ca-tabs a:hover {
  background: #14141a;
  color: var(--text) !important;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.ca-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  border-radius: 18px;
  background: rgba(103, 61, 230, 0.1);
  border: 1px solid rgba(103, 61, 230, 0.22);
}
.ca-alert p { margin: 0.2rem 0 0; color: var(--muted); }
.ca-alert-warn { background: rgba(245, 193, 108, 0.1); border-color: rgba(245, 193, 108, 0.35); }

.ca-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.ca-stat {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ca-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.ca-stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ca-stat strong {
  display: block;
  margin: 0.35rem 0 0.1rem;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}
.ca-stat small { color: var(--muted); font-size: 0.8rem; }

.ca-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.85fr);
  gap: 1.1rem;
  align-items: start;
}
.ca-main, .ca-side { display: grid; gap: 1rem; }
.ca-block {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.ca-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.ca-block-head h2 { margin: 0; font-size: 1.15rem; letter-spacing: -0.03em; }
.ca-block-head a { font-size: 0.85rem; font-weight: 700; }

.ca-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.ca-svc {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(18, 28, 57, 0.88), rgba(8, 13, 28, 0.92));
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.ca-svc:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 61, 230, 0.3);
  box-shadow: var(--shadow-lift);
}
.ca-svc-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.ca-svc h3 { margin: 0; font-size: 1.02rem; letter-spacing: -0.03em; }
.ca-svc-meta { margin: 0.35rem 0 0.55rem; color: var(--muted); font-size: 0.82rem; }
.ca-ip {
  display: inline-block;
  font-size: 0.82rem;
  padding: 0.28rem 0.5rem;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
}
.ca-ip-empty { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
.ca-dns { margin: 0.45rem 0 0; }
.ca-dns .tk-status { font-size: 0.68rem; }
.ca-renew { margin: 0.55rem 0 0.75rem; color: var(--muted); font-size: 0.8rem; }
.ca-svc-actions { display: flex; gap: 0.4rem; }
.ca-svc-actions .btn { padding: 0.45rem 0.8rem; font-size: 0.8rem; }

.ca-empty { text-align: center; padding: 1.4rem 0.5rem; }
.ca-empty h3 { margin: 0 0 0.3rem; }
.ca-empty p { color: var(--muted); margin: 0 0 0.9rem; }
.ca-muted { color: var(--muted); margin: 0; }

.ca-feed { display: grid; gap: 0.75rem; }
.ca-feed-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0.7rem;
}
.ca-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(103, 61, 230, 0.15);
}
.ca-feed-item strong { display: block; font-size: 0.9rem; }
.ca-feed-item p { margin: 0.15rem 0; color: var(--muted); font-size: 0.82rem; }
.ca-feed-item time { color: #94a3b8; font-size: 0.75rem; }

.ca-mini {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit !important;
}
.ca-mini:last-of-type { border-bottom: 0; }
.ca-mini span { font-family: ui-monospace, Menlo, monospace; font-size: 0.78rem; color: var(--accent); }
.ca-mini strong { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.ca-mini em { font-style: normal; color: var(--muted); font-size: 0.78rem; }

.vps-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.vps-hero h1 { margin: 0.1rem 0 0.3rem; letter-spacing: -0.045em; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.vps-hero .lead { margin: 0; }
.vps-hero-id { display: flex; gap: 0.9rem; align-items: center; }
.vps-os { width: 56px; height: 56px; border-radius: 16px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16); }
.vps-os .os-logo-svg { width: 56px; height: 56px; }
.vps-hero-status { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.vps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.85fr);
  gap: 1.1rem;
  align-items: start;
}
.vps-main { display: grid; gap: 1rem; }
.acc-panel {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem 1.25rem 1.15rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.acc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.acc-head h2 { margin: 0.1rem 0 0; letter-spacing: -0.03em; font-size: 1.25rem; }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.acc-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 5.4rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0e0e12;
}
.acc-item.is-ready {
  background: linear-gradient(180deg, rgba(103, 61, 230, 0.1), rgba(18, 28, 57, 0.82));
  border-color: rgba(103, 61, 230, 0.28);
}
.acc-item.is-wait { background: rgba(8, 13, 28, 0.72); }
.acc-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.acc-value { display: flex; align-items: center; gap: 0.45rem; min-width: 0; }
.acc-value code {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  overflow-wrap: anywhere;
}
.acc-copy {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #14141a;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(103, 61, 230, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.acc-copy:hover, .acc-copy.is-copied { background: var(--accent); color: #fff; }
.acc-wait {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--warn);
  background: rgba(245, 193, 108, 0.1);
  border: 1px solid rgba(245, 193, 108, 0.35);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}
.acc-wait i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  animation: accPulse 1.4s ease-in-out infinite;
}
@keyframes accPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
.acc-pass .secret-row { width: 100%; margin: 0; }
.acc-pass .secret-row > strong { display: none; }
.acc-pass .secret-value-wrap { width: 100%; min-width: 0; }
.acc-pass .secret-input {
  background: rgba(5, 9, 20, 0.55);
  border-color: rgba(103, 61, 230, 0.16);
  color: var(--text);
  letter-spacing: 0.1em;
}
.acc-foot { margin: 0.9rem 0 0; color: var(--muted); font-size: 0.84rem; }
.acc-foot-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(245, 193, 108, 0.1);
  border: 1px solid rgba(245, 193, 108, 0.35);
}
.acc-foot-cta p { margin: 0; color: var(--warn); font-size: 0.86rem; }
.acc-foot-cta a { font-weight: 800; color: var(--cyan) !important; }
.vps-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.vps-spec-grid article {
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: #0e0e12;
  border: 1px solid var(--line);
}
.vps-spec-grid span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.vps-spec-grid strong { font-size: 1.02rem; letter-spacing: -0.03em; }
.vps-side { display: grid; gap: 1rem; }
.vps-side .btn { width: 100%; justify-content: center; margin-top: 0.45rem; }
.vps-side h3 { margin: 0 0 0.75rem; letter-spacing: -0.03em; font-size: 1.05rem; }
.vps-dc { display: flex; align-items: center; gap: 0.75rem; }
.vps-dc p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 900px) {
  .vps-layout, .vps-spec-grid, .acc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .ca-stats, .ca-layout, .ca-svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ca-stats, .ca-layout, .ca-svc-grid { grid-template-columns: 1fr; }
  .ca-tabs { border-radius: 18px; }
}

/* Pricing page */
.pr-hero { padding-bottom: 0.5rem; }
.pr-hero-checks { max-width: 34rem; }

.pr-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.pr-table-wrap:focus-visible { box-shadow: var(--ring); }

.pr-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.pr-table th,
.pr-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.pr-table tbody tr:last-child th,
.pr-table tbody tr:last-child td { border-bottom: 0; }

.pr-table th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 11rem;
  text-align: left;
  font-weight: 700;
  color: var(--muted);
  background: #14141a;
  box-shadow: 1px 0 0 var(--line);
}
.pr-table thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(18, 28, 57, 0.88), rgba(8, 13, 28, 0.92));
  border-bottom: 1px solid var(--line-strong);
}
.pr-table thead th:first-child {
  left: 0;
  z-index: 2;
  text-align: left;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pr-th-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.pr-th-price {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--cyan);
}
.pr-th-price small { font-size: 0.7rem; font-weight: 600; }
.pr-th-tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #07111c;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pr-table thead th.is-featured {
  background: linear-gradient(180deg, rgba(103, 61, 230, 0.12), rgba(139, 92, 246, 0.06));
}
.pr-yes {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
}
.pr-table-cta td { padding-top: 1rem; padding-bottom: 1rem; }
.pr-table-cta .btn { width: 100%; padding: 0.55rem 0.9rem; font-size: 0.84rem; }
.pr-table-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.pr-scroll-hint {
  display: none;
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}
.pr-scroll-hint::after { content: " →"; }
.pr-table-compact { min-width: 640px; }
.pr-table-compact td { text-align: left; color: var(--muted); }
.pr-table-compact td.is-featured { color: var(--text); font-weight: 600; }

.pr-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.pr-signal {
  position: relative;
  padding: 1.2rem 1.2rem 1.15rem 2.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.pr-signal::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 1.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 4px 10px rgba(103, 61, 230, 0.28);
}
.pr-signal:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 61, 230, 0.3);
  box-shadow: var(--shadow-lift);
}
.pr-signal h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.pr-signal p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

.pr-included {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
  color: var(--text);
  font-weight: 600;
}

.pr-billing-steps { margin-bottom: 0; }

.pr-faq { display: grid; gap: 0.6rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #14141a;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] {
  border-color: rgba(103, 61, 230, 0.3);
  box-shadow: var(--shadow-lift);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pr-signal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pr-included { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pr-billing-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .pr-signal-grid, .pr-included, .pr-billing-steps { grid-template-columns: 1fr; }
  .pr-table th, .pr-table td { padding: 0.7rem 0.75rem; }
  .pr-table th[scope="row"] { min-width: 9rem; }
  .pr-scroll-hint { display: block; }
}

/* VPS hosting page */
.vh-hero { padding-bottom: 0.5rem; }
.vh-hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vh-slider { position: relative; }
.vh-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0.35rem 1rem;
  margin: -0.35rem -0.35rem 0;
  scrollbar-width: none;
}
.vh-slider-track::-webkit-scrollbar { display: none; }

.vh-slide {
  flex: 0 0 calc(33.333% - 0.7rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1.35rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.vh-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 61, 230, 0.3);
  box-shadow: var(--shadow-lift);
}
.vh-slide-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}
.vh-slide-kicker {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.vh-slide h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}
.vh-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.vh-slide code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  background: rgba(103, 61, 230, 0.1);
  color: var(--cyan);
}
.vh-slide-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: auto 0 0;
  padding: 0.65rem 0 0;
}
.vh-slide-tags li {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--accent-deep);
}

.vh-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}
.vh-slider-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #14141a;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.vh-slider-btn:hover {
  border-color: var(--line-strong);
  color: var(--accent);
  transform: translateY(-2px);
}
.vh-slider-dots { display: flex; gap: 0.35rem; }
.vh-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  box-shadow: none;
  transition: width 0.3s var(--ease), background 0.3s;
}
.vh-slider-dot.is-active {
  width: 24px;
  background: var(--gradient);
}

.vh-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 0.7rem;
}
.vh-app {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #14141a;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
}
.vh-app:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 61, 230, 0.32);
  box-shadow: var(--shadow-lift);
}
.vh-app-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  overflow: hidden;
}
.vh-app-logo .app-logo-svg { width: 38px; height: 38px; display: block; }
.vh-slide-logo .app-logo-svg { width: 48px; height: 48px; display: block; }
.vh-app strong { display: block; font-size: 0.95rem; letter-spacing: -0.02em; }
.vh-app span { color: var(--muted); font-size: 0.78rem; }

.vh-app-more {
  margin-top: 1.1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(103, 61, 230, 0.35);
  background: var(--gradient-soft);
}
.vh-app-more p { margin: 0; color: var(--muted); line-height: 1.65; }
.vh-app-note { margin-top: 0.6rem !important; color: var(--muted) !important; font-size: 0.86rem; }

.vh-load-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.vh-load {
  padding: 1.3rem 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  box-shadow: var(--shadow-sm);
}
.vh-load h3 { margin: 0.5rem 0 0.5rem; font-size: 1.12rem; }
.vh-load p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.vh-load-tag {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vh-load-effect {
  margin-top: 0.7rem !important;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--text) !important;
  font-size: 0.88rem !important;
}
.vh-load-light { border-color: rgba(66, 232, 160, 0.28); }
.vh-load-light .vh-load-tag { background: rgba(66, 232, 160, 0.14); color: var(--ok); }
.vh-load-medium { border-color: rgba(245, 193, 108, 0.32); }
.vh-load-medium .vh-load-tag { background: rgba(245, 193, 108, 0.14); color: var(--warn); }
.vh-load-heavy { border-color: rgba(255, 107, 138, 0.32); }
.vh-load-heavy .vh-load-tag { background: rgba(255, 107, 138, 0.16); color: var(--danger); }

.vh-load-factors h3 { margin: 0 0 0.85rem; font-size: 1.12rem; }
.vh-load-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.9rem; }

.vh-migrate-section { padding-top: 1rem; }
.vh-migrate {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(103, 61, 230, 0.16), rgba(20, 20, 26, 0.9)),
    var(--glass-strong);
  box-shadow: var(--shadow-sm);
}
.vh-migrate-figure {
  position: relative;
  width: 196px;
  height: 196px;
  flex: 0 0 auto;
}
.vh-migrate-figure img {
  position: relative;
  z-index: 1;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 3px solid #14141a;
  box-shadow: 0 0 0 2px rgba(103, 61, 230, 0.55);
}
.vh-migrate-pulse {
  display: none;
}
.vh-migrate-body h2 { margin: 0 0 0.6rem; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.vh-migrate-body p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 44rem; }
.vh-migrate-checks { margin: 1.1rem 0 1.3rem; }

.vh-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vh-consult-intro {
  padding: 2.1rem 2rem;
  color: var(--text);
  background: linear-gradient(155deg, rgba(18, 28, 57, 0.96), rgba(8, 13, 28, 0.96));
  border-right: 1px solid rgba(103, 61, 230, 0.12);
}
.vh-consult-intro h2 { margin: 0 0 0.7rem; color: var(--text); font-size: clamp(1.5rem, 2.8vw, 2rem); }
.vh-consult-intro p { margin: 0; color: var(--muted); line-height: 1.7; }
.vh-consult-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.vh-consult-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.vh-consult-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(103, 61, 230, 0.18);
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
}
.vh-consult-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(103, 61, 230, 0.14);
  font-weight: 700;
  font-size: 0.92rem;
}
.vh-consult-contact a { color: var(--cyan) !important; text-decoration: none; }
.vh-consult-contact span { color: var(--muted); }

.vh-consult-form {
  padding: 2rem 1.9rem;
  background: #14141a;
}
.vh-consult-form h3 { margin: 0 0 0.3rem; font-size: 1.3rem; }
.vh-consult-form .lead-sm { color: var(--muted); margin: 0 0 1.2rem; }
.vh-consult-form .btn { width: 100%; }
.vh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.7rem;
}
.vh-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.vh-consult-privacy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}
.vh-consult-sent {
  display: grid;
  place-content: center;
  min-height: 15rem;
  text-align: center;
}
.vh-consult-sent h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.vh-consult-sent p { margin: 0 0 1.2rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 1080px) {
  .vh-slide { flex-basis: calc(50% - 0.5rem); }
}
@media (max-width: 900px) {
  .vh-load-grid { grid-template-columns: 1fr; }
  .vh-consult { grid-template-columns: 1fr; }
  .vh-migrate {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.75rem 1.4rem;
  }
  .vh-migrate-body p { max-width: none; }
  .vh-migrate-checks { justify-items: start; text-align: left; }
  .vh-migrate .hh-cta-row { justify-content: center; }
}
@media (max-width: 640px) {
  .vh-slide { flex-basis: 86%; }
  .vh-form-row { grid-template-columns: 1fr; }
  .vh-migrate-figure, .vh-migrate-figure img { width: 148px; height: 148px; }
}

/* --- Hosting (CyberPanel) client area -------------------------------- */
.ca-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.ca-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ca-card:hover {
  border-color: rgba(103, 61, 230, 0.35);
  box-shadow: var(--shadow-lift);
}
.ca-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ca-card-head h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.ca-card-head p { margin: 0; font-size: 0.9rem; }

.ca-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}
.ca-card-actions form { margin: 0; }
.ca-card-actions .btn { width: auto; }

.ca-notice {
  display: block;
  border: 1px solid rgba(103, 61, 230, 0.35);
  border-left-width: 4px;
  border-radius: var(--radius-sm);
  background: rgba(103, 61, 230, 0.07);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.ca-notice-warn {
  border-color: rgba(217, 119, 6, 0.4);
  background: rgba(217, 119, 6, 0.08);
}

@media (max-width: 640px) {
  .ca-cards { grid-template-columns: 1fr; }
  .ca-card-actions { flex-direction: column; align-items: stretch; }
  .ca-card-actions .btn { width: 100%; }
}

/* Web hosting storefront */
.wh-need-grid,
.wh-why-grid,
.wh-idea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.wh-need-grid article,
.wh-why-grid article,
.wh-idea-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  padding: 1.2rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.wh-need-grid h3,
.wh-why-grid h3,
.wh-idea-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}
.wh-need-grid p,
.wh-why-grid p,
.wh-idea-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.wh-why-grid span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.wh-idea-grid article { display: flex; flex-direction: column; gap: 0.55rem; }
.wh-idea-grid .btn { margin-top: auto; width: fit-content; }

.wh-consult {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.2rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14141a;
  box-shadow: var(--shadow);
}
.wh-consult h2 { margin: 0.2rem 0 0.55rem; }
.wh-consult > div > p { color: var(--muted); max-width: 58ch; }
.wh-consult-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.wh-consult-roles a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--gradient-soft);
}
.wh-consult aside {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}
.wh-consult aside h3 { margin: 0 0 0.5rem; }
.wh-consult aside ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.wh-consult aside li { margin: 0.3rem 0; }

.wh-cycles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
}
.wh-cycle {
  border: 1px solid var(--line);
  background: #14141a;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.wh-cycle small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
}
.wh-cycle.is-active {
  border-color: rgba(103, 61, 230, 0.55);
  background: rgba(103, 61, 230, 0.12);
  color: var(--cyan);
}

.cycle-choices,
.cycle-choices > div,
.cycle-choices ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cycle-choices li { margin: 0; }
.cycle-choices label {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  margin: 0;
  border: 1px solid var(--line);
  background: #0e0e12;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  color: var(--text);
}
.cycle-choices label:hover {
  border-color: rgba(103, 61, 230, 0.35);
  color: var(--cyan);
}
.cycle-choices label:has(input:checked),
.cycle-choices label.is-active {
  border-color: rgba(103, 61, 230, 0.55);
  background: rgba(103, 61, 230, 0.12);
  color: var(--cyan);
}
.cycle-choices input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.cycle-choices small {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
}
.wh-plan-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.wh-badge {
  margin: 0;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.wh-badge-free { color: #047857; }
.plan-card.is-free { border-color: rgba(4, 120, 87, 0.35); }
.wh-eq, .wh-term {
  margin: -0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .wh-need-grid, .wh-why-grid, .wh-idea-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wh-consult { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wh-need-grid, .wh-why-grid, .wh-idea-grid { grid-template-columns: 1fr; }
}

/* --- Hosting account detail ------------------------------------------ */
.ha-page { --cp: #00c4b3; --cp-deep: #0e7490; }
.cp-word { font-weight: 800; letter-spacing: -0.03em; }
.cp-word b { color: var(--cyan); font-weight: 800; }
.cp-mark-svg { display: block; width: 100%; height: 100%; }

.ha-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1.3rem 1.35rem 1.2rem;
  border: 1px solid rgba(0, 196, 179, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 120% at -8% -20%, rgba(103, 61, 230, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 90% at 108% -30%, rgba(139, 108, 255, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(18, 28, 57, 0.92), rgba(8, 13, 28, 0.96));
  box-shadow: var(--shadow-sm);
}
.ha-hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 196, 179, 0.12);
  filter: blur(8px);
  pointer-events: none;
}
.ha-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ha-id { display: flex; gap: 1rem; align-items: center; min-width: 0; }
.ha-glyph {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00c4b3, #0e7490);
  box-shadow: 0 14px 28px rgba(14, 116, 144, 0.28);
}
.ha-glyph-sm { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 14px; }
.ha-id-copy { min-width: 0; }
.ha-id-copy .hh-kicker { margin-bottom: 0.35rem; }
.ha-hero h1 {
  margin: 0 0 0.28rem;
  letter-spacing: -0.045em;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  overflow-wrap: anywhere;
}
.ha-hero .lead { margin: 0; }
.ha-hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}
.ha-hero-actions, .ha-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ha-hero-actions { margin-top: 1.05rem; }
.ha-hero-actions form, .ha-panel-actions form { margin: 0; }

.btn-cp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00c4b3, #0e7490);
  color: #fff !important;
  border: 0;
  box-shadow: 0 10px 22px rgba(14, 116, 144, 0.28);
}
.btn-cp:hover { filter: brightness(1.05); color: #fff !important; }
.cp-btn-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
}

.ha-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.ha-pulse-card {
  background: #14141a;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 20px;
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ha-pulse-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.ha-pulse-card.is-ok { border-color: rgba(5, 150, 105, 0.22); border-left-color: #059669; }
.ha-pulse-card.is-warn { border-color: rgba(217, 119, 6, 0.28); border-left-color: #d97706; }
.ha-pulse-card > span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ha-pulse-card strong {
  display: block;
  margin: 0.45rem 0 0.2rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.ha-pulse-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}
.ha-pulse-card .tk-status { font-size: 0.68rem; }

.ha-panel { border-color: rgba(0, 196, 179, 0.22); }
.ha-panel-title { display: flex; align-items: center; gap: 0.75rem; }
.ha-panel-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(14, 116, 144, 0.2);
  flex: 0 0 auto;
}
.ha-creds { grid-template-columns: 1fr; }
.ha-page .acc-value code,
.ha-page .acc-foot code {
  overflow-wrap: anywhere;
  word-break: normal;
}
.ha-page .acc-foot code { white-space: nowrap; }
.ha-pass-grid { margin-top: 0.75rem; }
.ha-reveal {
  margin-top: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(103, 61, 230, 0.28);
  background: linear-gradient(180deg, rgba(103, 61, 230, 0.08), rgba(8, 13, 28, 0.72));
}
.ha-reveal-copy p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.ha-reveal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: stretch;
  margin-top: 0.75rem;
}
.ha-reveal-row .field { flex: 1 1 16rem; margin: 0; }
.ha-reveal-row .btn { flex: 0 0 auto; align-self: center; }
.ha-panel-actions { margin-top: 1rem; }

.ha-dns .ca-block-head { align-items: center; gap: 0.75rem; }
.ha-dns .ca-block-head h2 { margin: 0.1rem 0 0; }
.ha-dns-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 28, 57, 0.72), rgba(8, 13, 28, 0.82));
}
.ha-dns-map.is-pointing {
  background: rgba(66, 232, 160, 0.1);
  border-color: rgba(66, 232, 160, 0.35);
}
.ha-dns-map.is-not_pointing,
.ha-dns-map.is-not_resolving {
  background: rgba(245, 193, 108, 0.1);
  border-color: rgba(245, 193, 108, 0.35);
}
.ha-dns-node span,
.ha-dns-arrow span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ha-dns-node strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  color: var(--text);
}
.ha-dns-arrow {
  color: var(--cyan);
  text-align: center;
}
.ha-dns-arrow svg { display: block; margin: 0.15rem auto 0; }
.ha-dns-hint {
  margin: 1rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.ha-dns-refresh a { font-weight: 700; }

.ha-quotas .ca-block-head { align-items: baseline; }
.ha-quotas .ca-block-head h2 { margin: 0.1rem 0 0; }
.ha-quota-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.ha-quota-grid article {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(103, 61, 230, 0.08), rgba(8, 13, 28, 0.72));
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ha-quota-grid article:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ha-quota-grid span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ha-quota-grid strong {
  display: block;
  margin-top: 0.32rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.ha-site .ha-browser {
  margin: 0 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #14141a;
  box-shadow: inset 0 1px 0 rgba(103, 61, 230, 0.08);
}
.ha-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: rgba(18, 28, 57, 0.82);
  border-bottom: 1px solid var(--line);
}
.ha-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}
.ha-browser-bar i:nth-child(1) { background: #fda4af; }
.ha-browser-bar i:nth-child(2) { background: #fcd34d; }
.ha-browser-bar i:nth-child(3) { background: #6ee7b7; }
.ha-browser-bar span {
  margin-left: 0.35rem;
  min-width: 0;
  flex: 1;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #14141a;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ha-browser-body {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 1.2rem 0.9rem 1.1rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(103, 61, 230, 0.12), transparent 70%),
    rgba(5, 9, 20, 0.72);
}
.ha-site-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}
.ha-site-meta { margin-bottom: 0.7rem; }
.ha-site-meta .tk-status { margin-bottom: 0.45rem; }
.ha-cancel {
  border-color: rgba(255, 107, 138, 0.28);
  background: linear-gradient(180deg, rgba(255, 107, 138, 0.1), rgba(8, 13, 28, 0.82));
}
.ha-cancel p { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.88rem; }

@media (max-width: 900px) {
  .ha-pulse, .ha-quota-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ha-dns-map { grid-template-columns: 1fr; text-align: center; }
  .ha-dns-arrow svg { transform: rotate(90deg); margin-inline: auto; }
  .ha-hero-flags { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .ha-hero { padding: 1rem; }
  .ha-glyph { width: 48px; height: 48px; font-size: 1.2rem; }
  .ha-hero-actions .btn, .ha-panel-actions .btn, .ha-reveal-row .btn {
    width: 100%;
    justify-content: center;
  }
  .ha-pulse { grid-template-columns: 1fr; }
  .ha-quota-grid { grid-template-columns: 1fr 1fr; }
  .ha-quotas .ca-block-head,
  .ha-dns .ca-block-head,
  .ha-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hostinger-like surfaces */
.badge {
  border: 0;
  background: rgba(103, 61, 230, 0.18);
  color: #ddd6ff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-flyout-panel,
.nav-burger,
.nav-drawer {
  background: #14141a;
  border-color: var(--line);
}
.nav-burger span { background: var(--text); }
.nav-avatar { color: #fff; }
.spec-list li::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2316d890' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6.3 5 8.7l4.5-5'/%3E%3C/svg%3E");
}
.cta-banner {
  background:
    linear-gradient(135deg, rgba(103, 61, 230, 0.16), rgba(20, 20, 26, 0.9)),
    var(--glass-strong);
  border-radius: 16px;
}
.ca-alert-warn,
.acc-pass-warn {
  background: rgba(245, 193, 108, 0.1);
  border-color: rgba(245, 193, 108, 0.35);
  color: var(--warn);
}
.ha-dns-map {
  background: #14141a;
}
.ha-dns-map.is-pointing {
  background: rgba(22, 216, 144, 0.1);
  border-color: rgba(22, 216, 144, 0.35);
}
.tk-status-ok { background: rgba(22, 216, 144, 0.14); color: var(--ok); }
.tk-status-open { background: rgba(103, 61, 230, 0.16); color: #ddd6ff; }
.tk-status-wait { background: rgba(245, 193, 108, 0.14); color: var(--warn); }
.tk-status-hold { background: rgba(139, 108, 255, 0.16); color: #c4b5fd; }
.tk-status-off { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
.tk-status-high { background: rgba(255, 107, 138, 0.16); color: var(--danger); }
.cp-word b { color: #b9a6ff; }
.auth-aside-foot { color: var(--muted); }
.vh-consult-contact span { color: var(--muted); }
.ca-ip-empty { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
.hh-stats .stat strong { color: #fff; text-shadow: none; }
.hh-ddos span { color: #ddd6ff; }
.wh-cycle.is-active {
  border-color: #673de6;
  background: rgba(103, 61, 230, 0.16);
  color: #fff;
}

.plan-card:hover,
.hh-price-card:hover,
.hh-feature-item:hover {
  border-color: rgba(103, 61, 230, 0.45);
}
.plan-card.featured,
.hh-price-card.featured {
  border-color: #673de6;
  overflow: hidden;
  padding-top: 2.7rem;
}
.hh-price-card.featured .badge,
.hh-feature-card .badge,
.plan-card.featured .wh-badge:not(.wh-badge-free) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: 0;
  background: #673de6;
  color: #fff;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hh-feature-card { overflow: hidden; padding-top: 2.5rem; }
.hh-price-card.featured .btn-primary,
.hh-feature-card .btn-primary,
.plan-card.featured .btn-primary {
  background: #fff !important;
  color: #673de6 !important;
  border-color: #fff !important;
}
.hh-price-card .btn-ghost,
.plan-card .btn-ghost {
  background: #673de6;
  color: #fff !important;
  border-color: #673de6;
}
.hh-price-card .btn-ghost:hover,
.plan-card .btn-ghost:hover {
  background: #7e56f2;
  border-color: #7e56f2;
}

.table {
  color: var(--text);
}
.table th { letter-spacing: 0.08em; }

.btn-primary,
a.btn-primary,
button.btn-primary,
.btn.btn-primary,
.nav-cta {
  background: #673de6 !important;
  color: #fff !important;
  border-color: #673de6 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.btn-primary:hover,
a.btn-primary:hover,
.nav-cta:hover {
  background: #7e56f2 !important;
  border-color: #7e56f2 !important;
}
.hh-price-card.featured .btn-primary,
.hh-feature-card .btn-primary,
.plan-card.featured .btn-primary {
  background: #fff !important;
  color: #673de6 !important;
  border-color: #fff !important;
}

.hs-visual {
  position: relative;
  min-height: 320px;
}
.hs-panel {
  position: relative;
  background: #14141a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.hs-panel-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0e0e12;
}
.hs-panel-head strong { font-size: 0.92rem; }
.hs-running {
  margin-left: auto;
  color: #16d890;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}
.hs-running::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #16d890;
  box-shadow: 0 0 8px #16d890;
}
.hs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1.1rem;
}
.hs-metrics article {
  background: #0e0e12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
}
.hs-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}
.hs-metrics b { font-size: 1.2rem; }
.hs-metrics i {
  display: block;
  height: 4px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #673de6, #16d890);
}
.hs-plan-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hs-plan-chip span {
  width: 100%;
  color: #b9a6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hs-plan-chip strong { flex: 1 1 auto; }
.hs-plan-chip .btn { flex: 0 0 auto; padding: 0.65rem 1.15rem; }

.page-hero h1 em,
.vh-hero h1 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
}

.nav-promo-kicker { color: #ddd6ff; }
.nav-promo-code,
.nav-coupon-chip { color: #ddd6ff; }
.nav-promo-code:hover,
.nav-coupon-chip:hover { color: #fff; }

.wrap { width: min(1200px, calc(100% - 2rem)); }

html { color-scheme: dark; }

/* Client area — website theme, admin layout */
body.client-admin {
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}
.ca-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 52px;
  padding: 0 1rem;
  background: #000;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
.ca-bar a, .ca-bar summary, .ca-bar button { color: inherit; text-decoration: none; }
.ca-bar a:hover, .ca-bar summary:hover, .ca-bar-menu:hover { color: #fff; background: #14141a; }
.ca-bar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: #fff;
  padding: 0 0.5rem;
  height: 52px;
}
.ca-bar-brand img { display: block; }
.ca-bar-link { display: inline-flex; align-items: center; height: 52px; padding: 0 0.7rem; border-radius: 8px; }
.ca-bar-end { margin-left: auto; display: flex; align-items: center; }
.ca-bar-user { position: relative; }
.ca-bar-user summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 52px;
  padding: 0 0.7rem;
  cursor: pointer;
  border-radius: 8px;
}
.ca-bar-user summary::-webkit-details-marker { display: none; }
.ca-bar-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #673de6;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.ca-bar-panel {
  position: absolute;
  right: 0;
  top: 52px;
  min-width: 200px;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0;
  overflow: hidden;
}
.ca-bar-panel a,
.ca-bar-panel button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0.55rem 0.95rem;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.ca-bar-panel a:hover,
.ca-bar-panel button:hover { background: #0e0e12; color: #b9a6ff; }
.ca-bar-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
}
.ca-bar-menu span { display: block; height: 2px; background: currentColor; }
.ca-app { display: flex; min-height: calc(100vh - 52px); position: relative; z-index: 1; }
.ca-menu {
  width: 200px;
  flex: 0 0 200px;
  background: #0e0e12;
  border-right: 1px solid var(--line);
  color: #f0f0f1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 52px);
}
.ca-menu-list { list-style: none; margin: 0.55rem 0 0; padding: 0; }
.ca-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.85rem;
  color: #a8a8b3;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.ca-menu-list a:hover { background: #14141a; color: #fff; }
.ca-menu-list .is-current a {
  background: rgba(103, 61, 230, 0.14);
  color: #fff;
  border-left-color: #673de6;
  font-weight: 600;
}
.ca-ico { width: 16px; height: 16px; flex: 0 0 16px; display: grid; place-items: center; }
.ca-ico svg { width: 16px; height: 16px; display: block; }
.ca-count {
  margin-left: auto;
  background: #673de6;
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
}
.ca-menu-sep {
  margin: 1.1rem 0.9rem 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a88;
}
.ca-fold {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 0.85rem;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: #a8a8b3;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  border-left: 3px solid transparent;
}
.ca-fold:hover { color: #fff; background: #14141a; }
body.client-admin.is-folded .ca-menu { width: 52px; flex-basis: 52px; }
body.client-admin.is-folded .ca-menu-label,
body.client-admin.is-folded .ca-menu-sep,
body.client-admin.is-folded .ca-count { display: none; }
body.client-admin.is-folded .ca-menu-list a,
body.client-admin.is-folded .ca-fold { padding-left: 16px; border-left-width: 0; justify-content: center; }
body.client-admin.is-folded .ca-fold .ca-ico { transform: rotate(180deg); }
.ca-workspace {
  flex: 1;
  min-width: 0;
  padding: 1.35rem 1.5rem 2.2rem;
}
.ca-credit {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.ca-credit a { color: #b9a6ff; }
.ca-messages { list-style: none; margin: 0 0 1rem; padding: 0; }
.ca-messages li {
  background: #14141a;
  border: 1px solid var(--line);
  border-left: 3px solid #673de6;
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  margin-bottom: 0.45rem;
}
.ca-messages .success { border-left-color: var(--ok); }
.ca-messages .error { border-left-color: var(--danger); }
.ca-screen-title {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}
.ca-nags { display: grid; gap: 0.6rem; margin-bottom: 1rem; }
.ca-nag {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  background: #14141a;
  border: 1px solid var(--line);
  border-left: 3px solid #673de6;
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
}
.ca-nag p { margin: 0; color: var(--muted); }
.ca-nag strong { color: #fff; }
.ca-nag-warn { border-left-color: var(--warn); }
.ca-welcome {
  position: relative;
  display: flex;
  gap: 1.5rem;
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.5rem 1.4rem;
  margin-bottom: 1.15rem;
  overflow: hidden;
}
.ca-welcome::before {
  content: "";
  width: 4px;
  background: #673de6;
  position: absolute;
  inset: 0 auto 0 0;
}
.ca-welcome-copy { padding-left: 0.45rem; }
.ca-welcome h2 { margin: 0 0 0.4rem; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.ca-welcome p { margin: 0; color: var(--muted); max-width: 46rem; }
.ca-welcome-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem !important; }
.ca-welcome-dismiss {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.ca-welcome-dismiss:hover { color: #fff; }
.ca-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.ca-widgets-col { display: grid; gap: 1rem; }
.ca-box {
  background: #14141a;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.ca-box-head {
  margin: 0;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ca-box-head::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #b9a6ff transparent transparent transparent;
}
.ca-box.is-closed .ca-box-head::before { transform: rotate(-90deg); }
.ca-box.is-closed .ca-box-body { display: none; }
.ca-box-link {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b9a6ff;
  text-decoration: none;
}
.ca-box-link:hover { color: #fff; }
.ca-box-body { padding: 0.85rem 1rem 1rem; }
.ca-box-foot {
  margin: 0.85rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.ca-glance { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.ca-glance a { color: #b9a6ff; text-decoration: none; }
.ca-glance a:hover { color: #fff; }
.ca-glance strong { font-size: 1.05rem; color: #fff; }
.ca-sub { color: var(--muted); font-size: 0.78rem; }
.ca-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.ca-table th, .ca-table td { text-align: left; padding: 0.5rem 0.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.ca-table th { color: var(--muted); font-weight: 600; }
.ca-table tr:last-child td { border-bottom: 0; }
.ca-table a { color: #b9a6ff; text-decoration: none; }
.ca-table a:hover { color: #fff; }
.ca-table code { font-size: 0.78rem; background: #0e0e12; padding: 0.05rem 0.3rem; border-radius: 6px; }
.ca-activity { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.ca-activity li { padding-bottom: 0.65rem; border-bottom: 1px solid var(--line); }
.ca-activity li:last-child { border-bottom: 0; padding-bottom: 0; }
.ca-activity p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.82rem; }
.ca-activity time { color: #7a7a88; font-size: 0.75rem; }
.ca-activity a { color: #b9a6ff; text-decoration: none; }
.ca-activity a:hover { color: #fff; }
body.client-admin .ca-muted { color: var(--muted); margin: 0; }
body.client-admin .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
}
body.client-admin .button:hover { background: rgba(255, 255, 255, 0.06); }
body.client-admin .button-primary {
  background: #673de6;
  border-color: #673de6;
  color: #fff;
}
body.client-admin .button-primary:hover { background: #7e56f2; border-color: #7e56f2; color: #fff; }
body.client-admin .ca-tabs { display: none; }
body.client-admin .ca-page { max-width: none; }
body.client-admin .ca-welcome-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
}

/* Fields stay on the website field colour */
body.client-admin input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]),
body.client-admin select,
body.client-admin textarea,
body.client-admin .field-control {
  background: #0e0e12;
  background-color: #0e0e12;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color-scheme: dark;
  border-radius: 8px;
}
body.client-admin select {
  background-image:
    linear-gradient(45deg, transparent 50%, #b9a6ff 50%),
    linear-gradient(135deg, #b9a6ff 50%, transparent 50%);
}
body.client-admin select option,
body.client-admin select optgroup {
  background-color: #14141a;
  color: #fff;
}
body.client-admin input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]):focus,
body.client-admin select:focus,
body.client-admin textarea:focus,
body.client-admin .field-control:focus {
  border-color: #673de6;
  box-shadow: var(--ring);
  outline: none;
}
body.client-admin .field-control.is-frozen,
body.client-admin input.is-frozen {
  background: #121218;
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.06);
}
.ca-backdrop { display: none; }
@media (max-width: 960px) {
  .ca-widgets { grid-template-columns: 1fr; }
  .ca-bar-menu { display: flex; }
  .ca-menu {
    position: fixed;
    z-index: 90;
    top: 52px;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  body.client-admin.ca-menu-open .ca-menu { transform: none; }
  body.client-admin.ca-menu-open .ca-backdrop {
    display: block;
    position: fixed;
    inset: 52px 0 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 80;
  }
  body.client-admin.is-folded .ca-menu { width: 200px; flex-basis: 200px; }
  body.client-admin.is-folded .ca-menu-label,
  body.client-admin.is-folded .ca-menu-sep,
  body.client-admin.is-folded .ca-count { display: initial; }
}
