/* austinairbnbtax.com — Design A "Calculator-classic"
   SmartAsset / fintech feel · soft blue + green on neutral whites */

:root {
  --ink:        #0B1F33;
  --ink2:       #3D4F63;
  --mute:       #6B7A8C;
  --line:       #E6EBF2;
  --bg:         #FAFBFC;
  --card:       #FFFFFF;
  --blue:       #1E5BD9;
  --blue-soft:  #EAF1FE;
  --green:      #0F8A5F;
  --green-soft: #E6F4EE;
  --amber:      #B6770F;
  --amber-soft: #FCF1DC;
  --red:        #B23A3A;
  --red-soft:   #F4E7E7;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max:        1200px;
  --shadow-sm:  0 1px 2px rgba(11,31,51,.04);
  --shadow-md:  0 1px 2px rgba(11,31,51,.04), 0 8px 24px rgba(11,31,51,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* Operator disclosure — top */
.disclosure {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}
.disclosure-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 40px;
  text-align: center;
}
.disclosure a { color: #C7D6F0; text-decoration: underline; text-underline-offset: 2px; }

/* Top nav */
.nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
}
.brand-text { font-weight: 700; font-size: 15px; letter-spacing: -0.3px; }
.brand-sub { color: var(--mute); font-weight: 400; }

.nav-right { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--ink2); }
.nav-right a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 38px;     /* match the CTA's box height for clean baseline alignment */
  line-height: 1;
}
.nav-right a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0 14px;
  height: 38px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: #000; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 40px 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.pill-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--blue); }
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -2.2px;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
.ink-blue { color: var(--blue); }
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink2);
  margin-top: 22px;
  max-width: 520px;
}
.lede strong { color: var(--ink); }
.hero-checks {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--mute);
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

/* Live verdict card (hero right) */
.vcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.vcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.vcard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 1.5px;
}
.vcard-live { font-size: 11px; color: var(--mute); }
.vcard-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background 0.15s, color 0.15s;
}
.vp-dot {
  width: 7px; height: 7px;
  border-radius: 4px;
  background: var(--green);
  transition: background 0.15s;
}
.vcard-pill.maybe { background: var(--amber-soft); color: var(--amber); }
.vcard-pill.maybe .vp-dot { background: var(--amber); }
.vcard-pill.no { background: var(--red-soft); color: var(--red); }
.vcard-pill.no .vp-dot { background: var(--red); }

.vcard-label {
  margin-top: 18px;
  font-size: 13px;
  color: var(--mute);
}
.vcard-amount {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.vcard-rows {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vrow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.vrow.vrow-last { border-bottom: none; }
.vrow span { color: var(--mute); font-size: 13px; }
.vrow b { color: var(--ink); font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.vcard-cta {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.vcard-cta:hover { background: #000; }
.vcard-foot {
  font-size: 11px;
  color: var(--mute);
  text-align: center;
  margin-top: 10px;
}

/* Trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0.4px;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-sep { color: var(--line); }

/* 30-Second Answer */
.thirty-sec {
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 0 40px;
}
.thirty-inner {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
  border-radius: 8px;
}
.thirty-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.thirty-inner p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink2);
}
.thirty-inner strong { color: var(--ink); font-weight: 600; }

/* Calculator section */
.calc {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 40px 64px;
}
.calc-head {
  text-align: center;
  margin-bottom: 48px;
}
.calc-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.calc-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.4px;
  margin: 0;
  color: var(--ink);
}
.calc-head p {
  color: var(--mute);
  font-size: 16px;
  margin-top: 12px;
}

.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-sm);
}
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.field-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.field-label {
  font-size: 13px;
  color: var(--ink2);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.field-num {
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  height: 4px;
}
.field-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--mute);
  margin-top: 6px;
}

.seg {
  display: flex;
  background: var(--bg);
  padding: 3px;
  border-radius: 9px;
  border: 1px solid var(--line);
  gap: 2px;
}
.seg button {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--mute);
  font-weight: 500;
  padding: 10px;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.15s;
}
.seg button.active {
  background: #fff;
  box-shadow: 0 1px 3px rgba(11,31,51,.08);
  color: var(--ink);
  font-weight: 600;
}
.seg button:hover:not(.active) { color: var(--ink2); }

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chips button {
  flex: 1;
  min-width: 44px;
  padding: 10px 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: 0.15s;
}
.chips button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.chips button:hover:not(.active) { border-color: var(--ink2); }

/* Reveal button — bottom of form */
.reveal-btn {
  margin-top: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 1px 2px rgba(11,31,51,.08), 0 4px 12px rgba(30,91,217,.18);
}
.reveal-btn:hover { background: #1750c4; transform: translateY(-1px); }
.reveal-btn:active { transform: translateY(0); }
.reveal-btn.is-recompute {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.reveal-btn.is-recompute:hover { border-color: var(--ink2); background: #fff; }

/* Verdict panel */
.verdict {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: background 0.2s;
}
.verdict.maybe { background: var(--amber-soft); }
.verdict.no { background: var(--red-soft); }

/* Empty / placeholder state */
.verdict.verdict-empty {
  background: var(--bg);
  border: 1px dashed var(--line);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.verdict-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  margin: auto;
}
.vp-icon { color: var(--mute); opacity: 0.5; }
.vp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.vp-body {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.55;
}
.vp-body strong { color: var(--ink); }

/* Hero verdict card — empty state */
.vcard.vcard-empty .vcard-pill {
  background: #F4F6FA;
  color: var(--mute);
}
.vcard.vcard-empty .vcard-pill .vp-dot { background: var(--mute); }
.vcard.vcard-empty .vcard-amount { color: var(--mute); font-size: 28px; }
.vcard.vcard-empty .vrow b { color: var(--mute); }
.v-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 1.3px;
}
.v-headline {
  font-size: clamp(60px, 9vw, 84px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin: 14px 0 6px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.verdict.maybe .v-headline { color: var(--amber); }
.verdict.no .v-headline { color: var(--red); }
.v-explain {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5;
  margin: 0;
}
.v-savings-label {
  font-size: 13px;
  color: var(--ink2);
  margin-bottom: 6px;
  margin-top: 24px;
}
.v-savings {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.v-confidence-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.v-confidence-track {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.v-confidence-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  width: 85%;
  transition: width 0.3s, background 0.3s;
}
.verdict.maybe .v-confidence-fill { background: var(--amber); }
.verdict.no .v-confidence-fill { background: var(--red); }
.v-confidence-label { font-size: 12px; color: var(--ink2); font-weight: 600; }
.v-cta {
  display: block;
  margin-top: 22px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.v-cta:hover { background: #000; }

/* Redirect countdown notice */
.redirect-notice {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.redirect-notice strong { color: var(--ink); font-weight: 600; }
.redirect-notice button {
  background: transparent;
  border: 1px solid rgba(11, 31, 51, 0.18);
  color: var(--ink2);
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  min-height: 32px;
}
.redirect-notice button:hover { border-color: var(--ink); color: var(--ink); }

/* Advanced toggle */
.adv-toggle {
  width: 100%;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  margin-top: 24px;
}
.adv-toggle:hover { border-color: var(--ink2); }
.adv-chev {
  color: var(--mute);
  transition: transform 0.15s;
  display: inline-block;
}
.adv-toggle[aria-expanded="true"] .adv-chev { transform: rotate(180deg); }
.adv-panel {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.adv-field { display: flex; flex-direction: column; }
.adv-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.adv-row span { font-size: 13px; color: var(--ink2); font-weight: 500; }
.adv-row b { font-size: 18px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.adv-foot { font-size: 11px; color: var(--mute); margin-top: 6px; }

/* Insights section */
.insights {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insights-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.ins-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.insights-grid h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.insights-grid p {
  color: var(--ink2);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.6;
}
.ins-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}
.ins-list li {
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.ins-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.ins-list strong { color: var(--ink); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.stat-label {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-sub {
  font-size: 12px;
  color: var(--mute);
  margin-top: 6px;
}

/* Bar chart */
.chart {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.chart-title {
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 18px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 180px;
}
.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.chart-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.chart-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}
.chart-x { font-size: 11px; color: var(--mute); }
.chart-foot {
  font-size: 11px;
  color: var(--mute);
  margin-top: 14px;
  font-style: italic;
}

/* When it's not worth it */
.not-worth { background: var(--bg); }
.nw-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 40px 64px;
}
.nw-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}
.nw-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.nw-side h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.nw-side p {
  color: var(--ink2);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.6;
}
.scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.scenario {
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.scenario.warn { background: var(--amber-soft); border-color: #F0DAA8; }
.scenario.bad { background: #F9EDED; border-color: #EBC9C9; }
.sc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.scenario.warn .sc-icon { color: var(--amber); }
.scenario.bad .sc-icon { color: var(--red); }
.sc-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 6px;
}
.sc-body {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55;
}
.sc-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* Examples */
.examples {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.examples-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
}
.ex-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.ex-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.examples h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 0;
  color: var(--ink);
}
.ex-sub {
  color: var(--mute);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}
.ex-more {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.ex-more:hover { text-decoration: underline; }

.ex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ex-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.ex-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ex-nb {
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.8px;
}
.ex-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  margin-top: 3px;
}
.ex-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.4px;
}
.ex-pill.yes { color: var(--green); background: var(--green-soft); }
.ex-pill.maybe { color: var(--amber); background: var(--amber-soft); }
.ex-pill.no { color: var(--red); background: var(--red-soft); }

.ex-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 14px 0;
  display: block;
  background: #F4F6FA;
}
.ex-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ex-stat-l { font-size: 11px; color: var(--mute); }
.ex-stat-v {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ex-stat-v.ex-yes { color: var(--green); }
.ex-stat-v.ex-maybe { color: var(--amber); }
.ex-stat-v.ex-no { color: var(--red); }
.ex-foot {
  font-size: 11px;
  color: var(--mute);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* FAQ */
.faq { background: var(--bg); border-bottom: 1px solid var(--line); }
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px;
}
.faq-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.faq h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 0 0 32px 0;
  color: var(--ink);
  line-height: 1.1;
}
details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details:last-of-type { border-bottom: 1px solid var(--line); }
summary {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  font-weight: 400;
  color: var(--blue);
  transition: transform 0.2s;
  line-height: 1;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 720px;
}
details p a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
details p strong { color: var(--ink); }

/* Final CTA */
.final-cta { background: #fff; border-top: 1px solid var(--line); }
.fcta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 104px 40px 120px;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.8px;
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}
.final-cta p {
  font-size: 18px;
  color: var(--ink2);
  margin-top: 18px;
  line-height: 1.5;
}
.fcta-btns {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 17px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
}
.btn-dark:hover { background: #000; }
.btn-light {
  background: #fff;
  color: var(--ink);
  padding: 17px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--line);
  display: inline-block;
}
.btn-light:hover { border-color: var(--ink2); }
.fcta-checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--mute);
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.fcta-related {
  margin-top: 40px;
  font-size: 13px;
  color: var(--mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.fcta-related a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  background: #fff;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 40px 40px;
}
.foot-row1 {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-row1 a { color: var(--ink2); text-decoration: underline; text-underline-offset: 2px; }
.foot-row2 {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--mute);
}
.foot-row2 a { color: var(--ink2); text-decoration: none; }
.foot-row2 a:hover { color: var(--blue); }
.foot-disc {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--mute);
  line-height: 1.6;
  max-width: 880px;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-inner { padding: 16px 24px; }
  .nav-right { display: none; }
  .nav-right.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 14px;
  }
  .nav-right.is-open .nav-cta { padding: 12px 16px; text-align: center; }
  .nav-toggle { display: inline-block; }

  .hero { padding: 56px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { padding: 16px 24px; gap: 8px; font-size: 11px; }
  .trust-sep { display: none; }
  .thirty-sec { padding: 0 24px; margin-top: 36px; }
  .calc { padding: 56px 24px 40px; }
  .calc-card { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .verdict { min-height: auto; padding: 22px; }
  .adv-grid { grid-template-columns: 1fr; gap: 22px; }
  .adv-panel { padding: 22px; }

  .insights-inner { padding: 56px 24px; }
  .insights-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }

  .nw-inner { padding: 56px 24px 40px; }
  .nw-grid { grid-template-columns: 1fr; gap: 36px; }
  .scenarios { grid-template-columns: 1fr 1fr; }

  .examples-inner { padding: 56px 24px; }
  .ex-grid { grid-template-columns: 1fr 1fr; }

  .faq-inner { padding: 56px 24px; }
  .fcta-inner { padding: 64px 24px; }
  .foot-row1 { flex-direction: column; gap: 6px; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(32px, 8vw, 44px); }
  .scenarios { grid-template-columns: 1fr; }
  .ex-grid { grid-template-columns: 1fr; }
  .fcta-checks { gap: 16px; }
  .stat-grid { grid-template-columns: 1fr; }
  .seg-4 { flex-wrap: wrap; }
  .seg-4 button { flex: 1 1 calc(50% - 4px); }
  .chips button { flex: 1 1 calc(25% - 5px); min-width: 0; }
  .chart-bars { gap: 6px; height: 140px; }
  .chart-x, .chart-val { font-size: 9px; }
}

/* Mobile baseline (network-wide pattern) */
input:not([type=hidden]), select, textarea {
  font-size: 16px !important;
}
.seg button, .chips button, .reveal-btn, .v-cta, .vcard-cta, .btn-dark, .btn-light, .nav-toggle {
  min-height: 44px;
}
.seg button { min-height: 40px; } /* dense segs ok smaller */
/* Note: nav-right anchors are explicitly height-controlled to 38px for baseline alignment with CTA. */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
