/* Liberator landing page — light theme, indigo accent */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #64748b;
  --accent: #4f46e5;
  --accent-dark: #4338ca;
  --accent-soft: #eef2ff;
  --line: #e2e8f0;
  --card: #ffffff;
  --warn-bg: #fffbeb;
  --warn-line: #fcd34d;
  --warn-ink: #92400e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* The `hidden` attribute must always win. The UA stylesheet implements it as
   `[hidden] { display: none }`, which loses to any author `display` rule
   (e.g. `.pair-spinner { display: flex }`) — the element then stays visible
   forever no matter how often JS toggles `.hidden`. This guard restores the
   expected behavior everywhere (2026-09-18: the pairing dialog showed the
   generated code AND the "Generating your code…" spinner at the same time). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  font-family: var(--font);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: #fff; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-faint); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { display: block; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.logo-mark { color: var(--accent); display: inline-flex; }
.logo-text { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 1.1; }
.logo-text em { display: block; font-style: normal; font-weight: 500; font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 78%);
  padding: 72px 0 56px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.hero h1 { font-size: 46px; line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 18px; }
.lede { font-size: 18px; color: var(--ink-soft); margin-bottom: 22px; }
.lede strong { color: var(--ink); }
.hero-points { list-style: none; margin-bottom: 28px; }
.hero-points li { position: relative; padding-left: 30px; margin-bottom: 10px; font-weight: 500; color: var(--ink-soft); }
.hero-points li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 14px; height: 8px;
  border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 44px; font-size: 13.5px; color: var(--ink-faint); text-align: center;
}
.trust-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }

/* Upload card */
.upload-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); padding: 30px; scroll-margin-top: 90px;
}
.upload-card-head h2 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.upload-card-head p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }
.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 2px dashed #c7d2fe; border-radius: var(--radius);
  background: #fafbff; padding: 30px 18px; cursor: pointer; text-align: center;
  color: var(--accent); margin-bottom: 16px; transition: background 0.15s ease, border-color 0.15s ease;
}
.dropzone:hover { background: var(--accent-soft); border-color: var(--accent); }
.dropzone-title { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.dropzone-title code { background: var(--accent-soft); color: var(--accent-dark); padding: 1px 6px; border-radius: 6px; font-size: 14px; }
.dropzone-sub { font-size: 13.5px; color: var(--ink-faint); }
.dropzone-sub u { color: var(--accent); }
.email-field { display: block; margin-bottom: 16px; }
.email-field span { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.email-field input {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: var(--font);
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
.email-field input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.fineprint { margin-top: 12px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 32px; letter-spacing: -0.025em; font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--ink-soft); font-size: 17px; max-width: 680px; margin-bottom: 40px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* Untouched strip */
.untouch { background: var(--ink); color: #fff; padding: 84px 0; }
.eyebrow-light { color: #a5b4fc; }
.untouch .section-title { color: #fff; }
.untouch-sub { color: #cbd5e1; font-size: 17px; max-width: 640px; margin-bottom: 36px; }
.untouch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.untouch-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius); padding: 26px 22px;
}
.untouch-card h3 { font-size: 19px; margin-bottom: 6px; color: #fff; }
.untouch-card p { color: #cbd5e1; font-size: 14.5px; }
.untouch-foot { color: #cbd5e1; font-size: 15px; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px; }
.untouch-foot strong { color: #fff; }

/* Warning callout */
.warning-callout {
  display: flex; gap: 20px; background: var(--warn-bg);
  border: 1px solid var(--warn-line); border-left-width: 6px;
  border-radius: var(--radius); padding: 28px;
}
.warning-icon { color: var(--warn-ink); flex-shrink: 0; margin-top: 2px; }
.warning-callout h2 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink); }
.warning-callout h2 code, .warning-callout p code, .faq-item code {
  background: rgba(15, 23, 42, 0.07); padding: 1px 7px; border-radius: 6px; font-size: 0.88em;
}
.warning-callout p { color: #57534e; font-size: 15px; margin-bottom: 10px; }
.warning-callout p:last-child { margin-bottom: 0; }

/* Scope cards */
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.scope-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.scope-card h3 { font-size: 19px; margin-bottom: 16px; letter-spacing: -0.01em; }
.scope-yes { border-top: 4px solid #16a34a; }
.scope-needs { border-top: 4px solid var(--accent); }
.scope-card ul { list-style: none; }
.scope-card li { position: relative; padding-left: 28px; margin-bottom: 11px; font-size: 14.5px; color: var(--ink-soft); }
.scope-card li strong { color: var(--ink); }
.scope-yes li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
  border-left: 2.5px solid #16a34a; border-bottom: 2.5px solid #16a34a; transform: rotate(-45deg);
}
.scope-needs li::before {
  content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
}
.not-title { margin-top: 26px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; display: flex; flex-direction: column; gap: 10px;
}
.price-featured { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 18px; }
.price { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.price-card p { font-size: 14.5px; color: var(--ink-soft); }
.price-card .btn { margin-top: auto; }
.pricing-note { margin-top: 28px; text-align: center; color: var(--ink-soft); font-size: 15px; }

/* FAQ */
.faq-wrap { max-width: 780px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* Comparison table */
.compare-scroll {
  overflow-x: auto; margin-top: 36px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow);
}
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.compare-table th, .compare-table td { padding: 17px 22px; text-align: left; vertical-align: top; }
.compare-table thead th {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700;
  border-bottom: 2px solid var(--line); white-space: nowrap;
}
.compare-table tbody th { font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.compare-table tbody td { color: var(--ink-soft); }
.compare-table tbody tr + tr > * { border-top: 1px solid var(--line); }
.col-stay-head { color: var(--ink-faint); }
.col-win-head { color: var(--accent-dark); }
.compare-table .col-win { background: var(--accent-soft); font-weight: 500; color: var(--ink); }
.compare-table thead .col-win-head { background: var(--accent-soft); border-radius: 0 12px 0 0; }
.compare-note { margin-top: 22px; font-size: 14px; color: var(--ink-faint); max-width: 720px; }
.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;
}

/* Final CTA */
.cta-final { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); color: #fff; text-align: center; padding: 84px 0; }
.cta-final h2 { font-size: 32px; letter-spacing: -0.025em; margin-bottom: 10px; }
.cta-final p { color: #e0e7ff; font-size: 17px; margin-bottom: 26px; }
.cta-final .btn-primary { background: #fff; color: var(--accent-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.cta-final .btn-primary:hover { background: var(--accent-soft); }

/* Footer */
.footer { background: #0b1120; color: #94a3b8; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer .logo-text { color: #fff; }
.footer-tag { font-size: 14px; margin-top: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 14.5px; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 14.5px; margin-bottom: 6px; }
.footer-contact a { color: #c7d2fe; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 34px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .untouch-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 30px; }
  .lede { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .upload-card { padding: 22px; }
  .warning-callout { flex-direction: column; gap: 12px; padding: 22px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .trust-row .dot { display: none; }
}

/* ---------- New: centered hero ---------- */
.hero-centered { text-align: center; }
.hero-narrow { max-width: 760px; }
.pill {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent-dark);
  background: #fff; border: 1px solid #c7d2fe; border-radius: 999px;
  padding: 7px 18px; margin-bottom: 22px; box-shadow: 0 2px 8px rgba(79, 70, 229, 0.12);
}
.hero-centered .lede { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas-centered { justify-content: center; }
.container.narrow { max-width: 780px; }

/* ---------- New: locked-in two columns ---------- */
.locked-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.locked-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px;
}
.locked-card h3 { font-size: 19px; margin-bottom: 14px; letter-spacing: -0.01em; }
.locked-gives { border-top: 4px solid var(--ink-faint); }
.locked-stays { border-top: 4px solid var(--accent); }
.locked-card p { font-size: 15px; color: var(--ink-soft); }
.locked-card p strong { color: var(--ink); }
.locked-card ul { list-style: none; }
.locked-card li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 15px; color: var(--ink-soft); }
.locked-card li::before {
  content: ""; position: absolute; left: 8px; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent);
}
.locked-foot { margin-top: 28px; font-size: 16.5px; color: var(--ink-soft); max-width: 720px; }
.locked-foot strong { color: var(--ink); }

/* ---------- New: checklist ---------- */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.check-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px 22px 52px; position: relative;
}
.check-item::before {
  content: ""; position: absolute; left: 20px; top: 26px; width: 14px; height: 8px;
  border-left: 3px solid #16a34a; border-bottom: 3px solid #16a34a; transform: rotate(-45deg);
}
.check-item strong { display: block; font-size: 15.5px; margin-bottom: 4px; }
.check-item span { font-size: 13.5px; color: var(--ink-faint); }
.check-foot { margin-top: 28px; font-size: 16px; color: var(--ink-soft); }
.check-foot strong { color: var(--ink); }

/* ---------- New: how-it-works 7 steps ---------- */
.steps-7 { grid-template-columns: repeat(4, 1fr); }
.steps-cta { text-align: center; margin-top: 36px; }

/* ---------- New: benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.benefit-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.benefit-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- New: founder card ---------- */
.founder-card {
  background: var(--card); border: 2px dashed #c7d2fe; border-radius: 18px;
  padding: 40px 36px; text-align: center; box-shadow: var(--shadow);
}
.founder-card p { color: var(--ink-soft); font-size: 16px; max-width: 560px; margin: 0 auto 24px; }

/* ---------- New: modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff; border-radius: 18px; box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
  max-width: 520px; width: 100%; padding: 36px 34px; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 12px; right: 16px; border: 0; background: none;
  font-size: 28px; line-height: 1; cursor: pointer; color: var(--ink-faint); padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }
.modal h2 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 8px; }
.modal-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.modal-what { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.modal-steps { list-style: none; counter-reset: mstep; margin-bottom: 26px; }
.modal-steps li {
  counter-increment: mstep; position: relative; padding-left: 44px; margin-bottom: 16px;
  font-size: 15px; color: var(--ink-soft);
}
.modal-steps li::before {
  content: counter(mstep);
  position: absolute; left: 0; top: 1px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-steps li strong { color: var(--ink); }
.modal-alt { margin-top: 16px; text-align: center; font-size: 14px; color: var(--ink-faint); }
.modal-alt a { color: var(--accent); font-weight: 600; }
.modal-note { font-size: 14px; color: var(--ink-soft); margin: 12px 0; }
.modal-note.small { font-size: 12.5px; }
.pair-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 32px; letter-spacing: 6px; text-align: center;
  background: #f4f5ff; border: 1px dashed var(--accent);
  border-radius: 10px; padding: 14px 8px; margin: 0 0 18px;
}
/* Shown while the device code is still being generated — the code boxes
   only render once the real code arrives, so users never see fake dots. */
.pair-spinner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #f4f5ff; border: 1px dashed var(--accent);
  border-radius: 10px; padding: 18px 8px; margin: 0 0 18px;
  font-size: 15px; color: var(--ink-soft);
}
.spinner {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 3px solid #d7dbff; border-top-color: var(--accent);
  border-radius: 50%; animation: pair-spin 0.8s linear infinite;
}
@keyframes pair-spin { to { transform: rotate(360deg); } }
.pair-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.pair-actions .btn { flex: 1 1 auto; }
.pair-apps { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 18px; max-height: 38vh; overflow-y: auto; }
.pair-app {
  text-align: left; padding: 12px 14px; border-radius: 10px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; font-size: 15px; color: var(--ink);
  font-family: inherit; width: 100%;
  display: flex; gap: 12px; align-items: flex-start;
}
.pair-app.picked { border: 2px solid var(--accent); background: #f4f5ff; padding: 11px 13px; }
.pair-app-icon {
  width: 40px; height: 40px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: #eef0ff; display: flex; align-items: center; justify-content: center;
}
.pair-app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pair-app-icon-fallback { font-weight: 700; font-size: 18px; color: var(--accent); }
.pair-app-body { min-width: 0; }
.pair-app-desc { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.pair-accounts { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 18px; max-height: 38vh; overflow-y: auto; }
.pair-account {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line); background: #fff;
}
.pair-account-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pair-account-info b { font-size: 15px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pair-account.needs-reconnect { border-color: #f59e0b; background: #fffbeb; }
.pair-account-remove {
  border: none; background: none; cursor: pointer; font-size: 22px; line-height: 1;
  color: var(--ink-faint); padding: 6px 8px; border-radius: 8px; flex-shrink: 0;
}
.pair-account-remove:hover { color: #b91c1c; background: #fef2f2; }
.dropzone.dragover { background: var(--accent-soft); border-color: var(--accent); }
.dropzone-progress { height: 8px; border-radius: 999px; background: #eef0ff; overflow: hidden; margin-top: 12px; }
.dropzone-bar { height: 100%; width: 0%; background: var(--accent); border-radius: 999px; transition: width 0.2s ease; }
.zip-error { color: #b91c1c; font-size: 14px; margin: 0 0 12px; }

/* ---------- New responsive ---------- */
@media (max-width: 900px) {
  .locked-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-7 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .check-grid { grid-template-columns: 1fr; }
  .steps-7 { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .founder-card { padding: 30px 22px; }
}
