/* ==========================================================================
   EWSAF — Design tokens
   Palette: deep ink background, audit-teal + seal-amber accents, mono for
   anything evidentiary (hashes, versions, checksums) — a nod to the
   product's own chain-of-custody manifests.
   ========================================================================== */

:root {
  --ink: #0a0e14;
  --ink-2: #0d131b;
  --surface: #121a24;
  --surface-2: #19222e;
  --border: rgba(230, 238, 245, 0.09);
  --border-strong: rgba(230, 238, 245, 0.16);

  --teal: #2bb6a3;
  --teal-bright: #57e0cb;
  --teal-ink: #05130f;

  --amber: #e8a33d;
  --amber-bright: #f4c165;
  --amber-ink: #1a1204;

  --success: #3fbf7f;
  --danger: #e2574c;

  --text: #e9eef3;
  --text-muted: #96a2b3;
  --text-faint: #5e6a7a;

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --container: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 16px 30px -14px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------- Reset -------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--teal);
  color: var(--teal-ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { position: relative; }

.section-pad { padding: 5.5rem 0; }
@media (max-width: 720px) {
  .section-pad { padding: 3.5rem 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(87, 224, 203, 0.18);
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 40rem;
}

p.section-lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-top: 0.85rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

/* Faint background grid — cheap texture, keeps the surface from feeling flat */
.grid-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(230, 238, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 238, 245, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 90%);
}

/* --------------------------------- Buttons -------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: var(--teal-ink);
  box-shadow: 0 12px 24px -10px rgba(43, 182, 163, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(43, 182, 163, 0.7); }

.btn-ghost {
  background: rgba(230, 238, 245, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(230, 238, 245, 0.08); border-color: rgba(230, 238, 245, 0.28); }

.btn-amber {
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: var(--amber-ink);
  box-shadow: 0 12px 24px -10px rgba(232, 163, 61, 0.45);
}

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------------------------------- Navbar -------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal-bright), #1c6f63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-faint);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-ghost { display: none; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 1.25rem;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.85rem 0.25rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ------------------------------ Manifest ticker --------------------------- */
/* Signature element: a live-looking evidence ledger strip. */

.manifest-strip {
  border-bottom: 1px solid var(--border);
  background: var(--ink-2);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}
.manifest-track {
  display: inline-flex;
  gap: 3rem;
  animation: manifest-scroll 34s linear infinite;
  padding-left: 3rem;
}
.manifest-strip:hover .manifest-track { animation-play-state: paused; }

.manifest-item {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.manifest-item .file { color: var(--text-muted); }
.manifest-item .hash { color: var(--text-faint); }
.manifest-item .ok {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.manifest-item .ok::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

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

/* ----------------------------------- Hero --------------------------------- */

.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--text);
}
.hero-title .accent { color: var(--teal-bright); }

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.hero-fact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.hero-fact svg { flex-shrink: 0; color: var(--teal-bright); }

/* Console mockup panel */

.console-panel {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem;
  position: relative;
}

.console-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.console-dots { display: flex; gap: 6px; }
.console-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(230,238,245,0.16);
}
.console-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.console-live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(63, 191, 127, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.console-body { padding-top: 1.4rem; display: flex; gap: 1.4rem; align-items: center; }

.risk-gauge {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(var(--amber-bright) 0turn 0.28turn, rgba(230,238,245,0.08) 0.28turn 1turn);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.risk-gauge::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--surface);
}
.risk-gauge-inner {
  position: relative;
  text-align: center;
  font-family: var(--font-mono);
}
.risk-gauge-inner .num { display: block; font-size: 1.35rem; font-weight: 700; color: var(--text); }
.risk-gauge-inner .lbl { display: block; font-size: 0.6rem; color: var(--text-faint); margin-top: 2px; }

.console-stats { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; min-width: 0; }
.console-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  gap: 0.75rem;
}
.console-stat-row .k { color: var(--text-muted); }
.console-stat-row .v { font-family: var(--font-mono); color: var(--text); white-space: nowrap; }

.console-findings {
  margin-top: 1.4rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.finding-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.finding-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.finding-dot.high { background: var(--danger); }
.finding-dot.med { background: var(--amber); }
.finding-dot.low { background: var(--teal); }

.console-footer {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
}
.console-footer svg { color: var(--success); }

/* -------------------------------- Industries ------------------------------ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.industry-card:hover {
  border-color: rgba(87, 224, 203, 0.35);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.industry-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(43, 182, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.industry-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

/* --------------------------------- Features -------------------------------- */

.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 860px) { .feature-columns { grid-template-columns: 1fr; } }

.feature-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.feature-card.is-premium {
  border-color: rgba(232, 163, 61, 0.3);
  background: linear-gradient(180deg, rgba(232,163,61,0.06), var(--surface) 40%);
}

.feature-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.feature-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(43, 182, 163, 0.12);
  color: var(--teal-bright);
  white-space: nowrap;
}
.feature-card.is-premium .feature-badge { background: rgba(232, 163, 61, 0.14); color: var(--amber-bright); }

.feature-card > p { color: var(--text-muted); font-size: 0.92rem; margin: 0.6rem 0 1.4rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.8rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
}
.feature-list svg { flex-shrink: 0; margin-top: 3px; }
.feature-list.free svg { color: var(--teal-bright); }
.feature-list.premium svg { color: var(--amber-bright); }

.feature-card-cta { margin-top: 1.6rem; }

/* Module coverage grid */
.module-coverage {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.8rem;
}
.module-coverage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.module-coverage-head h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.module-coverage-sub {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  max-width: 45rem;
}
.module-legend { display: flex; gap: 1.4rem; font-size: 0.8rem; color: var(--text-muted); }
.module-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.legend-swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.legend-swatch.free { background: var(--teal); }
.legend-swatch.premium { background: transparent; border: 1.5px solid var(--amber); }

#module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}
@media (max-width: 560px) { #module-grid { grid-template-columns: 1fr; } }

.module-cell {
  border: 1px solid rgba(43, 182, 163, 0.45);
  border-radius: 10px;
  background: rgba(43, 182, 163, 0.08);
  padding: 0.7rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.module-cell.premium {
  border-color: rgba(232, 163, 61, 0.6);
  background: rgba(232, 163, 61, 0.08);
}

.module-cell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.module-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--teal-bright);
}

.module-cell.premium .module-id {
  color: var(--amber-bright);
}

.module-tier {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.module-cell h5 {
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 600;
}

/* ------------------------------- Release card ------------------------------ */

.release-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .release-card { grid-template-columns: 1fr; }
}

.release-version-block { text-align: left; }
.release-version-block .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.release-version-block .num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.release-version-block .date { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.6rem; }

.release-notes h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
#release-notes-list { display: flex; flex-direction: column; gap: 0.55rem; }
#release-notes-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
#release-notes-list li::before { content: '—'; color: var(--text-faint); flex-shrink: 0; }

.release-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-faint);
}
.release-meta strong { color: var(--text-muted); font-weight: 500; }
.release-meta .hash-value { word-break: break-all; }

.release-artifacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artifact-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  background: rgba(230, 238, 245, 0.02);
}

.artifact-main {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.artifact-main strong {
  color: var(--text);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artifact-file {
  color: var(--text-muted);
  font-size: 0.75rem;
  word-break: break-all;
}

.artifact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-end;
  white-space: nowrap;
}

.release-download {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
  min-width: 200px;
}
.release-download .filesize { font-size: 0.78rem; color: var(--text-faint); text-align: center; }
.release-downloads .btn { width: 100%; }

.release-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
}
.release-empty a { color: var(--teal-bright); }

/* --------------------------------- Pricing --------------------------------- */

.currency-toggle {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
  margin-bottom: 2.2rem;
}
.currency-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-mono);
}
.currency-toggle button.is-active {
  background: var(--teal);
  color: var(--teal-ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}
.price-card.is-featured {
  border-color: rgba(232, 163, 61, 0.4);
  background: linear-gradient(180deg, rgba(232,163,61,0.07), var(--surface) 45%);
  position: relative;
}
.price-card-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.price-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.8rem; }
.price-amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.price-amount .unit { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-body); }
.price-card > p.price-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0.9rem 0 1.5rem; }
.price-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.8rem; flex: 1; }
.price-list li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--text); align-items: flex-start; }
.price-list svg { flex-shrink: 0; margin-top: 3px; color: var(--teal-bright); }
.price-card.is-featured .price-list svg { color: var(--amber-bright); }

.price-note {
  margin-top: 2.4rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.price-note strong { color: var(--text); }

/* ----------------------------------- FAQ ------------------------------------ */

.faq-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 46rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.3rem 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.98rem;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-faint);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-bottom: 1.2rem;
  max-width: 40rem;
}
.faq-item p a { color: var(--teal-bright); }

/* ------------------------------ Final CTA / Footer --------------------------- */

.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(43,182,163,0.14), rgba(232,163,61,0.08));
  border: 1px solid var(--border-strong);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 26rem;
}
.cta-band-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
  background: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.9rem; max-width: 26rem; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* --------------------------------- Utilities --------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.copy-btn {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  cursor: pointer;
  font-family: var(--font-mono);
}
.copy-btn:hover { color: var(--text); border-color: var(--text-muted); }
