/* unhost.dev — export-flow design system (engineered / terminal identity).
   Cool off-white + ink, mono-forward chrome, a dark command bar that ties the
   landing to the live export console. Plain CSS + tokens, no framework, no build.
   Fonts: General Sans (UI/display) + JetBrains Mono (technical/console). */

:root {
  --paper: #f4f5f1;      /* cool off-white, faint green-grey — NOT warm cream */
  --paper-2: #e8eae1;
  --ink: #0f100b;        /* near-black, cool */
  --ink-2: #4c4e45;
  --ink-3: #83867a;
  --line: #dde0d4;
  --line-2: #ccd0c2;
  --grid: rgba(15, 16, 11, .05);   /* faint background texture, weaker than --line */

  --console: #0c0d0a;
  --console-2: #15160f;
  --console-line: #23241c;
  --console-ink: #e9eae1;
  --console-dim: #777a6c;

  --accent: #c6f24e;
  --accent-deep: #abda2c;
  --on-accent: #11120c;
  --danger: #ff5436;

  --font-sans: "General Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r: 14px;
  --r-sm: 8px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 72px);
  --shadow-sm: 0 1px 2px rgba(15, 16, 11, .05);
  --shadow: 0 1px 2px rgba(15, 16, 11, .05), 0 18px 44px -22px rgba(15, 16, 11, .28);
  --shadow-console: 0 24px 60px -28px rgba(15, 16, 11, .5), inset 0 0 0 1px var(--console-line);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 104px 104px, 104px 104px;
  background-position: -1px -1px, -1px -1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
::selection { background: var(--accent); color: var(--on-accent); }

/* ---------- layout ---------- */
.shell { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 20px; border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--font-mono); font-weight: 500; font-size: 21px;
  letter-spacing: -.01em; text-decoration: none; display: inline-flex; align-items: center; gap: 2px;
}
.wordmark .p { color: var(--accent); margin-right: 7px; }   /* lime prompt ">" */
.wordmark b { font-weight: 700; color: var(--ink); }
.wordmark .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-left: 6px; box-shadow: 0 0 0 4px rgba(198, 242, 78, .25); }
.topbar nav { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-3); }

.footer { margin-top: 100px; padding-block: 36px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; letter-spacing: .02em; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: "//"; color: var(--accent-deep); letter-spacing: 0; }

h1.display {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(2.5rem, 6.2vw, 4.9rem); line-height: 1.0; letter-spacing: -.035em;
  margin: .4em 0 0; max-width: 16ch; text-wrap: balance;
}
/* lime underline (marker bar near the baseline; ink text stays on top) */
.mark {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 100% .18em;
  padding-bottom: .04em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.lede { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--ink-2); max-width: 52ch;
  margin-top: 1.2rem; line-height: 1.5; }
.lede strong { color: var(--ink); font-weight: 600; }

/* ---------- hero (left-aligned, asymmetric) ---------- */
.hero { padding-block: clamp(52px, 10vw, 124px) 0; }

/* the command bar — a mini terminal that IS the primary CTA */
.command {
  display: flex; align-items: stretch; max-width: 760px; margin-top: clamp(32px, 5vw, 48px);
  background: var(--console); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-console);
  background-image: radial-gradient(140% 100% at 0% 0%, rgba(198, 242, 78, .08), transparent 55%);
  transition: box-shadow .2s ease, transform .2s ease;
}
.command:focus-within { transform: translateY(-1px);
  box-shadow: var(--shadow-console), 0 0 0 2px var(--accent); }
.command .prompt { font-family: var(--font-mono); color: var(--accent); font-size: 14.5px;
  align-self: center; padding-left: 20px; white-space: nowrap; user-select: none; }
.command input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: var(--font-mono); font-size: 14.5px; color: var(--console-ink);
  padding: 19px 16px; caret-color: var(--accent);
}
.command input::placeholder { color: var(--console-dim); }
.command button {
  border: 0; cursor: pointer; background: var(--accent); color: var(--on-accent);
  font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; padding-inline: 26px; transition: background .15s ease;
}
.command button:hover { background: var(--accent-deep); }

.form-error { margin-top: 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--danger); }
.form-hint { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  letter-spacing: .02em; }

/* generic buttons (detail-page actions) */
.btn {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; padding: 14px 22px; border-radius: var(--r-sm);
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); border-color: var(--ink); color: var(--on-accent); }
.btn--accent:hover { background: var(--accent-deep); }

/* ---------- spec list (value props as a left-aligned spec sheet) ---------- */
/* No row rules — the faint grid is the only line system; spacing separates rows. */
.specs { margin-top: clamp(56px, 9vw, 104px); display: grid; gap: clamp(20px, 3vw, 34px); }
.spec {
  display: grid; grid-template-columns: 40px minmax(160px, 220px) 1fr; gap: 24px;
  align-items: baseline;
}
.spec__n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-deep); }
.spec__k { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; }
.spec__v { color: var(--ink-2); font-size: 15px; line-height: 1.5; }

/* ---------- detail / progress ---------- */
.detail-head { padding-block: clamp(40px, 7vw, 72px) 24px; }
.detail-head .src { font-family: var(--font-mono); font-size: 14px; color: var(--ink-2);
  word-break: break-all; display: inline-flex; align-items: center; gap: 10px; }
.detail-head .src a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--accent); }

.console-wrap { margin-top: 8px; }
.console {
  background: var(--console);
  background-image: radial-gradient(120% 60% at 50% -20%, rgba(198, 242, 78, .10), transparent 60%);
  color: var(--console-ink); border-radius: var(--r);
  box-shadow: var(--shadow-console); overflow: hidden;
}
.console__bar { display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border-bottom: 1px solid var(--console-line); }
.console__dots { display: inline-flex; gap: 7px; }
.console__dots i { width: 11px; height: 11px; border-radius: 50%; background: #2f312a; display: inline-block; }
.console__title { font-family: var(--font-mono); font-size: 12px; color: var(--console-dim); letter-spacing: .04em; }
.console__status { margin-left: auto; }

.console__body { padding: 20px 20px 22px; font-family: var(--font-mono); font-size: 13px;
  line-height: 1.85; max-height: 52vh; overflow: auto; scroll-behavior: smooth; }
.log-line { display: flex; gap: 12px; align-items: baseline; }
.log-line .ph { color: var(--accent); flex: 0 0 auto; min-width: 94px; opacity: .9; }
.log-line .msg { color: var(--console-ink); word-break: break-word; }
.log-caret { display: inline-block; width: 9px; height: 1.05em; background: var(--accent);
  vertical-align: text-bottom; margin-top: 6px; animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.status { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: var(--console-2); color: var(--console-ink); border: 1px solid var(--console-line); }
.status .led { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.status.is-running .led { animation: pulse 1.1s ease-in-out infinite; }
.status.is-ready .led { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.status.is-failed .led { background: var(--danger); }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }

.result { margin-top: 22px; display: grid; gap: 18px; animation: rise .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }
.stats { display: flex; flex-wrap: wrap; gap: clamp(48px, 7vw, 50px); padding: 20px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.stat .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); }
.stat .v { font-family: var(--font-mono); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.banner { padding: 16px 18px; border-radius: var(--r-sm); font-family: var(--font-mono); font-size: 13px; }
.banner--fail { background: rgba(255, 84, 54, .08); border: 1px solid rgba(255, 84, 54, .4); color: #b3361f; }
.banner--ok { background: rgba(198, 242, 78, .18); border: 1px solid var(--accent-deep); color: #3f5207; margin: 18px 0; }

@media (max-width: 640px) {
  .command { flex-direction: column; }
  .command .prompt { padding: 16px 0 0 18px; }
  .command button { padding: 16px; }
  .spec { grid-template-columns: 40px 1fr; }
  .spec__v { grid-column: 2; }
}

/* let a <form> wrapper sit transparently inside flex/grid containers */
.inline-form { display: contents; }

/* AI Export Report panel on the result card (included free in every tier) */
.report { margin-top: 16px; padding: 16px 18px; background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--r); }
.report__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.report__links { display: flex; gap: 16px; white-space: nowrap; }
.report__title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2); }
.report__title::before { content: "✦ "; color: var(--accent-deep); }
.report__open { font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--accent-deep);
  text-decoration: none; white-space: nowrap; }
.report__open:hover { text-decoration: underline; }
.report__chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.report__chips .chip { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 11px; }
.report__chips .chip b { color: var(--ink); font-weight: 700; }

/* payment chooser — two option cards differentiated by currency/region + methods + trust */
.pay-head { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }
.pay-head::before { content: "↘ "; color: var(--accent-deep); }
/* step 2 — a contained panel that reads as a detail of the selected tier (not a pricing
   card). Provider buttons are led by the provider NAME, not a repeated big price. */
.paybox { margin-top: 18px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: rgba(15, 16, 11, .025); padding: 16px 18px; }
.paybox__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.paybox__step { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2); }
.paybox__step::before { content: "↘ "; color: var(--accent-deep); }
.paybox__price { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.paybox__alt { font-weight: 600; color: var(--ink-3); }
.methods { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.method {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; text-align: left; cursor: pointer; font-family: var(--font-sans);
  background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 16px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.method:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: var(--ink); }
.method:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.method__name { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--ink); }
.method__desc { display: block; margin-top: 3px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.method__go { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
  transition: color .15s ease, transform .15s ease; }
.method:hover .method__go { color: var(--accent-deep); transform: translateX(2px); }

/* two-step tier chooser (pure CSS: hidden radios reveal the matching provider chooser) */
.tiersel { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }
.tiers { margin-top: 12px; display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tier-card { display: flex; flex-direction: column; gap: 8px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--ink); border-radius: var(--r); padding: 18px 20px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.tier-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent-deep); }
.tier-card__badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-deep); }
.tier-card__name { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-2); }
.tier-card__price { font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.01em; color: var(--ink); }
.tier-card__alt { font-size: .95rem; font-weight: 600; color: var(--ink-3); }
.tier-card__list { margin: 2px 0 0; padding-left: 18px; display: flex; flex-direction: column;
  gap: 5px; font-size: 13px; color: var(--ink-2); }
.tier-card__pick { display: none; margin-top: 2px; font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); }
/* default: hide both method sets + tier prices; reveal the ones matching the checked tier */
.methods--code, .methods--kit { display: none; }
.paybox__price--code, .paybox__price--kit { display: none; }
#sel-code:checked ~ .paybox .methods--code,
#sel-kit:checked ~ .paybox .methods--kit { display: grid; }
#sel-code:checked ~ .paybox .paybox__price--code,
#sel-kit:checked ~ .paybox .paybox__price--kit { display: inline; }
/* highlight + mark the selected tier card */
#sel-code:checked ~ .tiers label[for="sel-code"],
#sel-kit:checked ~ .tiers label[for="sel-kit"] {
  border-color: var(--accent-deep); box-shadow: 0 0 0 2px var(--accent); }
#sel-code:checked ~ .tiers label[for="sel-code"] .tier-card__pick,
#sel-kit:checked ~ .tiers label[for="sel-kit"] .tier-card__pick { display: inline-block; }

/* dashboard entitlement list */
.ent-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.ent {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
}
.ent__url { font-family: var(--font-mono); font-size: 13px; word-break: break-all; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* ============================ marketing site (M6) ============================ */
.topbar nav { display: flex; gap: 20px; align-items: center; }

/* page hero variant (pricing / framer-export / vs) — lighter than the home hero */
.hero--page { padding-bottom: 8px; }
.hero--page .btn { margin-top: 22px; }

.h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.1; letter-spacing: -.02em; margin: 0; }
.msection { padding: 54px 0; border-top: 1px solid var(--line); }
.section-head { margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
.more-link { margin-top: 20px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.more-link a { color: var(--accent-deep); }

/* how it works — numbered steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { background: #fff; border: 1.5px solid var(--ink); border-radius: var(--r); padding: 20px; }
.step__n { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--accent-deep); }
.step__k { font-size: 1.05rem; margin: 8px 0 6px; letter-spacing: -.01em; }
.step__v { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.step__v code, .indep__p code { font-family: var(--font-mono); font-size: .9em;
  background: var(--paper-2); padding: 1px 5px; border-radius: 5px; }

/* true-independence dark panel */
.indep { background: var(--console); color: var(--console-ink); border-radius: var(--r);
  padding: 36px 34px; box-shadow: var(--shadow); }
.eyebrow--dark { color: var(--console-dim); }
.eyebrow--dark::before { color: var(--accent); }
.indep__h { font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.12; letter-spacing: -.02em;
  margin: 12px 0 14px; max-width: 22ch; }
.indep__p { margin: 0 0 14px; color: #c8cabb; font-size: 15px; line-height: 1.6; max-width: 62ch; }
.indep__p code { background: var(--console-2); color: var(--console-ink); }
.indep__proof { margin: 0 0 10px; font-family: var(--font-mono); font-size: 13.5px; color: var(--accent); }
.indep__proof b { color: var(--accent); }
.indep__caveat { margin: 0; font-family: var(--font-mono); font-size: 12px; color: var(--console-dim);
  line-height: 1.6; max-width: 70ch; }

/* pricing teasers (home) */
.teasers { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.teaser { display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: inherit;
  background: #fff; border: 1.5px solid var(--ink); border-radius: var(--r); padding: 20px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.teaser:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent-deep); }
.teaser--featured { border-color: var(--accent-deep); box-shadow: 0 0 0 2px var(--accent); }
.teaser__badge, .ptier__badge { align-self: flex-start; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep);
  border: 1px solid var(--accent-deep); border-radius: 999px; padding: 2px 8px; }
.teaser__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2); }
.teaser__price { font-family: var(--font-mono); font-weight: 700; font-size: 1.8rem; letter-spacing: -.02em; }
.teaser__v { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

/* pricing page cards */
.pricing { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); align-items: start; }
.ptier { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1.5px solid var(--ink);
  border-radius: var(--r); padding: 26px 24px; }
.ptier--featured { border-color: var(--accent-deep); box-shadow: 0 0 0 2px var(--accent); }
.ptier__name { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2); }
.ptier__price { font-family: var(--font-mono); font-weight: 700; font-size: 2.2rem; letter-spacing: -.02em; }
.ptier__inr { font-size: 1rem; font-weight: 600; color: var(--ink-3); }
.ptier__tag { margin: 0; font-size: 14px; color: var(--ink-2); }
.ptier__list { margin: 6px 0 4px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ptier__list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink); line-height: 1.45; }
.ptier__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.ptier__cta { margin-top: auto; text-align: center; }

/* comparison table (/vs/) */
.compare { border: 1.5px solid var(--ink); border-radius: var(--r); overflow: hidden; background: #fff; }
.compare__row { display: grid; grid-template-columns: 2fr 80px 2fr; gap: 12px; align-items: center;
  padding: 14px 18px; border-top: 1px solid var(--line); }
.compare__row:first-child { border-top: 0; }
.compare__row--head { background: var(--paper-2); }
.compare__row--head span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-3); }
.compare__feat { font-size: 14px; color: var(--ink); }
.compare__us { text-align: center; }
.compare__us .yes { color: var(--accent-deep); font-size: 1.1rem; }
.compare__them { font-size: 13px; color: var(--ink-3); }

/* checklist (framer-export) */
.checklist { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.checklist li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.checklist li::before { content: "→"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 16px 2px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--accent-deep); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 16px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; max-width: 70ch; }

/* CTA band */
.cta-band { margin: 54px 0 0; padding: 46px 34px; border-radius: var(--r); text-align: center;
  background: var(--console); color: var(--console-ink); }
.cta-band__h { font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -.02em; margin: 0 0 8px; }
.cta-band__p { margin: 0 0 22px; color: #c8cabb; font-size: 15px; }
