/* ============================================================
   THE PLUGGABLE ECONOMY — pluggablebusiness.com
   Design system: sibling to the Enduraman / LeanIX Expert brand.
   - Shared bones: Instrument Sans (voice) + Jura (instrument labels),
     overline-with-dots, the 2px rule, registration marks, dark
     sections, stat band, FAQ, CTA band, footer.
   - Distinct skin: an ELECTRIC palette — volt amber (the current
     site's warmth) as primary, current cyan as the scoped secondary,
     over a deep indigo base and warm paper. The currency of the
     framework is "Digital Power": electricity (amber) + data (cyan).
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color — electric Pluggable identity */
  --ink-deep:    #0C1024;   /* near-black indigo — hero, footer, deep sections */
  --ink:         #141A33;   /* primary dark surface */
  --ink-bright:  #232C52;   /* hovers, gradients on dark */
  --volt:        #F2A100;   /* PRIMARY accent — electric amber/marigold; CTAs, numerals, rule */
  --volt-bright: #FFC23D;   /* amber on dark backgrounds */
  --current:     #15B8C8;   /* SECONDARY accent — electric cyan ("data/power"); scoped motifs */
  --current-bright: #3FD8E6;/* cyan on dark backgrounds */
  --paper:       #FAF6EE;   /* warm light section background — the sibling-but-distinct cue */
  --paper-deep:  #F3ECDD;   /* slightly deeper warm panel */
  --white:       #FFFFFF;
  --ink-text:    #1B2138;   /* body text on light */
  --muted:       #5C617A;   /* secondary text on light */
  --line:        #E8E2D6;   /* warm hairline on light */
  --line-dark:   rgba(255, 255, 255, 0.16);
  --text-dark-1: rgba(255, 255, 255, 0.95); /* primary text on dark */
  --text-dark-2: rgba(255, 255, 255, 0.74); /* secondary text on dark */
  --text-dark-3: rgba(255, 255, 255, 0.46); /* tertiary text on dark */

  /* Type — shared with Enduraman (the sibling tell) */
  --font-sans:  "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-label: "Jura", "Instrument Sans", system-ui, sans-serif;

  /* Rhythm — shared structure */
  --container: 1140px;
  --radius: 8px;
  --section-pad: clamp(64px, 9vw, 120px);
  --shadow-card: 0 1px 2px rgba(12, 16, 36, 0.05), 0 8px 28px rgba(12, 16, 36, 0.07);
  --shadow-lift: 0 2px 4px rgba(12, 16, 36, 0.08), 0 18px 44px rgba(12, 16, 36, 0.16);
  --shadow-volt: 0 8px 30px rgba(242, 161, 0, 0.28);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.42rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }

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

main { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section { padding: var(--section-pad) 0; }
.section--paper { background: var(--paper); }
.section--paper-deep { background: var(--paper-deep); }
.section--ink   { background: var(--ink); color: var(--text-dark-1); }
.section--deep  { background: var(--ink-deep); color: var(--text-dark-1); }

.section--ink h2, .section--deep h2,
.section--ink h3, .section--deep h3 { color: var(--white); }
.section--ink p, .section--deep p { color: var(--text-dark-2); }

.lead { font-size: 1.16rem; }
.center { text-align: center; }

/* ---------- 3. Brand devices ---------- */

/* Overline — Jura, tracked out, flanking dots */
.overline {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--volt);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.overline::before, .overline::after {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.overline--plain::before, .overline--plain::after { display: none; }
.section--ink .overline, .section--deep .overline { color: var(--volt-bright); }

/* The 2px rule */
.rule {
  width: 64px; height: 2px;
  background: var(--volt);
  border: 0; margin: 22px 0 26px;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* Corner registration marks */
.reg { position: relative; }
.reg::before, .reg::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid currentColor;
  opacity: 0.22;
  pointer-events: none;
}
.reg::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.reg::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* Section heading group */
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .rule { margin-left: auto; margin-right: auto; }
.section-head .lede { font-size: 1.12rem; color: var(--muted); }
.section--ink .section-head .lede,
.section--deep .section-head .lede { color: var(--text-dark-2); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--volt {
  background: var(--volt);
  color: var(--ink-deep);
}
.btn--volt:hover { background: var(--volt-bright); color: var(--ink-deep); box-shadow: var(--shadow-volt); }

.btn--ink {
  background: var(--ink);
  color: var(--white);
}
.btn--ink:hover { background: var(--ink-bright); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20, 26, 51, 0.32);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: var(--line-dark);
}
.btn--ghost-light:hover { border-color: rgba(255, 255, 255, 0.6); color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* ---------- 5. Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

/* Brand lockup: original outlet glyph + Pluggable / PLUGGABLE ECONOMY */
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 11px; line-height: 1; }
.brand__glyph { width: 34px; height: 34px; flex: none; display: block; }
.brand__lockup { display: inline-flex; flex-direction: column; gap: 3px; }
.brand__name {
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__tag {
  font-family: var(--font-label);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--volt);
}
.nav-cta { margin-left: 4px; }
.nav-cta .btn { padding: 12px 18px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- 6. Hero (home) ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 84% -12%, rgba(242, 161, 0, 0.20), transparent 60%),
    radial-gradient(820px 460px at -8% 112%, rgba(21, 184, 200, 0.20), transparent 60%),
    var(--ink-deep);
  color: var(--text-dark-1);
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero h1 em { font-style: normal; color: var(--volt-bright); }
.hero .lede {
  font-size: 1.18rem;
  color: var(--text-dark-2);
  max-width: 56ch;
}
.hero .btn-row { margin-top: 34px; }
.hero__note {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--text-dark-3);
}
.hero__note a { color: var(--text-dark-2); text-decoration: underline; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--volt-bright);
  border: 1px solid rgba(255, 194, 61, 0.4);
  border-radius: 100px;
  padding: 9px 18px;
  margin-bottom: 26px;
}
.badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--volt-bright);
}

/* ---------- 7. Outlet / plug motif (original SVG art) ---------- */
.outlet-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.outlet-art svg { width: min(360px, 78vw); height: auto; }
/* the "energized" pulse ring behind the outlet */
.outlet-pulse { transform-origin: center; animation: pulse 3.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---------- 8. Stat / vision band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--ink);
  padding: 34px 28px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--volt-bright);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.92rem;
  color: var(--text-dark-2);
  line-height: 1.45;
}
.stats-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dark-3);
}

/* ---------- 9. Cards & grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.card h3 { margin-top: 0; }
.card .card__kicker {
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--volt);
  display: block;
  margin-bottom: 14px;
}
.card p:last-child { margin-bottom: 0; }
.card--ink {
  background: var(--ink);
  border-color: transparent;
  color: var(--text-dark-2);
}
.card--ink h3 { color: var(--white); }
.card--ink .card__kicker { color: var(--volt-bright); }

/* Numbered cards */
.num-card .num {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--volt);
  display: block;
  margin-bottom: 16px;
}

/* The four Digital components — icon cards */
.comp-card { position: relative; }
.comp-card .comp-icon {
  width: 46px; height: 46px;
  margin-bottom: 20px;
  color: var(--current);
}
.comp-card .comp-icon svg { width: 100%; height: 100%; }
.comp-card .comp-tag {
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

/* Checklist */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--volt);
  border-bottom: 2px solid var(--volt);
  transform: rotate(-45deg);
}
.section--ink .checklist li::before,
.section--deep .checklist li::before { border-color: var(--volt-bright); }

/* Definition rows */
.def-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.def-row:last-child { border-bottom: 1px solid var(--line); }
.def-row dt { font-weight: 600; color: var(--ink); }
.def-row dd { margin: 0; color: var(--muted); }
.section--ink .def-row, .section--deep .def-row { border-color: var(--line-dark); }
.section--ink .def-row dt, .section--deep .def-row dt { color: var(--white); }
.section--ink .def-row dd, .section--deep .def-row dd { color: var(--text-dark-2); }

/* Paradigm "from -> to" table */
.paradigm {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.paradigm th {
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 18px 14px;
  border-bottom: 2px solid var(--line);
}
.paradigm td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-text);
}
.paradigm tr td:first-child { color: var(--muted); }
.paradigm tr td:last-child { color: var(--ink); font-weight: 600; }
.paradigm .arrow { color: var(--volt); font-weight: 700; }

/* Quote block */
.quote {
  border-left: 3px solid var(--volt);
  padding: 6px 0 6px 28px;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  max-width: 38em;
}
.quote footer {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 14px;
}
.section--ink .quote, .section--deep .quote { color: var(--white); border-color: var(--volt-bright); }
.section--ink .quote footer, .section--deep .quote footer { color: var(--text-dark-2); }

/* Big manifesto lines — the "second voice" */
.manifesto-lines {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto-lines .v { color: var(--volt); }
.section--ink .manifesto-lines, .section--deep .manifesto-lines { color: var(--white); }
.section--ink .manifesto-lines .v, .section--deep .manifesto-lines .v { color: var(--volt-bright); }

/* ---------- 10. Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 90px) 0;
}
.page-hero h1 { max-width: 18em; }
.page-hero .lede {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- 11. FAQ ---------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 14px;
  padding: 0 24px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 22px 0;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-label);
  font-size: 1.3rem;
  color: var(--volt);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details .faq-body { padding-bottom: 22px; }
.faq details .faq-body p { color: var(--muted); margin: 0 0 0.9em; }
.faq details .faq-body p:last-child { margin-bottom: 0; }

/* ---------- 12. CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(242, 161, 0, 0.22), transparent 60%),
    radial-gradient(700px 380px at 6% 120%, rgba(21, 184, 200, 0.18), transparent 60%),
    var(--ink-deep);
  color: var(--text-dark-1);
  text-align: center;
  padding: var(--section-pad) 0;
}
.cta-band h2 { color: var(--white); max-width: 22em; margin: 0 auto 0.4em; }
.cta-band p { color: var(--text-dark-2); max-width: 54ch; margin: 0 auto 1.4em; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 13. Join banner (top strip) ---------- */
.join-strip {
  background: var(--volt);
  color: var(--ink-deep);
  text-align: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.join-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.join-strip a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

/* ---------- 14. Insights / curation ---------- */
.pick {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.pick .pick__name {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pick p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--current);
  background: rgba(21, 184, 200, 0.10);
  border: 1px solid rgba(21, 184, 200, 0.28);
  border-radius: 100px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
}

/* Insight post list */
.post {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.post:last-child { border-bottom: 1px solid var(--line); }
.post__meta {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 10px;
}
.post h3 { margin: 0 0 8px; }
.post p { color: var(--muted); margin: 0; }

/* ---------- 15. Connect ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.connect-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: var(--text-dark-2);
  padding: 64px 0 36px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--text-dark-2); }
.site-footer a:hover { color: var(--white); }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__tag { color: var(--text-dark-3); }
.footer-brand p { margin-top: 16px; max-width: 36ch; color: var(--text-dark-3); }
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  font-size: 0.78rem;
  color: var(--text-dark-3);
  line-height: 1.7;
}
.footer-legal p { margin-bottom: 6px; }

/* ---------- 17. Reveal on scroll (progressive enhancement) ----------
   No-JS / pre-JS default: content is fully visible. Only once the document
   is marked .js (set by an inline snippet in <head>) do we hide-then-reveal,
   so disabling JavaScript never hides content. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .outlet-pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 18. Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .def-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .paradigm, .paradigm tbody, .paradigm tr, .paradigm td { display: block; width: 100%; }
  .paradigm thead { display: none; }
  .paradigm td { border-bottom: 0; padding: 4px 0; }
  .paradigm tr { border-bottom: 1px solid var(--line); padding: 14px 0; }
  .paradigm tr td:last-child { font-weight: 700; }

  /* Mobile navigation */
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1.05rem; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }
}
