:root {
  --ground: #0c0c12;
  --ground-2: #0a0a10;
  --panel: #14141c;
  --panel-2: #17171f;
  --surface: #1c1c28;
  --surface-hi: #262635;
  --line: #2a2a3a;
  --line-soft: #21212e;

  --text: #e9e9f1;
  --subtext: #8a8a9c;
  --faint: #5a5a6c;

  --accent: #7a2ebf;
  --accent-bright: #a855f7;
  --accent-deep: #571f8a;
  --accent-glow: rgba(122, 46, 191, .55);

  --good: #4ac074;
  --warn: #d4b04a;
  --bad: #e05563;
  --detected: #ff8c3a;

  --font-ui: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Cascadia Code", "Consolas", ui-monospace, SFMono-Regular, monospace;

  --r-lg: 16px;
  --r-md: 10px;
  --r-sm: 7px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 1280px) {
  header.top { padding: 0 18px; }
  .brand b { letter-spacing: 0.20em; }
  nav.top-nav { gap: 2px; }
  nav.top-nav a.nl { padding: 8px 10px; font-size: 13px; }
  nav.top-nav .divider { margin: 0 6px; }
  .ccy-chip { padding: 6px 8px 6px 10px; }
}

body {
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(122, 46, 191, 0.10), transparent 60%),
    radial-gradient(1000px 600px at 90% 5%, rgba(168, 85, 247, 0.06), transparent 55%),
    var(--ground);
  background-attachment: fixed;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.015em;
}

p { margin: 0; }

code, .mono {
  font-family: var(--font-mono);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}


header.top {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.82), rgba(20, 20, 28, 0.72));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: var(--font-ui);
}

.brand:hover { text-decoration: none; }

.brand .mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.brand .mark i {
  width: 13px;
  height: 13px;
  display: block;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 0 18px var(--accent-glow);
  transform: rotate(45deg);
  border-radius: 3px;
}

.brand b {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand b span { color: var(--accent-bright); }

nav.top-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.top-nav a.nl {
  padding: 8px 14px;
  color: var(--subtext);
  font-size: 13.5px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}

nav.top-nav a.nl:hover {
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}

nav.top-nav a.nl.active {
  color: var(--text);
  background: var(--surface);
}

nav.top-nav .divider {
  width: 1px;
  height: 22px;
  background: var(--line-soft);
  margin: 0 10px;
}


.ccy-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 7px 12px;
  margin-left: 4px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--subtext);
  font-size: 12.5px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ccy-chip:hover {
  background: var(--surface-hi);
  color: var(--text);
  border-color: var(--line);
}

.ccy-chip.open {
  border-color: rgba(168, 85, 247, 0.45);
  color: var(--text);
  background: var(--surface-hi);
}

.ccy-chip svg { flex: 0 0 auto; color: currentColor; }

.ccy-current {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ccy-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 150px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 22px 48px -18px rgba(0, 0, 0, 0.7), 0 0 30px -16px var(--accent-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 60;
}

.ccy-chip.open .ccy-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.ccy-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  color: var(--subtext);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 6px;
  text-align: left;
  transition: background 0.12s, color 0.12s;
}

.ccy-menu button:hover {
  background: var(--surface);
  color: var(--text);
}

.ccy-menu button.on {
  color: var(--accent-bright);
  background: rgba(122, 46, 191, 0.1);
}

.ccy-menu button.on svg { color: var(--accent-bright); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 40px;
  border-radius: var(--r-md);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: none;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 8px 24px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: filter 0.15s, transform 0.08s, box-shadow 0.15s;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn.ghost {
  background: var(--surface);
  color: var(--subtext);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn.ghost:hover {
  color: var(--text);
  filter: none;
  box-shadow: inset 0 0 0 1px var(--surface-hi);
}

.btn.small {
  height: 34px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 14px -6px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn.small.ghost {
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn.small.ghost:hover {
  box-shadow: inset 0 0 0 1px var(--surface-hi);
}

nav.top-nav .btn.small { align-self: center; }

#nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.big {
  height: 46px;
  padding: 0 26px;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
}

.btn.block { width: 100%; }


.hero {
  position: relative;
  padding: 96px 0 88px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -20% 40% -20%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(122, 46, 191, 0.18), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 22px;
  border-radius: 40px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtext);
}

.eyebrow .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
}

.hero h1 {
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 22px;
  text-wrap: balance;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent-bright), #e0ccff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--subtext);
  max-width: 560px;
  margin: 0 auto 36px;
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 40px;
  text-align: center;
}

.section-head .kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--subtext);
  font-size: 15.5px;
  max-width: 540px;
  margin: 0 auto;
  text-wrap: balance;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: block;
  padding: 22px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

.product-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(122, 46, 191, 0.5);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.6), 0 0 40px -18px var(--accent-glow);
}

.product-card .pc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pc-badge {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.6), inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.pc-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.2), transparent 45%);
}

.pc-title { min-width: 0; flex: 1; }

.pc-name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-cat {
  margin-top: 3px;
  font-size: 11px;
  color: var(--faint);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card .pc-body {
  font-size: 13px;
  color: var(--subtext);
  line-height: 1.55;
  min-height: 42px;
  margin-bottom: 18px;
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.pc-from {
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pc-from b {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 2px;
  text-transform: none;
  font-weight: 600;
}

.pc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--faint);
  transition: color 0.16s, background 0.16s, transform 0.16s;
}

.product-card:hover .pc-arrow {
  color: #fff;
  background: var(--accent);
  transform: translateX(2px);
}

.pc-arrow svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 40px;
  background: rgba(8, 8, 13, 0.55);
  border: 1px solid var(--line-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.status-pill.st-good { color: var(--good); }
.status-pill.st-good .dot { background: var(--good); box-shadow: 0 0 8px var(--good); }

.status-pill.st-warn { color: var(--warn); }
.status-pill.st-warn .dot { background: var(--warn); box-shadow: 0 0 8px var(--warn); }

.status-pill.st-bad  { color: var(--bad); }
.status-pill.st-bad  .dot { background: var(--bad); box-shadow: 0 0 8px var(--bad); }

.status-pill.st-detected { color: var(--detected); }
.status-pill.st-detected .dot { background: var(--detected); box-shadow: 0 0 8px var(--detected); }

.status-pill.st-discontinued { color: var(--faint); }
.status-pill.st-discontinued .dot { background: var(--faint); box-shadow: 0 0 8px var(--faint); }

.product-card .pc-status {
  position: absolute;
  top: 14px;
  right: 14px;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}

.feature .fi {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(87, 31, 138, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: var(--accent-bright);
  margin-bottom: 16px;
}

.feature .fi svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.55;
}


.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.filter-bar button {
  padding: 7px 14px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--subtext);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.filter-bar button:hover {
  background: var(--surface);
  color: var(--text);
}

.filter-bar button.active {
  background: var(--surface-hi);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.35);
}


.pd-shell {
  padding: 44px 0 88px;
}

.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--subtext);
  font-size: 13px;
  margin-bottom: 22px;
}

.pd-back-link:hover { color: var(--text); text-decoration: none; }

.pd-back-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

.pd-main .pd-hero-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.pd-main .pd-badge {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.pd-main .pd-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.22), transparent 45%);
}

.pd-hero-txt { min-width: 0; }

.pd-hero-txt h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.pd-hero-txt .cat {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pd-meta {
  display: flex;
  gap: 22px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  margin-bottom: 26px;
}

.pd-meta .m {
  flex: 1;
  min-width: 0;
}

.pd-meta .m .k {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 5px;
}

.pd-meta .m .v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
}

.pd-sect {
  margin-bottom: 26px;
}

.pd-sect .h {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.pd-desc {
  font-size: 15px;
  color: var(--subtext);
  line-height: 1.7;
}

.pd-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text);
}

.pd-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-glow);
  flex: 0 0 auto;
}

.pd-log {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-log li {
  padding-left: 16px;
  position: relative;
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.55;
}

.pd-log li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}


.pd-buy {
  position: sticky;
  top: 90px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7), 0 0 40px -22px var(--accent-glow);
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 20px;
}

.tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.tier-row:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: var(--surface-hi);
}

.tier-row.selected {
  border-color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(122, 46, 191, 0.14), var(--surface));
  box-shadow: 0 0 0 3px rgba(122, 46, 191, 0.14);
}

.tier-row .tl {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tier-row .t-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.tier-row .t-sub {
  font-size: 11.5px;
  color: var(--faint);
  font-family: var(--font-mono);
}

.tier-row .t-price {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.tier-row .t-price small {
  display: block;
  font-size: 10.5px;
  color: var(--faint);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
  margin-top: 2px;
}

.pd-buy .trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--faint);
}

.pd-buy .trust b {
  color: var(--subtext);
  font-weight: 500;
}


.auth-shell {
  min-height: calc(100vh - 66px);
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  padding: 34px 32px 30px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8), 0 0 60px -26px var(--accent-glow);
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
}

.auth-card .sub {
  margin: 6px 0 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--subtext);
}

.field {
  position: relative;
  margin-bottom: 10px;
}

.field label {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 13px;
  color: var(--faint);
  pointer-events: none;
  transition: 0.16s;
}

.field input {
  width: 100%;
  height: 44px;
  padding: 16px 14px 6px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.16s, background 0.16s, box-shadow 0.16s;
}

.field input:focus {
  background: var(--surface-hi);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 46, 191, 0.16);
}

.field input::placeholder { color: transparent; }

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  text-transform: uppercase;
}

.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  min-height: 18px;
}

.form-status.error { color: var(--bad); }
.form-status.ok    { color: var(--good); }

.auth-card .swap {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: 12.5px;
  color: var(--subtext);
}


.dash {
  padding: 44px 0 80px;
}

.dash-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
}

.dash-head h1 {
  font-size: 26px;
  font-weight: 700;
}

.dash-head .sub {
  color: var(--faint);
  font-size: 13px;
}

.lic-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lic-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: background 0.12s, border-color 0.12s;
}

.lic-row:hover {
  background: var(--surface);
  border-color: var(--line);
}

.lic-row .pc-badge { width: 42px; height: 42px; font-size: 17px; border-radius: 10px; }

.lic-body { flex: 1; min-width: 0; }

.lic-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.lic-sub {
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--faint);
  font-family: var(--font-mono);
}

.lic-key {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  padding: 6px 10px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: var(--surface);
  letter-spacing: 0.05em;
}

.alert {
  padding: 16px 18px 14px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.alert.alert-bad {
  border-color: rgba(224, 85, 99, 0.35);
  background: linear-gradient(135deg, rgba(224, 85, 99, 0.10), rgba(20, 20, 28, 0.4));
}

.alert.alert-warn {
  border-color: rgba(212, 176, 74, 0.35);
  background: linear-gradient(135deg, rgba(212, 176, 74, 0.10), rgba(20, 20, 28, 0.4));
}

.alert .alert-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.alert.alert-bad .alert-head  { color: var(--bad); }

.alert.alert-warn .alert-head { color: var(--warn); }

.alert .alert-head svg { flex: 0 0 auto; }

.alert .alert-body {
  color: var(--subtext);
  font-size: 13px;
  line-height: 1.55;
}

.alert .alert-body b { color: var(--text); }

.lic-row-expired { opacity: 0.7; }

.lic-row-expired .lic-key {
  border-style: dotted;
  border-color: rgba(224, 85, 99, 0.4);
}

.lic-tag-expired {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 4px;
  background: rgba(224, 85, 99, 0.15);
  color: var(--bad);
  border: 1px solid rgba(224, 85, 99, 0.35);
  vertical-align: middle;
  font-weight: 600;
}

.lic-expired { color: var(--bad); font-weight: 500; }


.account-key-block {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(122, 46, 191, 0.14), rgba(20, 20, 28, 0.4));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--r-md);
  margin-bottom: 14px;
}

.account-key-block .ak-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-key-block .ak-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 4px;
}

.account-key-block .ak-hint {
  font-size: 12.5px;
  color: var(--subtext);
  line-height: 1.5;
  max-width: 460px;
}

.account-key-block .ak-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-key-block .ak-value {
  padding: 8px 12px;
  border-radius: 7px;
  background: var(--surface);
  border: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.06em;
}

.empty {
  padding: 42px 24px;
  text-align: center;
  color: var(--faint);
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}

.empty h3 {
  color: var(--subtext);
  font-size: 15px;
  margin-bottom: 6px;
}

.empty p { font-size: 13.5px; }


.success-shell {
  min-height: calc(100vh - 66px);
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

.success-card {
  width: 100%;
  max-width: 480px;
  padding: 40px 34px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8), 0 0 60px -26px var(--accent-glow);
  text-align: center;
}

.success-card.wide {
  max-width: 960px;
  padding: 36px 40px 34px;
  text-align: left;
}

.success-card.wide.compact {
  max-width: 720px;
  padding: 24px 26px 22px;
}

.success-card.wide.compact .success-top {
  padding-bottom: 16px;
  margin-bottom: 18px;
  gap: 14px;
}

.success-card.wide.compact .success-top .check {
  width: 44px;
  height: 44px;
}

.success-card.wide.compact .success-top h1 { font-size: 19px; }

.success-card.wide.compact .success-top .sub { font-size: 12.5px; }

.success-card.wide.compact .success-grid { gap: 22px; }

.success-card.wide.compact .col-kicker {
  font-size: 10px;
  margin-bottom: 10px;
}

.success-card.wide.compact .keybox {
  padding: 10px 12px;
  font-size: 13px;
}

.success-card.wide.compact .copy-btn {
  padding: 0 12px;
  font-size: 11px;
}

.success-card.wide.compact .col-hint {
  font-size: 11px;
  margin-top: 2px;
}

.success-card.wide.compact .key-block + .key-block { margin-top: 14px; }

.success-card.wide.compact .key-label {
  font-size: 10px;
}

.success-card.wide.compact .key-tag {
  font-size: 9.5px;
  padding: 1px 6px;
}

.success-card.wide.compact .dl-block {
  padding: 14px 14px 14px;
  margin-top: 16px;
}

.success-card.wide.compact .dl-block .dl-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.success-card.wide.compact .dl-block .dl-icon svg {
  width: 15px;
  height: 15px;
}

.success-card.wide.compact .dl-block .dl-title { font-size: 13px; }

.success-card.wide.compact .dl-block .dl-sub { font-size: 11px; }

.success-card.wide.compact .dl-block .btn {
  margin-top: 10px;
  height: 36px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
}

.success-card.wide.compact .steps { gap: 6px; }

.success-card.wide.compact .steps li {
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.45;
  gap: 10px;
}

.success-card.wide.compact .steps li .n {
  width: 18px;
  height: 18px;
  font-size: 9.5px;
}

.success-card.wide.compact .btn.ghost.block {
  height: 34px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 760px) {
  .success-card.wide.compact .success-grid { grid-template-columns: 1fr; gap: 20px; }
}

.success-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}

.success-top .check {
  margin: 0;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}

.success-top h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.success-top .sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--subtext);
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.success-col {
  min-width: 0;
}

.col-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.col-hint {
  color: var(--faint);
  font-size: 12px;
  margin-top: 4px;
}

.success-card.wide .steps { margin-top: 0; }

.success-card.wide .dl-block { margin: 0; }

.key-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.key-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.key-label > span:first-child { color: var(--subtext); }

.key-tag {
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--accent-bright);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  text-transform: none;
}

.key-tag:empty { display: none; }

@media (max-width: 760px) {
  .success-card.wide { padding: 28px 24px; }
  .success-grid { grid-template-columns: 1fr; gap: 26px; }
  .success-top { flex-direction: column; text-align: center; gap: 12px; }
}

.check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 192, 116, 0.2), rgba(74, 192, 116, 0.08));
  border: 1px solid rgba(74, 192, 116, 0.35);
  color: var(--good);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.check svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-card h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-card .sub {
  color: var(--subtext);
  font-size: 13.5px;
  margin-bottom: 22px;
}

.keybox {
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.06em;
  overflow-x: auto;
  color: var(--text);
}


.pulse-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--subtext);
  font-size: 13px;
}

.pulse-dots::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }


.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq details {
  padding: 16px 20px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color 0.15s;
}

.faq details[open] {
  border-color: rgba(168, 85, 247, 0.3);
}

.faq summary {
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 20px;
  color: var(--faint);
  transition: transform 0.2s;
  line-height: 1;
}

.faq details[open] summary::after { content: '−'; }

.faq p {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.6;
}


footer.foot {
  border-top: 1px solid var(--line-soft);
  padding: 48px 28px 24px;
  margin-top: 80px;
  color: var(--faint);
  font-size: 12.5px;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 28, 0.4));
}

footer.foot .foot-row {
  max-width: 1180px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

footer.foot .foot-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtext);
  margin: 0 0 14px;
}

footer.foot .foot-col a:not(.btn) {
  display: block;
  color: var(--faint);
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.15s;
}

footer.foot .foot-col a:not(.btn):hover { color: var(--text); text-decoration: none; }

footer.foot .foot-col a.btn { align-self: flex-start; }

footer.foot .foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

footer.foot .foot-brand .mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

footer.foot .foot-brand .mark i {
  width: 13px;
  height: 13px;
  display: block;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 0 18px var(--accent-glow);
  transform: rotate(45deg);
  border-radius: 3px;
}

footer.foot .foot-brand b {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text);
}

footer.foot .foot-brand b span { color: var(--accent-bright); }

footer.foot .foot-tag {
  color: var(--subtext);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}

footer.foot .foot-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-mini { color: var(--faint); font-size: 12px; }

@media (max-width: 720px) {
  footer.foot .foot-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(20, 20, 28, 0.3);
}

.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.trust-item {
  text-align: center;
}

.trust-item .n {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item .n .grad {
  background: linear-gradient(135deg, var(--accent-bright), #d4c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-item .l {
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 720px) {
  .trust-strip .row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}


.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.how-step {
  position: relative;
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.16s, transform 0.16s;
}

.how-step:hover {
  border-color: rgba(122, 46, 191, 0.4);
  transform: translateY(-2px);
}

.how-step .how-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-bright), rgba(122, 46, 191, 0.3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.how-step p {
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.55;
}


.honest-card {
  padding: 30px 32px 28px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-align: center;
}

.honest-card p {
  font-size: 15px;
  color: var(--subtext);
  line-height: 1.7;
  margin: 0 auto 14px;
  max-width: 620px;
  text-wrap: balance;
}

.honest-card p:last-of-type { margin-bottom: 20px; }


.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.testimonial {
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  position: relative;
  transition: border-color 0.16s;
}

.testimonial:hover {
  border-color: rgba(122, 46, 191, 0.4);
}

.testimonial .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--warn);
}

.testimonial .stars svg { width: 14px; height: 14px; fill: currentColor; }

.testimonial p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.testimonial .who .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
}

.testimonial .who .name {
  font-size: 13px;
  font-weight: 600;
}

.testimonial .who .cat {
  font-size: 11px;
  color: var(--faint);
  font-family: var(--font-mono);
}


.discord-cta {
  padding: 44px 28px;
  background: linear-gradient(120deg, rgba(88, 101, 242, 0.14), rgba(122, 46, 191, 0.10));
  border: 1px solid rgba(122, 46, 191, 0.3);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.discord-cta::before {
  content: '';
  position: absolute;
  inset: -50% -20% -50% 30%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(88, 101, 242, 0.16), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}

.discord-cta > * { position: relative; z-index: 1; }

.discord-cta .dc-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #5865F2, #3c46b0);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 12px 30px -12px rgba(88, 101, 242, 0.6);
  color: #fff;
}

.discord-cta .dc-icon svg { width: 34px; height: 34px; fill: currentColor; }

.discord-cta .dc-txt { flex: 1; min-width: 0; }

.discord-cta h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.discord-cta p {
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .discord-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }
}


.live-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 40px;
  font-size: 12px;
  color: var(--subtext);
}

.live-strip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
  animation: livepulse 2s ease-in-out infinite;
}

@keyframes livepulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.6; }
}

.live-strip b {
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 600;
}


.updates-strip {
  display: flex;
  gap: 12px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  white-space: nowrap;
  align-items: center;
}

.updates-strip .lbl {
  font-size: 10.5px;
  color: var(--accent-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 14px;
  border-right: 1px solid var(--line-soft);
  flex: 0 0 auto;
}

.updates-strip .track {
  display: flex;
  gap: 32px;
  animation: ticker 40s linear infinite;
  flex: 1 1 auto;
}

.updates-strip .item {
  font-size: 12.5px;
  color: var(--subtext);
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.updates-strip .item .d {
  color: var(--faint);
  font-size: 11px;
}

.updates-strip .item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.dl-block {
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, rgba(122, 46, 191, 0.14), rgba(20, 20, 28, 0.4));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--r-md);
  margin: 22px 0 18px;
  text-align: left;
}

.dl-block .dl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.dl-block .dl-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.dl-block .dl-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.dl-block .dl-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.dl-block .dl-sub {
  font-size: 12px;
  color: var(--faint);
}

.dl-block .btn { margin-top: 14px; }


.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.steps li {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.steps li .n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex: 0 0 auto;
  box-shadow: 0 0 10px var(--accent-glow);
}


.copy-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 4px 0 8px;
}

.copy-row .keybox { flex: 1; margin: 0; text-align: left; }

.copy-btn {
  padding: 0 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.copy-btn:hover {
  background: var(--surface-hi);
  border-color: rgba(168, 85, 247, 0.4);
}

.copy-btn.copied {
  background: rgba(74, 192, 116, 0.15);
  border-color: rgba(74, 192, 116, 0.4);
  color: var(--good);
}


.floaters {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbfloat 22s ease-in-out infinite;
}

.float-orb.a {
  width: 380px;
  height: 380px;
  left: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(122, 46, 191, 0.5), transparent 60%);
}

.float-orb.b {
  width: 320px;
  height: 320px;
  right: -60px;
  top: 20px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35), transparent 60%);
  animation-delay: -8s;
  animation-duration: 26s;
}

.float-orb.c {
  width: 280px;
  height: 280px;
  left: 40%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 60%);
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes orbfloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.08); }
  66%      { transform: translate(-20px, 30px) scale(0.95); }
}


@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; }
  .pd-buy { position: static; }
}

@media (max-width: 720px) {
  .hero { padding: 60px 0 56px; }
  .hero h1 { font-size: 42px; }
  .hero .lede { font-size: 15px; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 28px; }
  nav.top-nav a.nl { display: none; }
  nav.top-nav .divider { display: none; }
  header.top { padding: 0 18px; }
  .wrap, .wrap-sm { padding: 0 18px; }
  .pd-main .pd-badge { width: 60px; height: 60px; font-size: 24px; }
  .pd-hero-txt h1 { font-size: 24px; }
  .pd-meta { flex-direction: column; gap: 12px; }
}


.feed-shell {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.feed-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 20% 0%, rgba(122, 46, 191, 0.10), transparent 70%);
  pointer-events: none;
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 1;
}

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 85, 99, 0.10);
  color: var(--bad);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-mono);
}

.feed-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bad);
  box-shadow: 0 0 6px var(--bad);
  animation: feed-pulse 1.4s ease-in-out infinite;
}

@keyframes feed-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.35); }
}

.feed-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feed-sub {
  font-size: 12px;
  color: var(--faint);
  margin-left: auto;
  font-family: var(--font-mono);
}

.feed-track-wrap {
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.feed-track {
  display: flex;
  gap: 12px;
  padding: 0 22px;
  animation: ticker 60s linear infinite;
  width: max-content;
}

.feed-shell:hover .feed-track { animation-play-state: paused; }

.feed-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--subtext);
  white-space: nowrap;
  flex: 0 0 auto;
}

.feed-chip .fc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 6px var(--good);
  flex: 0 0 auto;
}

.feed-chip .fc-user {
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 12px;
}

.feed-chip .fc-mid { color: var(--faint); }

.feed-chip .fc-prod {
  color: var(--accent-bright);
  font-weight: 600;
}

.feed-chip .fc-tier {
  color: var(--subtext);
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(122, 46, 191, 0.10);
  border: 1px solid rgba(122, 46, 191, 0.20);
  font-size: 11px;
  font-family: var(--font-mono);
}

.feed-chip .fc-ago {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}

.feed-empty {
  padding: 22px 22px;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
}

.feed-empty a { color: var(--accent-bright); font-weight: 600; }

@media (max-width: 700px) {
  .feed-sub { display: none; }
  .feed-chip .fc-mid { display: none; }
  .feed-chip { gap: 8px; padding: 7px 12px; font-size: 12px; }
}


:root {
  --shadow-lift: 0 20px 60px -20px rgba(122, 46, 191, 0.35), 0 8px 24px -8px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.02) inset, 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.2, 0.7, 0.15, 1);
}

body {
  background:
    radial-gradient(1400px 800px at 12% -15%, rgba(122, 46, 191, 0.16), transparent 60%),
    radial-gradient(1200px 700px at 92% 8%, rgba(168, 85, 247, 0.10), transparent 55%),
    radial-gradient(900px 600px at 50% 100%, rgba(87, 31, 138, 0.10), transparent 55%),
    var(--ground);
  background-attachment: fixed;
}

.hero {
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 20px auto 24px;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 640px) {
  .hero h1 { white-space: normal; font-size: clamp(34px, 8vw, 44px); width: auto; }
}

.hero h1 .grad {
  background: linear-gradient(120deg, #c084fc 0%, #a855f7 45%, #7a2ebf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lede {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--subtext);
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.big {
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .2s;
}

.btn.big:not(.ghost) {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 10px 30px -8px var(--accent-glow), 0 2px 0 rgba(255,255,255,0.10) inset;
  border: none;
  color: #fff;
}

.btn.big:not(.ghost):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px var(--accent-glow), 0 2px 0 rgba(255,255,255,0.15) inset;
}

.btn.big.ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn.big.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.live-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(74, 192, 116, 0.08);
  border: 1px solid rgba(74, 192, 116, 0.22);
  border-radius: 999px;
  font-size: 12px;
  color: var(--good);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.live-strip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
  animation: feed-pulse 1.6s ease-in-out infinite;
}

.trust-strip { padding: 24px 0 56px; }

.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px 0;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.trust-strip .row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 50% -50%, rgba(122,46,191,.14), transparent 70%);
  pointer-events: none;
}

.trust-item {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding: 8px 12px;
  position: relative;
  z-index: 1;
}

.trust-item:last-child { border-right: none; }

.trust-item .n {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.trust-item .l {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .kicker {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.16);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--subtext);
  font-size: 15.5px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.product-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-card);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.45), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.product-card::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168,85,247,.20), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.32);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}

.product-card:hover::before { opacity: 1; }
.product-card:hover::after  { opacity: 1; }

.pc-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  flex: 0 0 auto;
}

.pc-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 2px;
}

.pc-cat {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-card .pc-body {
  color: var(--subtext);
  font-size: 13.5px;
  line-height: 1.55;
  min-height: 42px;
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.pc-from {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pc-from b {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  font-family: var(--font-mono);
  text-transform: none;
}

.product-card .pc-status {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10.5px;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  z-index: 2;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.22);
}

.feature .fi {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(168,85,247,.14), rgba(87,31,138,.10));
  border: 1px solid rgba(168, 85, 247, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-bright);
}

.feature .fi svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.55;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.how-step {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 28px 24px 26px;
  position: relative;
  overflow: hidden;
}

.how-step .how-num {
  font-size: 42px;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(168,85,247,.6), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 13.5px;
  color: var(--subtext);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .how-grid { grid-template-columns: 1fr; }
}

.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}

.faq details:hover { border-color: rgba(168, 85, 247, 0.22); }

.faq details[open] {
  border-color: rgba(168, 85, 247, 0.32);
  background: linear-gradient(180deg, rgba(122,46,191,0.05), var(--panel-2));
}

.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--subtext);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  flex: 0 0 auto;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}

.faq details[open] summary::after {
  content: "\2212";
  color: var(--accent-bright);
  background: rgba(168,85,247,.14);
  border-color: rgba(168, 85, 247, 0.32);
  transform: rotate(180deg);
}

.faq details p {
  padding: 0 22px 20px;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.discord-cta {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.14), rgba(88, 101, 242, 0.04));
  border: 1px solid rgba(88, 101, 242, 0.28);
  border-radius: 20px;
  padding: 32px 32px;
  gap: 24px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.discord-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 90% 0%, rgba(88, 101, 242, 0.18), transparent 70%);
  pointer-events: none;
}

.discord-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 101, 242, 0.48);
  text-decoration: none;
}

.discord-cta .dc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #5865f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 12px 30px -10px rgba(88,101,242,.5);
}

.discord-cta h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.discord-cta p {
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.pd-grid { gap: 32px; }

.pd-main {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.pd-hero-txt h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.pd-main .pd-badge {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}

.pd-buy {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 20px;
  align-self: start;
}

.tier-row {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier-row:hover { border-color: rgba(168, 85, 247, 0.28); }

.tier-row.selected {
  border-color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(168,85,247,.08), rgba(122,46,191,.04));
  box-shadow: 0 0 0 3px rgba(168,85,247,.10);
}

@media (max-width: 900px) {
  .trust-strip .row { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); padding-bottom: 20px; margin-bottom: 4px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 70px; }
  .trust-strip .row { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 14px; }
  .trust-item:last-child { border-bottom: none; }
  .discord-cta { flex-direction: column; text-align: center; padding: 26px 22px; }
  .pd-main { padding: 22px; }
  .pd-buy { position: static; }
}


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

.trust-strip .row.two .trust-item:nth-child(2) { border-right: none; }

@media (max-width: 640px) {
  .trust-strip .row.two { grid-template-columns: 1fr; }
}


body.landing {
  overflow: hidden;
  height: 100vh;
}

.landing-shell {
  height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow: hidden;
}

.landing-hero {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.landing-hero .wrap { width: 100%; max-width: 1180px; padding: 0 28px; }

.landing-hero .live-strip { margin-bottom: 18px; }

.landing-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 18px;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
}

.landing-hero .lede {
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--subtext);
  line-height: 1.55;
}

.landing-hero .hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.landing-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 22px 0;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.landing-stats::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 50% -50%, rgba(122,46,191,.14), transparent 70%);
  pointer-events: none;
}

.landing-stats .trust-item {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding: 8px 12px;
  position: relative; z-index: 1;
}

.landing-stats .trust-item:last-child { border-right: none; }

.landing-stats .trust-item .n {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.landing-stats .trust-item .l {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}

@media (max-height: 700px) {
  .landing-hero { gap: 20px; }
  .landing-hero h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 12px; }
  .landing-hero .lede { font-size: 15px; margin-bottom: 18px; }
  .landing-stats { padding: 16px 0; }
  .landing-stats .trust-item .n { font-size: 28px; }
}

@media (max-width: 640px) {
  body.landing { overflow: auto; height: auto; }
  .landing-shell { height: auto; padding: 32px 0; }
  .landing-hero h1 { white-space: normal; }
  .landing-stats { grid-template-columns: 1fr; }
  .landing-stats .trust-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 14px; }
  .landing-stats .trust-item:last-child { border-bottom: none; }
}


.pd-shell { padding: 24px 28px 60px; }

.pd-back-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--faint); font-size: 12.5px;
  margin-bottom: 16px; text-decoration: none;
}
.pd-back-link:hover { color: var(--text); text-decoration: none; }
.pd-back-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.pd-main {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 24px 26px;
}

.pd-hero-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }

.pd-hero-txt .cat {
  font-size: 11.5px; color: var(--faint);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
}

.pd-tagline {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 62ch;
}

.pd-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.pd-chip {
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--subtext);
  white-space: nowrap;
}

.pd-buy {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  position: sticky;
  top: 82px;
}

.pd-buy .tier-list { margin: 0 0 14px; }

.pd-buy-foot {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--faint);
  text-align: center;
}

@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; }
  .pd-buy { position: static; }
}


.pd-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}

.pd-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--subtext);
}

.pd-pill .pk {
  color: var(--faint);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.pd-pill .pv {
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
}

.pd-pill .pv.status-pill { padding: 0; background: none; border: none; }

.pd-tagline {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 64ch;
}

.pd-sect2 { margin-top: 6px; }

.pd-h {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 700;
  margin-bottom: 12px;
}

.pd-feats2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}

.pd-feats2 li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--subtext);
}

.pd-feats2 li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
  border-radius: 2px;
}

.pd-buy-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .pd-feats2 { grid-template-columns: 1fr; }
}
