:root {
  /* Match live marketing site: deep navy canvas, burgundy panels, NiteWtch orange */
  --bg: #0d1117;
  --bg-elevated: #141a24;
  --bg-panel: #241820;
  --bg-panel-hover: #2a1c26;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(244, 121, 32, 0.22);
  --text: #e2e8f0;
  --text-bright: #f8fafc;
  --muted: #94a3b8;
  --accent: #f47920;
  --accent-hover: #e06d18;
  --accent-soft: rgba(244, 121, 32, 0.14);
  --accent-border: rgba(244, 121, 32, 0.42);
  --pill-text: #fdba74;
  --check: #f47920;
  --radius: 12px;
  --radius-lg: 16px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1000px;
  --max-wide: 1120px;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(13, 17, 23, 0.92);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-bright);
  text-decoration: none;
}

.brand:hover .brand-name {
  color: var(--text-bright);
}

.brand-logo {
  width: 103px;
  height: 103px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

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

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

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.login-page-wrap {
  max-width: 640px;
}

.login-panel h1 {
  margin: 12px 0 8px;
  font-size: 32px;
  color: var(--text-bright);
}

.login-form {
  margin-top: 20px;
}

.login-help {
  margin-top: 16px;
}

.login-help a {
  color: #fdba74;
}

.stealth-topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--pill-text);
  border: 1px solid var(--accent-border);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--pill-text);
}

.btn-light {
  background: #f8fafc;
  color: #0f172a;
}

.btn-light:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-block {
  width: 100%;
}

.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--pill-text);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-popular {
  background: rgba(244, 121, 32, 0.28);
  color: #fff;
  border-color: var(--accent);
}

/* Home page layout */
.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.home-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.home-wrap h1 {
  font-size: 48px;
  margin: 16px 0 12px;
  line-height: 1.1;
  color: var(--text-bright);
  font-weight: 800;
}

.home-wrap > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.home-cta-row {
  margin-top: 28px;
}

.feature-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.panel h2,
.panel h3 {
  margin: 0 0 8px;
  color: var(--text-bright);
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.panel h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.panel-section {
  margin-top: 52px;
}

.panel-section .fine {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.panel form {
  margin-top: 18px;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.signin-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
}

.panel input,
.panel select,
.panel textarea,
.panel button {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 12px;
  font: inherit;
}

.panel textarea {
  min-height: 86px;
  resize: vertical;
}

.panel button {
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 18px;
}

.panel button:hover {
  background: var(--accent-hover);
}

.form-wide {
  grid-column: 1 / -1;
}

.hp-field {
  display: none;
}

#signup-result,
#login-result {
  margin-top: 16px;
  border-radius: 10px;
  padding: 12px;
  display: none;
  white-space: pre-wrap;
}

#signup-result.ok,
#login-result.ok {
  display: block;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

#signup-result.partial {
  display: block;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

#signup-result.err,
#login-result.err {
  display: block;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

body.geo-pending .trial-gated,
body.geo-blocked .trial-gated {
  display: none;
}

#signup-unavailable {
  display: none;
  margin-top: 52px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.32);
  border-radius: var(--radius-lg);
  color: #fecaca;
  padding: 24px;
}

body.geo-blocked #signup-unavailable {
  display: block;
}

.content-page h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.15;
  color: var(--text-bright);
  font-weight: 800;
}

.content-page > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
}

.content-page-links {
  margin-top: 28px !important;
  font-size: 15px !important;
}

.pricing-page-wrap {
  max-width: var(--max-wide);
}

.access-page-wrap {
  max-width: 760px;
}

.access-form-panel {
  padding: 24px 28px 32px;
}

.access-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.access-fieldset legend {
  padding: 0;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pill-text);
}

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

.field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field-row-wide {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
}

.field-optional {
  font-weight: 500;
  color: var(--muted);
}

.field-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.field-error {
  margin: 0;
  min-height: 0;
  font-size: 13px;
  color: #fca5a5;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 12px;
  font: inherit;
}

.access-form select {
  cursor: pointer;
}

.access-form textarea {
  min-height: 96px;
  resize: vertical;
}

.access-form input.is-invalid,
.access-form select.is-invalid,
.access-form textarea.is-invalid {
  border-color: rgba(248, 113, 113, 0.65);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(13, 17, 23, 0.55);
  max-height: 220px;
  overflow: auto;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.35;
}

.checkbox-item input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.access-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access-form-actions .btn-primary {
  align-self: flex-start;
  min-width: 220px;
}

#access-result {
  margin-top: 20px;
  border-radius: 10px;
  padding: 14px 16px;
  line-height: 1.55;
}

#access-result.ok {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

#access-result.err {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

@media (max-width: 720px) {
  .access-form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .access-form-panel {
    padding: 18px 16px 24px;
  }
}

.access-intro {
  text-align: center;
  margin-bottom: 28px;
}

.access-intro h1 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--text-bright);
  font-weight: 800;
}

.access-intro p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.access-embed {
  padding: 20px 24px 28px;
}

.access-embed iframe {
  display: block;
  min-height: 320px;
  background: transparent;
}

.pricing-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.pricing-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--text-bright);
  font-weight: 800;
}

.pricing-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.plan-card .plan-title-featured {
  margin-top: 12px;
}

.plan-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #2d1c28 0%, var(--bg-panel) 42%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.plan-card h2 {
  margin: 0;
  font-size: 22px;
  color: var(--text-bright);
}

.plan-price {
  margin: 12px 0 8px;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.1;
}

.plan-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.plan-tagline {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  min-height: 42px;
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--check);
}

.plan-note {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.plan-cta {
  margin-top: auto;
}

.compare-section {
  margin-top: 64px;
}

.compare-section h2 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--text-bright);
}

.compare-section .sub {
  text-align: center;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .plan-col-name {
  color: var(--text-bright);
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.compare-table .check {
  color: var(--check);
  font-weight: 700;
}

.compare-table .dash {
  color: #475569;
}

.compare-cta-row td {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pricing-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 45% at 50% -5%, rgba(244, 121, 32, 0.08), transparent 50%),
    var(--bg);
}

.stealth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(244, 121, 32, 0.1), transparent 55%),
    var(--bg);
}

.stealth-landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 32px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.stealth-logo {
  width: min(220px, 56vw);
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 24px;
}

.stealth-tagline {
  margin: 0;
  font-size: clamp(1.125rem, 2.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-bright);
  max-width: 36ch;
}

.stealth-intro {
  margin: 18px 0 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.stealth-grid {
  margin-top: 32px;
  width: 100%;
  text-align: left;
}

.stealth-grid .panel h3 {
  font-size: 1rem;
}

.stealth-grid .panel code {
  font-size: 0.85em;
  color: var(--pill-text);
}

.stealth-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pill-text);
}

.stealth-flow span[aria-hidden="true"] {
  color: var(--muted);
  font-weight: 400;
}

.stealth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.stealth-coming {
  margin: 28px 0 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pill-text);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-footer a {
  color: var(--pill-text);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ============================================================
   Landing pages / alternatives  (lp-*)
   ============================================================ */

.lp-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 45% at 50% -5%, rgba(244, 121, 32, 0.07), transparent 50%),
    var(--bg);
}

.lp-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.lp-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
  margin-bottom: 8px;
}

.lp-breadcrumb a { color: var(--muted); }
.lp-breadcrumb a:hover { color: var(--accent); }

.lp-hero {
  padding: 56px 0 52px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.lp-hero h1 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.08;
  color: var(--text-bright);
  font-weight: 800;
  margin: 16px 0 18px;
}

.lp-hero .sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 28px;
}

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

.lp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(20, 26, 36, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.lp-trust-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-trust-item .tc { color: var(--accent); font-weight: 700; }

.lp-section { margin-top: 64px; }

.lp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 10px;
}

.lp-section h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--text-bright);
  font-weight: 800;
  margin: 0 0 12px;
}

.lp-section .intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 28px;
}

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

.pain-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pain-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.pain-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text-bright);
  font-weight: 600;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-row-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.fri {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px;
}

.fri-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.fri h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--text-bright);
  font-weight: 600;
}

.fri p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.vs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  margin-top: 24px;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.vs-table th,
.vs-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.vs-table th {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-bright);
  background: rgba(13, 17, 23, 0.6);
}

.vs-table th.col-them { color: var(--muted); font-weight: 600; }

.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table .nw { color: var(--accent); font-weight: 600; }
.vs-table .them-val { color: var(--muted); }
.vs-table .neg { color: #f87171; }

.price-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .price-compare { grid-template-columns: 1fr; }
}

.price-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-strong);
}

.price-card.them { background: rgba(20, 26, 36, 0.5); }
.price-card.us { background: var(--bg-panel); border-color: var(--accent); }

.price-card .pc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 8px;
}

.price-card.us .pc-label { color: var(--accent); }

.price-card .pc-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-bright);
  margin: 0 0 4px;
}

.price-card .pc-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.price-card ul li:last-child { border-bottom: none; }
.price-card.us ul li { color: var(--text); }

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text-bright);
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-cta-band {
  margin-top: 64px;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}

.lp-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--text-bright);
  font-weight: 800;
}

.lp-cta-band p {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.lp-nav-alts {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.lp-nav-alts strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.lp-nav-alts a {
  color: var(--muted);
  margin-right: 16px;
}

.lp-nav-alts a:hover { color: var(--accent); }

/* ============================================================
   Legal document pages (terms.html, privacy.html)
   ============================================================ */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-bright);
  margin: 0 0 8px;
  line-height: 1.15;
}

.legal-page .legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin: 40px 0 10px;
  padding-top: 8px;
}

.legal-page h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page strong {
  color: var(--text);
  font-weight: 600;
}

.legal-page .legal-highlight {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.legal-page .legal-highlight p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.legal-page .legal-toc {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 0 0 40px;
  font-size: 14px;
}

.legal-page .legal-toc h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.legal-page .legal-toc ol {
  margin: 0;
  padding-left: 20px;
}

.legal-page .legal-toc li {
  margin-bottom: 4px;
  font-size: 13px;
}

.legal-page .legal-toc a {
  color: var(--muted);
  text-decoration: none;
}

.legal-page .legal-toc a:hover {
  color: var(--accent);
}

.legal-back {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 32px;
  display: block;
  text-decoration: none;
}

.legal-back:hover { color: var(--accent); }
