:root {
  --bg: #0b0f19;
  --bg-elev: #11182a;
  --card: #1a2336;
  --card-2: #212c45;
  --line: #2a3653;
  --line-2: #3a4a6e;
  --text: #f1f5f9;
  --muted: #cbd5e1;
  --faint: #9ca8be;
  --accent: #22d3ee;
  --accent-2: #67e8f9;
  --good: #10b981;
  --warn: #f59e0b;
  --radius: 20px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --max: 1200px;
  --bg-card: #1a2336;
  --header: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-border: 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-border-hover: 0 0 0 1px rgba(255, 255, 255, 0.13);
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: nv-page-out 180ms var(--ease-out) both;
}
::view-transition-new(root) {
  animation: nv-page-in 200ms var(--ease-out) both;
}
@keyframes nv-page-out {
  to { opacity: 0; transform: translateY(4px); }
}
@keyframes nv-page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
html.nv-ready #main {
  animation: nv-page-in 200ms var(--ease-out) both;
}
html.nv-leave #main,
html.nv-leave .site-header,
html.nv-leave .site-footer {
  opacity: 0.35;
  transform: translateY(3px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.nv-transit {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(90% 70% at 18% 8%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%),
    radial-gradient(80% 60% at 88% 78%, color-mix(in srgb, #f5a524 12%, transparent), transparent 58%),
    radial-gradient(70% 50% at 50% 50%, color-mix(in srgb, var(--accent-2) 8%, transparent), transparent 70%);
  transition: opacity 560ms var(--ease-out);
}
.nv-transit.is-on { opacity: 1; }
.nv-transit.is-leave.is-on { opacity: 0.38; }
.nv-transit.is-enter { opacity: 0; }
.nv-transit.is-enter.is-on { opacity: 0.22; }
.nv-transit.is-enter.is-strong.is-on { opacity: 0.28; }
.nv-transit.is-done {
  opacity: 0;
  transition: opacity 900ms var(--ease-out);
}
.nv-transit::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 44%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 56%,
    transparent 100%
  );
  background-size: 280% 100%;
  animation: nv-shimmer-sheen 6.5s linear infinite;
  opacity: 0.55;
}
body[data-path=""] .hero,
body[data-path="/"] .hero {
  position: relative;
}
@keyframes nv-ambience {
  from { background-position: 0% 0%, 100% 20%; opacity: 0.45; }
  to { background-position: 28% 35%, 72% 0%; opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  @view-transition { navigation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root),
  html.nv-ready #main,
  html.nv-leave #main,
  html.nv-leave .site-header,
  html.nv-leave .site-footer {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .nv-transit, .nv-transit::after,
  body[data-path=""] .hero::before,
  body[data-path="/"] .hero::before {
    display: none !important;
    animation: none !important;
  }
}
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); overflow-x: clip; }
body {
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(1100px 620px at 12% -6%, rgba(34, 211, 238, 0.04), transparent 60%),
    radial-gradient(900px 500px at 92% 8%, rgba(16, 185, 129, 0.035), transparent 55%);
  background-attachment: fixed;
}
/* ponytail: checkout links stay visible; HTTP mode 0 already 404s those paths in Caddy. */
img, svg { display: block; max-width: 100%; }
img {
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}
a, a:link, a:visited, a:hover, a:active, a:focus {
  color: inherit; text-decoration: none;
}
p a, li a, .article a, .lead a { color: var(--accent-2); text-decoration: none; }
h1, h2, h3, em, strong, summary { text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select { font: inherit; color: inherit; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
code, .mono, .price, .spec-val {
  font-family: ui-monospace, "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-variant-numeric: tabular-nums;
}
h1, h2, h3 { text-wrap: balance; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 0.6em; }
p, li, blockquote { text-wrap: pretty; }
p { color: var(--muted); margin: 0 0 1em; }
p.lead { font-size: 1.125rem; max-width: 62ch; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}
@media (min-width: 1024px) {
  .wrap { padding-left: 32px; padding-right: 32px; }
  .hero { padding: 72px 0 56px; }
  .hero-copy > .lead { margin-bottom: 28px; }
  .hero-copy .hero-ctas { margin-bottom: 36px; }
  .hero-copy .hero-trust { margin-bottom: 32px; }
  .hero-copy .hero-coins { padding-top: 32px; }
  .home-sec { padding: 88px 0; }
  .sec-head { margin-bottom: 40px; }
  .proof { padding: 40px 0; }
}
#main { min-width: 0; }
.section { padding: 56px 0; }
.section-sm { padding: 28px 0; }
.section-compact { padding: 48px 0; }
.home-sec { padding: 80px 0; }
.sec-head { text-align: center; max-width: 40rem; margin: 0 auto 32px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-head .lead { margin-inline: auto; }
.section-alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.has-ornament > .wrap { position: relative; padding-top: 28px; }
.has-ornament > .wrap::before {
  content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: min(260px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.22) 25%, rgba(148, 163, 184, 0.22) 75%, transparent);
}
.has-ornament > .wrap::after {
  content: ""; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #22d3ee, #10b981);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.4), 0 0 0 4px var(--bg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.section-alt.has-ornament > .wrap::after { box-shadow: 0 0 14px rgba(34, 211, 238, 0.4), 0 0 0 4px var(--bg-elev), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
.grad {
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; padding: 5px 13px; border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2);
}
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: calc(var(--header) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(11, 15, 25, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.site-header .wrap {
  height: 100%; display: flex; align-items: center; gap: 12px; min-width: 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.04em; font-size: 1.05rem;
  min-height: 40px; flex-shrink: 0; white-space: nowrap; color: var(--text);
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(126, 200, 217, 0.16);
  transition: box-shadow 220ms var(--ease);
}
.logo:hover .logo-mark {
  box-shadow: 0 0 0 1px rgba(126, 200, 217, 0.32);
}
img.logo-mark { outline: 0; }
.head-chip {
  flex-shrink: 0;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: lowercase; color: var(--accent-2);
  padding: 4px 8px; border-radius: 999px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 28%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  white-space: nowrap;
}
.nav { display: flex; gap: 4px; margin-inline-start: 8px; }
.nav a {
  position: relative;
  min-height: 40px; padding: 0 12px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center;
  transition-property: background-color, color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav a:active { transform: scale(0.96); }
.nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  border-radius: 2px; opacity: 0;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  transform: scaleX(0.35); transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}
.nav a:hover::after { opacity: 1; transform: scaleX(1); }
.header-actions { margin-inline-start: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.js-auth, .js-signout, .header-launch { flex-shrink: 0; white-space: nowrap; }
.lang-wrap { position: relative; }
.lang-chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 10px; border-radius: var(--radius-sm);
  background: transparent; border: 0; cursor: pointer; color: var(--text);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: var(--shadow-border);
  transition-property: background-color, transform;
  transition-duration: 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.lang-chip:hover { background: rgba(255, 255, 255, 0.04); }
.lang-chip:active { transform: scale(0.96); }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 8px); inset-inline-end: 0; z-index: 60;
  width: min(280px, calc(100vw - 24px)); max-height: min(70vh, 440px); overflow: auto;
  padding: 8px; border-radius: 16px; background: var(--card);
  box-shadow: var(--shadow-border), 0 24px 60px rgba(0, 0, 0, 0.45);
}
.lang-wrap.is-open .lang-menu { display: grid; gap: 2px; }
.lang-opt {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 10px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition-property: background-color, color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.lang-opt:hover, .lang-opt.on { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.lang-opt:active { transform: scale(0.96); }
.lang-opt .iso { margin-inline-start: auto; font-size: 11px; font-weight: 700; color: var(--faint); }
.lang-drawer { display: grid; gap: 2px; margin: 12px 0; padding-top: 12px; border-top: 1px solid var(--line); }
.flag {
  width: 20px; height: 14px; border-radius: 2px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  background: #334155;
}
.flag-gb, .flag-en {
  background: #012169 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='10' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath fill='none' stroke='%23C8102E' stroke-width='6' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='16' d='M30 0v30M0 15h60'/%3E%3Cpath fill='none' stroke='%23C8102E' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3C/svg%3E") center / cover no-repeat;
}
.flag-is {
  background-color: #02529c;
  background-image:
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
    linear-gradient(#dc1e35, #dc1e35), linear-gradient(#dc1e35, #dc1e35);
  background-size: 100% 6px, 6px 100%, 100% 3px, 3px 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.flag-cn { background: linear-gradient(#de2910 50%, #ffde00 50%); }
.flag-es { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%); }
.flag-sa { background: #006c35; }
.flag-ru { background: linear-gradient(#fff 0 33%, #0039a6 33% 66%, #d52b1e 66%); }
.flag-br { background: #009b3a; }
.flag-fr { background: linear-gradient(90deg, #002395 0 33%, #fff 33% 66%, #ed2939 66%); }
.flag-de { background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%); }
.flag-tr { background: #e30a17; }
.flag-ir { background: linear-gradient(#239f40 0 33%, #fff 33% 66%, #da0000 66%); }
.flag-ua { background: linear-gradient(#005bbb 50%, #ffd500 50%); }
.flag-nl { background: linear-gradient(#ae1c28 0 33%, #fff 33% 66%, #21468b 66%); }
.flag-ro { background: linear-gradient(90deg, #002b7f 0 33%, #fcd116 33% 66%, #ce1126 66%); }
.flag-ch {
  background: #ff0000;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 10px 3px, 3px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.card-flag { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; min-width: 0; }
.card-flag h3 { margin: 0; min-width: 0; overflow-wrap: anywhere; }
html[lang="zh"] body, html[lang="ar"] body, html[lang="fa"] body { font-family: system-ui, sans-serif; }
[dir="rtl"] .drawer { right: auto; left: 0; transform: translateX(-100%); box-shadow: 24px 0 60px rgba(0, 0, 0, 0.4); }
[dir="rtl"] .drawer.is-open { transform: translateX(0); }
[dir="rtl"] .hero-grid { direction: rtl; }
.note-en { font-size: 13px; color: var(--faint); padding: 10px 12px; border-radius: 10px; background: var(--bg-elev); margin: 0 0 20px; }
.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  border-radius: var(--radius-sm); cursor: pointer; position: relative;
}
.burger span {
  display: block; height: 1.5px; background: var(--text); margin: 6px 8px;
  transform-origin: center;
  transition-property: transform, opacity, filter;
  transition-duration: 200ms;
  transition-timing-function: var(--ease);
}
body.drawer-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.drawer-open .burger span:nth-child(2) {
  opacity: 0; transform: scale(0.25); filter: blur(4px);
}
body.drawer-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.skip {
  position: absolute; left: 12px; top: -48px; z-index: 80;
  height: 40px; padding: 0 14px; border-radius: var(--radius-sm);
  background: var(--card); color: var(--text); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center;
  box-shadow: var(--shadow-border);
  transition-property: top;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
.skip:focus { top: 12px; outline: 2px solid var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition-property: transform, background-color, border-color, filter, box-shadow;
  transition-duration: 120ms, 160ms, 160ms, 160ms, 160ms;
  transition-timing-function: var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(#10b981, #059669); color: #06080f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 24px rgba(16, 185, 129, 0.28);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent; border-color: transparent; color: var(--text);
  box-shadow: var(--shadow-border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); box-shadow: var(--shadow-border-hover); }
.btn-lg { height: 48px; padding: 0 20px; border-radius: 12px; }
.card .btn, .plan .btn, .invoice .btn { border-radius: 8px; }
.card .invoice { border-radius: 8px; }

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(34, 211, 238, 0.08), transparent 60%),
    radial-gradient(700px 420px at 10% 20%, rgba(16, 185, 129, 0.07), transparent 55%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 48px; align-items: center;
}
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0 0 28px;
}
.ht {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; color: var(--muted);
}
.ht .ico { color: var(--good); width: 15px; height: 15px; }
.hero-coins { padding-top: 28px; border-top: 1px dashed var(--line); }
.hero-coins .pay-rail { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-coins .crypto-chip { display: none; }
.hero-visual { position: relative; width: 100%; max-width: 540px; margin: 0 auto; aspect-ratio: 1; }
.hv-stage { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hv-glow {
  position: absolute; inset: -8%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 50% 45%, rgba(34, 211, 238, 0.18), transparent 65%),
    radial-gradient(45% 45% at 62% 60%, rgba(16, 185, 129, 0.12), transparent 70%);
  filter: blur(8px);
}
.hv-ring {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 1;
  border: 1px dashed rgba(34, 211, 238, 0.14);
}
.hv-ring-a { width: 86%; height: 86%; }
.hv-ring-b { width: 102%; height: 102%; border-color: rgba(16, 185, 129, 0.1); }
.hv-badge {
  position: absolute; z-index: 5; display: inline-flex; align-items: center;
  padding: 8px 12px; border-radius: 12px; font-size: 12px; font-weight: 600;
  color: var(--muted); background: rgba(13, 18, 31, 0.88);
  box-shadow: var(--shadow-border), 0 16px 32px -12px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.hb-1 { top: 6%; right: -2%; }
.hb-2 { bottom: 22%; left: -4%; }
.hb-3 { bottom: 4%; right: 4%; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 32px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.badge {
  font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  box-shadow: var(--shadow-border);
}
.fact-rows {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; margin: 8px 0 20px; min-width: 0; width: 100%;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.flag-row,
.coin-row {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 8px; min-height: 28px;
}
.fact-rows .flag-row,
.fact-rows .coin-row,
.fact-rows .pay-rail {
  padding: 0; gap: 8px;
  border-radius: 0; background: transparent; box-shadow: none;
}
.pay-rail {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.crypto-chip {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: lowercase; color: var(--accent-2);
  padding: 4px 8px; border-radius: 999px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 28%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  white-space: nowrap;
}
.flag-row + .coin-row,
.flag-row + .pay-rail { margin-inline-start: 16px; }
.fact-rows .flag-row + .coin-row,
.fact-rows .flag-row + .pay-rail { margin-inline-start: 0; }
.flag-mini {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.flag-mini .flag {
  width: 16px; height: 12px; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.flag-mini .flag-ch { width: 12px; height: 12px; border-radius: 2px; }
.coin-pay {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
  margin-inline-end: 4px; white-space: nowrap;
}
.coin {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: inline-block;
  background-color: var(--c);
  background-image: var(--g);
  background-size: 62% 62%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.coin-btc { --c: #f7931a; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M8.7 8.6c1.3.3 2.2.8 2.2 1.9 0 1.3-1 2-2.6 2.1V14H7.1v-1.4H5.8v-1.2h1.3V9.9H5.8V8.7h1.3V7.4H5.8V6.2h1.3V4.8h1.2v1.4c1.4.1 2.4.8 2.4 2 0 1-.7 1.5-2 1.8M7.1 7.4v1.3h1.6c.8 0 1.2-.3 1.2-.7 0-.5-.5-.6-1.4-.6zm1.8 4.4c.9 0 1.4-.3 1.4-.8 0-.5-.5-.8-1.5-.8H7.1v1.6z'/%3E%3C/svg%3E"); }
.coin-xmr { --c: #f26822; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M2 12V4h2.2L8 9.2 11.8 4H14v8h-2V7.1L8 12 4 7.1V12z'/%3E%3C/svg%3E"); }
.coin-eth { --c: #627eea; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M8 1.5 3.5 8.2 8 10.6l4.5-2.4zm0 10.1L3.5 9.1 8 14.5l4.5-5.4z'/%3E%3C/svg%3E"); }
.coin-usdt { --c: #26a17b; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M8.8 7.4v5.1H7.2V7.4H3.5V6h9v1.4zm-4.6-3h7.6v1.3H4.2z'/%3E%3C/svg%3E"); }
.coin-sol { --c: #9945ff; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M3.2 10.8h8.4l-1.6 2.4H1.6zm0-4h8.4L10 9.2H1.6zm1.6-4h8.4l-1.6 2.4H1.6z'/%3E%3C/svg%3E"); }
.coin-ltc { --c: #345d9d; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M9.2 3 6.8 8.4H4.2l-.4 1.3h2.2L5 13h7.2l.5-1.4H7.8l.8-2.1H11l.5-1.3H8.7L10.5 3z'/%3E%3C/svg%3E"); }
.coin-trx { --c: #ef0027; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M2.2 3.2 13.8 6.4 8.7 8.2 6.4 13z'/%3E%3C/svg%3E"); }
.coin-xrp { --c: #23292f; --g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M3.2 5.2 8 1.5l4.8 3.7L8 8.8 3.2 5.2zm0 5.6L8 14.5l4.8-3.7L8 7.2 3.2 10.8z'/%3E%3C/svg%3E"); }
.loc-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.loc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 0 12px 0 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  box-shadow: var(--shadow-border);
  transition-property: background-color, color, transform, box-shadow;
  transition-duration: 160ms, 160ms, 120ms, 160ms;
  transition-timing-function: var(--ease);
  font-size: 13px; font-weight: 600;
}
.loc-chip:hover { background: rgba(255, 255, 255, 0.07); box-shadow: var(--shadow-border-hover); }
.loc-chip:active { transform: scale(0.96); }
.loc-chip .faint { font-weight: 500; }
.loc-chip.is-here {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.plan-board { position: relative; }
.plan-radio {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.plan-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.plan-head h2 {
  margin: 0; flex: 1; min-width: 12ch; line-height: 1.25;
}
.kind-switch {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  width: min(100%, 280px); height: 48px; padding: 4px; box-sizing: border-box;
  border-radius: 12px; background: var(--bg-elev);
  flex: 0 0 auto; align-self: center;
}
.kind-switch label {
  display: inline-flex; align-items: center; justify-content: center;
  height: 100%; min-height: 0; padding: 0 10px; border-radius: 8px; cursor: pointer;
  font-size: 14px; font-weight: 600; line-height: 1; color: var(--muted);
  white-space: nowrap;
  transition-property: background-color, color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.kind-switch label:active { transform: scale(0.96); }
#kind-vps:checked ~ .plan-head .kind-switch label[for="kind-vps"],
#kind-ded:checked ~ .plan-head .kind-switch label[for="kind-ded"] {
  background: var(--card-2); color: var(--text);
}
#kind-vps:not(:checked) ~ .plan-head .plan-sub-vps,
#kind-vps:not(:checked) ~ .plans-vps,
#kind-ded:not(:checked) ~ .plan-head .plan-sub-ded,
#kind-ded:not(:checked) ~ .plans-ded { display: none; }
.plan-slider {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding-top: 14px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.plan-slider::-webkit-scrollbar { display: none; }
.plan-slider .plan {
  flex: 0 0 min(78%, 300px);
  scroll-snap-align: start;
}
.plan-slider-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
}
.plan-slider-wrap .plan-slider { min-width: 0; }
.plan-nav {
  width: 40px; height: 40px; border-radius: 999px;
  border: 0; cursor: pointer;
  background: var(--card); color: var(--text);
  box-shadow: var(--shadow-border);
  font-size: 22px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 160ms var(--ease), transform 120ms var(--ease);
}
.plan-nav:hover { background: var(--card-2); }
.plan-nav:active { transform: scale(0.96); }
@media (max-width: 719px) {
  .plan-slider-wrap { grid-template-columns: 1fr; }
  .plan-nav { display: none; }
}
.badge.good { color: var(--good); box-shadow: 0 0 0 1px color-mix(in srgb, var(--good) 35%, transparent); }
.hero-art {
  position: relative; z-index: 2; width: 88%;
  border-radius: 22px; overflow: hidden;
  background: transparent;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(34, 211, 238, 0.08);
}
.hero-art svg { width: 100%; height: auto; min-height: 0; display: block; }

.proof {
  padding: 32px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0; padding: 0;
  border-radius: 0; background: transparent;
  box-shadow: none;
}
.proof-item {
  position: relative; text-align: center; padding: 8px 14px; min-width: 0;
}
.proof-item:not(:last-child)::after {
  content: ""; position: absolute; top: 18%; bottom: 18%;
  inset-inline-end: 0; width: 1px; background: var(--line);
}
.proof-item b {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-item span {
  display: block; margin-top: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.grid-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; padding-top: 12px; }

.card {
  background: var(--card);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-border), 0 10px 28px rgba(0, 0, 0, 0.22);
  transition-property: box-shadow, transform;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
a.card:hover, .card.clickable:hover { box-shadow: var(--shadow-border-hover); transform: translateY(-2px); }
a.card:active, .card.clickable:active { transform: translateY(0) scale(0.96); }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14px; }

.plan {
  display: flex; flex-direction: column; gap: 12px; min-height: 100%;
  position: relative; overflow: visible;
  padding: 26px 22px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(19, 26, 43, 0.85), rgba(11, 15, 25, 0.92));
  box-shadow: inset 0 0 0 1px var(--line);
}
.plan::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  pointer-events: none; opacity: 0; transition: opacity 220ms var(--ease);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0) 0%, rgba(34, 211, 238, 0.28) 50%, rgba(16, 185, 129, 0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.plan:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line-2), 0 20px 40px -20px rgba(0, 0, 0, 0.5); }
.plan:hover::before { opacity: 1; }
.plan.popular {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(11, 15, 25, 0.92) 45%);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.28), 0 20px 60px -20px rgba(16, 185, 129, 0.22);
}
.plan.popular::before { opacity: 0.7; }
.plan-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: 999px; z-index: 2; white-space: nowrap;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(90deg, #22d3ee, #10b981); color: #06080f;
}
.plan-card-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.plan-name {
  font-size: 1.25rem; font-weight: 800; color: #f5f9ff; letter-spacing: -0.03em; line-height: 1.1;
}
.plan-price-row {
  display: inline-flex; align-items: baseline; gap: 1px; flex-shrink: 0;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.plan-price-cur { font-size: 16px; font-weight: 700; color: var(--muted); }
.plan-price-val {
  font-size: 28px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-pc { font-size: 18px; font-weight: 700; color: var(--muted); }
.plan-price-per { font-size: 12px; color: var(--faint); margin-inline-start: 3px; }
.plan-sku {
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content; max-width: 100%;
  min-height: 28px; padding: 3px 9px; border-radius: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
}
.plan.popular .plan-sku {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.28);
}
.plan-sku .ico { width: 12px; height: 12px; flex-basis: 12px; color: currentColor; }
.plan-vs, .plan-vs-lead {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.plan-vs-lead { margin: 0 0 18px; max-width: 46em; }
.plan ul {
  list-style: none; padding: 16px 0; margin: 8px 0 0;
  display: grid; gap: 11px;
  border-top: 1px dashed rgba(148, 163, 184, 0.18);
  border-bottom: 1px dashed rgba(148, 163, 184, 0.18);
}
.plan li {
  display: grid; grid-template-columns: 34px minmax(0, 1fr);
  align-items: center; column-gap: 12px;
}
.plan li .ico {
  width: 16px; height: 16px; flex: 0 0 16px;
  padding: 8px; box-sizing: content-box; border-radius: 9px;
  color: #67e8f9;
  background-color: rgba(34, 211, 238, 0.1);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
  -webkit-mask: none; mask: none;
  position: relative;
}
.plan.popular li .ico {
  color: #6ee7b7;
  background-color: rgba(16, 185, 129, 0.12);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.28);
}
.plan li .ico::before {
  content: ""; position: absolute; inset: 8px;
  background-color: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.plan-spec { display: grid; gap: 2px; min-width: 0; }
.plan-spec b {
  color: var(--text); font-weight: 600; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.plan-spec span {
  color: var(--faint); font-size: 12px; font-weight: 500; line-height: 1.35;
}
.plan .btn { width: 100%; margin-top: auto; pointer-events: none; }
.plan.popular .btn {
  background: linear-gradient(90deg, #22d3ee, #10b981);
  color: #06080f;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.28);
}
a.plan { color: inherit; }

.table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-border);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table-wrap table { width: max(100%, 640px); }
.table-wrap th, .table-wrap td { white-space: nowrap; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { color: var(--faint); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
td { color: var(--muted); }
td:first-child, th:first-child { color: var(--text); }
td:last-child, .plan .price, .panel-nav { font-variant-numeric: tabular-nums; }

.faq details {
  border-radius: 12px; background: var(--card);
  padding: 4px 16px; margin-bottom: 8px;
  box-shadow: var(--shadow-border);
}
.faq summary {
  cursor: pointer; padding: 12px 0; min-height: 40px;
  font-weight: 600; list-style: none;
  display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-body { color: var(--muted); padding-bottom: 14px; font-size: 14.5px; }


.trust-chips {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
  margin: 20px 0 18px;
}
.trust-chip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; border-radius: 16px; background: var(--card);
  box-shadow: var(--shadow-border); color: inherit; text-decoration: none;
  min-height: 88px; transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.trust-chip:hover { transform: translateY(-1px); color: inherit; }
.trust-chip b { font-size: 14px; color: var(--text); }
.trust-chip span { font-size: 13px; color: var(--muted); }
.trust-facts {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px;
}
.trust-fact {
  padding: 18px 20px; border-radius: 16px; background: var(--card);
  box-shadow: var(--shadow-border);
}
.trust-fact b { display: block; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.trust-fact p { margin: 0 0 10px; color: var(--muted); font-size: 14.5px; }
.trust-more {
  font-size: 13px; color: var(--accent, #10b981); text-decoration: none;
  min-height: 40px; display: inline-flex; align-items: center;
}
.trust-more:hover { color: var(--text); }
.bound-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.bound-card {
  padding: 18px 20px; border-radius: 16px; background: var(--card);
  box-shadow: var(--shadow-border);
}
.bound-card b { display: block; margin-bottom: 8px; }
.bound-card p { margin: 0 0 10px; color: var(--muted); font-size: 14.5px; }
.bound-card.ok { box-shadow: var(--shadow-border), inset 3px 0 0 rgba(16, 185, 129, 0.55); }
.bound-card.no { box-shadow: var(--shadow-border), inset 3px 0 0 rgba(248, 113, 113, 0.45); }
@media (max-width: 900px) {
  .trust-chips { grid-template-columns: 1fr 1fr; }
  .trust-facts, .bound-grid { grid-template-columns: 1fr; }
}

.cta-band {
  border-radius: 32px;
  padding: 20px; background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.12), transparent 70%), var(--card);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: var(--shadow-border);
}
.cta-band h2 { margin: 0 0 8px; }
.cta-band .btn { border-radius: 12px; }

.site-footer {
  border-top: 0; padding: 18px 0 12px; margin-top: 4px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.site-footer .logo { font-size: 0.95rem; }
.site-footer .logo-mark { width: 22px; height: 22px; }
.site-footer .foot-grid > div > p {
  margin: 6px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; max-width: 28ch;
}
h4 { text-wrap: balance; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 12px 18px; }
.foot-grid h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin: 0 0 6px; }
.foot-grid a, .foot-sec a {
  display: flex; align-items: center; color: var(--muted); font-size: 13px;
  min-height: 28px; padding: 0; line-height: 1.25;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
.foot-grid a:hover, .foot-sec a:hover { color: var(--text); }
.legal-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; padding-top: 12px; color: var(--faint); font-size: 12px; box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.05); }
.cta-band .coin-row { display: flex; margin-top: 10px; }
.cta-band .pay-rail { display: flex; margin-top: 10px; }
.cta-band .pay-rail .coin-row { margin-top: 0; }
.article-cta { margin-top: 40px; }
.coin-grid .choice { flex-direction: row; align-items: center; gap: 8px; }

.article { max-width: 72ch; overflow-wrap: break-word; }
pre {
  overflow-x: auto; max-width: 100%;
  padding: 12px; border-radius: 12px; background: var(--bg-elev);
  font-size: 13px; line-height: 1.45;
  white-space: pre-wrap; word-break: break-word;
}
.article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.article h2 { font-size: 1.35rem; margin-top: 1.6em; }
.article li { color: var(--muted); margin: 0 0 6px; }
.article-meta { color: var(--muted); font-size: .9rem; }
.answer-first {
  margin: 24px 0;
  padding: 18px 20px;
  border-inline-start: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(34, 211, 238, .07);
}
.answer-first p { margin: 6px 0 0; }
[dir="rtl"] .answer-first { border-radius: 12px 0 0 12px; }
.article-sources, .article-related { margin-top: 36px; }
.article-sources li + li, .article-related li + li { margin-top: 8px; }
.article-sources a, .article-related a { text-decoration: underline; text-underline-offset: 3px; }
.use-fig {
  margin: 20px 0; padding: 16px 18px; border-radius: 16px;
  background: var(--card); box-shadow: var(--shadow-border);
}
.use-fig figcaption { font-weight: 700; margin: 0 0 10px; color: var(--text); }
.use-steps { margin: 0; padding-inline-start: 1.25em; display: grid; gap: 8px; }
.use-steps li { color: var(--muted); }
.decide-list { margin: 18px 0; display: grid; gap: 8px; }
.decide-title { font-weight: 700; margin: 0 0 4px; }
.decide { border-radius: 12px; background: var(--card); padding: 0 14px; }
.decide summary {
  cursor: pointer; min-height: 44px; display: flex; align-items: center;
  font-weight: 600;
}
.decide-body { padding: 0 0 12px; color: var(--muted); }
.fact-table-wrap { overflow-x: auto; margin: 18px 0; }
.fact-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.fact-table th, .fact-table td { text-align: start; padding: 8px 10px; border-bottom: 1px solid var(--line, rgba(127,127,127,.2)); }
.fact-table th { color: var(--text); }
.llm-index { display: none; }
.crumbs { font-size: 13px; color: var(--faint); margin-bottom: 16px; }
.crumbs a {
  min-height: 40px; display: inline-flex; align-items: center;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
.crumbs a:hover { color: var(--text); }

[hidden] { display: none !important; }
.good { color: var(--good); }

.wizard { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); gap: 28px; align-items: start; }
.wizard > * { min-width: 0; }
.wizard h2 { font-size: 1.15rem; margin: 0 0 8px; }
.dply-steps { display: flex; flex-direction: column; gap: 18px; }
.dply-step {
  scroll-margin-top: calc(var(--header) + 16px);
  padding: 22px 22px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(19, 26, 43, 0.55), rgba(11, 15, 25, 0.35));
  box-shadow: inset 0 0 0 1px var(--line);
}
.dply-step.step-hidden { display: none; }
.dply-step.animate-in { animation: dplyIn 420ms var(--ease) both; }
@keyframes dplyIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.dply-step-head {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.dply-step-head > div { flex: 1; min-width: 0; }
.dply-n {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  background: rgba(34, 211, 238, 0.1); color: #67e8f9;
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}
.dply-step.step-complete .dply-n {
  background: linear-gradient(135deg, #22d3ee, #10b981); color: #06080f;
  box-shadow: none;
}
.dply-step.step-complete .dply-n .n { font-size: 0; }
.dply-step.step-complete .dply-n .n::after { content: "✓"; font-size: 14px; }
.step-pill {
  flex-shrink: 0; margin-inline-start: auto;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: 999px; color: var(--accent-2);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
  max-width: 46%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.final-bar.step-hidden { display: none; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
#kindGrid {
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(100%, 320px); gap: 4px; padding: 4px; margin: 0 0 12px;
  background: var(--bg-elev); border-radius: 12px;
}
#locGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plan-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin: 8px 0 20px; align-items: stretch;
}
.term-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 8px 0 16px;
}
.choice {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px;
  background: var(--card); border-radius: var(--radius-sm);
  padding: 12px 14px; cursor: pointer; text-align: left; min-height: 44px; min-width: 0;
  overflow: hidden;
  box-shadow: var(--shadow-border); border: 0;
  transition-property: box-shadow, background-color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.choice b { color: var(--text); font-weight: 600; min-width: 0; overflow-wrap: anywhere; }
.choice.on, .choice:hover, .plan-pick.on, .plan-pick:hover, .term-pick.on, .term-pick:hover {
  box-shadow: var(--shadow-border-hover);
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
}
.choice:active, .plan-pick:active, .term-pick:active { transform: scale(0.96); }
.choice-loc {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 1px;
  align-items: center;
}
.choice-loc .flag { grid-row: 1 / span 2; align-self: center; }
.choice-loc b, .choice-loc .faint {
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.choice-loc .faint { margin-inline-start: 0; }
#kindGrid .choice {
  flex-direction: row; align-items: center; justify-content: center;
  gap: 8px; height: 40px; min-height: 40px; white-space: nowrap;
  padding: 0 12px; box-shadow: none; background: transparent;
}
#kindGrid .choice.on, #kindGrid .choice:hover { box-shadow: none; }
#kindGrid .choice.on { background: var(--card-2); }
#kindGrid .choice:hover { background: rgba(255, 255, 255, 0.04); }
#kindGrid .choice.on:hover { background: var(--card-2); }
.choice .coin { margin-inline-end: 2px; }
.spec-line {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  width: 100%;
}
.spec-line .ico { margin-top: 3px; }
.plan-pick .spec-line {
  grid-template-columns: 16px auto minmax(0, 1fr);
  align-items: start;
}
.plan-pick .spec-line > span:nth-child(2) {
  color: var(--faint); font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.plan-pick .spec-line b {
  color: var(--text); font-weight: 600; text-align: left;
  font-variant-numeric: tabular-nums;
  min-width: 0; overflow-wrap: anywhere; word-break: break-word;
}
.plan-pick .spec-chip { padding-inline-start: 24px; font-size: 12px; line-height: 1.35; }
.plan-pick .plan-vs { font-size: 12px; line-height: 1.35; text-align: left; }

.plan-pick-top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.plan-pick-meta { display: grid; gap: 6px; }
.plan-pick, .term-pick {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch; gap: 6px;
  background: var(--card); border-radius: 20px; padding: 16px;
  cursor: pointer; text-align: left; border: 0; color: var(--muted); font: inherit;
  box-shadow: var(--shadow-border); min-width: 0; height: 100%;
  transition-property: box-shadow, background-color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.plan-pick .tier { font-size: 13px; font-weight: 600; color: var(--accent-2); }
.plan-pick .price, .summary-card .price { color: var(--text); }
.plan-pick .price { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.04em; }
.plan-pick .price span { font-size: 12px; color: var(--muted); font-weight: 500; }
.term-pick b { color: var(--text); font-size: 1rem; }
.term-off { font-size: 12px; font-weight: 600; color: var(--good); }
.term-best {
  position: absolute; top: 10px; inset-inline-end: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #06080f; background: var(--good); border-radius: 999px; padding: 3px 8px;
}

.summary-card { position: sticky; top: calc(var(--header) + 12px); padding: 18px 16px 16px; overflow: hidden; }
.summary-card .price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 700;
  margin: 0; line-height: 1.2; letter-spacing: -0.02em;
  min-width: 0; max-width: 100%;
}
.summary-card .price span,
.summary-card .price small { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.summary-card .btn-lg { width: 100%; }
.summary-card .btn-ghost { width: 100%; margin-top: 8px; }
.summary-card form { margin: 0; }
.summary-card .sum-signed { margin: 0 0 14px; line-height: 1.4; overflow-wrap: anywhere; }
.sum-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 14px;
}
.sum-head h3 { margin: 0; font-size: 1rem; }
.sum-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.28);
}
.sum-plan {
  padding: 12px 0 14px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.18);
}
.sum-plan.empty { text-align: center; padding: 18px 8px 16px; color: var(--muted); }
.sum-plan.empty .ring {
  width: 40px; height: 40px; margin: 0 auto 10px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line);
  background: rgba(34, 211, 238, 0.06);
}
.sum-plan.empty h5 { margin: 0 0 6px; color: var(--text); font-size: 14px; }
.sum-plan.empty p { margin: 0; font-size: 13px; }
.sum-plan-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.sum-plan-top h4 { margin: 0; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.sum-plan-top .type {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  padding: 2px 6px; border-radius: 5px; color: #67e8f9;
  background: rgba(34, 211, 238, 0.1);
}
.sum-plan-top .price {
  font-size: 1.15rem;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sum-plan .sku {
  display: inline-block; margin: 8px 0 10px;
  font-size: 11px; font-family: ui-monospace, Consolas, monospace; color: #67e8f9;
}
.sum-plan .specs { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.sum-plan .specs span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
}
.sum-plan .specs .ico { width: 12px; height: 12px; flex-basis: 12px; color: var(--accent); }
.sum-section {
  display: flex; justify-content: space-between; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px dashed rgba(148, 163, 184, 0.16);
  font-size: 13px;
}
.sum-section.empty .val { color: var(--faint); }
.sum-section .lbl { color: var(--faint); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.sum-section .val { text-align: right; }
.sum-section .val b { display: flex; align-items: center; justify-content: flex-end; gap: 6px; color: var(--text); }
.sum-section .val span { display: block; color: var(--faint); font-size: 12px; }
.sum-totals { display: grid; gap: 8px; padding: 12px 0 4px; }
.sum-totals .line { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--muted); }
.sum-totals .line b { color: var(--text); font-variant-numeric: tabular-nums; }
.sum-totals .save-line b { color: var(--good); }
.sum-totals .grand {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  margin-top: 4px; padding-top: 10px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.sum-totals .grand span { font-weight: 600; color: var(--text); }
.sum-totals .grand strong {
  font-size: 1.45rem; letter-spacing: -0.03em;
  background: linear-gradient(90deg, #22d3ee, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sum-totals .grand small { color: var(--faint); font-size: 12px; }
.grand-eff { font-size: 12px; color: var(--faint); }
.sum-coins { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); }
.sum-coins-lbl {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 8px;
}
.sum-coins-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sum-lines { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
.sum-lines li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); min-width: 0; }
.sum-lines li > span { min-width: 0; overflow-wrap: anywhere; }
.sum-lines b { color: var(--text); font-variant-numeric: tabular-nums; flex-shrink: 0; }

.pay-modal { width: min(480px, calc(100% - 24px)); max-height: min(90vh, 760px); overflow-y: auto; }
.pay-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.15fr);
  gap: 16px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.pay-board > * { min-width: 0; }
.pay-side {
  position: sticky;
  top: calc(var(--header) + 12px);
  padding: 18px 18px 16px;
}
.pay-side h2 { font-size: 1.15rem; margin: 0 0 12px; }
.pay-main { padding: 18px 18px 16px; }
.inv-doc { display: grid; gap: 14px; }
.inv-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex-wrap: wrap;
}
.inv-badge {
  display: inline-flex; align-items: center;
  min-height: 28px; padding: 0 10px; border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #06080f; background: color-mix(in srgb, #f5a524 85%, #fff);
}
.inv-badge.is-wait {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 22%, var(--card));
}
.inv-badge.is-err {
  color: #fff;
  background: color-mix(in srgb, #e25555 80%, #000);
}
.inv-print { flex-shrink: 0; }
.inv-parties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.inv-issuer b, .inv-bill b { display: block; margin: 0 0 4px; color: var(--text); }
.inv-issuer p, .inv-bill p { margin: 0; font-size: 13px; line-height: 1.4; color: var(--muted); }
.inv-meta {
  display: grid; gap: 8px; margin: 0;
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.inv-meta > div { display: grid; grid-template-columns: 7.5rem minmax(0, 1fr); gap: 8px; font-size: 13px; }
.inv-meta dt { margin: 0; color: var(--faint); font-weight: 600; }
.inv-meta dd { margin: 0; color: var(--text); min-width: 0; overflow-wrap: anywhere; }
.inv-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.inv-table th {
  text-align: left; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; padding: 0 0 8px;
}
.inv-table th:last-child, .inv-table td:last-child { text-align: right; }
.inv-table td {
  padding: 8px 0; color: var(--muted);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  vertical-align: top;
}
.inv-table td.num { color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.inv-table tr.inv-disc td { color: var(--good); }
.inv-table tr.inv-meta-row td {
  font-size: 12px; color: var(--faint); box-shadow: none; padding-top: 4px; padding-bottom: 2px;
}
.inv-totals { margin: 4px 0 0; }
.nv-shimmer {
  --sh-a: color-mix(in srgb, var(--accent) 35%, #1a2238);
  --sh-b: color-mix(in srgb, var(--accent-2, #6ec8ff) 40%, #2a3550);
  --sh-c: color-mix(in srgb, #f5a524 28%, #243048);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--sh-a), var(--sh-b), var(--sh-c), var(--sh-a));
  background-size: 300% 300%;
  animation: nv-shimmer-flow 2.4s ease-in-out infinite;
}
.nv-shimmer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: nv-shimmer-sheen 1.6s linear infinite;
  pointer-events: none;
}
@keyframes nv-shimmer-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes nv-shimmer-sheen {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.inv-load {
  display: grid; gap: 12px; padding: 4px 0 8px; min-height: 220px;
}
.inv-skeleton {
  display: grid; gap: 14px; min-height: 220px;
}
.inv-sk-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.inv-sk-badge { height: 28px; width: 108px; border-radius: 8px; }
.inv-sk-btn { height: 36px; width: 88px; border-radius: 10px; }
.inv-sk-parties {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.inv-sk-block { height: 72px; border-radius: var(--radius-sm); }
.inv-sk-block.short { height: 56px; }
.inv-sk-meta { display: grid; gap: 8px; }
.inv-sk-line { height: 12px; border-radius: 999px; }
.inv-sk-line:nth-child(2) { width: 88%; }
.inv-sk-line:nth-child(3) { width: 62%; }
.inv-sk-table { height: 120px; border-radius: var(--radius-sm); }
.inv-sk-total { height: 44px; width: 72%; border-radius: 10px; }
.pay-skeleton {
  display: grid; gap: 14px; min-height: 240px;
}
.pay-sk-kicker { height: 14px; width: 72px; border-radius: 6px; }
.pay-sk-amt { height: 32px; width: 58%; border-radius: 8px; }
.pay-sk-sub { height: 14px; width: 42%; border-radius: 6px; }
.pay-sk-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pay-sk-chip { height: 44px; width: 88px; border-radius: 12px; }
.pay-sk-chip.wide { width: 112px; }
.pay-sk-scan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}
.pay-sk-qr {
  width: 168px; height: 168px; max-width: 100%;
  border-radius: var(--radius-sm);
}
.pay-sk-rows { display: grid; gap: 10px; padding-top: 6px; min-width: 0; }
.pay-sk-row { height: 44px; border-radius: 10px; }
.pay-sk-row.wide { width: 92%; }
.pay-sk-btn { height: 48px; width: 100%; border-radius: 12px; margin-top: 4px; }
.inv-load-label {
  position: relative; z-index: 1;
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: 0.02em;
}
.inv-load-bars { display: grid; gap: 10px; }
.inv-load-bar {
  height: 12px; border-radius: 999px;
}
.inv-load-bar.lg { height: 18px; width: 55%; }
.inv-load-bar.md { width: 78%; }
.inv-load-bar.sm { width: 42%; }
.pay-load {
  display: grid; gap: 14px; min-height: 200px;
}
.pay-load-grid {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px; align-items: start;
}
@media (max-width: 639px) {
  .pay-load-grid { grid-template-columns: 1fr; justify-items: start; }
}
.pay-load-qr {
  width: 148px; height: 148px; border-radius: 12px;
}
.pay-load-lines { display: grid; gap: 10px; padding-top: 8px; }
.pay-qr-skel {
  min-height: 148px;
  border-radius: var(--radius-sm);
}
.pay-scan.is-loading .pay-qr-skel {
  background: linear-gradient(120deg, var(--sh-a, #1a2238), var(--sh-b, #2a3550), var(--sh-c, #243048), var(--sh-a, #1a2238));
  background-size: 300% 300%;
  animation: nv-shimmer-flow 2.4s ease-in-out infinite;
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .nv-shimmer, .nv-shimmer::after, .pay-scan.is-loading .pay-qr-skel { animation: none; }
}
.section-pay { padding-top: 12px; }
.hero-checkout { padding: 14px 0 6px; }
.checkout-flow {
  display: flex; align-items: center; gap: 6px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
.checkout-sep {
  flex: 0 0 28px;
  height: 1px;
  background: color-mix(in srgb, var(--muted) 28%, transparent);
}
.checkout-step {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 12px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition-property: color, background-color, box-shadow, transform;
  transition-duration: 160ms, 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.checkout-step.is-current {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 11%, var(--card));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 38%, transparent),
    var(--shadow-border);
}
.checkout-step.is-done {
  color: var(--text);
}
a.checkout-step.is-done:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--bg-elev));
}
a.checkout-step.is-done:active { transform: scale(0.96); }
.checkout-step.is-next { color: var(--faint); }
.checkout-head { display: grid; gap: 8px; }
.checkout-head h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0;
  text-wrap: balance;
}
.checkout-head .lead {
  margin: 0;
  max-width: 42rem;
  text-wrap: pretty;
}
.hero-pay { padding: 18px 0 4px; }
.hero-pay h1 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 0; }
.hero-pay .lead { display: none; }
.nv-link {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 2px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
.nv-link:hover { color: var(--accent); }
.inv-change { margin: 10px 0 0; }
.inv-pay {
  margin: 2px 0 4px;
  padding: 12px 0 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.inv-pay .kicker { margin-bottom: 8px; }
.inv-pay-meta { margin-top: 0; }
.inv-pay-addr {
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.inv-pay-addr-row dd { grid-column: 2; }
.pay-amt {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 4px;
  word-break: break-all;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}
.pay-amt span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.pay-addr { word-break: break-all; font-size: 13px; }
.pay-coin-label {
  margin: 14px 0 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint);
}
.pay-coins { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.pay-chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 14px; border-radius: 12px;
  background: var(--bg-elev); color: var(--text);
  box-shadow: var(--shadow-border); border: 0; cursor: pointer;
  font-size: 13px; font-weight: 600;
  transition-property: box-shadow, background-color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.pay-chip.on, .pay-chip:hover {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent), var(--shadow-border-hover);
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
}
.pay-chip.on { font-weight: 700; }
.pay-chip:active:not(:disabled) { transform: scale(0.96); }
.pay-scan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 12px;
}
.pay-scan.is-pending { opacity: 1; }
.pay-qr-wrap {
  min-width: 0;
  min-height: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.pay-addr-wrap { min-height: 52px; }
.pay-qr-wrap, .pay-addr-wrap {
  transition: opacity 280ms cubic-bezier(0.2, 0, 0, 1);
}
.pay-qr-wrap.is-pending, .pay-addr-wrap.is-pending { opacity: 0.78; }
.pay-qr-stage {
  transition: opacity 220ms cubic-bezier(0.2, 0, 0, 1);
}
.pay-qr-stage.is-fade-out { opacity: 0; }
.pay-qr-stage.is-fade-in { opacity: 1; }
.pay-row-skel { padding: 10px 0; }
.pay-row-sk {
  height: 40px; width: 100%; max-width: 100%;
  border-radius: 10px;
}
.pay-qr {
  width: min(168px, 100%);
  padding: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  outline: none;
}
.pay-qr svg {
  width: 168px; max-width: 100%; height: auto; display: block;
  border-radius: var(--radius-sm);
}
.pay-qr-empty {
  width: min(168px, 100%);
  min-height: 148px;
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg-elev);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-border);
}
.pay-send { margin: 0; min-width: 0; width: 100%; }
.pay-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pay-row .faint {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin: 0;
}
.pay-row .mono { margin: 0; font-size: 13px; overflow-wrap: anywhere; color: var(--text); }
.pay-row .btn { width: auto; height: 40px; min-height: 40px; padding: 0 12px; min-width: 76px; }
.pay-empty {
  margin: 8px 0 0;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  box-shadow: var(--shadow-border);
}
.pay-empty .pay-addr { margin: 0; color: var(--faint); }
.pay-actions { margin-top: 16px; }
.pay-actions .btn { width: 100%; }
.coin-grid { margin-bottom: 16px; }
.final-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.final-inner .price { font-size: 1.2rem; font-weight: 700; }
.final-meta { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.final-plan { font-size: 12px; font-weight: 600; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bound-card { max-width: 46em; }
.bound-card p { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--text); }

.wizard aside.card { position: sticky; top: calc(var(--header) + 12px); }
.invoice {
  border-radius: var(--radius-sm); padding: 16px; background: var(--bg-elev);
  box-shadow: var(--shadow-border);
}

.desktop-only { display: inline-flex; }

label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; margin: 0 0 12px; color: var(--text); }
input, select {
  width: 100%; height: 44px; padding: 0 12px; border-radius: var(--radius-sm);
  border: 0; background: var(--bg-elev); color: var(--text);
  font-size: 16px;
  box-shadow: var(--shadow-border);
  transition-property: box-shadow;
  transition-duration: 160ms;
  user-select: text;
  -webkit-user-select: text;
}
textarea {
  width: 100%; min-height: 88px; padding: 10px 12px; border-radius: var(--radius-sm);
  border: 0; background: var(--bg-elev); color: var(--text);
  font-size: 16px; resize: vertical; line-height: 1.4;
  box-shadow: var(--shadow-border);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: var(--shadow-border), 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.drawer-bg, .modal-bg {
  position: fixed; inset: 0; background: rgba(6, 8, 15, 0.64); z-index: 50;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition-property: opacity, visibility;
  transition-duration: 200ms, 200ms;
  transition-timing-function: var(--ease);
}
.drawer-bg.is-open, .modal-bg.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 100%);
  background: var(--bg); z-index: 51;
  padding: calc(56px + env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(24px, env(safe-area-inset-bottom, 0px)) 16px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  visibility: hidden;
  transition-property: transform, visibility;
  transition-duration: 280ms, 280ms;
  transition-timing-function: var(--ease);
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.icon-x {
  position: absolute; top: calc(8px + env(safe-area-inset-top, 0px)); inset-inline-end: 8px; width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer; border-radius: var(--radius-sm);
  color: var(--muted);
}
.icon-x::before, .icon-x::after {
  content: ""; position: absolute; left: 12px; right: 12px; top: 50%; height: 1.5px;
  background: currentColor; border-radius: 1px;
}
.icon-x::before { transform: rotate(45deg); }
.icon-x::after { transform: rotate(-45deg); }
.icon-x:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.drawer a {
  min-height: 44px; display: flex; align-items: center;
  padding: 0 12px; border-radius: var(--radius-sm); color: var(--muted); font-weight: 500;
  transition-property: background-color, color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.drawer a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.drawer a:active { transform: scale(0.96); }
.drawer a.drawer-deploy {
  color: #06080f; justify-content: center; margin-bottom: 8px; flex-shrink: 0;
}
.drawer a.drawer-deploy:hover { color: #06080f; filter: brightness(1.08); background: linear-gradient(#10b981, #059669); }
.drawer-actions { margin-top: auto; display: grid; gap: 8px; }
body.ui-open { overflow: hidden; }

.modal {
  position: fixed; left: 50%; top: 50%;
  width: min(420px, calc(100% - 24px));
  background: var(--card); border-radius: 32px;
  padding: 20px; z-index: 52;
  box-shadow: var(--shadow-border), 0 24px 80px rgba(0, 0, 0, 0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, calc(-50% + 12px)) scale(0.98);
  transition-property: opacity, transform, visibility;
  transition-duration: 220ms, 240ms, 220ms;
  transition-timing-function: var(--ease);
}
.modal.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal.is-open.is-closing {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 12px)) scale(0.98);
  transition-duration: 150ms, 150ms, 150ms;
}
.modal h2 { margin-top: 8px; }
.auth-tabs {
  display: flex; gap: 4px; background: var(--bg-elev); padding: 4px;
  border-radius: 12px;
}
.auth-tabs button {
  flex: 1; height: 40px; border: 0; border-radius: 8px; background: transparent;
  color: var(--muted); font-weight: 600; cursor: pointer;
  transition-property: background-color, color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.auth-tabs button.on { background: var(--card-2); color: var(--text); }
.auth-tabs button:active { transform: scale(0.96); }
.auth-err {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 12px;
}
.auth-pw-note { margin: -4px 0 12px; font-size: 13px; }
.auth-foot { margin-top: 12px; font-size: 12px; }
.pw-field {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.pw-field input {
  flex: 1;
  min-width: 0;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.pw-toggle {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 12px;
  height: 44px;
  border: 0;
  border-radius: 0;
  border-start-end-radius: var(--radius-sm);
  border-end-end-radius: var(--radius-sm);
  background: var(--card-2);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-border);
}
.pw-toggle:hover { color: var(--text); background: color-mix(in srgb, var(--accent) 12%, var(--card-2)); }
.pw-toggle[aria-pressed="true"] { color: var(--accent-2); }
.modal .btn-lg { width: 100%; border-radius: 12px; }

.foot-sec summary {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--faint); font-weight: 700; cursor: default; list-style: none;
  min-height: 28px; display: flex; align-items: center; margin: 0 0 2px;
}
.foot-sec summary::-webkit-details-marker { display: none; }

.access-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.access-card .mono { font-size: 13px; }
.server-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.server-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; align-items: center; }
button[disabled] { opacity: 0.45; cursor: not-allowed; }
.server-meta { display: flex; align-items: flex-start; gap: 10px; min-width: 0; }
.server-meta .flag { width: 22px; height: 15px; margin-top: 3px; flex-shrink: 0; }
.num { font-variant-numeric: tabular-nums; }

#panelApp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#panelApp > .panel-nav { margin-bottom: 0; }
.panel-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.panel-stack > .card,
.panel-stack > .panel-wait,
.panel-stack > .grid-2 {
  margin: 0;
}
.panel-stack .card > .faint { margin: 0 0 12px; }
.panel-stack .card > .panel-card-head + .faint { margin-top: -4px; }
.panel-stats { gap: 16px; align-items: stretch; }
.panel-stats > .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.panel-email { margin: 0; word-break: break-word; }
.panel-stats-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
}
.panel-stats-list li {
  display: flex; justify-content: space-between; gap: 12px;
  align-items: baseline; color: var(--muted); font-size: 14px;
}
.panel-stats-list b { color: var(--text); }
.panel-card-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.panel-card-head h2,
.panel-card-head h3 { margin: 0; }
.panel-card-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.server-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.server-command-status { min-height: 1.4em; margin: 10px 0 0; }
.confirm-dialog {
  width: min(480px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.confirm-dialog::backdrop { background: rgba(1, 4, 10, .78); backdrop-filter: blur(4px); }
.confirm-dialog .card { margin: 0; }
.panel-wait {
  text-align: left;
  padding: 18px 20px;
}
.panel-wait-title {
  font-size: 1.05rem; font-weight: 600; margin: 0 0 6px;
}
.panel-wait-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
  justify-content: flex-start;
}
.server-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  min-width: 0;
}
.server-card-top {
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; align-items: flex-start;
}
.server-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.server-lock {
  font-size: 13.5px; color: var(--muted);
  padding: 12px 14px; border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  display: grid; gap: 10px;
}
.server-lock p { margin: 0; }
.status-pill {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  border-radius: 999px; font-size: 11px; font-weight: 600;
  vertical-align: middle; letter-spacing: .02em;
  background: rgba(255,255,255,.06); color: var(--faint);
}
.status-pill.status-active {
  background: color-mix(in srgb, var(--good) 18%, transparent);
  color: var(--good);
}
.status-pill.status-provisioning {
  background: color-mix(in srgb, var(--warn) 18%, transparent);
  color: var(--warn);
}
.status-pill.status-pending_payment {
  background: color-mix(in srgb, #f87171 16%, transparent);
  color: #f87171;
}
.server-card.is-unpaid {
  border-color: color-mix(in srgb, #f87171 24%, var(--border));
}
.server-card.is-unpaid .status-pill.status-pending_payment {
  margin-left: 0;
  font-size: 12px;
}
.status-pill.status-payment_error,
.status-pill.status-failed,
.status-pill.status-cancelled {
  background: color-mix(in srgb, #f87171 18%, transparent);
  color: #f87171;
}
.panel-nav {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 16px; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.panel-nav::-webkit-scrollbar { display: none; }
.panel-nav a {
  height: 40px; padding: 0 12px 0 10px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); white-space: nowrap;
  box-shadow: var(--shadow-border);
  transition-property: box-shadow, color, background-color, transform;
  transition-duration: 160ms, 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.panel-nav .ico { color: var(--faint); }
.panel-nav a:active { transform: scale(0.96); }
.panel-nav a.on { color: var(--text); background: color-mix(in srgb, var(--accent) 10%, var(--card)); box-shadow: var(--shadow-border-hover); }
.panel-body {
  min-width: 0;
  transition-property: opacity, transform;
  transition-duration: 280ms, 280ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1), cubic-bezier(0.2, 0, 0, 1);
}
.panel-body.is-out {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
.panel-body.is-enter .panel-stack > .card,
.panel-body.is-enter .panel-stack > .panel-wait,
.panel-body.is-enter .panel-stack > .grid-2 {
  animation: panelChunkIn 520ms cubic-bezier(0.2, 0, 0, 1) both;
}
.panel-body.is-enter .panel-stack > *:nth-child(1) { animation-delay: 0ms; }
.panel-body.is-enter .panel-stack > *:nth-child(2) { animation-delay: 80ms; }
.panel-body.is-enter .panel-stack > *:nth-child(3) { animation-delay: 160ms; }
.panel-body.is-enter .panel-stack > *:nth-child(4) { animation-delay: 240ms; }
@keyframes panelChunkIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .panel-body,
  .panel-body.is-out { transition: none; transform: none; opacity: 1; }
  .panel-body.is-enter .panel-stack > * { animation: none; }
}

@keyframes nv-spin { to { transform: rotate(360deg); } }
.spin {
  display: inline-block; width: 1em; height: 1em;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: nv-spin .7s linear infinite;
  vertical-align: -0.15em; margin-right: .45em;
}
.btn.is-busy { pointer-events: none; opacity: .75; }
.pay-eta {
  margin: 12px 0 0; padding: 0; border-radius: 12px;
  background: var(--bg-elev); box-shadow: var(--shadow-border); text-align: left;
}
.pay-eta > summary {
  cursor: pointer; list-style: none;
  padding: 12px 14px; min-height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.pay-eta > summary::-webkit-details-marker { display: none; }
.pay-eta > summary::after {
  content: "+"; font-weight: 700; color: var(--faint); font-size: 16px; line-height: 1;
}
.pay-eta[open] > summary::after { content: "\2212"; }
.pay-eta-body { padding: 0 14px 12px; }
.pay-eta-body p { margin: 0 0 8px; color: var(--muted); font-size: 13.5px; }
.pay-row-load {
  display: flex; align-items: center; gap: 10px;
  min-height: 40px; color: var(--muted); font-size: 13px;
}
.pay-promo {
  margin: 12px 0 0; padding-top: 12px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.pay-promo label { display: grid; gap: 6px; font-size: 12px; font-weight: 600; color: var(--faint); }
.pay-promo-row { display: flex; gap: 8px; }
.pay-promo-row input {
  flex: 1; min-width: 0; min-height: 40px; padding: 0 12px;
  border-radius: 10px; border: 0; background: var(--bg-elev);
  box-shadow: var(--shadow-border); color: var(--text);
}
.pay-promo-row .btn { flex-shrink: 0; }
.sum-lines li.good-line span { color: var(--good); }
.sum-lines li.good-line b { color: var(--good); }
.sum-lines li.due-line { margin-top: 4px; padding-top: 8px; box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06); }
.sum-lines li.due-line b { font-size: 1.05rem; }
.pay-side .inv-change { margin-top: 12px; }
.pay-howto { margin: 0; padding-left: 1.1em; color: var(--muted); font-size: 13.5px; }
.pay-howto li { margin: 0 0 4px; }
.note-sla {
  margin: 0 0 16px; padding: 12px 14px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  color: var(--text); font-size: 14.5px;
}
.bill-acts { display: flex; flex-wrap: wrap; gap: 6px; }
.tix-list { display: grid; gap: 10px; margin-top: 12px; }
.tix-row {
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.tix-row h3 { margin: 0 0 6px; font-size: 1rem; }
.tix-row p { margin: 0; word-break: break-word; }
.panel-form { display: grid; gap: 4px; max-width: 40rem; }
.panel-form label span { display: block; }
.bill-list { display: grid; gap: 10px; margin-top: 12px; }
.bill-card {
  display: grid; gap: 8px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  min-width: 0;
}
.bill-card-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.bill-card .bill-acts { margin-top: 4px; }
@media (max-width: 720px) {
  .panel-nav {
    display: grid; grid-template-columns: 1fr 1fr; overflow: visible;
    padding-bottom: 0;
  }
  .panel-nav a { justify-content: center; min-height: 44px; }
  .panel-stats { grid-template-columns: 1fr; }
  .bill-acts .btn { min-height: 44px; }
  #panelApp .table-wrap { margin-inline: -4px; }
}
.pay-wait-inline {
  margin-top: 16px;
  padding-top: 16px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 8px;
}
.addon-grid {
  display: grid; gap: 10px; margin-top: 8px;
  grid-template-columns: 1fr;
}
.addon-pick {
  display: grid; gap: 6px; text-align: left;
  padding: 14px 16px; border-radius: 14px; cursor: pointer;
  background: var(--card); color: inherit; border: 0;
  box-shadow: var(--shadow-border);
  transition: box-shadow 160ms var(--ease), transform 120ms var(--ease);
}
.addon-pick:hover { box-shadow: var(--shadow-border-hover); }
.addon-pick:active { transform: scale(0.99); }
.addon-pick.on {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 50%, transparent), 0 10px 28px rgba(0, 0, 0, 0.28);
}
.addon-top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.addon-top b { font-size: 0.98rem; }
.addon-price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px; font-weight: 600; color: var(--accent-2); white-space: nowrap;
}
@media (min-width: 720px) {
  .addon-grid { grid-template-columns: 1fr 1fr; }
}
.pay-wait-inline .pay-wait-title { margin: 0; }
.pay-wait-inline .pay-wait-actions {
  justify-content: flex-start;
  margin-top: 8px;
}
.pay-wait-side {
  margin-top: 14px;
  padding-top: 12px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 6px;
}
.pay-coins .pay-chip[disabled] {
  opacity: 0.55;
  cursor: default;
}
.pay-err { text-align: left; }
.pay-err-title {
  font-size: 1.2rem; font-weight: 700; margin: 8px 0 6px; color: #f87171;
}
.pay-err-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
}
.pay-wait-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px;
}
#payBox, #payOrder {
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}
#payBox.is-soft-out, #payOrder.is-soft-out {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(3px);
  pointer-events: none;
}
#payBox.is-soft-in, #payOrder.is-soft-in {
  animation: nv-soft-in 560ms var(--ease-out) both;
}
@keyframes nv-soft-in {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
canvas.nv-salute {
  position: fixed; inset: 0; z-index: 70; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #payBox, #payOrder { transition: none; }
  #payBox.is-soft-in, #payOrder.is-soft-in { animation: none; }
}
.server-wait {
  width: 100%; display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 8px; padding-top: 8px; box-shadow: 0 -1px 0 var(--line);
}

.final-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  padding: 12px max(16px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-top: 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06), 0 -12px 32px rgba(0, 0, 0, 0.28);
}
.final-bar:empty { display: none !important; }
.final-bar .btn { width: auto; min-width: 120px; flex-shrink: 0; }
.final-inner .price { min-width: 0; overflow: hidden; text-overflow: ellipsis; }

@media (prefers-reduced-motion: no-preference) {
  .hero .kicker,
  .hero h1,
  .hero .lead,
  .hero .fact-rows,
  .hero .badges {
    animation: enter 480ms var(--ease) both;
  }
  .hero h1 { animation-delay: 120ms; }
  .hero .lead { animation-delay: 200ms; }
  .hero .fact-rows { animation-delay: 280ms; }
  .hero .badges { animation-delay: 360ms; }
  .hero .wrap > .btn,
  .hero .wrap > a.btn,
  .hero-grid > div:first-child > .btn,
  .hero-grid > div:first-child > a.btn,
  .hero-ctas .btn {
    animation: enter 480ms 460ms var(--ease) both;
  }
  body[data-path=""] .hero-art,
  body[data-path="/"] .hero-art {
    animation: hero-glow 720ms 200ms var(--ease) both;
  }
}
@keyframes enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-glow {
  from { opacity: 0; filter: saturate(0.6) brightness(0.85); transform: translateY(10px) scale(0.98); }
  to { opacity: 1; filter: none; transform: none; }
}

@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
  .header-actions > .js-auth,
  .header-actions > .js-signout { display: none !important; }
  .header-launch {
    display: inline-flex; padding-inline: 12px;
    max-width: min(42vw, 11rem);
    overflow: hidden; text-overflow: ellipsis;
  }
  .burger { display: block; }
  .site-header {
    --header: 56px;
    backdrop-filter: none;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
  }
  :root { --header: 56px; }
  .hero { padding: 28px 0 20px; }
  .hero-grid { gap: 16px; }
  .hero-visual { order: -1; max-width: min(380px, 86vw); aspect-ratio: 1; }
  .hero-art { width: 92%; }
  .hero-trust { gap: 10px 14px; margin-bottom: 16px; }
  .ht { font-size: 12px; }
  .hero .lead { font-size: 15px; margin-bottom: 16px; }
  .hero-ctas { margin-bottom: 18px; }
  .lang-chip > span:not(.flag) { display: none; }
  .lang-chip { padding: 0 8px; width: 40px; justify-content: center; }
  .pulse-kpis-sec { display: none; }
  .pulse-charts-sec { padding: 32px 0 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why { padding: 16px 16px; column-gap: 12px; }
  .section-compact { padding: 36px 0; }
  .home-sec { padding: 48px 0; }
  .dc-flag { width: 50px; height: 36px; }
  .dc-flag .flag { width: 50px; height: 36px; }
  body[data-path="deploy/"] .hero .fact-rows { display: none; }
  body[data-path="deploy/"] .checkout-head .lead { display: none; }
  .section { padding: 28px 0; }
  .home-sec { padding: 48px 0; }
  .final-bar { backdrop-filter: none; background: color-mix(in srgb, var(--bg) 96%, transparent); }
  .plan-slider {
    mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 28px), transparent);
  }
  body[data-path="deploy/"] .hero-checkout,
  body[data-path="pay/"] .hero-checkout { padding: 12px 0 4px; }
  body[data-path="deploy/"] .section,
  body[data-path="pay/"] .section { padding-top: 8px; }
  .hero-grid, .wizard, .pay-board, .foot-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:not(:last-child)::after { display: none; }
  .proof-item { padding: 12px 8px; }
  .cta-band { padding: 20px; flex-direction: column; align-items: stretch; }
  .cta-band .btn { width: 100%; }
  .wizard aside.card, .summary-card, .pay-side { position: static; }
  .final-bar:not(:empty):not(.step-hidden) { display: block; }
  body[data-path="deploy/"] #checkout { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .lang-menu {
    position: fixed; left: 12px; right: 12px; top: auto;
    bottom: max(12px, env(safe-area-inset-bottom, 0px)); width: auto;
    max-height: min(72vh, 520px);
  }
  [dir="rtl"] .lang-menu { left: 12px; right: 12px; }
  .foot-sec summary { cursor: pointer; }
  .modal {
    left: 0; right: 0; top: auto; bottom: 0;
    width: 100%; max-height: min(92vh, 720px); overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
  }
  .modal.is-open { transform: translateY(0); }
  .modal.is-open.is-closing { transform: translateY(12px); opacity: 0; }
  .pay-modal { width: 100%; max-height: 92vh; overflow-y: auto; }
}

@media (max-width: 639px) {
  .wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .header-launch { display: none !important; }
  .header-actions > .js-signout { display: none !important; }
  .header-actions { gap: 8px; }
  .site-header .wrap { gap: 8px; }
  .head-chip { font-size: 9px; padding: 3px 6px; }
  .lang-chip { width: 40px; padding: 0; justify-content: center; }
  .lang-chip span:not(.flag) { display: none; }
  .header-actions .js-auth { padding: 0 10px; font-size: 13px; max-width: 34vw; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .hero-ctas a.btn { width: 100%; }
  .checkout-flow { margin-bottom: 12px; }
  .checkout-sep { flex-basis: 16px; }
  .checkout-step { min-height: 36px; padding: 0 10px; }
  .grid-2, .grid-plans, .plan-grid, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .term-grid { grid-template-columns: 1fr 1fr; }
  .step-grid, #osGrid { grid-template-columns: 1fr 1fr; }
  #locGrid { grid-template-columns: 1fr; }
  #kindGrid { width: 100%; }
  .dply-step { padding: 16px 14px 14px; border-radius: 14px; }
  .dply-step-head { margin-bottom: 12px; }
  .dply-step-head .faint { display: none; }
  .plan-pick {
    gap: 8px; padding: 14px; border-radius: 14px; height: auto;
  }
  .plan-pick-meta {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
  }
  .plan-pick .spec-line {
    display: inline-flex; align-items: center; gap: 6px;
    grid-template-columns: unset; width: auto;
  }
  .plan-pick .spec-line > span:nth-child(2) { display: none; }
  .plan-pick .spec-chip { display: none; }
  .plan-pick .plan-vs { font-size: 11px; }
  .choice-loc {
    min-height: 56px; padding: 12px 14px;
  }
  .term-pick { min-height: 88px; padding: 12px; border-radius: 14px; }
  .dc-lab { display: none; }
  .dc-row { grid-template-columns: 16px 1fr; }
  .dc-val { text-align: start; }
  .dc-card { padding: 16px 14px 14px; gap: 8px; }
  .dc-tier { display: none; }
  .how-card { display: grid; grid-template-columns: 28px 1fr; column-gap: 12px; padding: 14px; }
  .how-card .how-n { margin: 0; grid-row: 1 / span 2; }
  .how-card h3, .how-card p { grid-column: 2; margin: 0; }
  .pulse-note { display: none; }
  .kind-switch { width: 100%; }
  .plan-head { flex-direction: column; align-items: stretch; }
  .loc-chip .faint { display: none; }
  .legal-row { flex-direction: column; }
  .btn, .choice, .pay-chip { min-height: 44px; }
  .pay-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .pay-row .faint { grid-column: 1 / -1; }
  .pay-row .btn { height: 44px; }
  .pay-scan { grid-template-columns: 1fr; justify-items: stretch; }
  .pay-sk-scan { grid-template-columns: 1fr; justify-items: stretch; }
  .pay-sk-qr { width: 100%; max-width: 200px; margin: 0 auto; }
  .pay-qr svg { width: 100%; max-width: 200px; margin: 0 auto; }
  .inv-sk-parties { grid-template-columns: 1fr; }
  .pay-send { width: 100%; }
  .server-row { flex-direction: column; align-items: flex-start; }
  .access-actions { width: 100%; }
  .access-actions .btn { flex: 1; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-plans, .plan-grid, .term-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .step-grid, #locGrid, #osGrid { grid-template-columns: 1fr 1fr; }
  .plan-slider .plan { flex-basis: calc(50% - 6px); max-width: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .hv-badge { display: none; }
  .hero-visual { max-width: min(340px, 86vw); }
}
@media (max-width: 379px) {
  .logo { font-size: 0.95rem; gap: 8px; }
  .header-actions .js-auth { display: none !important; }
  .grid-3, .grid-4, .grid-5, .term-grid, .step-grid, #osGrid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .burger, .drawer, .drawer-bg { display: none !important; }
  .plan-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .plan-slider .plan {
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: none;
    width: auto;
    scroll-snap-align: start;
  }
  .plan-slider .plan .price { font-size: 1.2rem; }
  .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body[data-path="deploy/"] .hero,
  body[data-path="pay/"] .hero { padding: 20px 0 12px; }
  body[data-path="deploy/"] .hero h1,
  body[data-path="pay/"] .hero h1 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 0.35em; }
  body[data-path="deploy/"] .hero .lead,
  body[data-path="pay/"] .hero .lead { font-size: 1rem; margin-bottom: 8px; }
  body[data-path="deploy/"] .section,
  body[data-path="pay/"] .section { padding-top: 16px; }
}
@media (min-width: 1024px) and (max-width: 1239px) {
  .nav { gap: 0; margin-inline-start: 0; min-width: 0; }
  .nav a { padding: 0 8px; font-size: 13px; }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .dc-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .grid-plans { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.how-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow-border);
}
.how-card .how-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; margin-bottom: 10px;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  color: #06080f; background: var(--good);
}
.how-card h3 { font-size: 1rem; margin: 0 0 6px; }
.how-card p { margin: 0; font-size: 14px; color: var(--muted); }
@media (max-width: 639px) {
  .how-grid { grid-template-columns: 1fr; }
}

.field-ico { position: relative; display: block; }
.field-ico input { padding-inline-end: 46px; }
.ico-btn {
  position: absolute; inset-inline-end: 2px; top: 50%; width: 44px; height: 44px;
  transform: translateY(-50%);
  border: 0; background: transparent; cursor: pointer; color: var(--muted);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  transition-property: color, background-color, transform;
  transition-duration: 160ms, 160ms, 120ms;
  transition-timing-function: var(--ease);
}
.ico-btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.ico-btn:active { transform: translateY(-50%) scale(0.96); }
.ico {
  width: 16px; height: 16px; display: inline-block; flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.ico-refresh { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M13.7 2.3A7 7 0 1 0 15 8h-2a5 5 0 1 1-1.46-3.5L9 7h6V1z'/%3E%3C/svg%3E"); }
.ico-cpu { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6 1h4v2h3v3h2v4h-2v3H10v2H6v-2H3v-3H1V6h2V3h3zm1 4v6h2V5z'/%3E%3C/svg%3E"); }
.ico-ram { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1 5h14v6H1zm2 2v2h2V7zm4 0v2h2V7zm4 0v2h2V7z'/%3E%3C/svg%3E"); }
.ico-disk { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 2h10l2 3v9H1V5zm2 9h6v2H5zm6-7H5v2h6z'/%3E%3C/svg%3E"); }
.ico-net { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1zm0 2c1.2 0 2.3.7 3.3 2H4.7C5.7 3.7 6.8 3 8 3zm-5 5c0-.7.1-1.4.3-2h9.4c.2.6.3 1.3.3 2s-.1 1.4-.3 2H3.3C3.1 9.4 3 8.7 3 8zm5 5c-1.2 0-2.3-.7-3.3-2h6.6C10.3 12.3 9.2 13 8 13z'/%3E%3C/svg%3E"); }
.ico-ip { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 1a7 7 0 100 14A7 7 0 008 1zm0 2v10A5 5 0 018 3z'/%3E%3C/svg%3E"); }
.ico-box { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1 4l7-3 7 3v8l-7 3-7-3zm7 1L3.2 4 8 2l4.8 2z'/%3E%3C/svg%3E"); }
.ico-home { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 2l7 6h-2v6H9V9H7v5H3V8H1z'/%3E%3C/svg%3E"); }
.ico-server { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M2 1h12v4H2zm0 5h12v4H2zm0 5h12v4H2zM4 3h2v1H4zm0 5h2v1H4zm0 5h2v1H4z'/%3E%3C/svg%3E"); }
.ico-bill { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 1h10v14l-2-1-2 1-2-1-2 1-2-1zm3 3h4v2H6zm0 3h4v2H6z'/%3E%3C/svg%3E"); }
.ico-ticket { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1 4h14v3a2 2 0 010 4v3H1v-3a2 2 0 010-4zm8 1v6h2V5z'/%3E%3C/svg%3E"); }
.ico-plus { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M7 1h2v6h6v2H9v6H7V9H1V7h6z'/%3E%3C/svg%3E"); }
.ico-user { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 1a3.5 3.5 0 110 7 3.5 3.5 0 010-7zM2 14c0-3 2.7-5 6-5s6 2 6 5v1H2z'/%3E%3C/svg%3E"); }
.ico-shield { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 1 3 3v5c0 3.2 2.1 5.8 5 7 2.9-1.2 5-3.8 5-7V3z'/%3E%3C/svg%3E"); }
.ico-eye { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M8 3C3 3 1 8 1 8s2 5 7 5 7-5 7-5-2-5-7-5zm0 8a3 3 0 110-6 3 3 0 010 6z'/%3E%3C/svg%3E"); }
.ico-bolt { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M9 1 3 9h5l-1 6 6-8H8z'/%3E%3C/svg%3E"); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 8px;
}
.why {
  display: grid; grid-template-columns: 38px minmax(0, 1fr); grid-template-rows: auto auto;
  column-gap: 14px; row-gap: 4px;
  padding: 20px 22px; border-radius: 14px;
  background: var(--card); box-shadow: var(--shadow-border);
  min-width: 0;
}
.why-link { color: inherit; }
.why-link:hover { box-shadow: var(--shadow-border-hover); }
.why-icon {
  grid-row: span 2; width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; align-self: start;
}
.why-icon .ico { width: 16px; height: 16px; }
.why h3 { grid-column: 2; font-size: 15px; margin: 0; line-height: 1.3; overflow-wrap: anywhere; }
.why p { grid-column: 2; margin: 0; font-size: 12.5px; color: var(--faint); line-height: 1.55; overflow-wrap: anywhere; }
@media (max-width: 1023px) {
  .why-grid, .how-grid { grid-template-columns: 1fr; }
}
@media (min-width: 720px) and (max-width: 1023px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.wi-1 { background: rgba(239, 68, 68, 0.1); color: #f87171; box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.2); }
.wi-2 { background: rgba(168, 85, 247, 0.1); color: #c084fc; box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.2); }
.wi-3 { background: rgba(16, 185, 129, 0.1); color: #34d399; box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.2); }
.wi-4 { background: rgba(34, 211, 238, 0.1); color: #67e8f9; box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.2); }
.wi-5 { background: rgba(245, 158, 11, 0.1); color: #fbbf24; box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.2); }
.wi-6 { background: rgba(99, 102, 241, 0.1); color: #a5b4fc; box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2); }
.dc-flag {
  width: 56px; height: 40px; border-radius: 7px; overflow: hidden; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.dc-flag .flag { width: 100%; height: 100%; border-radius: 0; box-shadow: none; }

/* Kind duo + datacenter cards */
.kind-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px;
}
.kind-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px; border-radius: 18px; background: var(--card);
  box-shadow: var(--shadow-border); color: inherit; text-decoration: none;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.kind-card:hover { transform: translateY(-2px); color: inherit; box-shadow: var(--shadow-border-hover); }
.kind-card-h { display: flex; align-items: center; gap: 12px; }
.kind-card-h b { display: block; font-size: 1.05rem; }
.kind-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 44px;
}
.kind-vps .kind-ico { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }
.kind-ded .kind-ico { background: color-mix(in srgb, var(--good) 16%, transparent); color: var(--good); }
.kind-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.45; }
.kind-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.kind-spec {
  display: grid; grid-template-columns: 16px 1fr; gap: 6px 8px; align-items: start;
  padding: 10px; border-radius: 12px;
  box-shadow: var(--shadow-border); background: rgba(255,255,255,0.02);
}
.kind-spec .ico { margin-top: 2px; color: var(--accent); }
.kind-ded .kind-spec .ico { color: var(--good); }
.kind-spec .dc-lab { grid-column: 2; font-size: 10px; }
.kind-spec b { grid-column: 2; font-size: 13px; font-weight: 600; color: var(--text); }
.kind-card-f {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto;
}
.kind-from { font-size: 14px; color: var(--muted); }
.kind-from b { color: var(--text); font-size: 1.15rem; font-weight: 700; }
.kind-vps .kind-cta { color: var(--accent); font-weight: 600; font-size: 14px; }
.kind-ded .kind-cta { color: var(--good); font-weight: 600; font-size: 14px; }

.section-dc {
  background:
    radial-gradient(700px 280px at 50% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
}
.hero-loc { padding-bottom: 12px; }
.hero-loc + .section-dc { padding-top: 8px; }
.section-dc .dc-grid { margin-top: 0; }
.loc-table-wrap { margin-top: 16px; }
body[data-path="locations/"] .section h2 {
  margin: 0 0 12px;
}
body[data-path="locations/"] .section .lead {
  margin: 0;
  max-width: 46em;
}
.dc-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 8px;
}
.dc-card {
  --acc: #22d3ee;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  padding: 22px 22px 18px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(19, 26, 43, 0.85), rgba(11, 15, 25, 0.94));
  box-shadow: inset 0 0 0 1px var(--line); color: inherit; text-decoration: none;
  min-height: 100%;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.dc-card[data-accent="is"] { --acc: #67e8f9; }
.dc-card[data-accent="nl"] { --acc: #fb923c; }
.dc-card[data-accent="ro"] { --acc: #fbbf24; }
.dc-card[data-accent="ch"] { --acc: #f87171; }
.dc-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 160px; height: 160px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 70% 30%, var(--acc), transparent 70%);
  filter: blur(40px); opacity: 0.12; transition: opacity 280ms var(--ease);
}
.dc-card:hover { transform: translateY(-3px); color: inherit; box-shadow: inset 0 0 0 1px var(--line-2), 0 26px 60px -25px rgba(0, 0, 0, 0.65); }
.dc-card:hover::after { opacity: 0.28; }
.dc-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; position: relative; z-index: 1; }
.dc-name, .dc-city, .dc-rows, .dc-foot { position: relative; z-index: 1; }
.dc-tier {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); padding: 4px 8px; border-radius: 999px;
  background: rgba(0,0,0,0.25); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 28%, transparent);
  white-space: nowrap;
}
.dc-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.dc-blurb {
  margin: 0;
  font-size: 13px; line-height: 1.45; color: var(--muted);
}
.dc-city {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); margin-top: -4px;
}
.dc-code {
  font-size: 11px; font-weight: 700; color: var(--accent);
  padding: 2px 8px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.dc-rows { display: grid; gap: 8px; margin-top: 4px; }
.dc-row {
  display: grid; grid-template-columns: 16px auto 1fr; gap: 8px; align-items: center;
}
.dc-row .ico { color: var(--accent); }
.dc-lab {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: color-mix(in srgb, var(--accent) 75%, var(--muted));
}
.dc-val { text-align: right; font-size: 12.5px; color: var(--text); font-weight: 500; line-height: 1.3; overflow-wrap: anywhere; }
.dc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 12px;
}
.dc-ok {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--good); font-weight: 600;
}
.dc-ok::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--good);
}
.dc-sla { color: var(--faint); font-weight: 500; }

@media (max-width: 1279px) {
  .dc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1023px) {
  .kind-duo { grid-template-columns: 1fr; }
  .dc-grid { grid-template-columns: 1fr 1fr; }
  .inv-parties { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .dc-grid { grid-template-columns: 1fr; }
  .kind-specs { grid-template-columns: 1fr; }
}

@media print {
  body { background: #fff !important; color: #111 !important; }
  .site-header, .site-footer, .hero-checkout, .pay-main,
  .no-print, .lang-wrap, .final-bar { display: none !important; }
  #main, .section-pay, .pay-board, .wrap {
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pay-board { grid-template-columns: 1fr !important; }
  .inv-doc.pay-side, .pay-side.inv-doc {
    position: static !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
    padding: 0 !important;
  }
  .inv-doc b, .inv-doc .mono, .inv-table td.num, .inv-totals b { color: #111 !important; }
  .inv-doc p, .inv-doc td, .inv-meta dt, .inv-meta dd { color: #333 !important; }
  .inv-badge {
    background: #eee !important; color: #111 !important;
    box-shadow: inset 0 0 0 1px #ccc;
  }
  .inv-table td, .inv-meta {
    box-shadow: 0 1px 0 #ddd !important;
  }
}

.src-fig {
  margin: 20px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-border);
}
.src-fig img {
  display: block; width: 100%; height: auto; min-height: 200px;
  aspect-ratio: 16 / 9; object-fit: cover; background: #070b12;
}
.src-fig figcaption {
  padding: 12px 16px 14px; font-size: 13px; color: var(--muted); line-height: 1.45;
}
.src-fig .credit { color: var(--faint); }
.src-fig .credit a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

.loc-strip { margin: 0 0 24px; }
.loc-facts { margin: 0 0 20px; }
.loc-facts .dc-blurb { margin: 0 0 12px; max-width: 52em; }
.article .loc-strip { margin-top: 4px; }
.loc-table-wrap td { white-space: normal; min-width: 9em; }
.loc-flagline {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 12px; color: var(--muted); line-height: 1.5;
}
.loc-flagline .flag { flex-shrink: 0; margin-top: 4px; }
.key-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.key-chip {
  font-size: 12px; color: var(--text);
  padding: 5px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--card));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.article-cta { margin-top: 36px; }

.pulse-kpis-sec {
  padding: 28px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pulse-charts-sec { padding: 48px 0 56px; }
.pulse-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.pulse-head h2 { margin: 0; font-size: 1.15rem; }
.pulse-kpis {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px;
}
.pulse-note { margin: 10px 0 0; font-size: 13px; max-width: 52em; }
.pulse-kpi {
  padding: 10px 10px 8px; border-radius: 12px; background: var(--card);
  box-shadow: var(--shadow-border);
  min-width: 0;
}
.pulse-kpi b {
  display: block; font-size: 1.05rem; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.pulse-kpi span {
  display: block; font-size: 11px; color: var(--faint); line-height: 1.25; margin-top: 2px;
}
.pulse-charts {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 12px;
}
.pulse-panel {
  padding: 14px 16px 10px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(19, 26, 43, 0.85), rgba(11, 15, 25, 0.92));
  box-shadow: inset 0 0 0 1px var(--line);
}
.pulse-panel p { margin: 0 0 10px; font-size: 13px; color: var(--muted); }
.pulse-bar {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 8px; align-items: center;
  margin: 8px 0;
}
.pulse-bar span { font-size: 12px; color: var(--faint); }
.pulse-bar i {
  display: block; height: 7px; border-radius: 99px; width: 0;
  background: linear-gradient(90deg, #155e75, #22d3ee);
  transition: width 1.4s var(--ease);
}
.pulse-bar b { font-size: 12px; font-variant-numeric: tabular-nums; color: var(--muted); }
.pulse-probe {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px;
}
.pulse-probe-out {
  font-variant-numeric: tabular-nums;
  min-width: 7.5em;
}
@media (max-width: 1100px) {
  .pulse-kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .pulse-charts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pulse-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

