:root {
  --bg: #080a0c;
  --bg-soft: #0d1114;
  --panel: #11171b;
  --panel-strong: #151d22;
  --panel-rgb: 17, 23, 27;
  --header-rgb: 8, 10, 12;
  --line: rgba(226, 241, 248, 0.14);
  --line-strong: rgba(83, 232, 255, 0.42);
  --text: #f4fbff;
  --muted: #a7b6bd;
  --dim: #697a82;
  --accent: #42e8ff;
  --accent-rgb: 66, 232, 255;
  --accent-end: #c9fbff;
  --cyan: var(--accent);
  --cyan-deep: #088da4;
  --green: #36ff99;
  --amber: #ffd166;
  --red: #ff4b5f;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --page-bg:
    radial-gradient(circle at 78% 8%, rgba(var(--accent-rgb), 0.16), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 42%, var(--bg) 100%);
}

body[data-theme="crimson"] {
  --bg: #09080a;
  --bg-soft: #141012;
  --panel: #171215;
  --panel-strong: #21171b;
  --panel-rgb: 23, 18, 21;
  --header-rgb: 9, 8, 10;
  --line: rgba(255, 235, 238, 0.14);
  --line-strong: rgba(255, 76, 102, 0.46);
  --text: #fff6f7;
  --muted: #c5b4b9;
  --dim: #817077;
  --accent: #ff4c66;
  --accent-rgb: 255, 76, 102;
  --accent-end: #ffd7de;
  --cyan-deep: #a20e28;
  --green: #57f0a2;
  --amber: #ffe082;
  --red: #ff4c66;
}

body[data-theme="matrix"] {
  --bg: #060906;
  --bg-soft: #0b120d;
  --panel: #0f1711;
  --panel-strong: #142019;
  --panel-rgb: 15, 23, 17;
  --header-rgb: 6, 9, 6;
  --line: rgba(220, 255, 232, 0.14);
  --line-strong: rgba(55, 255, 139, 0.44);
  --text: #f2fff7;
  --muted: #a6bcae;
  --dim: #66796b;
  --accent: #37ff8b;
  --accent-rgb: 55, 255, 139;
  --accent-end: #d7ffe8;
  --cyan-deep: #0a9b4a;
  --green: #37ff8b;
  --amber: #ffe66d;
  --red: #ff5f6d;
}

body[data-theme="lab"] {
  --bg: #eef3f4;
  --bg-soft: #dfe8ea;
  --panel: #ffffff;
  --panel-strong: #f5f9fa;
  --panel-rgb: 255, 255, 255;
  --header-rgb: 245, 249, 250;
  --line: rgba(22, 39, 45, 0.16);
  --line-strong: rgba(0, 139, 168, 0.48);
  --text: #071115;
  --muted: #44565d;
  --dim: #6e8087;
  --accent: #008ba8;
  --accent-rgb: 0, 139, 168;
  --accent-end: #b7f3ff;
  --cyan-deep: #00677d;
  --green: #008f5a;
  --amber: #9d6c00;
  --red: #c92b43;
  --shadow: 0 24px 90px rgba(15, 37, 44, 0.2);
}

body[data-theme="discord"] {
  --bg: #1e1f22;
  --bg-soft: #2b2d31;
  --panel: #313338;
  --panel-strong: #383a40;
  --panel-rgb: 49, 51, 56;
  --header-rgb: 30, 31, 34;
  --line: rgba(242, 243, 245, 0.12);
  --line-strong: rgba(88, 101, 242, 0.5);
  --text: #f2f3f5;
  --muted: #b5bac1;
  --dim: #949ba4;
  --accent: #5865f2;
  --accent-rgb: 88, 101, 242;
  --accent-end: #98a2ff;
  --cyan-deep: #4752c4;
  --green: #23a559;
  --amber: #f0b232;
  --red: #f23f42;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
  --page-bg:
    radial-gradient(circle at 82% 10%, rgba(88, 101, 242, 0.28), transparent 30rem),
    radial-gradient(circle at 20% 70%, rgba(35, 165, 89, 0.13), transparent 24rem),
    linear-gradient(180deg, #1e1f22 0%, #2b2d31 48%, #1e1f22 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

img {
  display: block;
  max-width: 100%;
}

.mobile-soft-break {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(var(--header-rgb), 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(var(--header-rgb), 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(54, 255, 153, 0.08)),
    var(--panel);
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.22);
}

.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.header-buy {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.52);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.theme-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 8px;
  width: min(220px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(var(--panel-rgb), 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.theme-dock[hidden] {
  display: none !important;
}

.theme-option {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.theme-option:hover,
.theme-option.is-active {
  border-color: var(--line-strong);
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--text);
}

.theme-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  flex: 0 0 auto;
}

.theme-swatch.cyber {
  background: linear-gradient(135deg, #42e8ff, #11171b);
}

.theme-swatch.crimson {
  background: linear-gradient(135deg, #ff4c66, #171215);
}

.theme-swatch.matrix {
  background: linear-gradient(135deg, #37ff8b, #0f1711);
}

.theme-swatch.lab {
  background: linear-gradient(135deg, #ffffff, #008ba8);
}

.theme-swatch.discord {
  background: linear-gradient(135deg, #5865f2, #313338);
}

body[data-theme="discord"] .site-header,
body[data-theme="discord"] .theme-dock {
  border-radius: 0 0 18px 18px;
}

body[data-theme="discord"] .brand-mark,
body[data-theme="discord"] .header-buy,
body[data-theme="discord"] .button,
body[data-theme="discord"] .hero-visual img,
body[data-theme="discord"] .mobile-product-shot img,
body[data-theme="discord"] .telemetry-panel,
body[data-theme="discord"] .trust-strip,
body[data-theme="discord"] .solution-grid article,
body[data-theme="discord"] .feature-card,
body[data-theme="discord"] .purchase-card,
body[data-theme="discord"] .quote-block,
body[data-theme="discord"] .spec-table,
body[data-theme="discord"] .signal-panel,
body[data-theme="discord"] .faq-item,
body[data-theme="discord"] .theme-option,
body[data-theme="discord"] .mobile-buy {
  border-radius: 16px;
}

body[data-theme="discord"] .hero-visual::before {
  border-radius: 24px;
  transform: rotate(-1.5deg);
}

body[data-theme="discord"] h1,
body[data-theme="discord"] h2 {
  font-weight: 950;
}

body[data-theme="discord"] .button-primary,
body[data-theme="discord"] .mobile-buy {
  color: #ffffff;
}

body[data-theme="discord"] .button-secondary,
body[data-theme="discord"] .feature-card,
body[data-theme="discord"] .purchase-card,
body[data-theme="discord"] .faq-item {
  background: rgba(49, 51, 56, 0.92);
}

body[data-theme="discord"] .trust-strip {
  gap: 10px;
  border: 0;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  min-height: calc(100svh - 72px);
  padding: clamp(32px, 5vw, 76px) clamp(18px, 5vw, 72px) 48px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.55vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 0;
}

.hero-points div {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hero-points div:last-child {
  border-bottom: 1px solid var(--line);
}

.hero-points strong {
  color: var(--text);
  font-size: 0.94rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  background: linear-gradient(135deg, var(--cyan), var(--accent-end));
  color: #061014;
  box-shadow: 0 14px 38px rgba(var(--accent-rgb), 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(244, 251, 255, 0.04);
  color: var(--text);
}

.price-line {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 950;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.mobile-product-shot {
  display: none;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 6% 2%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.12), transparent 45%),
    rgba(var(--panel-rgb), 0.58);
  transform: skewY(-3deg);
}

.hero-visual img {
  width: min(760px, 100%);
  margin-left: auto;
  border: 1px solid rgba(226, 241, 248, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.telemetry-panel {
  position: absolute;
  right: min(6%, 42px);
  bottom: 7%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 6px;
  background: rgba(var(--header-rgb), 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.telemetry-panel strong {
  grid-column: 2;
  color: var(--green);
  font-size: 1.4rem;
}

.telemetry-panel span:not(.status-dot) {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.status-dot.cyan {
  color: var(--cyan);
}

.status-dot.green {
  color: var(--green);
}

.status-dot.amber {
  color: var(--amber);
}

.status-dot.red {
  color: var(--red);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.trust-strip div {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 18px;
  background: rgba(var(--panel-rgb), 0.86);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: clamp(74px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.solution-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

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

.solution-grid article,
.feature-card,
.purchase-card,
.quote-block,
.spec-table,
.signal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(var(--panel-rgb), 0.78);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
}

.solution-grid article {
  min-height: 244px;
  padding: 24px;
}

.solution-grid p,
.feature-card p,
.buy-copy p,
.quote-block span,
.faq-answer {
  color: var(--muted);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-label.active {
  color: var(--green);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 52px;
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.spec-table {
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  min-height: 64px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table span {
  color: var(--dim);
  font-weight: 850;
}

.spec-table strong {
  color: var(--text);
}

.signal-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 320px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.1), transparent 42%),
    rgba(var(--panel-rgb), 0.88);
}

.signal-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(54, 255, 153, 0.24);
  border-radius: 6px;
  background: rgba(54, 255, 153, 0.06);
}

.signal-row.muted {
  border-color: rgba(255, 75, 95, 0.22);
  background: rgba(255, 75, 95, 0.045);
}

.signal-row span,
.signal-row em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.signal-row strong {
  font-size: 2.8rem;
  line-height: 1;
}

.timer-readout {
  padding: 22px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  border-radius: 6px;
  color: var(--cyan);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.09), transparent 48%),
    rgba(var(--panel-rgb), 0.84);
}

.buy-copy {
  max-width: 760px;
}

.purchase-card {
  padding: 24px;
}

.purchase-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stock {
  color: var(--green);
}

.purchase-price {
  margin: 20px 0;
  color: var(--text);
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.purchase-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.purchase-card li {
  padding-left: 18px;
  border-left: 3px solid rgba(var(--accent-rgb), 0.48);
}

.full-width {
  width: 100%;
}

.proof-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.quote-block {
  padding: 28px;
}

.quote-block p {
  margin-bottom: 18px;
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  line-height: 1.15;
}

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

.faq-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(var(--panel-rgb), 0.78);
  color: var(--text);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 950;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-answer.is-open {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(18px, 5vw, 72px) 96px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 750;
}

.mobile-buy {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--accent-end));
  color: #061014;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

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

  .desktop-nav {
    display: none;
  }

  .hero,
  .split-section,
  .spec-layout,
  .buy-section,
  .proof-faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .mobile-soft-break {
    display: block;
  }

  .header-buy {
    display: none;
  }

  .hero {
    padding: 30px 16px 36px;
  }

  .hero > .hero-visual {
    display: none;
  }

  .mobile-product-shot {
    display: block;
    margin: 18px 0 20px;
  }

  .mobile-product-shot img {
    width: 100%;
    border: 1px solid rgba(226, 241, 248, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  }

  h1 {
    font-size: clamp(2.62rem, 14.5vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-points div,
  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .telemetry-panel {
    right: 10px;
    bottom: 10px;
    min-width: 158px;
    padding: 10px 12px;
  }

  .telemetry-panel strong {
    font-size: 1.06rem;
  }

  .trust-strip,
  .solution-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 0 16px;
  }

  .section {
    padding: 68px 16px;
  }

  .solution-grid article,
  .feature-card {
    min-height: 0;
  }

  .mini-label,
  .feature-icon {
    margin-bottom: 28px;
  }

  .purchase-topline,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-row {
    grid-template-columns: 34px 1fr auto;
  }

  .signal-row strong {
    font-size: 2.3rem;
  }

  .mobile-buy {
    display: flex;
  }

  .theme-dock {
    right: 12px;
    bottom: 84px;
    left: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
  }

  .theme-option {
    min-width: 0;
    padding: 0 8px;
    font-size: 0.76rem;
  }
}

/* Discord-inspired storefront pass */
body[data-theme="discord"] {
  --bg: #16171d;
  --bg-soft: #23242d;
  --panel: #2b2d31;
  --panel-strong: #343741;
  --panel-rgb: 43, 45, 49;
  --header-rgb: 22, 23, 29;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.42);
  --text: #ffffff;
  --muted: #d7d9ff;
  --dim: #9ea3c8;
  --accent: #5865f2;
  --accent-rgb: 88, 101, 242;
  --accent-end: #8ea1ff;
  --green: #57f287;
  --amber: #fee75c;
  --red: #ed4245;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --page-bg:
    linear-gradient(152deg, rgba(35, 165, 89, 0.12), transparent 32rem),
    linear-gradient(180deg, #5865f2 0 39rem, #16171d 39rem 100%);
}

body[data-theme="discord"]::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0, transparent 43rem);
}

body[data-theme="discord"] .site-header {
  top: 14px;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(22, 23, 29, 0.44);
}

body[data-theme="discord"] .site-header.is-scrolled {
  background: rgba(22, 23, 29, 0.88);
}

body[data-theme="discord"] .brand-mark {
  border: 0;
  border-radius: 9px;
  background:
    linear-gradient(135deg, #ffffff 0 20%, transparent 20% 38%, #ffffff 38% 58%, transparent 58%),
    #232428;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

body[data-theme="discord"] .desktop-nav {
  color: rgba(255, 255, 255, 0.82);
}

body[data-theme="discord"] .desktop-nav a:hover,
body[data-theme="discord"] .footer-links a:hover {
  color: #ffffff;
}

body[data-theme="discord"] .header-buy {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #232428;
}

body[data-theme="discord"] .hero {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100svh - 76px);
  padding-top: clamp(62px, 8vw, 112px);
  padding-bottom: clamp(78px, 9vw, 120px);
  overflow: hidden;
}

body[data-theme="discord"] .hero::after {
  position: absolute;
  right: -8vw;
  bottom: -52px;
  left: -8vw;
  height: 118px;
  content: "";
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #16171d;
}

body[data-theme="discord"] .hero-copy,
body[data-theme="discord"] .hero-visual {
  position: relative;
  z-index: 1;
}

body[data-theme="discord"] .eyebrow {
  color: #fee75c;
}

body[data-theme="discord"] .eyebrow span {
  background: #fee75c;
  box-shadow: 0 0 18px rgba(254, 231, 92, 0.8);
}

body[data-theme="discord"] h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 5.45vw, 5.7rem);
  line-height: 1.02;
}

body[data-theme="discord"] h1 span {
  display: block;
}

body[data-theme="discord"] h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
}

body[data-theme="discord"] .hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
}

body[data-theme="discord"] .hero-actions {
  margin-top: 26px;
}

body[data-theme="discord"] .button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
}

body[data-theme="discord"] .button-primary {
  border: 0;
  background: #ffffff;
  color: #232428;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body[data-theme="discord"] .button-secondary {
  border: 0;
  background: #232428;
  color: #ffffff;
}

body[data-theme="discord"] .hero-points {
  gap: 12px;
  margin-top: 32px;
}

body[data-theme="discord"] .hero-points div {
  grid-template-columns: 138px 1fr;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(35, 36, 40, 0.28);
  backdrop-filter: blur(16px);
}

body[data-theme="discord"] .hero-points div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-theme="discord"] .hero-points span {
  color: rgba(255, 255, 255, 0.78);
}

body[data-theme="discord"] .hero-visual::before {
  inset: 12% 3% 4%;
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(254, 231, 92, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(35, 165, 89, 0.2), rgba(22, 23, 29, 0.44));
  transform: rotate(-2deg);
}

body[data-theme="discord"] .hero-visual img {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 30px;
  transform: rotate(1.2deg);
}

.chat-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 174px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(35, 36, 40, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.chat-bubble span {
  color: #b5bac1;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.chat-bubble strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.bubble-left {
  top: 14%;
  left: -2%;
}

.bubble-right {
  right: 2%;
  top: 30%;
}

body[data-theme="discord"] .telemetry-panel {
  z-index: 3;
  right: min(9%, 68px);
  bottom: 5%;
  border: 0;
  border-radius: 18px;
  background: rgba(35, 36, 40, 0.88);
}

body[data-theme="discord"] .trust-strip {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -34px;
  border: 0;
  background: transparent;
  overflow: visible;
}

body[data-theme="discord"] .trust-strip div {
  min-height: 76px;
  border-radius: 18px;
  background: #232428;
  color: #f2f3f5;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

body[data-theme="discord"] .section {
  position: relative;
}

body[data-theme="discord"] .split-section,
body[data-theme="discord"] .specs-section,
body[data-theme="discord"] .proof-faq {
  background: #16171d;
}

body[data-theme="discord"] .feature-section {
  border-radius: 34px;
  background: #f2f3f5;
  color: #232428;
}

body[data-theme="discord"] .feature-section .eyebrow,
body[data-theme="discord"] .feature-section .feature-icon {
  color: #5865f2;
}

body[data-theme="discord"] .feature-section .eyebrow span {
  background: #5865f2;
  box-shadow: none;
}

body[data-theme="discord"] .feature-card {
  border: 0;
  background: #ffffff;
  color: #232428;
  box-shadow: 0 18px 42px rgba(21, 24, 46, 0.11);
}

body[data-theme="discord"] .feature-card p {
  color: #5d6374;
}

body[data-theme="discord"] .solution-grid article,
body[data-theme="discord"] .purchase-card,
body[data-theme="discord"] .quote-block,
body[data-theme="discord"] .spec-table,
body[data-theme="discord"] .signal-panel,
body[data-theme="discord"] .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(43, 45, 49, 0.88);
}

body[data-theme="discord"] .spec-table {
  overflow: hidden;
}

body[data-theme="discord"] .signal-row,
body[data-theme="discord"] .timer-readout {
  border-radius: 16px;
}

body[data-theme="discord"] .buy-section {
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, #5865f2, #3442d9 58%, #232428);
}

body[data-theme="discord"] .purchase-card {
  background: #ffffff;
  color: #232428;
}

body[data-theme="discord"] .purchase-card ul,
body[data-theme="discord"] .purchase-topline {
  color: #5d6374;
}

body[data-theme="discord"] .purchase-card .button-primary {
  background: #232428;
  color: #ffffff;
}

body[data-theme="discord"] .faq-answer {
  color: #b5bac1;
}

body[data-theme="discord"] .mobile-buy {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #232428;
}

@media (max-width: 980px) {
  body[data-theme="discord"] .site-header {
    top: 10px;
    width: min(720px, calc(100% - 24px));
  }

  body[data-theme="discord"] .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body[data-theme="discord"] .hero-copy {
    max-width: 780px;
  }

  .bubble-left {
    left: 4%;
  }

  body[data-theme="discord"] .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-theme="discord"] {
    --page-bg:
      linear-gradient(180deg, #5865f2 0 45rem, #16171d 45rem 100%);
  }

  body[data-theme="discord"] .site-header {
    min-height: 58px;
  }

  body[data-theme="discord"] .hero {
    padding-top: 42px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body[data-theme="discord"] .hero-copy,
  body[data-theme="discord"] .mobile-product-shot,
  body[data-theme="discord"] .hero-actions,
  body[data-theme="discord"] .hero-points {
    max-width: 330px;
  }

  body[data-theme="discord"] .hero-lede,
  body[data-theme="discord"] .hero-points div,
  body[data-theme="discord"] .hero-points span {
    max-width: 300px;
  }

  body[data-theme="discord"] h1 {
    font-size: clamp(2.45rem, 11.2vw, 3.15rem);
    line-height: 1.04;
  }

  body[data-theme="discord"] .hero-copy,
  body[data-theme="discord"] .hero-lede,
  body[data-theme="discord"] .hero-points,
  body[data-theme="discord"] .hero-points div,
  body[data-theme="discord"] .hero-points span {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  body[data-theme="discord"] .hero-points div {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    display: none;
  }

  body[data-theme="discord"] .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  body[data-theme="discord"] .feature-section,
  body[data-theme="discord"] .buy-section {
    border-radius: 24px;
  }
}

.policy-main {
  min-height: calc(100svh - 160px);
  padding: clamp(96px, 12vw, 150px) clamp(18px, 5vw, 72px) 72px;
}

.policy-hero {
  max-width: 980px;
  margin: 0 auto clamp(28px, 5vw, 52px);
}

.policy-hero h1 {
  margin-bottom: 18px;
}

.policy-hero h1 span {
  display: block;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(var(--panel-rgb), 0.88);
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin: 18px 0 0;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.15;
}

body[data-theme="discord"] .policy-content h2 {
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-content a {
  color: var(--text);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.55);
  text-underline-offset: 4px;
}

.not-found-main {
  display: grid;
  align-items: center;
}

@media (max-width: 680px) {
  .policy-main {
    padding: 88px 16px 64px;
  }

  .policy-content {
    border-radius: 18px;
  }
}
