@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #fafafa;
  --white: #ffffff;
  --green: #059669;
  --green-dark: #047857;
  --blue: #2563eb;
  --gold: #d97706;
  --red: #dc2626;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 56px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.top-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.top-nav a {
  text-decoration: none;
  padding: 12px 0;
  white-space: nowrap;
  transition: color .15s;
}

.top-nav a:hover,
.top-nav a[aria-current] {
  color: var(--ink);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-button {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 14px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: var(--green);
  border-radius: 6px;
  transition: background .15s;
}

.header-button:hover { background: var(--green-dark); }
.header-button:active { transform: translateY(1px); }

.header-button.secondary-header {
  color: var(--green-dark);
  background: transparent;
  border: 1px solid var(--line);
}

.header-button.secondary-header:hover {
  color: white;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* ── Layout ── */

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── Hero ── */

.hero {
  display: grid;
  padding: clamp(48px, 8vw, 80px) 0 40px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.hero-lede {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.primary:hover { background: var(--green-dark); }
.button.primary:active { transform: translateY(1px); }

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover { border-color: #d1d5db; }
.button.secondary:active { transform: translateY(1px); }

/* ── Calculator ── */

.calculator-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: start;
  padding: 32px 0;
}

.calculator-panel,
.results-panel,
.comparison-section,
.checklist-section,
.seo-hub {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.calculator-panel,
.results-panel {
  padding: clamp(16px, 3vw, 24px);
}

.results-panel {
  position: sticky;
  top: 68px;
}

.panel-heading { margin-bottom: 16px; }
.panel-heading h2 { margin-bottom: 0; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.field-note {
  align-self: end;
  margin: 0;
  padding: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

input,
select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color .15s;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(5,150,105,.12);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ── Results ── */

.result-hero {
  padding: 18px;
  color: white;
  background: var(--green-dark);
  border-radius: 8px;
}

.result-hero span,
.result-hero small {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.result-hero strong {
  display: block;
  margin: 6px 0 4px;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.result-grid div {
  padding: 12px;
  background: var(--paper);
  border-radius: 6px;
}

.result-grid span,
.result-grid strong { display: block; }

.result-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.result-grid strong {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.breakdown { padding-top: 4px; }

.breakdown h3 { font-size: 14px; font-weight: 600; }

.breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.breakdown-row strong {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Warnings ── */

.warnings {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.warning {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: #fffbeb;
  border-radius: 6px;
  font-size: 13px;
}

.warning.high {
  border-color: var(--red);
  background: #fef2f2;
}

.warning.good {
  border-color: var(--green);
  background: #ecfdf5;
}

.warning strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 600;
}

.warning span { color: var(--muted); }

/* ── Homepage copy ── */

.homepage-copy {
  display: grid;
  gap: 16px;
  margin: 20px 0;
  color: #374151;
}

.homepage-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.homepage-copy h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.homepage-copy p,
.homepage-copy li,
.homepage-copy dd {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  max-width: 65ch;
}

.copy-intro,
.copy-block,
.formula-block {
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.copy-intro p { max-width: 800px; }

.steps-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.steps-list li::marker {
  color: var(--green-dark);
  font-weight: 600;
}

.steps-list strong { color: var(--ink); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.pillar-grid article:last-child {
  grid-column: 1 / -1;
}

.pillar-grid article {
  padding: 16px;
  background: var(--paper);
  border-radius: 8px;
}

.pillar-grid p { margin-bottom: 0; }

.formula-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: center;
}

.formula-card {
  padding: 18px;
  background: var(--paper);
  border-radius: 8px;
}

.formula {
  margin-bottom: 14px;
  padding: 14px;
  color: var(--ink);
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 600;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.formula-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.formula-card div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
}

.formula-card dt {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  background: var(--green);
  border-radius: 6px;
}

.formula-card dd {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 4px;
}

/* ── Content pages (lease vs buy) ── */

.content-hero {
  padding: clamp(40px, 7vw, 72px) 0 24px;
}

.content-hero h1 {
  max-width: 800px;
  font-size: clamp(34px, 5vw, 52px);
}

.content-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.guide-card,
.comparison-table-section {
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.guide-card h2 { font-size: clamp(20px, 2.5vw, 26px); }

.guide-card p,
.guide-card dd,
.comparison-table-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guide-card dl {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.guide-card dt {
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guide-card dd { margin: 0; }

.comparison-table-section { margin: 20px 0 30px; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

thead th {
  color: white;
  font-weight: 600;
  background: #111827;
}

tbody th {
  color: var(--ink);
  font-weight: 600;
  background: var(--paper);
}

tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

.guide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.guide-cta p {
  max-width: 600px;
  margin: 0;
}

/* ── Programmatic panel ── */

.programmatic-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.programmatic-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.programmatic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.programmatic-grid article {
  padding: 14px;
  background: var(--paper);
  border-radius: 8px;
}

.programmatic-grid span,
.programmatic-grid small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.programmatic-grid strong {
  display: block;
  margin: 6px 0;
  color: var(--green-dark);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
}

/* ── Blog ── */

.blog-hero {
  padding: clamp(40px, 7vw, 72px) 0 24px;
}

.blog-hero h1 {
  max-width: 800px;
  font-size: clamp(36px, 5.5vw, 56px);
  overflow-wrap: anywhere;
}

.blog-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.blog-card,
.category-block,
.blog-article,
.article-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.blog-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.blog-card span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.blog-card h2 a,
.category-block a,
.article-body a,
.breadcrumbs a {
  color: inherit;
  text-decoration-color: rgba(5,150,105,.3);
  text-underline-offset: 2px;
}

.blog-card h2 a:hover,
.category-block a:hover,
.article-body a:hover,
.breadcrumbs a:hover {
  color: var(--green-dark);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.read-link {
  align-self: end;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.category-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 30px;
}

.category-block { padding: 18px; }

.category-block h2 { font-size: 18px; }

.category-block ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}

/* ── Blog articles ── */

.blog-main {
  width: min(800px, calc(100% - 32px));
}

.blog-article {
  margin: 28px 0;
  padding: clamp(20px, 4vw, 40px);
}

.breadcrumbs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.article-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 720px;
  font-size: clamp(32px, 5vw, 48px);
  overflow-wrap: anywhere;
}

.article-header p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.article-body { padding-top: 16px; }

.article-body h2 {
  margin: 28px 0 8px;
  font-size: clamp(22px, 3vw, 28px);
}

.article-body h3 {
  margin: 20px 0 6px;
  font-size: 17px;
}

.article-body p,
.article-body li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 6px;
  padding-left: 20px;
}

.article-body strong { color: var(--ink); }

.blog-card,
.blog-article,
.article-body,
.category-block {
  overflow-wrap: anywhere;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 18px;
  background: var(--paper);
}

.article-cta h2 {
  margin-bottom: 6px;
  font-size: 20px;
}

.article-cta p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── Comparison section ── */

.comparison-section,
.checklist-section,
.seo-hub {
  margin: 20px 0;
  padding: clamp(16px, 3vw, 24px);
}

.comparison-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  align-items: center;
}

.comparison-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-tool { display: grid; gap: 12px; }

.comparison-output {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border-radius: 6px;
}

.comparison-output span {
  color: var(--muted);
  font-size: 13px;
}

.comparison-output strong {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
}

/* ── Checklist ── */

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.checklist-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  cursor: pointer;
}

.checklist-grid input {
  width: 16px;
  height: 16px;
  min-height: auto;
  accent-color: var(--green);
}

/* ── SEO hub ── */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hub-grid a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: var(--paper);
  border-radius: 6px;
  transition: color .15s, background .15s;
}

.hub-grid a:hover { color: var(--green-dark); background: #f0fdf4; }
.hub-grid a:active { transform: translateY(1px); }

.seo-hub h2 { margin-bottom: 14px; }

/* ── Footer ── */

.site-footer {
  background: #111827;
  color: #cbd5e1;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px clamp(16px, 4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.footer-brand h2 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.site-footer section > p {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 280px;
}

.footer-copy {
  margin-top: 16px;
  font-size: 11px;
  color: #64748b;
}

.site-footer nav h3 {
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer nav ul a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  transition: color .15s;
}

.site-footer nav ul a:hover { color: white; }

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
}

.footer-disclaimer p {
  font-size: 11px;
  line-height: 1.7;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: #64748b;
  text-decoration: none;
  transition: color .15s;
}

.footer-bottom-links a:hover { color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.print-worksheet-header {
  display: none;
}

.print-hidden {
  display: none !important;
}

/* ── Mobile bottom nav ── */

.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}

.mobile-nav nav {
  display: flex;
  justify-content: space-around;
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  justify-content: center;
}

.mobile-nav a:active { color: var(--green-dark); }

/* ── Responsive ── */

@media (max-width: 920px) {
  .hero,
  .calculator-shell,
  .comparison-section,
  .formula-block,
  .guide-grid,
  .programmatic-panel,
  .blog-grid,
  .category-section {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 32px; }
  .results-panel { position: static; }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-nav { display: none; }
  .mobile-nav { display: block; }

  body { padding-bottom: 60px; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .field-grid,
  .result-grid,
  .checklist-grid,
  .hub-grid,
  .pillar-grid,
  .programmatic-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 20px; }

  .hero-lede { font-size: 15px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .comparison-section p,
  .guide-card p,
  .guide-card dd {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header { gap: 12px; }

  .brand strong { font-size: 13px; }
  .brand small { font-size: 10px; }

  main {
    width: calc(100% - 24px);
  }
}

@media print {
  @page {
    margin: 0.6in;
  }

  * {
    color: #000000 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    padding: 0 !important;
    font-size: 12pt;
    line-height: 1.45;
    background: #ffffff !important;
  }

  .site-header,
  .top-nav,
  .mobile-nav,
  .hero,
  .homepage-copy,
  .comparison-section,
  .seo-hub,
  .site-footer,
  .footer-inner,
  .footer-grid,
  .footer-bottom-links,
  .footer-disclaimer,
  .warnings,
  .button,
  #sampleButton,
  #rebate-helper {
    display: none !important;
  }

  main {
    width: 100% !important;
    margin: 0 !important;
  }

  .print-worksheet-header {
    display: block !important;
    margin: 0 0 18px !important;
    padding: 0 0 14px !important;
    border-bottom: 2px solid #000000 !important;
  }

  .print-worksheet-header h1 {
    margin: 0 0 8px !important;
    max-width: none !important;
    color: #000000 !important;
    font-size: 20pt !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .print-worksheet-header p {
    margin: 0 0 10px !important;
    color: #000000 !important;
    font-size: 10pt !important;
  }

  .print-worksheet-header ul {
    display: grid !important;
    gap: 4px !important;
    margin: 0 !important;
    padding-left: 18px !important;
  }

  .print-worksheet-header li {
    color: #000000 !important;
    font-size: 11pt !important;
  }

  .calculator-shell {
    display: block !important;
    padding: 0 !important;
  }

  .calculator-panel {
    display: none !important;
  }

  .results-panel,
  .checklist-section {
    display: block !important;
    position: static !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .checklist-grid {
    display: none !important;
  }

  .result-hero,
  .result-grid div,
  .breakdown-row {
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
  }

  .result-hero {
    margin-bottom: 12px !important;
    padding: 10px !important;
  }

  .result-hero span,
  .result-hero strong,
  .result-hero small {
    color: #000000 !important;
  }

  .result-hero strong {
    font-size: 24pt !important;
  }

  .result-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    margin: 0 0 14px !important;
    border-top: 1px solid #000000 !important;
    border-left: 1px solid #000000 !important;
  }

  .result-grid div {
    padding: 8px !important;
    border-top: 0 !important;
    border-left: 0 !important;
  }

  .result-grid span,
  .result-grid strong {
    color: #000000 !important;
  }

  .breakdown h3 {
    margin: 0 0 8px !important;
    color: #000000 !important;
    font-size: 14pt !important;
  }

  .breakdown-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 8px 10px !important;
    border-bottom: 0 !important;
    page-break-inside: avoid;
  }

  .breakdown-row + .breakdown-row {
    border-top: 0 !important;
  }

  .breakdown-row span,
  .breakdown-row strong {
    color: #000000 !important;
  }

  .breakdown-row.print-hidden {
    display: none !important;
  }
}
