/* ==========================================================================
   Pairchute — application + landing styles
   Design source: claude.ai/design handoff "Pairchute Frontend" (direction 1b:
   two-column hero + ritual diagram card). Same visual family as Parquetbay.
   ========================================================================== */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
}
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--accent-soft); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); text-decoration: underline; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip-link {
  position: fixed; top: 8px; left: 12px; z-index: 500; padding: 9px 13px;
  color: var(--on-accent); background: var(--accent); border-radius: 10px;
  font-weight: 700; text-decoration: none; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* ── Scrollbars ─────────────────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); background-clip: padding-box; }

/* ── View gating: below-the-fold content is a home-only element ─────────── */
body[data-view="handshake"] #lcontent, body[data-view="handshake"] .footbar,
body[data-view="session"] #lcontent, body[data-view="session"] .footbar { display: none; }

/* ── Top bar (sticky, all screens) ──────────────────────────────────────── */
.lbar {
  min-height: 60px; display: flex; align-items: center; gap: 22px; padding: 0 26px;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
  background: var(--paper);
}
.lnav { display: flex; align-items: center; gap: 20px; margin-left: 14px; }
.lnav a { color: var(--ink-soft); font-size: 13px; font-weight: 600; text-decoration: none; }
.lnav a:hover { color: var(--accent); text-decoration: none; }
.lbar__spacer { flex: 1; }

.tb__brand {
  display: flex; align-items: center; gap: 10px; padding: 0;
  color: var(--ink); background: transparent; border: 0; cursor: pointer; text-decoration: none;
}
.tb__brand:hover { text-decoration: none; color: var(--ink); }
.brand__mark { flex: none; display: block; border-radius: 7px; }
.brand__word {
  font-family: 'Space Grotesk', var(--mono), system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.035em; color: var(--ink); font-size: 19px;
}
.brand__word-accent { color: var(--accent); }

/* connected-peer cluster inside the topbar */
.sess__peer { display: flex; align-items: center; gap: 10px; margin-left: 6px; }
.sess__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.sess__dot.is-on { background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); }
.sess__dot.is-off { background: var(--danger); box-shadow: 0 0 0 3px var(--danger-soft); }
.sess__name { font-weight: 700; font-size: 13.5px; }
.sess__lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.sess__arrow { color: var(--ink-faint); font-size: 13px; margin: 0 2px; }
.sess__sas {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--ok);
  background: var(--ok-soft); border: 1px solid var(--ok-soft);
  border-radius: 999px; padding: 3px 11px; cursor: help;
}

/* Bitcoin-orange support pill */
.tb__support {
  height: 34px; padding: 0 15px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px; line-height: 1;
  background: #f7931a; border: 1px solid #f7931a; color: #fff;
  font-size: 13px; font-weight: 600;
}
.tb__support:hover { background: #e07f08; border-color: #e07f08; color: #fff; }
.tb__support .btc-glyph { font-family: var(--mono); }

/* ── Theme picker ───────────────────────────────────────────────────────── */
.themebtn {
  width: 32px; height: 32px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line-strong);
  transition: transform .15s ease;
}
.themebtn:hover { transform: rotate(24deg) scale(1.08); }
.themebtn__dot {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  background: conic-gradient(from 220deg, var(--accent) 0 50%, var(--paper) 50% 100%);
  border: 1px solid var(--line-strong);
}

.themepop {
  position: fixed; z-index: 300; width: 252px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
  animation: themepop-in .16s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes themepop-in {
  from { opacity: 0; transform: scale(.94) translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.themepop__section { display: flex; flex-direction: column; gap: 10px; }
.themepop__label {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-faint);
}
.themepop__val { font-size: 11.5px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }

.themepop__slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 16px; margin: 0;
  border-radius: 8px; border: 1px solid var(--line); outline: none; cursor: pointer;
}
.themepop__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}
.themepop__slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}
.themepop__slider:focus-visible { box-shadow: 0 0 0 3px var(--accent-soft); }

.themepop__swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.themepop__sw {
  width: 22px; height: 22px; border-radius: 50%; border: none; padding: 0; flex: none;
  box-shadow: 0 0 0 1px var(--line-strong);
  transition: transform .12s ease;
}
.themepop__sw:hover { transform: scale(1.18); }
.themepop__sw.is-on { box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--accent); }

.themepop__foot { display: flex; justify-content: center; border-top: 1px solid var(--line-soft); padding-top: 12px; }
.themepop__reset { font-size: 12px; font-weight: 600; color: var(--ink-faint); text-decoration: none; }
.themepop__reset:hover { color: var(--accent); text-decoration: none; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  border: 1px solid var(--line-strong); background: var(--card); color: var(--ink);
  padding: 9px 18px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn--primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--on-accent); }
.btn--sm { padding: 5px 12px; font-size: 12px; }
.btn--big { padding: 13px 26px; font-size: 15px; }
.btn[disabled] { opacity: .4; pointer-events: none; }
.icon-btn { border: 1px solid transparent; background: transparent; color: var(--ink-faint); width: 30px; height: 30px; border-radius: 10px; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn:hover { color: var(--ink); }
.llink { padding: 0; border: 0; background: transparent; color: var(--accent); font-size: inherit; font-weight: 650; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.llink:hover { color: var(--accent-deep); }

/* ── Dialogs (support modal) ────────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; background: rgba(10,18,32,.42); display: grid; place-items: center; z-index: 100; padding: 20px; }
.dialog {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); width: min(460px, 96vw); max-height: 88vh;
  display: flex; flex-direction: column; overflow: hidden;
  animation: themepop-in .16s cubic-bezier(.2, .9, .3, 1.2);
}
.dialog__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 0; }
.dialog__title { margin: 0; font-size: 17px; font-weight: 700; }
.dialog__body { padding: 0 22px 22px; overflow-y: auto; }

/* ── Donate ─────────────────────────────────────────────────────────────── */
.donate__lead { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 10px 0 0; }
.donate__addr {
  display: block; font-family: var(--mono); font-size: 12px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; margin-top: 14px; word-break: break-all;
}
.donate__row { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.donate__uri { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 13px; }

/* ── Toasts (pills, below topbar) ───────────────────────────────────────── */
#toasts { position: fixed; top: 70px; right: 22px; z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; pointer-events: none; }
.toast {
  /* Rounded rectangle, not a 999px pill — long errors wrap to several lines
     and a pill radius turns their sides into ugly semicircles. */
  padding: 10px 16px; border-radius: 12px; background: var(--ink); color: var(--paper);
  font-size: 12.5px; font-weight: 600; line-height: 1.45;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.3);
  max-width: 380px; opacity: 0; transform: translateY(-8px); transition: opacity .18s, transform .18s;
}
.toast--in { opacity: 1; transform: none; }
.toast--ok { background: var(--ink); color: var(--paper); }
.toast--error { background: var(--danger); color: #fff; }
.toast--warn { background: var(--warn); color: #fff; }

/* ── Home hero (two-column: pitch + ritual diagram) ─────────────────────── */
#lhero:empty { display: none; }
.hero__wrap { min-height: calc(100vh - 60px); display: flex; flex-direction: column; justify-content: center; }
.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 44px; align-items: center; padding: 40px 32px 36px;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero__eyebrow { margin: 0 0 16px; color: var(--accent-deep); font-size: 11.5px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero__title {
  margin: 0; font-family: 'Space Grotesk', var(--sans); font-size: 42px; line-height: 1.14;
  font-weight: 700; letter-spacing: -.025em; text-wrap: balance;
}
.hero__sub { margin: 16px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__cliphint { margin: 10px 0 0; font-size: 12px; color: var(--ink-faint); }
.hero__lock { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; color: var(--ink-faint); }

.devbadge {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 5px 12px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--card); cursor: pointer;
}
.devbadge:hover { border-color: var(--accent); }
.devbadge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); }
.devbadge__name { font-weight: 700; font-size: 12px; color: var(--ink); }
.devbadge__id { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }

/* ritual diagram card */
.ritual {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 26px; max-width: 460px; width: 100%; justify-self: center;
}
.ritual__h { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.ritual__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ritual__pc { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ritual__screen {
  width: 74px; height: 52px; border-radius: 8px; display: grid; place-items: center;
  border: 1.5px solid var(--line-strong); background: var(--paper);
}
.ritual__screen.is-you { border-color: var(--accent); background: var(--accent-wash); }
.ritual__inner { width: 44px; height: 26px; border-radius: 4px; background: var(--line-soft); border: 1px solid var(--line); }
.ritual__screen.is-you .ritual__inner { background: var(--accent-soft); border-color: var(--line-strong); }
.ritual__pcname { font-size: 11.5px; font-weight: 700; }
.ritual__pcsub { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }
.ritual__mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ritual__blob { font-family: var(--mono); font-size: 10.5px; color: var(--accent); background: var(--accent-soft); border-radius: 5px; padding: 3px 8px; }
.ritual__wire { width: 100%; border-top: 2px dashed var(--line-strong); position: relative; }
.ritual__wire--fwd::after { content: '▶'; position: absolute; right: -2px; top: -7px; color: var(--accent); font-size: 11px; }
.ritual__wire--back::after { content: '◀'; position: absolute; left: -2px; top: -7px; color: var(--accent); font-size: 11px; }
.ritual__steps { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.ritual__step { display: flex; gap: 10px; }
.ritual__num {
  width: 20px; height: 20px; flex: 0 0 20px; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.ritual__step span:last-child { font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.ritual__step b { color: var(--ink); }

/* paired devices */
.peers { max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 32px 36px; }
.peers__head { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.peerrow {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; max-width: 560px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-sm); margin-bottom: 8px;
}
.peerrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.peerrow__name { font-weight: 700; font-size: 13px; cursor: pointer; }
.peerrow__name:hover { color: var(--accent); }
.peerrow__id { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.peerrow__seen { flex: 1; text-align: right; font-size: 12px; color: var(--ink-faint); }
.peerrow__x { width: 24px; height: 24px; border: none; background: transparent; color: var(--ink-faint); border-radius: 10px; font-size: 13px; }
.peerrow__x:hover { color: var(--danger); }

/* ── Busy / handshake screens ───────────────────────────────────────────── */
.hsx { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 80px 24px; }
.hsx__msg { margin: 0; font-family: var(--mono); font-size: 13.5px; color: var(--ink-soft); }
.spin {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2.5px solid var(--line-strong); border-top-color: var(--accent);
  animation: spin .8s linear infinite; display: inline-block;
}
.spin--sm { width: 16px; height: 16px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

.hs { max-width: 620px; margin: 0 auto; width: 100%; padding: 56px 24px 80px; }
.hs__title { margin: 0; font-size: 17px; font-weight: 700; }
.hs__title + .hs__title, .hs__step2 { margin-top: 44px; }
.hs__sub { margin: 6px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.hs__blob {
  width: 100%; margin-top: 14px; resize: none; outline: none;
  font-family: var(--mono); font-size: 11.5px; line-height: 1.55; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  word-break: break-all;
}
.hs__blob--paste { color: var(--ink); background: var(--paper); }
.hs__blob:focus { border-color: var(--accent); }
.hs__btns { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.hs__wait { display: flex; align-items: center; gap: 10px; margin-top: 28px; font-family: var(--mono); font-size: 13px; color: var(--ink-soft); }
.hs__cancelrow { text-align: center; margin-top: 32px; }
.hs__cancel { border: 0; background: transparent; font-size: 13px; font-weight: 600; color: var(--ink-faint); cursor: pointer; }
.hs__cancel:hover { color: var(--accent); }

/* ── Session ────────────────────────────────────────────────────────────── */
#session:empty { display: none; }
.sess__main { max-width: 660px; margin: 0 auto; width: 100%; padding: 36px 20px 80px; }
.sess__log { margin: 14px 0 0; min-height: 18px; font-size: 12px; color: var(--ink-faint); font-family: var(--mono); }

.banner {
  background: var(--warn-soft); border: 1px solid var(--warn); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 22px;
}
.banner__text { font-size: 13px; line-height: 1.5; color: var(--ink); }
.banner__text b { font-weight: 700; }
.banner__btns { display: flex; gap: 10px; margin-top: 10px; }

/* drop zone */
.ldrop {
  border: 1.5px dashed var(--line-strong); background: var(--card); border-radius: 12px;
  height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer; margin-bottom: 20px; width: 100%;
  transition: border-color .15s, background .15s;
}
.ldrop:hover, .ldrop.is-over { border-color: var(--accent); background: var(--accent-wash); }
.ldrop__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); font-size: 19px; }
.ldrop__lead { font-size: 14.5px; font-weight: 600; }
.ldrop__sub { font-size: 12.5px; color: var(--ink-faint); }

/* transfer queue */
.queue { display: flex; flex-direction: column; gap: 10px; }
.tr {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-sm); padding: 13px 16px;
}
.tr__head { display: flex; align-items: baseline; gap: 10px; }
.tr__dir { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--accent); }
.tr__dir--in { color: var(--ok); }
.tr__name { font-weight: 600; font-size: 13.5px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr__size { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.tr__state { flex: 1; text-align: right; font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.tr__state.is-err { color: var(--danger); }
.tr__state.is-done { color: var(--ok); }
.tr__state.is-paused { color: var(--warn); }
.tr__rate { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.tr__pct { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--accent-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.tr__bar { height: 7px; background: var(--accent-wash); border-radius: 999px; overflow: hidden; margin-top: 10px; }
.tr__fill { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width .2s linear; }
.tr__fill.is-done { background: var(--ok); }
.tr__fill.is-paused { background: var(--warn); }
.tr__actions { display: flex; gap: 8px; margin-top: 11px; flex-wrap: wrap; }
.tr__saved { font-size: 12px; color: var(--ink-faint); margin-top: 8px; }

/* ── Below-the-fold content band (home only) ────────────────────────────── */
#lcontent { background: var(--card); border-top: 1px solid var(--line); }
.lband { max-width: 880px; margin: 0 auto; padding: 72px 24px 80px; }
.lsec h2 {
  margin: 64px 0 0; font-family: 'Space Grotesk', var(--sans);
  font-size: 24px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.lsec:first-child h2 { margin-top: 0; }
.lsec__lede { margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); max-width: 640px; text-wrap: pretty; }
.lsec__lede a, .lsec__lede b { color: var(--ink); }
.lmono { font-family: var(--mono); font-size: .92em; color: var(--ink); }

/* fact tiles */
.lfacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0 0; }
.lfacts > div { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.lfacts dt { margin: 0; color: var(--ink-faint); font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.lfacts dd.big { margin: 6px 0 0; font-family: 'Space Grotesk', var(--sans); font-size: 20px; font-weight: 700; color: var(--ink); }
.lfacts dd.note { margin: 4px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); }

/* numbered steps */
.lsteps { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.lsteps li { display: flex; gap: 16px; align-items: flex-start; }
.lstep__num {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; font-family: var(--mono);
}
.lsteps p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.lsteps b { color: var(--ink); }

/* feature cards */
.lfeatures { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lfeatures li { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.lfeatures h3 { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.lfeatures p { margin: 5px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }

/* honest limits list */
.llimits { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; max-width: 640px; }
.llimits p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.llimits b { color: var(--ink); }

.lreview { margin: 14px 0 0; font-size: 12.5px; color: var(--ink-faint); }

/* FAQ */
.lfaqs { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.lfaq { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; }
.lfaq summary { cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink); list-style: none; }
.lfaq summary::-webkit-details-marker { display: none; }
.lfaq p { margin: 8px 0 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }

/* footer bar */
.footbar { border-top: 1px solid var(--line); background: var(--paper); }
.footbar__in { max-width: 880px; margin: 0 auto; padding: 28px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footbar__word { font-family: 'Space Grotesk', var(--mono); font-size: 15px; font-weight: 700; letter-spacing: -.035em; color: var(--ink); }
.footbar__tag { font-size: 12px; color: var(--ink-faint); }
.footbar__spacer { flex: 1; }
.footbar__in nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footbar__in nav a { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-decoration: none; }
.footbar__in nav a:hover { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lfacts, .lfeatures { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) { .lnav { display: none; } }
@media (max-width: 640px) {
  .lbar { padding: 0 16px; gap: 12px; }
  .hero { padding: 28px 16px 28px; gap: 28px; }
  .hero__title { font-size: 31px; }
  .hero__sub { font-size: 14.5px; }
  .peers { padding: 0 16px 28px; }
  .lband { padding: 48px 18px 56px; }
  .lsec h2 { margin-top: 44px; font-size: 21px; }
  .lfacts, .lfeatures { grid-template-columns: 1fr; }
  .sess__main { padding: 24px 14px 60px; }
  .footbar__in { padding: 22px 18px; }
}

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