/* ProfitMuncher — Workshop theme (plain CSS, shared by lander + legal) */

:root {
  --navy: #1E2A8C;
  --navy-dark: #161F6B;
  --cyan: #1FA9E0;
  --cyan-light: #5DC4EB;
  --ink: #1A1410;
  --muted: rgba(26, 20, 16, 0.62);
  --muted-2: rgba(26, 20, 16, 0.45);
  --line: rgba(26, 20, 16, 0.14);
  --bg: #FAF7F0;
  --bg-2: #F1ECDE;
  --white: #ffffff;
  --sun: #F4B942;
  --green: #2E7A4B;
  --amber: #B77B1A;
  --plum: #6D4C8F;
  --paper-card: #FFFAF0;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 16px;

  --shadow-card: 0 1px 0 rgba(26, 20, 16, 0.08);
  --shadow-float: 0 30px 60px -20px rgba(26, 20, 16, 0.25);
  --shadow-btn: 0 8px 24px rgba(30, 42, 140, 0.25);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --font-hand: "Caveat", "Kalam", cursive;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
button, input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.4px; }

/* Utility */
.wrap { max-width: 1360px; margin: 0 auto; }
.container { padding: 0 56px; }
.muted { color: var(--muted); }
.serif { font-family: var(--font-serif); }
.italic { font-style: italic; color: var(--navy); }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.h1 { font-family: var(--font-serif); font-size: 72px; line-height: 1.02; letter-spacing: -1.5px; font-weight: 500; }
.h2 { font-family: var(--font-serif); font-size: 44px; line-height: 1.05; letter-spacing: -0.8px; font-weight: 500; }
.h3 { font-family: var(--font-serif); font-size: 22px; line-height: 1.2; letter-spacing: -0.3px; font-weight: 500; }
.lede { font-size: 19px; line-height: 1.55; color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent; font-weight: 600; font-size: 15px; transition: transform .1s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-btn); padding: 16px 26px; font-size: 16px; }
.btn-primary:hover { background: var(--navy-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); padding: 15px 22px; font-size: 16px; }
.btn-ghost:hover { background: #fff; }
.btn-dark { background: var(--ink); color: #fff; border: none; padding: 10px 18px; font-size: 14px; border-radius: 999px; font-weight: 600; }
.btn-dark:hover { background: #000; }
.btn-wide { width: 100%; padding: 16px 22px; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 56px; border-bottom: 1px solid var(--line); }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 15px; }
.nav-links a:hover { color: var(--navy); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo-text { font-weight: 700; letter-spacing: -0.3px; font-size: 18px; color: var(--ink); }
.logo-text .cyan { color: var(--cyan); margin-left: 2px; }

/* Sections */
section { padding: 96px 56px; }
section.slim { padding: 56px 56px; }
.section-lead { max-width: 720px; margin-bottom: 48px; }

/* Checkmark icon */
.tick { width: 14px; height: 14px; flex-shrink: 0; }
.tick path { fill: none; stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }

/* Hero */
.hero { padding: 80px 56px 64px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--navy); font-weight: 600; margin-bottom: 24px; }
.hero-eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; background: var(--navy); }
.hero h1 { font-family: var(--font-serif); font-size: 72px; line-height: 1.02; letter-spacing: -1.5px; font-weight: 500; color: var(--ink); margin: 0; }
.hero-lede { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 480px; margin-top: 28px; }
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-sublede { font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 480px; margin-top: 14px; font-style: italic; padding-left: 14px; border-left: 2px solid var(--navy); opacity: 0.85; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 22px; font-size: 13.5px; color: var(--muted); align-items: center; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.underline-swash { position: relative; display: inline-block; }
.underline-swash svg { position: absolute; left: 0; right: 0; bottom: -4px; width: 100%; height: 10px; }

/* Hero dashboard mock */
.dash { background: #fff; border-radius: 14px; padding: 20px; box-shadow: var(--shadow-card), var(--shadow-float); border: 1px solid var(--line); }
.dash-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dash-head-left { display: flex; align-items: center; gap: 10px; }
.dash-head-title { font-size: 13px; font-weight: 600; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 5px; }
.dash-dots span:nth-child(1) { background: #E5C3A8; }
.dash-dots span:nth-child(2) { background: #D8C99A; }
.dash-dots span:nth-child(3) { background: #AEC8A3; }
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.kpi { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.kpi-label { font-size: 11.5px; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; }
.kpi-value { font-size: 22px; font-weight: 600; color: var(--ink); margin-top: 4px; font-variant-numeric: tabular-nums; }
.kpi-delta { font-size: 11.5px; margin-top: 2px; color: var(--navy); }
.kpi-delta.pos { color: var(--green); }
.kpi-delta.muted { color: var(--muted); }
.dash-list { margin-top: 16px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.dash-list-head { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.dash-list-head > div:first-child { font-size: 13px; font-weight: 600; }
.dash-list-head > div:last-child { font-size: 11px; color: var(--muted); }
.dash-row { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; padding: 11px 14px; align-items: center; font-size: 13px; }
.dash-row + .dash-row { border-top: 1px solid var(--line); }
.dash-row .price { font-variant-numeric: tabular-nums; font-weight: 600; }
.pill { font-size: 11px; padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.pill-green { background: rgba(46, 122, 75, 0.12); color: var(--green); }
.pill-amber { background: rgba(183, 123, 26, 0.12); color: var(--amber); }
.pill-navy { background: rgba(30, 42, 140, 0.12); color: var(--navy); }

/* Hero annotation */
.hero-viz { position: relative; }
.hero-annot { position: absolute; top: -10px; right: -6px; width: 120px; height: 120px; transform: rotate(6deg); }
.hero-annot svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-annot-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px; font-family: var(--font-hand); color: #7a5a10; line-height: 1.15; font-weight: 600; }

/* Tools strip */
.tools { padding: 40px 56px 56px; text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tools-eyebrow { font-size: 15px; color: var(--muted); margin-bottom: 20px; font-family: var(--font-serif); font-style: italic; }
.tools-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tools-list .pm-pill { padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; color: var(--ink); font-weight: 500; text-decoration: line-through; text-decoration-color: rgba(26,20,16,0.35); text-decoration-thickness: 1.5px; }
.tools-list .pm-current { padding: 10px 18px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.feature-num { width: 36px; height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-family: var(--font-serif); font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.feature:nth-child(even) .feature-num { background: var(--cyan); }
.feature h3 { font-size: 22px; color: var(--ink); }
.feature p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin-top: 10px; }
.feature-list { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink); padding: 3px 0; list-style: none; }
.feature-list { padding-left: 0; }
.feature-list .tick { margin-top: 3px; }

/* Steps */
.steps { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-head { text-align: center; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; }
.step-badge { position: absolute; top: -18px; left: 24px; background: var(--navy); color: #fff; font-family: var(--font-serif); font-size: 14px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.step-tag { display: inline-block; background: rgba(31, 169, 224, 0.15); color: var(--navy); padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; margin-top: 8px; margin-bottom: 14px; }
.step h3 { font-size: 26px; letter-spacing: -0.4px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--muted); margin-top: 10px; }

/* Stories */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.story-photo { position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.story-photo .caption { position: absolute; left: 10px; bottom: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 0.4px; text-transform: uppercase; opacity: .65; }
.story-photo.cream { background: repeating-linear-gradient(135deg, #E8DFC9 0 14px, #D8CDB0 14px 28px); }
.story-photo.cream .caption { color: #5A4A2A; }
.story-photo.navy { background: repeating-linear-gradient(135deg, #2B3796 0 14px, #1E2A8C 14px 28px); }
.story-photo.navy .caption { color: #B8C1F2; }
.story-photo.cyan { background: repeating-linear-gradient(135deg, #8FD3EE 0 14px, #5DC4EB 14px 28px); }
.story-photo.cyan .caption { color: #0D3E5A; }
.story-quote { font-family: var(--font-serif); font-size: 20px; line-height: 1.35; color: var(--ink); margin: 20px 0 18px; }
.story-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.story-name { font-size: 14px; font-weight: 600; }
.story-shop { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.story-metric { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1; }
.story-metric-label { font-size: 11px; color: var(--muted); margin-top: 3px; text-align: right; }
.trust-strip { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.trust-strip .stars { color: var(--sun); font-size: 16px; letter-spacing: 1px; }

/* Compare */
.compare-head { text-align: center; margin-bottom: 48px; }
.compare-table { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; max-width: 960px; margin: 0 auto; }
.compare-head-row { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--bg-2); font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--line); }
.compare-head-row > div { padding: 18px 24px; color: var(--muted); }
.compare-head-row > div + div { border-left: 1px solid var(--line); text-align: center; }
.compare-head-row .us { background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-top: 1px solid var(--line); font-size: 14.5px; }
.compare-row > div { padding: 18px 24px; }
.compare-row > div:nth-child(1) { color: var(--ink); font-weight: 500; }
.compare-row > div:nth-child(2) { border-left: 1px solid var(--line); text-align: center; color: var(--muted); }
.compare-row > div:nth-child(3) { border-left: 1px solid var(--line); text-align: center; color: var(--navy); font-weight: 600; }

/* Pricing */
.pricing-head { max-width: 720px; margin-bottom: 48px; }
.pricing-toggle-row { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.pricing-toggle { display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.pricing-toggle button { background: transparent; color: var(--ink); border: none; padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; }
.pricing-toggle button.active { background: var(--ink); color: #fff; }
.pricing-save { font-family: var(--font-hand); font-size: 18px; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative; display: flex; flex-direction: column; }
.tier.highlight { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 20px 40px -15px rgba(30, 42, 140, 0.4); }
.tier.highlight .muted, .tier.highlight .tier-tagline, .tier.highlight .tier-billing { color: rgba(255,255,255,0.7); }
.tier-badge { position: absolute; top: -14px; left: 28px; background: var(--cyan); color: var(--navy); font-family: var(--font-serif); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; letter-spacing: 0.3px; text-transform: uppercase; }
.tier h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.4px; }
.tier-tagline { font-size: 14px; margin-top: 6px; line-height: 1.4; color: var(--muted); min-height: 40px; }
.tier-price { margin-top: 24px; display: flex; align-items: baseline; gap: 6px; }
.tier-price .amount { font-family: var(--font-serif); font-size: 56px; font-weight: 500; letter-spacing: -1.5px; line-height: 1; }
.tier-price .per { font-size: 14px; color: var(--muted); }
.tier-billing { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.tier-cta { width: 100%; margin-top: 22px; background: var(--ink); color: #fff; border: none; padding: 14px 18px; border-radius: 999px; font-weight: 700; font-size: 15px; }
.tier.highlight .tier-cta { background: #fff; color: var(--navy); }
.tier-features { border-top: 1px solid var(--line); margin-top: 24px; padding: 20px 0 0; list-style: none; }
.tier.highlight .tier-features { border-top-color: rgba(255,255,255,0.2); }
.tier-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; padding: 5px 0; }
.tier-features li .ico { margin-top: 3px; flex-shrink: 0; width: 14px; display: inline-flex; justify-content: center; }
.tier-features li.off { color: var(--muted); opacity: 0.7; }
.tier-features li.head { font-size: 12px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--muted); margin-top: 6px; margin-bottom: 8px; display: block; padding: 0; }
.tier.highlight .tier-features li.head { color: rgba(255,255,255,0.6); }
.tier.highlight .tier-features li { color: #fff; }
.tier.highlight .tier-features li.off { color: rgba(255,255,255,0.5); }
.pricing-footnote { margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); justify-content: center; align-items: center; }
.pricing-footnote span { display: inline-flex; align-items: center; gap: 8px; }

/* FAQ */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-aside p { font-size: 15.5px; color: var(--muted); margin-top: 16px; line-height: 1.55; max-width: 360px; }
.faq-aside a { color: var(--navy); border-bottom: 1.5px solid var(--cyan); padding-bottom: 1px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: none; padding: 22px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; text-align: left; font-family: inherit; }
.faq-q span:first-child { font-family: var(--font-serif); font-size: 22px; letter-spacing: -0.3px; color: var(--ink); font-weight: 500; line-height: 1.3; }
.faq-plus { width: 32px; height: 32px; border-radius: 999px; border: 1.5px solid var(--line); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--navy); transition: transform 0.2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { font-size: 16px; line-height: 1.6; color: var(--muted); padding-bottom: 24px; max-width: 680px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact h2 { font-size: 52px; line-height: 1.02; letter-spacing: -1.2px; }
.contact-rows { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(31, 169, 224, 0.15); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .label { font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; }
.contact-row .value { font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 3px; font-family: var(--font-serif); letter-spacing: -0.2px; }
.contact-row .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.contact-form h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.3px; margin-bottom: 20px; }
.field { display: block; margin-bottom: 14px; }
.field > .label { font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.2px; }
.input, .select, .textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 15px; background: var(--bg); color: var(--ink); outline: none; }
.textarea { resize: vertical; min-height: 110px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 13px; font-weight: 500; }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-foot { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* CTA */
.cta-wrap { padding: 40px 56px 96px; }
.cta { background: var(--navy); border-radius: 24px; padding: 72px 56px; color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 999px; background: var(--cyan); opacity: 0.16; }
.cta::after { content: ""; position: absolute; right: -40px; bottom: -120px; width: 280px; height: 280px; border-radius: 999px; background: #fff; opacity: 0.06; }
.cta-inner { position: relative; max-width: 640px; }
.cta h2 { font-size: 54px; line-height: 1.05; letter-spacing: -1px; }
.cta h2 .italic { color: var(--cyan-light); }
.cta p { font-size: 17px; line-height: 1.6; opacity: 0.8; margin-top: 22px; max-width: 500px; }
.cta-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--navy); border: none; padding: 16px 26px; border-radius: 999px; font-weight: 700; font-size: 16px; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); padding: 15px 24px; border-radius: 999px; font-weight: 600; font-size: 16px; }

/* Newsletter */
.newsletter { padding: 0 56px 80px; }
.newsletter-box { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; background: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter h3 { font-family: var(--font-serif); font-size: 28px; letter-spacing: -0.4px; }
.newsletter p { font-size: 15px; color: var(--muted); margin-top: 8px; line-height: 1.55; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 15px; background: var(--bg); }
.newsletter button { background: var(--ink); color: #fff; border: none; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; }

/* Footer */
.footer { padding: 56px 56px 40px; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink); padding: 5px 0; }
.footer-col a:hover { color: var(--navy); }
.footer-about { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 260px; line-height: 1.5; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; gap: 10px; }

/* ─── LEGAL PAGE ───────────────────────── */
.legal-hero { padding: 64px 56px 40px; border-bottom: 1px solid var(--line); }
.legal-hero .crumbs { font-size: 12.5px; color: var(--muted); letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 18px; }
.legal-hero .crumbs a:hover { color: var(--navy); }
.legal-hero .crumbs .sep { margin: 0 8px; color: var(--muted-2); }
.legal-hero h1 { font-family: var(--font-serif); font-size: 64px; line-height: 1.02; letter-spacing: -1.4px; font-weight: 500; max-width: 800px; }
.legal-hero .meta { margin-top: 20px; display: flex; gap: 24px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.legal-hero .meta strong { color: var(--ink); font-weight: 600; }

.legal-body { display: grid; grid-template-columns: 260px 1fr; gap: 64px; padding: 56px 56px 96px; }
.legal-toc { position: sticky; top: 100px; align-self: start; }
.legal-toc .label { font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line); }
.legal-toc li a { display: block; padding: 7px 14px; font-size: 13.5px; color: var(--muted); border-left: 2px solid transparent; margin-left: -1px; }
.legal-toc li a:hover { color: var(--ink); }
.legal-toc li a.active { color: var(--navy); font-weight: 600; border-left-color: var(--navy); background: rgba(30, 42, 140, 0.04); }

.legal-content { max-width: 720px; }
.legal-content h2 { font-family: var(--font-serif); font-size: 32px; letter-spacing: -0.6px; font-weight: 500; color: var(--ink); margin-top: 48px; padding-top: 8px; scroll-margin-top: 100px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 28px; }
.legal-content p, .legal-content li { font-size: 16px; line-height: 1.7; color: rgba(26, 20, 16, 0.8); margin: 14px 0; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li + li { margin-top: 6px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--navy); border-bottom: 1px solid var(--cyan); }
.legal-content .callout { background: var(--bg-2); border-left: 3px solid var(--cyan); padding: 18px 22px; border-radius: 6px; margin: 22px 0; }
.legal-content .callout p { margin: 0; font-size: 15px; }

.legal-footer-cta { padding: 56px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.legal-footer-cta h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.4px; }
.legal-footer-cta p { font-size: 15px; color: var(--muted); margin: 10px 0 24px; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-grid, .faq-grid, .contact-grid, .newsletter-box { grid-template-columns: 1fr; }
  .hero-annot { display: none; }
  .faq-aside { position: static; }
  .legal-body { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 1180px) {
  .nav-links { gap: 22px; font-size: 14px; }
  .nav-links a[href="#stories"], .nav-links a[href="index.html#stories"] { display: none; }
}
@media (max-width: 1020px) {
  .nav-links { gap: 18px; }
  .nav-links a[href="#how"], .nav-links a[href="#faq"],
  .nav-links a[href="index.html#how"], .nav-links a[href="index.html#faq"] { display: none; }
}
@media (max-width: 820px) {
  section, .nav, .hero, .tools, .cta-wrap, .newsletter, .footer, .legal-hero, .legal-body, .legal-footer-cta { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .features-grid, .steps-grid, .stories-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero h1, .h1 { font-size: 48px; letter-spacing: -1px; }
  .h2 { font-size: 32px; }
  .cta h2 { font-size: 36px; }
  .contact h2 { font-size: 36px; }
  .legal-hero h1 { font-size: 40px; }
  .compare-head-row, .compare-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .cta { padding: 48px 28px; }
  .footer-bottom { flex-direction: column; }
}

/* ─── FRICTION CALCULATOR ─── */
.calculator-section { padding: 88px 56px; background: var(--bg-2); }
.calc-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.calc-head .eyebrow { color: var(--navy); font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; display: block; }
.calc-lede { font-size: 17px; line-height: 1.5; color: var(--muted); margin-top: 16px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1080px; margin: 0 auto; }
.calc-inputs, .calc-output { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.calc-field { margin-bottom: 28px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { display: block; font-size: 14.5px; color: var(--ink); font-weight: 500; margin-bottom: 12px; }
.calc-field .calc-hint { color: var(--muted); font-weight: 400; font-size: 13px; }
.calc-range { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: var(--line); border-radius: 2px; outline: none; cursor: pointer; }
.calc-range::-webkit-slider-runnable-track { height: 4px; background: var(--line); border-radius: 2px; border: none; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; margin-top: -8px; border-radius: 50%; background: var(--paper-card); border: 2px solid var(--ink); cursor: pointer; box-shadow: 0 2px 0 var(--plum); transition: transform 0.12s ease, box-shadow 0.12s ease; }
.calc-range::-webkit-slider-thumb:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--plum); }
.calc-range::-webkit-slider-thumb:active { transform: translateY(1px) scale(1.05); box-shadow: 0 1px 0 var(--plum); }
.calc-range::-moz-range-track { height: 4px; background: var(--line); border-radius: 2px; border: none; }
.calc-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--paper-card); border: 2px solid var(--ink); cursor: pointer; box-shadow: 0 2px 0 var(--plum); transition: transform 0.12s ease, box-shadow 0.12s ease; }
.calc-range::-moz-range-thumb:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--plum); }
.calc-range::-moz-range-thumb:active { transform: translateY(1px) scale(1.05); box-shadow: 0 1px 0 var(--plum); }
.calc-range:focus-visible { outline: 2px solid var(--plum); outline-offset: 4px; }
.calc-value { margin-top: 10px; font-size: 14.5px; color: var(--ink); }
.calc-value strong { color: var(--navy); font-family: var(--font-serif); font-size: 18px; font-weight: 500; }
.calc-rate { padding-top: 16px; border-top: 1px solid var(--line); }
.calc-rate-display { background: none; border: 1px dashed var(--line); border-radius: 8px; padding: 8px 14px; font-size: 15px; color: var(--ink); cursor: pointer; font-family: inherit; transition: border-color 0.15s; }
.calc-rate-display:hover { border-color: var(--navy); }
.calc-rate-display .calc-rate-edit { color: var(--muted); font-size: 12px; margin-left: 6px; }
.calc-rate-input { padding: 8px 14px; font-size: 15px; border: 1px solid var(--navy); border-radius: 8px; width: 120px; font-family: inherit; }
.calc-line { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; font-size: 15px; color: var(--ink); }
.calc-amount { color: var(--muted); font-variant-numeric: tabular-nums; }
.calc-pm { color: var(--navy); font-weight: 600; }
.calc-line--big { padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 8px; }
.calc-big-number { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-divider { height: 1px; background: var(--line); margin: 14px 0; }
.calc-line--winner { background: rgba(46, 122, 75, 0.06); border-left: 3px solid var(--green); padding-left: 14px; padding-right: 14px; margin-top: 8px; border-radius: 0 6px 6px 0; }
.calc-savings { font-family: var(--font-serif); font-size: 32px; font-weight: 500; color: var(--green); font-variant-numeric: tabular-nums; }
.calc-cta { width: 100%; margin-top: 24px; text-align: center; display: block; }
.calc-fine { font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.5; }

@media (max-width: 820px) {
  .calculator-section { padding: 56px 24px; }
  .calc-grid { grid-template-columns: 1fr; gap: 20px; }
  .calc-inputs, .calc-output { padding: 24px; }
  .calc-big-number { font-size: 24px; }
  .calc-savings { font-size: 28px; }
}

