/* lockstack.net home — Vercel pricing layout, Notion warm-light palette */

:root {
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f6f3;        /* Notion warm off-white */
  --text: #37352f;               /* Notion warm near-black */
  --text-strong: #1f1e1b;
  --text-muted: #787774;         /* Notion muted */
  --border: #e9e9e7;             /* Notion subtle border */
  --border-strong: #d3d1cb;
  --check-fill: #37352f;
}

html, body {
  background: var(--page-bg);
  color: var(--text);
}
body { font-feature-settings: "ss01", "cv11"; }

/* ---------- Nav ---------- */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav-link:hover { color: var(--text-strong); }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--text-strong);
  color: #fff;
  border: 1px solid var(--text-strong);
}
.btn-primary:hover { background: #000; border-color: #000; }
.btn-sm { height: 32px; padding: 0 14px; font-size: 13px; border-radius: 8px; }
.btn-full { width: 100%; height: 42px; font-size: 14px; }
.btn-invert {
  background: #fff;
  color: var(--text-strong);
  border: 1px solid var(--border-strong);
}
.btn-invert:hover { border-color: var(--text-strong); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 56px;
  text-align: center;
}
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--text-strong);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}

/* Toggle */
.toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  gap: 2px;
}
.tog {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.tog:hover { color: var(--text-strong); }
.tog.on {
  background: #fff;
  color: var(--text-strong);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* ---------- Section helpers ---------- */
.section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-align: center;
  color: var(--text-strong);
  line-height: 1.1;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.btn-md { height: 44px; padding: 0 22px; font-size: 14px; border-radius: 10px; }
.hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Wedge pitch section ---------- */
.wedge {
  background: var(--surface-alt);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wedge-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wedge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.wedge-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
}
.wedge-col--good {
  border-color: var(--text-strong);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.wedge-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-alt);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.wedge-tag--good {
  color: #fff;
  background: var(--text-strong);
}
.wedge-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
}
.wedge-row:first-of-type { border-top: none; padding-top: 4px; }
.wedge-row__label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wedge-row__val { color: var(--text); }
.wedge-row__val em { color: var(--text-strong); font-style: italic; }
.wedge-foot {
  text-align: center;
  margin: 32px auto 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
  font-style: italic;
}

/* ---------- Pricing section + toggle hint ---------- */
.pricing-section {
  padding-top: 80px;
}
.pricing-head {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 24px;
  text-align: center;
}
.pricing-head .eyebrow { margin-bottom: 12px; }
.pricing-head .toggle { margin-top: 24px; }
.toggle-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* ---------- Pricing row ---------- */
.pricing-row {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
}

/* Standalone rounded cards (no longer share a unified border) */
.card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.card-featured {
  border-color: var(--text-strong);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  position: relative;
}
.card-featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--text-strong);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}

/* Plan-name with badge */
.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-alt);
  padding: 4px 8px;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 8px;
}

/* Anchor block (Surfer/Frase price comparison inside Global card) */
.anchor-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.anchor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.anchor-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px dashed transparent;
}
.anchor-list li.anchor-self {
  color: var(--text-strong);
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 10px;
}
.anchor-name { font-weight: 500; }
.anchor-price { font-variant-numeric: tabular-nums; }

/* Best-for line */
.best-for { margin-top: auto; padding-top: 24px; }
.best-for-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* System requirements row (full-width, below the cards) */
.req-row {
  max-width: 1100px;
  margin: 0 auto 96px;
  padding: 0 24px;
}
.req-block {
  text-align: center;
  padding: 16px 24px;
  background: var(--surface-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px;
}
.req-label {
  font-weight: 600;
  color: var(--text-strong);
  margin-right: 8px;
}
.req-text { color: var(--text-muted); }

/* What's-in-the-box section */
.box-section {
  padding: 80px 24px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.box-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.box-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}
/* Premium polish pass — 29 Apr 2026.
   Multi-layer shadow stacks (inset highlight + ambient drop + sharp 1px),
   subtle vertical gradient on the white cells, hover lift, tighter
   typography, and tabular numerics with stylistic-set features. This is
   the Vercel/Linear/Stripe vocabulary for "premium" — single-flat-fill
   rectangles read as Bootstrap default, layered surfaces read as designed. */
.box-cell {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 40px;
  min-width: 180px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
.box-cell:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 8px rgba(15, 23, 42, 0.06),
    0 16px 40px rgba(15, 23, 42, 0.08);
}
.box-cell--big {
  border-color: #1f1e1b;
  background: linear-gradient(180deg, #1f1e1b 0%, #0f0e0c 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.18);
}
.box-cell--big:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 4px 8px rgba(0, 0, 0, 0.14),
    0 20px 48px rgba(0, 0, 0, 0.22);
}
.box-cell--big .box-num { color: #fff; }
.box-cell--big .box-lbl { color: rgba(255, 255, 255, 0.6); letter-spacing: 0.02em; }
.box-num {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "ss01", "tnum";
}
.box-lbl {
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  text-transform: lowercase;
}
.box-cross,
.box-eq {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.45;
}
.formats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.format-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13.5px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 1px rgba(15, 23, 42, 0.03);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.format-chip:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 4px rgba(15, 23, 42, 0.06);
}

/* Privacy section */
.privacy-section {
  padding: 80px 24px;
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.privacy-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.privacy-list li:first-child { border-top: none; }
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%2337352f'/><path d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.privacy-list code {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-strong);
}

/* Final CTA section */
.final-cta {
  text-align: center;
  padding: 80px 24px 40px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}
.final-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.card-head { margin-bottom: 24px; }
.plan-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text-strong);
}
.plan-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  min-height: 42px;            /* reserves 2 lines so all cards align */
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  min-height: 56px;            /* lock price-row height */
}
.price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  line-height: 1;
}
.price-term {
  font-size: 14px;
  color: var(--text-muted);
}

/* Button sits in a fixed-height slot so all three align horizontally */
.card .btn-full { margin-bottom: 28px; }

/* First feat-title ("What's included" / "Everything in X, plus") sits here.
   Everything from here down is the variable middle. */
.feat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
/* Pro-tier upgrade headline — sky-800 (#075985) — chosen for "smart blue"
   feel (29 Apr 2026 final). Replaces the earlier `#64748b` slate, which read
   too tired/desaturated. Sky-800 is in the same family as the PRO chip text
   (`#0369a1`, sky-700) but a notch deeper, so the headline has presence
   without competing with the chip color. Multiple selector specificity
   layers + !important to win against any cascade conflict; descendant `*`
   restated so a stray <span> can't drag it back to `--text-strong`. */
.card .feat-block .feat-title.feat-title--upgrade,
.feat-title.feat-title--upgrade,
.feat-title--upgrade {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #075985 !important;
}
.feat-title.feat-title--upgrade *,
.feat-title--upgrade * {
  color: #075985 !important;
}
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
}
.feat-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%2337352f'/><path d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.feat-list.muted li { color: var(--text-muted); }
.feat-list.muted li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='7.5' fill='none' stroke='%23d3d1cb' stroke-width='1'/></svg>");
}

/* Push the "Requires" block to the bottom of every card so they align */
.req-title {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.req-list li { padding-top: 4px; padding-bottom: 4px; }

/* ---------- Compare table ---------- */
.compare {
  max-width: 1152px;
  margin: 0 auto 96px;
  padding: 0 24px;
}
.compare-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-align: center;
  color: var(--text-strong);
  line-height: 1.1;
}
.compare-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-tbl th,
.compare-tbl td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.compare-tbl tr:last-child td,
.compare-tbl tr:last-child th { border-bottom: none; }
.compare-tbl thead th {
  font-weight: 600;
  color: var(--text-strong);
  background: var(--surface-alt);
  font-size: 13px;
}
.compare-tbl .th-row {
  color: var(--text-muted);
  font-weight: 400;
  width: 34%;
}
.th-featured { color: var(--text-strong); }
.chk { color: var(--text-strong); font-weight: 600; }

/* Row-hover scan-aid — subtle warm tint follows the cursor down the table.
   Text on the row darkens to feel "active" without breaking colour rhythm. */
.compare-tbl tbody tr {
  transition: background-color .12s ease;
}
.compare-tbl tbody tr:hover {
  background: var(--surface-alt);
}
.compare-tbl tbody tr:hover td { color: var(--text-strong); }
.compare-tbl tbody tr:hover .th-row { color: var(--text-strong); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 768px;
  margin: 0 auto 120px;
  padding: 96px 24px 0;
}
.faq-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
  text-align: center;
  color: var(--text-strong);
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-strong);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}
.foot-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--text-strong); }
.foot-right { display: flex; gap: 24px; }
.foot-right a:hover { color: var(--text-strong); }

/* ---------- How-It-Works section ---------- */
.how-section {
  padding: 96px 24px;
  background: var(--page-bg);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.how-section .eyebrow { margin-bottom: 12px; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  text-align: left;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-step-num {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-muted);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
/* min-height sized for the longest description (4 lines @ 14px/1.55) so all
   three heads occupy the same vertical band — combined with `.how-mock`'s
   `margin-top: auto` below, every mock starts at the same y-coordinate. */
.how-step-head { min-height: 132px; }
.how-step-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.how-step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================== */
/* Mockup window — pixel-matched to the actual LOCAL/GLOBAL app    */
/* Background: brand --bg-main #07091a · cyan hint #3399FF         */
/* Crimson primary #d62a3c · indigo accent #6366f1                  */
/* Windows-native title bar (no macOS dots)                         */
/* ============================================================== */
.how-mock {
  background: #07091a;
  border: 1px solid #1a1f3a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  color: #f8fafc;
  font-size: 11px;
  min-height: 420px;
  /* Push all three mockups to the bottom of their flex-column so they share
     a single horizontal baseline regardless of how many lines the head
     description wraps to. Without this, a 3-line desc + a 4-line desc made
     mocks start at different y-coordinates. */
  margin-top: auto;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Windows-native title bar — chevron icon left, app name, win buttons right */
.mock-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 0 0 10px;
  background: #050714;
  border-bottom: 1px solid #1a1f3a;
}
.mock-titlebar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-tb-icon { flex-shrink: 0; }
.mock-tb-text {
  font-size: 11px;
  color: #cbd5e1;
  font-weight: 400;
}
.mock-titlebar-right {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.mock-win-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  font-size: 10px;
  color: #94a3b8;
  height: 100%;
}
.mock-win-btn.close:hover { background: #d62a3c; color: #fff; }

/* ===== Step 1 — Form mockup ===== */
.mock-body--form {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}
.mock-field { display: flex; flex-direction: column; gap: 4px; }
.mock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-required {
  display: inline-block;
  background: #d62a3c;
  color: #fff;
  font-size: 8px;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.mock-input {
  background: #0e1426;
  border: 1px solid #1f253f;
  padding: 7px 10px;
  border-radius: 5px;
  color: #f8fafc;
  font-size: 11px;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  letter-spacing: 0.02em;
}
.mock-hint {
  font-size: 10px;
  color: #3399FF;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.mock-cta {
  margin-top: auto;
  padding: 11px;
  background: #d62a3c;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ===== Step 2 — Posts list mockup ===== */
.mock-body--list {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}
.mock-postlist-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #94a3b8;
  padding: 0 4px 6px;
  border-bottom: 1px solid #1a1f3a;
}
.mock-postlist-head strong { color: #f8fafc; }
.mock-postcard {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-postcard.done {
  background: rgba(255,255,255,0.02);
  border-color: #14182b;
}
.mock-postcard.active {
  background: rgba(214, 42, 60, 0.08);
  border: 1px solid #2a1620;
  border-left: 3px solid #d62a3c;
  padding-left: 8px;
}
.mock-pc-row1 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-pc-idx {
  color: #6366f1;
  font-weight: 700;
  font-size: 13px;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-variant-numeric: tabular-nums;
}
.mock-pc-check {
  color: #6366f1;
  font-weight: 700;
  font-size: 11px;
}
.mock-pc-slug {
  font-size: 10px;
  color: #475569;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  letter-spacing: 0.01em;
}
.mock-pc-title {
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.4;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Step 3 — Download mockup ===== */
.mock-body--dl {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mock-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 2px;
}
.mock-dl-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mock-dl-btn {
  background: #c6d6f5;
  color: #0f172a;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
.mock-dl-btn.primary {
  background: #95acdc;
  color: #0f172a;
}
.mock-toast {
  margin-top: auto;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid #d62a3c;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.mock-toast-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.mock-toast-path {
  font-size: 10px;
  color: #cbd5e1;
  font-family: ui-monospace, Consolas, monospace;
  word-break: break-all;
  margin-bottom: 6px;
  line-height: 1.4;
}
.mock-toast-action {
  font-size: 10px;
  color: #fda4af;
  font-weight: 600;
}

/* Full-walkthrough CTA */
.how-cta {
  margin-top: 56px;
  padding: 36px 28px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.how-cta-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.how-cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.55;
}
.how-cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Footer (expanded) ---------- */
.foot {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 24px 32px;
}
.foot-tagline {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}
.foot-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.foot-col a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color .15s;
}
.foot-col a:hover { color: var(--text-strong); }

/* ---------- Reality-check section ---------- */
/* Two-column honest qualifier (LOCAL / GLOBAL).
   Visual identity matches .wedge / .compare / .box-section:
   surface-alt background, white card columns, Notion-tone borders. */
.reality-check {
  background: var(--surface-alt);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rc-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.reality-check .eyebrow { margin-bottom: 12px; }
.reality-check .section-sub { margin-bottom: 0; }

.rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.rc-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.rc-col:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Featured (right-column) variant — subtle warm cream tint mirrors the
   "Recommended" pattern in enterprise.html so GLOBAL reads as the higher
   tier without screaming. Slightly stronger border keeps it grounded. */
.rc-col--featured {
  background: #fdfbf6;
  border-color: var(--border-strong);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
.rc-col--featured:hover {
  border-color: var(--text-strong);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.rc-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--text-strong);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.rc-tag--featured {
  background: var(--text-strong);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.rc-col-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0 0 22px;
  line-height: 1.3;
}

.rc-block { margin-bottom: 22px; }
.rc-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.rc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rc-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.rc-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%2337352f'/><path d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.rc-list--circle li { color: var(--text-muted); }
.rc-list--circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='7.2' fill='none' stroke='%23d3d1cb' stroke-width='1.2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.rc-fit {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rc-fit p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.rc-fit p:last-child { margin-bottom: 0; }
.rc-fit p strong {
  color: var(--text-strong);
  font-weight: 600;
}
.rc-fit-good strong { color: var(--text-strong); }
.rc-fit-bad strong  { color: var(--text-strong); }

.rc-foot {
  text-align: center;
  margin: 36px auto 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.7;
  padding: 0 12px;
}
.rc-foot strong {
  color: var(--text-strong);
  font-weight: 600;
}

/* ---------- Pro upgrade strip ---------- */
.pro-strip {
  background: var(--surface-alt);
  padding: 72px 24px;
  border-top: 1px solid var(--border);
}
.pro-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.pro-strip-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.pro-strip-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 48px;
  letter-spacing: -.02em;
}
.pro-strip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.pro-strip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
}
.pro-strip-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-strong);
  margin-bottom: 18px;
}
.pro-strip-feature {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pro-strip-hook {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.pro-strip-footer {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.pro-strip-link {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pro-strip-link:hover { color: var(--text-strong); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pricing-row { grid-template-columns: 1fr; }
  .wedge-grid { grid-template-columns: 1fr; }
  .rc-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-step-head { min-height: 0; }
  .req-title { margin-top: 24px; }
  .compare-tbl th, .compare-tbl td { padding: 12px 14px; font-size: 13px; }
  .pro-strip-cards { grid-template-columns: 1fr; }
  .box-grid { gap: 12px; }
  .box-cell { padding: 20px 24px; min-width: 140px; }
  .box-num { font-size: 42px; }
  .box-cross, .box-eq { font-size: 28px; }
  .card-featured::before { right: 16px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .foot { flex-direction: column; }
  .foot-cols { gap: 32px; }
  .foot-tagline { display: none; }
}
