/* BorderFolio.app — static landing styles
   Dark premium system ported from the app (no build step). */

:root {
  --bg: #09090B;
  --panel: #111113;
  --panel-2: #131316;
  --alt: #0D0D0F;
  --accent: #8B5CF6;
  --accent-2: #A78BFA;
  --accent-hover: #7C3AED;
  --text: rgba(255, 255, 255, 0.95);
  --text-2: rgba(255, 255, 255, 0.5);
  --text-3: rgba(255, 255, 255, 0.35);
  --muted: rgba(255, 255, 255, 0.2);
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.08);
  --red: #F87171;
  --red-soft: #F0999B;
  --maxw: 1200px;
  --wrap: 1100px;
  /* Unified premium card surface — one look for every mockup / card */
  --card-bg: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  --card-border: rgba(255,255,255,0.08);
  --card-radius: 18px;
  --card-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 24px 60px -28px rgba(0,0,0,0.85);
  --card-shadow-hover: 0 1px 0 rgba(255,255,255,0.07) inset, 0 32px 70px -26px rgba(0,0,0,0.9);
  --accent-soft: rgba(139,92,246,0.5);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.tnum { font-variant-numeric: tabular-nums; }

/* ── Layout helpers ─────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }
.narrow { max-width: 720px; }
.section { padding: 96px 24px; }
.section-alt { background: var(--alt); }
.center { text-align: center; }

/* ── Launch announcement bar ────────────────────────────────── */
.announce {
  background: linear-gradient(90deg, rgba(139,92,246,0.16), rgba(139,92,246,0.06));
  border-bottom: 1px solid rgba(139,92,246,0.18);
}
.announce .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  text-align: center;
}
.announce-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(139,92,246,0.22);
  color: #C4B5FD;
}
.announce-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
}
.announce-text b { color: rgba(255,255,255,0.92); font-weight: 600; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50; height: 52px;
  display: flex; align-items: center;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; color: rgba(255,255,255,0.9); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 150ms; }
.nav-links a:hover { color: rgba(255,255,255,0.75); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 150ms; }
.nav-signin:hover { color: rgba(255,255,255,0.75); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font-family: inherit; transition: background 150ms ease, box-shadow 150ms ease, border-color 150ms ease, color 150ms ease; }
.btn-primary { background: var(--accent); color: #fff; font-weight: 500; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 16px rgba(139,92,246,0.3); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.btn-sm { font-size: 13px; padding: 8px 18px; border-radius: 8px; }
.btn-md { font-size: 14px; padding: 14px 32px; border-radius: 10px; }
.btn-lg { font-size: 14px; padding: 14px 32px; border-radius: 10px; }

/* ── Section micro-typography ───────────────────────────────── */
.kicker { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); }
.headline { margin-top: 14px; font-size: 40px; font-weight: 500; color: #fff; line-height: 1.08; letter-spacing: -0.02em; }
.headline .hl { color: var(--accent); }
.sub { margin-top: 18px; font-size: 15px; color: var(--text-2); line-height: 1.6; max-width: 46ch; }
.sub.mx { margin-left: auto; margin-right: auto; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero .wrap { display: flex; align-items: center; gap: 80px; padding-top: 120px; padding-bottom: 100px; }
.hero-left { max-width: 500px; flex-shrink: 0; width: 100%; }
.hero-h1 { font-size: 40px; font-weight: 600; color: rgba(255,255,255,0.95); letter-spacing: -0.03em; line-height: 1.15; }
.hero-h1 .hl { color: var(--accent); }
.hero-p { font-size: 16px; color: var(--text-3); line-height: 1.6; max-width: 440px; margin-top: 24px; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-fine { font-size: 12px; color: var(--muted); margin-top: 16px; }
.hero-right { flex: 1; width: 100%; max-width: 520px; }

/* ── Unified premium card surface ───────────────────────────── */
/* Every mockup / card shares one look: subtle top-lit gradient, hairline
   border, soft deep shadow, consistent rounding. */
.mock, .depth-card, .leak-card, .scenario, .feature-card, .price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* ── Product mockup (hero + snapshots) ──────────────────────── */
.mock { position: relative; padding: 26px 28px 22px; }
.mock-eyebrow { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mock-metric { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.mock-value { font-size: 42px; font-weight: 600; letter-spacing: -0.03em; color: rgba(255,255,255,0.95); line-height: 1; }
.mock-denom { font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.18); }
.mock-track { margin-top: 18px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; }
.mock-fill { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 8px rgba(139,92,246,0.35); }
.mock-hints { margin-top: 10px; display: flex; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.28); }
.mock-accent { color: rgba(139,92,246,0.6); font-weight: 500; }
.mock-stats { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.mock-basis { font-size: 12px; color: rgba(255,255,255,0.28); }
.mock-stat-group { display: flex; gap: 20px; }
.mock-stat { text-align: right; }
.mock-stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.22); }
.mock-stat-val { margin-top: 3px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); }
.mock-stat-val.gain { color: rgba(74,222,128,0.7); }

/* ── Trust bar ──────────────────────────────────────────────── */
.trust { background: var(--alt); padding: 56px 24px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; }
.beta-badge { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 6px; background: rgba(139,92,246,0.12); color: rgba(139,92,246,0.9); }
.trust-text { font-size: 14px; color: rgba(255,255,255,0.55); }
.trust-sm { font-size: 13px; color: var(--muted); }
.trust-dot { color: rgba(255,255,255,0.12); }

/* ── Cards / grid ───────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
/* .depth-card surface comes from the unified card rule above. */

/* ── Milestone planner ──────────────────────────────────────── */
.scenarios { max-width: 900px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scenario { padding: 24px; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.scenario:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); border-color: rgba(255,255,255,0.12); }
.scenario--rec { border-color: rgba(139,92,246,0.35); box-shadow: var(--card-shadow), 0 0 0 1px rgba(139,92,246,0.25); }
.scenario--rec:hover { box-shadow: var(--card-shadow-hover), 0 0 0 1px rgba(139,92,246,0.4); }
.scenario-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.scenario--rec .scenario-tag { color: var(--accent); }
.scenario-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.scenario-desc { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.scenario-foot { padding-top: 16px; border-top: 1px solid var(--line); }
.scenario-result { font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.9); }
.scenario--rec .scenario-result { color: var(--accent); }
.scenario-sub { margin-top: 2px; font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── Tax spotlight ──────────────────────────────────────────── */
.tax-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checks { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; list-style: none; }
.checks li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.checks li.lead { color: rgba(255,255,255,0.92); font-weight: 500; }
.check-ico { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: var(--accent); }
.leak-card { padding: 28px 30px; }
.leak-head { display: flex; align-items: center; justify-content: space-between; }
.microlabel { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.4); }
.pill { display: inline-flex; align-items: center; gap: 5px; border-radius: 9999px; background: rgba(255,255,255,0.05); padding: 5px 11px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); }

/* Hero — lead with the win */
.leak-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.leak-big { display: flex; align-items: baseline; gap: 8px; }
.leak-num { font-size: 46px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; background: linear-gradient(135deg, #C4B5FD, var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.leak-unit { font-size: 13px; color: rgba(255,255,255,0.4); }
.leak-chip { font-size: 11px; font-weight: 500; padding: 5px 11px; border-radius: 9999px; background: rgba(139,92,246,0.1); color: rgba(167,139,250,0.9); white-space: nowrap; }

/* The switch — VT → VWRA */
.leak-switch { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.025); border: 1px solid var(--line); flex-wrap: wrap; }
.switch-side { display: flex; flex-direction: column; gap: 3px; }
.switch-ticker { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: rgba(255,255,255,0.55); }
.switch-side--to .switch-ticker { color: var(--accent-2); }
.switch-sub { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); }
.switch-arrow { width: 18px; height: 18px; flex-shrink: 0; color: rgba(255,255,255,0.22); }
.switch-tax { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; }
.switch-tax-from { color: rgba(248,113,113,0.75); text-decoration: line-through; text-decoration-color: rgba(248,113,113,0.35); }
.switch-tax svg { color: rgba(255,255,255,0.25); }
.switch-tax-to { color: var(--accent-2); font-weight: 600; }

/* Cost-of-switch plate */
.leak-cost { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 12px 16px; border-radius: 12px; background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.16); }
.leak-cost-ico { width: 18px; height: 18px; flex-shrink: 0; color: rgba(74,222,128,0.8); }
.leak-cost-l { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.leak-cost-v { margin-top: 3px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); font-variant-numeric: tabular-nums; }
.leak-cost-sub { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); }

/* Comparison bars */
.bars { margin-top: 22px; display: flex; flex-direction: column; gap: 15px; }
.bar-row-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.bar-label { font-size: 12px; color: rgba(255,255,255,0.45); }
.bar-val { font-size: 13px; font-weight: 600; }
.bar-val.red { color: var(--red); }
.bar-val.violet { color: var(--accent-2); }
.bar-unit { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.3); margin-left: 1px; }
.bar-track { height: 7px; border-radius: 9999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 9999px; }
.bar-fill.red { background: linear-gradient(90deg, #EF4444, #F87171); }
.bar-fill.violet { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.leak-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.leak-foot-l { font-size: 12px; color: rgba(255,255,255,0.4); }
.badge-red { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 6px; color: var(--red); background: rgba(239,68,68,0.1); }

/* ── Monthly plan ───────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 16px; align-items: stretch; }
.plan-head { padding: 20px 28px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.plan-microlabel { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: rgba(255,255,255,0.35); }
.plan-amt { font-size: 32px; font-weight: 500; line-height: 1; color: rgba(255,255,255,0.95); }
.plan-imp { display: inline-flex; align-items: baseline; gap: 8px; padding: 8px 14px; background: rgba(139,92,246,0.08); border-radius: 9999px; }
.plan-imp .l { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(139,92,246,0.55); }
.plan-imp .v { font-size: 14px; font-weight: 500; color: rgba(139,92,246,0.85); }
.plan-table { width: 100%; border-collapse: collapse; }
.plan-table th { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.18); text-align: left; padding: 12px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-table th.r, .plan-table td.r { text-align: right; }
.plan-table td { padding: 10px 28px; font-size: 13px; }
.plan-ticker { font-weight: 500; color: rgba(255,255,255,0.7); }
.plan-amt-cell { font-weight: 500; color: rgba(255,255,255,0.5); }
.plan-inc { font-weight: 500; color: rgba(139,92,246,0.8); }
.plan-inc.none { color: rgba(255,255,255,0.15); }
.plan-foot { padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255,255,255,0.04); }
.plan-foot-l { font-size: 12px; color: rgba(255,255,255,0.2); }
.why { padding: 24px; display: flex; flex-direction: column; }
.why-label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.fund-chip { flex-shrink: 0; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 5px; background: rgba(139,92,246,0.1); color: rgba(139,92,246,0.85); }
.why-item p { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.5); }
.disclaimer { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── Snapshots mockup ───────────────────────────────────────── */
.snap { padding: 22px 24px; }
.snap-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.snap-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.95); }
.snap-ytd { text-align: right; }
.snap-ytd-val { margin-top: 3px; font-size: 13px; font-weight: 600; color: rgba(74,222,128,0.8); }
.snap-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.snap-stat .mock-stat-label { margin-bottom: 6px; }
.snap-stat-val { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.92); }
.snap-stat-val.gain { color: rgba(74,222,128,0.8); }
.snap-rows { margin-top: 6px; }
.snap-row { position: relative; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.snap-row:last-child { border-bottom: none; }
.snap-month { font-size: 12px; color: rgba(255,255,255,0.55); }
.snap-val { font-size: 12px; color: rgba(255,255,255,0.75); text-align: right; }
.snap-chg { justify-self: end; font-size: 11px; font-weight: 600; color: rgba(74,222,128,0.9); padding: 2px 8px; border-radius: 9999px; background: rgba(74,222,128,0.1); }
.snap-row--current { background: linear-gradient(90deg, rgba(139,92,246,0.08), transparent 55%); }
.snap-row--current::before { content: ""; position: absolute; left: -12px; top: 7px; bottom: 7px; width: 2px; border-radius: 2px; background: var(--accent); }
.snap-row--current .snap-month { color: rgba(255,255,255,0.95); font-weight: 500; }

/* ── Two-column feature blocks (contribution / snapshots / mobile) ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.feat-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* ── Feature grid ───────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { padding: 28px; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); border-color: rgba(255,255,255,0.12); }
.feature-ico { width: 36px; height: 36px; border-radius: 8px; background: rgba(139,92,246,0.1); display: flex; align-items: center; justify-content: center; color: rgba(139,92,246,0.7); margin-bottom: 20px; }
.feature-ico svg { width: 20px; height: 20px; }
.feature-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 8px; }
.feature-desc { font-size: 13px; line-height: 1.5; color: var(--text-3); }

/* ── Exchanges strip ────────────────────────────────────────── */
.strip { padding: 28px 24px; text-align: center; }
.strip p { font-size: 13px; color: var(--muted); }
.strip span { color: rgba(255,255,255,0.45); }

/* ── How it works ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { display: flex; gap: 20px; }
.step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }
.step-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.step-desc { font-size: 13px; line-height: 1.6; color: var(--text-3); }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.price-card { padding: 28px; }
.price-pro { border-color: rgba(139,92,246,0.3); box-shadow: var(--card-shadow), 0 0 0 1px rgba(139,92,246,0.2), 0 0 40px -8px rgba(139,92,246,0.12); position: relative; overflow: hidden; }
.price-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.price-amt { font-size: 36px; font-weight: 600; color: rgba(255,255,255,0.9); }
.price-per { font-size: 13px; color: var(--text-3); }
.price-note { font-size: 13px; color: var(--muted); margin: 4px 0 28px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.price-list svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.price-tag { position: absolute; top: 16px; right: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; padding: 4px 8px; border-radius: 4px; font-weight: 600; background: rgba(139,92,246,0.15); color: rgba(139,92,246,0.9); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 48px 24px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-top: 12px; }
.footer-cols { display: flex; gap: 32px 44px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 10px; transition: color 150ms; }
.footer-col a:hover { color: #fff; }
.footer-legal { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; font-size: 12px; color: var(--muted); }
.footer-legal .wrap { justify-content: space-between; }

/* ── Article / legal pages ──────────────────────────────────── */
.doc { max-width: 760px; margin: 0 auto; padding: 80px 24px 96px; }
.doc h1 { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; }
.doc .updated { margin-top: 12px; font-size: 13px; color: var(--muted); }
.doc h2 { font-size: 20px; font-weight: 600; margin: 40px 0 12px; color: rgba(255,255,255,0.92); }
.doc p, .doc li { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.doc p { margin-bottom: 14px; }
.doc ul { margin: 0 0 14px 20px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent-2); }
.doc .note { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 13px; color: var(--text-2); margin: 24px 0; }

/* News list */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.news-card { background: var(--panel); border-radius: 14px; padding: 24px; transition: transform 200ms, background 200ms; }
.news-card:hover { transform: translateY(-2px); background: var(--panel-2); }
.news-date { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.news-title { font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.9); margin: 10px 0 8px; }
.news-excerpt { font-size: 13px; line-height: 1.6; color: var(--text-3); }
.empty { text-align: center; padding: 64px 0; color: var(--text-3); font-size: 14px; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 400ms ease, transform 400ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero .wrap { flex-direction: column; gap: 48px; padding-top: 88px; }
  .tax-grid, .two-col, .plan-grid, .pricing { grid-template-columns: 1fr; gap: 32px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .scenarios, .steps { grid-template-columns: 1fr; }
  .headline, .hero-h1 { font-size: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .nav-links { display: none; }
  .features { grid-template-columns: 1fr; }
  .headline, .hero-h1 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scenario, .feature-card, .news-card { transition: none; }
}

/* ── Answer pages (FAQ, methodology, feature explainers) ─────
   Question-first pages: one clear answer per heading, plain HTML so
   search engines and AI assistants can lift the answer directly. */
.crumbs { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: rgba(255,255,255,0.75); }
.crumbs span { margin: 0 6px; color: rgba(255,255,255,0.14); }

.doc .lede { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78); margin: 20px 0 10px; }
.doc h3 { font-size: 15px; font-weight: 600; margin: 26px 0 10px; color: rgba(255,255,255,0.85); }
.doc strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.doc code, .mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; font-variant-numeric: tabular-nums; }
.doc code { font-size: 13px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); padding: 2px 6px; border-radius: 5px; }

.doc table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.6); vertical-align: top; }
.doc th { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.doc td:first-child { color: rgba(255,255,255,0.85); }
.doc .table-scroll { overflow-x: auto; }

/* One question, one answer */
.qa { border-top: 1px solid var(--line); padding-top: 26px; margin-top: 26px; }
.qa:first-of-type { border-top: none; padding-top: 0; }
.qa h2 { font-size: 18px; font-weight: 600; margin: 0 0 10px; color: rgba(255,255,255,0.92); }
.qa p:last-child { margin-bottom: 0; }

/* Methodology metadata block */
.meta-box { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; margin: 28px 0; display: grid; grid-template-columns: 168px 1fr; gap: 10px 18px; }
.meta-box dt { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; padding-top: 3px; }
.meta-box dd { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* Related-page cards at the foot of an answer page */
.next-pages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 44px; }
.next-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; transition: background 200ms ease, border-color 200ms ease; }
.next-card:hover { background: var(--panel-2); border-color: var(--line-2); }
.next-card b { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); margin-bottom: 5px; }
.next-card span { display: block; font-size: 12.5px; line-height: 1.55; color: var(--text-3); }

.doc-cta { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.doc-cta .fine { font-size: 12.5px; color: var(--text-3); }

/* `.doc a` (0,1,1) outranks `.btn-primary` (0,1,0) and would paint the CTA
   label accent-on-accent. Buttons and cards inside an article keep their own
   colour. */
.doc a.btn-primary { color: #fff; }
.doc a.btn-ghost { color: rgba(255,255,255,0.5); }
.doc a.btn-ghost:hover { color: rgba(255,255,255,0.7); }
.doc a.next-card { color: inherit; }

@media (max-width: 640px) {
  .next-pages { grid-template-columns: 1fr; }
  .meta-box { grid-template-columns: 1fr; gap: 4px 0; }
  .meta-box dd { margin-bottom: 12px; }
  .doc h1 { font-size: 28px; }
}
/* ── Blog ─────────────────────────────────────────────────────────
   The article pages reuse `.doc` for prose and add two things on top:
   a listing, and a "screenshot" kit. The screenshots are drawn in HTML
   rather than captured as images — they stay crisp at any width, they
   are readable by search and answer engines as text, and they cannot
   drift out of date silently the way a PNG of an old build does. Every
   figure inside one is labelled as a sample. */
.blog-list { display: grid; gap: 14px; margin-top: 36px; }
.blog-item { display: block; background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px; transition: background 200ms ease, border-color 200ms ease, transform 200ms ease; }
.blog-item:hover { background: var(--panel-2); border-color: var(--line-2); transform: translateY(-2px); }
.blog-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.blog-item b { display: block; font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.9);
  margin: 9px 0 7px; letter-spacing: -0.01em; line-height: 1.3; }
.blog-item > span { display: block; font-size: 13.5px; line-height: 1.6; color: var(--text-3); }
.tagrow { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.tag { font-size: 11px; padding: 3px 9px; border-radius: 999px;
  background: rgba(139,92,246,0.1); color: var(--accent-2); }

.toc { background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; margin: 28px 0; }
.toc h2 { font-size: 10.5px !important; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin: 0 0 10px !important; }
.toc ol { margin: 0 0 0 18px; }
.toc li { font-size: 13.5px; margin-bottom: 5px; line-height: 1.5; }

/* Drawn product screenshots */
.shot { margin: 28px 0 8px; border: 1px solid var(--card-border); border-radius: 14px;
  background: var(--card-bg); box-shadow: var(--card-shadow); overflow: hidden; }
.shot-bar { display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  border-bottom: 1px solid var(--line); font-size: 11.5px; color: var(--muted); }
.shot-dots { display: flex; gap: 5px; }
.shot-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.shot-body { padding: 20px 22px; }
.shot-cap { font-size: 12.5px; line-height: 1.6; color: var(--text-3); margin: 10px 0 28px; }
.s-head { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-bottom: 12px; }
.s-eyebrow { font-size: 10.5px; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; }
.s-big { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.s-bigsub { font-size: 13px; color: var(--text-2); }
.s-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 6px 0; font-size: 13.5px; color: rgba(255,255,255,0.55); }
.s-row .k { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.s-row .q { font-size: 11.5px; color: var(--muted); }
.s-dot { width: 6px; height: 6px; border-radius: 2px; flex-shrink: 0; transform: translateY(-1px); }
.s-dot--you { background: var(--accent); }
.s-dot--pos { background: #5DCAA5; }
.s-dot--pos2 { background: rgba(93,202,165,0.5); }
.s-dot--neg { background: #F0876A; }
.s-dot--open { background: transparent; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.s-open { padding-bottom: 11px; margin-bottom: 4px; border-bottom: 1px dashed rgba(255,255,255,0.09); }
.s-total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-top: 13px; padding: 13px 15px; border-radius: 10px;
  background: linear-gradient(90deg, rgba(139,92,246,0.14), transparent);
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); }
.s-foot { font-size: 11.5px; color: var(--muted); margin-top: 15px; }
.s-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-top: 4px; }
.s-cell { background: var(--panel); padding: 14px 16px; }
.s-cell .l { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600; }
.s-cell .v { font-size: 18px; font-weight: 600; margin-top: 4px; color: rgba(255,255,255,0.9); }
.s-cell .s { font-size: 11px; color: var(--text-3); margin-top: 4px; line-height: 1.45; }
.s-chip { font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: rgba(93,202,165,0.13); color: #5DCAA5; white-space: nowrap; }
.s-chip--v { background: rgba(139,92,246,0.12); color: var(--accent-2); }
.s-chip--dim { background: rgba(255,255,255,0.05); color: var(--text-3); }
.s-badge { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 7px;
  border-radius: 5px; background: rgba(255,255,255,0.055); color: var(--text-3); }
.s-bar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; margin: 4px 0 10px;
  background: rgba(255,255,255,0.05); }
.s-seg { height: 100%; }
.s-legend { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 11.5px; color: var(--text-3); }
.s-legend span { display: inline-flex; align-items: center; gap: 6px; }
.s-sw { width: 7px; height: 7px; border-radius: 2px; }
.pos { color: #5DCAA5; }
.neg { color: #F0876A; }
.you { color: var(--accent-2); }
.dim { color: var(--text-3); }

.callout { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px; padding: 16px 20px; margin: 24px 0; }
.callout p { margin-bottom: 0 !important; color: rgba(255,255,255,0.72) !important; font-size: 14.5px !important; }
.callout p + p { margin-top: 10px !important; }

@media (max-width: 640px) {
  .s-grid { grid-template-columns: 1fr; }
  .shot-body { padding: 16px; }
  .blog-item { padding: 18px; }
}

/* Screenshot chrome — the mock reproduces the app's own page furniture
   (title, tagline, period tablist) so a reader recognises what they are
   looking at rather than reading it as an abstract diagram. */
.shot-bar .u { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 11px; }
.s-title { font-size: 19px; font-weight: 600; color: rgba(255,255,255,0.92); letter-spacing: -0.01em; }
.s-tagline { font-size: 12.5px; color: var(--text-2); margin-top: 4px; }
.s-sub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.s-tabs { display: inline-flex; gap: 2px; padding: 3px; border-radius: 9px;
  background: rgba(255,255,255,0.04); flex-wrap: wrap; }
.s-tab { font-size: 11.5px; padding: 5px 11px; border-radius: 7px; color: var(--text-3); white-space: nowrap; }
.s-tab--on { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.s-pagehead { display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line); }
.s-mrow { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.s-mrow:last-of-type { border-bottom: none; }
.s-mrow .n { font-size: 13.5px; color: rgba(255,255,255,0.82); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.s-mrow .e { font-size: 11.5px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.s-mrow .v { font-size: 15px; font-weight: 600; white-space: nowrap; }
.s-mrow--off { opacity: 0.5; }
.s-note { display: flex; gap: 9px; margin-top: 14px; padding: 11px 13px; border-radius: 9px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
  font-size: 11.5px; line-height: 1.5; color: var(--text-3); }

/* A long monospace URL in the chrome bar has no wrap point, so on a narrow
   screen it sets the card's minimum width and pushes the whole figure past
   the viewport. Truncate it instead — it is decoration, not content. */
.shot-bar { min-width: 0; }
.shot-bar .u { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shot-dots { flex: none; }
.s-row .k { flex-wrap: wrap; }
.doc code { overflow-wrap: anywhere; }
@media (max-width: 640px) {
  .shot-bar .u { font-size: 10px; }
  .s-tabs { width: 100%; }
  .s-legend { gap: 5px 12px; }
}

/* Product screenshots. Fixed intrinsic width/height in the markup so the page
   does not reflow as they load; the frame matches the drawn-mock frame the
   rest of the section furniture uses. */
.shot-img { display: block; width: 100%; height: auto; margin: 28px 0 8px;
  border: 1px solid var(--card-border); border-radius: 14px; box-shadow: var(--card-shadow); }
/* Screenshots get more width than the prose column: the app's own type is
   small, and a 760px-wide capture of a dashboard is a thumbnail. The bleed is
   dropped below the breakpoint where it would push past the viewport. */
@media (min-width: 1000px) {
  .doc figure .shot-img { width: calc(100% + 160px); max-width: none; margin-left: -80px; }
  .doc figure figcaption { margin-left: -80px; width: calc(100% + 160px); }
}
