/* Woonbot · Resync — light, warm, conversion-focused
   Self-contained: no external fonts (CSP).
   System sans-serif body, monospace for labels/technical.
*/

:root {
  --bg:          #f5f3ee;   /* warm cream page background */
  --bg-2:        #ffffff;   /* card / surface white */
  --ink:         #1a1814;   /* primary text */
  --beige:       #1a1814;   /* headings & strong links (repurposed) */
  --beige-2:     #47443c;   /* secondary text */
  --muted:       #7c786f;   /* muted / placeholder */
  --line:        #ddd8ce;   /* borders */
  --accent:      #c9a14d;   /* amber — Resync brand */
  --accent-dark: #a07830;   /* amber hover */
  --danger:      #c73831;
  --ok:          #2a7a49;
  --warn:        #b97808;
  --radius:      12px;
  --shadow:      0 1px 3px rgba(26,24,20,.06), 0 4px 16px rgba(26,24,20,.05);
  --shadow-sm:   0 1px 2px rgba(26,24,20,.05);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }

h1, h2, h3 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: 1.9rem; margin: 0 0 1rem; }
h2 { font-size: 1.2rem; margin: 0 0 0.65rem; }

/* ─── Top bar ──────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: rgba(245,243,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: none;
  text-decoration: none;
}
.brand-wordmark {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-wordmark::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.brand-sub {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  border-left: 1px solid var(--line);
  padding-left: 0.5rem;
  margin-left: 0.1rem;
}

.topnav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.85rem;
}
.topnav a, .topnav .linkish {
  color: var(--muted);
  border-bottom: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.topnav a:hover, .topnav .linkish:hover { color: var(--ink); }

.topnav a.cta {
  background: var(--ink);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  border: none;
}
.topnav a.cta:hover { background: var(--accent-dark); color: #fff; }

/* Logout form sits inline in the nav — no margins, no block layout */
.topnav-form {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.topnav-form button { margin: 0; }

.inline { display: inline; }

/* ─── Page ─────────────────────────────────────────────────── */

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

/* ─── Flash messages ────────────────────────────────────────── */

.flashes { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.flash {
  padding: 0.8rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}
.flash-success { border-left-color: var(--ok); }
.flash-error   { border-left-color: var(--danger); }
.flash-info    { border-left-color: #a0c0e0; }

/* ─── Hero (inner pages) ────────────────────────────────────── */

.hero { margin-bottom: 2.5rem; }
.hero.compact { margin-bottom: 1.5rem; }

.eyebrow {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 620px;
}
.lede {
  color: var(--beige-2);
  max-width: 56ch;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
.badges strong { color: var(--ink); }

/* ─── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-block;
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-bottom: none;
  line-height: 1.3;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #2e2a22; color: #fff; }
.btn-ghost {
  background: var(--bg-2);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-2); }
.btn-lg { padding: 0.8rem 1.5rem; font-size: 0.95rem; }

.linkish {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}
.linkish.danger { color: var(--danger); }

/* ─── Cards ─────────────────────────────────────────────────── */

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card.warn { border-color: var(--warn); background: #fffcf5; }

.howbox h2 { margin-top: 2rem; }
.howbox ol {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--beige-2);
  padding-left: 1.5rem;
}

/* ─── Forms ─────────────────────────────────────────────────── */

form label {
  display: block;
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
form input, form select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.12s;
}
form input:focus, form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,161,77,0.15);
}
.page form button { margin-top: 1.5rem; }

.hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.err {
  color: var(--danger);
  font-size: 0.82rem;
  margin: 0.4rem 0 0;
  font-weight: 500;
}
.alt  { margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); }
.sub  { color: var(--muted); margin: 0 0 0.5rem; font-size: 0.9rem; }

/* ─── Status ────────────────────────────────────────────────── */

.status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.status-ok   { background: rgba(42,122,73,.1);  color: var(--ok); }
.status-warn { background: rgba(185,120,8,.1);  color: var(--warn); }

/* ─── Platform list ─────────────────────────────────────────── */

.platform-list {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.platform-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 1rem;
}
.platform {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 600;
  font-size: 0.88rem;
  margin-right: 0.6rem;
}

/* ─── Grid ──────────────────────────────────────────────────── */

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

/* ─── Plan cards ────────────────────────────────────────────── */

.plan-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.plan-card {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.1rem 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.12s, box-shadow 0.12s;
  box-shadow: var(--shadow-sm);
}
.plan-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.plan-card:hover { border-color: var(--ink); }
.plan-card:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: #fffcf5;
  box-shadow: 0 0 0 3px rgba(201,161,77,0.15);
}
.plan-label {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.plan-price { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.plan-sub {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  color: var(--muted);
}

/* ─── Terms consent ─────────────────────────────────────────── */

.terms-consent {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}
.checkbox-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--beige-2);
  line-height: 1.55;
}
.checkbox-label input[type="checkbox"] {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ─── Terms page ────────────────────────────────────────────── */

.terms h2 { margin-top: 2.25rem; font-size: 1rem; font-weight: 700; }
.terms h3 { margin-top: 1.25rem; font-size: 0.92rem; font-weight: 600; color: var(--beige-2); }
.terms p  { color: var(--beige-2); font-size: 0.9rem; line-height: 1.7; margin-top: 0.6rem; }

/* ─── Credential header ─────────────────────────────────────── */

.cred-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.cred-header h2 { margin: 0; }

/* ─── Landing page hero ─────────────────────────────────────── */

.lp-hero {
  padding: 4.5rem 0 3.5rem;
  max-width: 700px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}
.lp-sub {
  font-size: 1.05rem;
  color: var(--beige-2);
  max-width: 58ch;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.lp-sub-sm {
  color: var(--beige-2);
  font-size: 0.97rem;
  margin: 0.25rem 0 2rem;
  max-width: 58ch;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-row span { white-space: nowrap; }

/* ─── Urgency bar ───────────────────────────────────────────── */

.urgency-bar {
  background: #fff8ed;
  border: 1px solid #f0d9a8;
  border-radius: var(--radius);
  padding: 0.8rem 1.25rem;
  margin-bottom: 3.5rem;
  font-size: 0.85rem;
  color: #7a5a10;
  text-align: center;
  font-weight: 500;
}

/* ─── Landing page sections ─────────────────────────────────── */

.lp-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}
.section-num {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.lp-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.6rem;
}

/* ─── Problem grid ──────────────────────────────────────────── */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.problem-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.problem-icon { display: block; font-size: 1.6rem; margin-bottom: 0.75rem; }
.problem-item h3 { font-size: 0.95rem; margin: 0 0 0.4rem; }
.problem-item p  { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── Steps ─────────────────────────────────────────────────── */

.steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--line);
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 1rem 1.1rem 0;
  margin-left: -1px;
  border-left: 2px solid transparent;
}
.step:hover { border-left-color: var(--accent); }
.step-num {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: -1.15rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 0.97rem; margin: 0 0 0.35rem; }
.step p  { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── Pricing ───────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: #fffcf5;
  box-shadow: 0 4px 20px rgba(201,161,77,0.15);
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin: 0 0 0.75rem;
  width: fit-content;
}
.pricing-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.35rem 0 1.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--beige-2);
  flex-grow: 1;
}
.pricing-btn { width: 100%; text-align: center; }

/* ─── Security grid ─────────────────────────────────────────── */

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.security-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.security-item h3 { font-size: 0.92rem; margin: 0 0 0.4rem; }
.security-item p  { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── Registration source question ─────────────────────────── */

.source-fieldset {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-top: 1.25rem;
}
.source-fieldset legend {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0.25rem;
}
.source-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0.7;
}
.source-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  margin-top: 0.6rem;
}
.source-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--beige-2);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}
.source-option input[type="radio"] {
  width: auto;
  display: inline;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* ─── Reaction progress bar ─────────────────────────────────── */

.reaction-progress { }
.reaction-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.reaction-count {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 700;
  color: var(--ink);
}
.reaction-bar {
  display: flex;
  gap: 4px;
  height: 10px;
}
.reaction-segment {
  flex: 1;
  border-radius: 3px;
  background: var(--line);
  transition: background 0.2s;
}
.reaction-segment--filled { background: var(--ok); }
.reaction-hint {
  font-size: 0.8rem;
  margin: 0.4rem 0 0;
}

/* ─── Guarantee banner ───────────────────────────────────────── */

.guarantee-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(42,122,73,0.06);
  border: 1.5px solid rgba(42,122,73,0.2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--beige-2);
  line-height: 1.55;
}
.guarantee-icon { font-size: 1.4rem; flex-shrink: 0; }
.guarantee-banner strong { color: var(--ink); }
.guarantee-banner a { color: var(--ok); border-bottom-color: rgba(42,122,73,0.3); }

/* ─── Points grid (dashboard) ───────────────────────────────── */

.points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.points-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 120px;
}
.points-item--main {
  border-color: var(--accent);
  background: #fffcf5;
}
.points-item--main .points-value { color: var(--accent-dark); }
.points-label {
  font-size: 0.72rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.points-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ─── Breach callout ────────────────────────────────────────── */

.breach-callout {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: #fff8ed;
  border: 1.5px solid #f0d9a8;
  border-radius: var(--radius);
}
.breach-callout h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: #7a5a10;
}
.breach-callout p {
  font-size: 0.88rem;
  color: #5a4510;
  line-height: 1.65;
  margin: 0 0 0.6rem;
}
.breach-callout p:last-child { margin-bottom: 0; }

/* ─── FAQ ───────────────────────────────────────────────────── */

.faq {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.1s;
}
.faq-item summary:hover { background: var(--bg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after  { content: "−"; color: var(--accent); }
.faq-item[open] summary { color: var(--accent); background: #fffcf5; }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--beige-2);
  line-height: 1.7;
  background: #fffcf5;
}
.faq-item p a { color: var(--accent-dark); border-bottom-color: var(--accent); }

/* ─── Final CTA ─────────────────────────────────────────────── */

.lp-cta-final {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.lp-cta-final h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
.lp-cta-final > p {
  color: var(--beige-2);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.lp-cta-hint {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 1rem !important;
  letter-spacing: 0.02em;
}
.lp-made-by {
  text-align: center;
  padding: 1rem 0 0;
  font-size: 0.77rem;
  color: var(--muted);
}
.lp-made-by a { color: var(--muted); border-bottom-color: var(--line); }
.lp-made-by a:hover { color: var(--accent-dark); }

/* ─── Footer ────────────────────────────────────────────────── */

.bottombar {
  border-top: 1px solid var(--line);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  color: var(--muted);
}
.bottombar a { color: var(--muted); border-bottom-color: var(--line); }
.bottombar a:hover { color: var(--ink); }

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { order: -1; }
}

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .page { padding: 2rem 1.25rem 4rem; }
  .lp-hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.65rem; }
  .bottombar { flex-direction: column; gap: 0.35rem; font-size: 0.73rem; }
}

/* Mobile nav — keep topbar on one line, hide secondary items */
@media (max-width: 600px) {
  .topbar {
    padding: 0 0.9rem;
    height: 52px;
  }
  .brand-sub { display: none; }
  .topnav { gap: 0.75rem; font-size: 0.8rem; }
  /* Hide koppelingen + abonnement on mobile — accessible from dashboard */
  .topnav-secondary { display: none; }
  .topnav a.cta { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .topnav-faq { display: none; }
  .trust-row span:nth-child(n+3) { display: none; }
  .lp-hero h1 { font-size: 1.75rem; }
  .plan-grid { flex-direction: column; }
  .plan-card { min-width: unset; }
}
