:root {
  --white: #fff;
  --ink: #11130f;
  --ink-soft: #343830;
  --charcoal: #171915;
  --panel: #22251f;
  --gold: #f6bd17;
  --gold-dark: #d69d00;
  --green: #146b3a;
  --green-light: #dcebe2;
  --cream: #f6f4ec;
  --line: #d9d9d1;
  --muted: #676b63;
  --error: #a51d20;
  --focus: #1877d2;
  --step--1: clamp(.85rem, .82rem + .15vw, .95rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1: clamp(1.18rem, 1.08rem + .48vw, 1.48rem);
  --step-2: clamp(1.48rem, 1.24rem + 1.05vw, 2.1rem);
  --step-3: clamp(2rem, 1.55rem + 1.9vw, 3.15rem);
  --step-4: clamp(2.75rem, 1.9rem + 3.6vw, 5.4rem);
  --space-1: .5rem;
  --space-2: .85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3.25rem;
  --space-6: clamp(4.5rem, 8vw, 7.5rem);
  --content: 74rem;
  --measure: 44rem;
  --radius: .25rem;
  --radius-lg: .5rem;
  --shadow: 0 16px 38px rgb(17 19 15 / 8%);
  --focus-ring: 0 0 0 3px var(--white), 0 0 0 6px var(--focus);
  --motion: 180ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .22em; }
a:hover { text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 2px; }
h1, h2, h3 { margin: 0 0 .7em; font-weight: 790; line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: var(--step-4); max-width: 13ch; }
h2 { font-size: var(--step-3); max-width: 19ch; }
h3 { font-size: var(--step-1); line-height: 1.18; }
p { margin: 0 0 1.25em; }
ul, ol { margin-block: 0 1.4rem; }
.wrap { width: min(calc(100% - 2.4rem), var(--content)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 999; left: 1rem; top: 1rem; padding: .75rem 1rem;
  background: var(--gold); color: var(--ink); font-weight: 750; transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem;
  color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 3px; background: var(--gold); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex; min-height: 3.15rem; align-items: center; justify-content: center; padding: .78rem 1.25rem;
  border: 2px solid transparent; border-radius: var(--radius); font-weight: 780; line-height: 1.2; text-decoration: none;
  transition: background-color var(--motion), border-color var(--motion), transform var(--motion);
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: #ffd03d; }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { border-color: rgb(255 255 255 / 55%); color: var(--white); }
.button-outline-dark { border-color: var(--ink); color: var(--ink); background: var(--white); }
.text-link { display: inline-block; margin-top: .8rem; color: var(--green); font-weight: 780; }

.site-header {
  position: relative; z-index: 20; min-height: 5.25rem; background: var(--white); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; min-height: 5.25rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: block; width: 8.7rem; }
.brand img, .footer-brand img { width: 100%; aspect-ratio: 1.744 / 1; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: .92rem; font-weight: 700; }
.primary-nav a { text-decoration: none; }
.primary-nav a:hover { color: var(--green); }
.primary-nav a[aria-current="page"] { color: var(--green); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.primary-nav .nav-cta { padding: .65rem .95rem; background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; width: 3rem; height: 3rem; padding: .7rem; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  overflow: hidden; padding: clamp(5rem, 11vw, 9rem) 0 3rem; background: var(--charcoal); color: var(--white);
  border-bottom: .55rem solid var(--gold);
}
.hero .eyebrow { color: #87c29e; }
.hero h1 span { color: var(--gold); }
.hero-copy { position: relative; z-index: 1; max-width: 66rem; }
.hero-lead { max-width: 45rem; color: #d7d9d3; font-size: var(--step-1); }
.hero-compact { padding-top: 3.5rem; }
.hero-compact h1 { max-width: 18ch; font-size: clamp(2.5rem, 1.9rem + 2.7vw, 4.6rem); }
.breadcrumbs { margin-bottom: 3rem; font-size: var(--step--1); color: #c9cbc5; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: .55rem; color: #8a8e84; }
.outcome-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); max-width: 56rem; margin-top: clamp(3rem, 7vw, 6rem);
  border: 1px solid #3d4138; border-bottom: 0;
}
.outcome-strip div { padding: 1.2rem 1.4rem; border-right: 1px solid #3d4138; }
.outcome-strip div:last-child { border-right: 0; }
.outcome-strip strong, .outcome-strip span { display: block; }
.outcome-strip strong { color: var(--gold); font-size: var(--step-2); }
.outcome-strip span { color: #c5c8c1; font-size: .9rem; }

.section { padding-block: var(--space-6); }
.section-soft { background: var(--cream); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark .eyebrow { color: #83c29a; }
.section-dark .section-lead { color: #ced1ca; }
.section-lead { max-width: var(--measure); font-size: var(--step-1); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.card-grid-three { grid-template-columns: repeat(3, 1fr); }
.card { min-width: 0; padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--white); }
.card p { color: var(--ink-soft); }
.section-visual {
  overflow: hidden; margin: 2.5rem 0 0; aspect-ratio: 16 / 7; background: var(--charcoal); border-bottom: .35rem solid var(--gold);
}
.section-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section-visual + .card-grid { margin-top: 1.25rem; }
.page-visual { margin: var(--space-5) auto 0; }
.page-visual + .section { padding-top: var(--space-5); }
.section-dark .card { background: var(--panel); }
.section-dark .card p { color: #cdd0c9; }
.section-dark .card .text-link { color: var(--gold); }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(19rem, .75fr); align-items: start; gap: clamp(2rem, 7vw, 7rem); }
.split > div > p:not(.eyebrow) { max-width: var(--measure); font-size: var(--step-1); }
.panel { padding: clamp(1.5rem, 4vw, 2.8rem); background: var(--charcoal); color: var(--white); border-top: .45rem solid var(--gold); box-shadow: var(--shadow); }
.panel .check-list { color: #d7d9d3; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding: .6rem 0 .6rem 1.8rem; border-bottom: 1px solid rgb(128 128 128 / 28%); }
.check-list li::before { content: ""; position: absolute; left: .1rem; top: 1.16rem; width: .6rem; height: .32rem; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.panel .check-list li::before { border-color: var(--gold); }
.industry-list { display: grid; gap: .6rem; }
.industry-list a { padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: var(--cream); font-weight: 750; text-decoration: none; }
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof .fine { font-size: var(--step--1); color: var(--muted); }
.cta-section { background: var(--green); color: var(--white); }
.cta-band { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 3rem; }
.cta-band .eyebrow { color: var(--white); }
.cta-band .button-row { justify-content: flex-end; }
.cta-band p { max-width: 44rem; }

.feature-article { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; padding: clamp(2rem, 5vw, 4rem); background: var(--charcoal); color: var(--white); border-bottom: .5rem solid var(--gold); }
.feature-article-single { grid-template-columns: 1fr; }
.feature-article p { max-width: 42rem; color: #d2d5ce; }
.article { padding-block: var(--space-6); }
.article-body { width: min(calc(100% - 2.4rem), 48rem); margin-inline: auto; }
.article-body h2 { max-width: 26ch; margin-top: 2.5em; font-size: var(--step-2); }
.article-body p { font-size: var(--step-1); }
.article-intro { padding-left: 1.4rem; border-left: 5px solid var(--gold); font-weight: 650; }
.article-callout { margin: 3rem 0; padding: 2rem; background: var(--green-light); border-left: 5px solid var(--green); }
.article-callout p { margin-bottom: 0; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(18rem, .6fr); gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.business-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { min-width: 0; }
.field-wide, .field-check, .error-summary { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .4rem; font-weight: 760; }
.field .optional { color: var(--muted); font-size: .86rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 3.2rem; padding: .7rem .8rem; border: 1px solid #8c9087; border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.field textarea { resize: vertical; }
.field [aria-invalid="true"] { border: 2px solid var(--error); }
.field-hint, .field-error { display: block; margin-top: .25rem; font-size: .84rem; }
.field-hint { color: var(--muted); }
.field-error { color: var(--error); font-weight: 700; }
.field-check { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .8rem; padding: 1rem; background: var(--cream); }
.field-check input { width: 1.3rem; min-height: 1.3rem; margin-top: .2rem; }
.field-check label { margin: 0; }
.field-check .field-error { grid-column: 2; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.error-summary { padding: 1.2rem; border-left: 5px solid var(--error); background: #fbeaec; }
.error-summary h2 { font-size: var(--step-1); }
.error-summary ul { margin-bottom: 0; }
.form-status { margin-top: 1rem; font-weight: 700; }
.contact-aside { position: sticky; top: 2rem; padding: 2rem; background: var(--charcoal); color: var(--white); border-top: .45rem solid var(--gold); }
.contact-aside .eyebrow { color: #89c5a1; }
.contact-link { display: block; padding: .5rem 0; color: var(--gold); font-size: var(--step-1); font-weight: 750; }
.contact-aside hr { margin: 2rem 0; border: 0; border-top: 1px solid #494d44; }

.faq-list { width: min(100%, 54rem); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; font-size: var(--step-1); font-weight: 780; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .5rem; top: 1.3rem; color: var(--green); font-size: 1.8rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { max-width: 46rem; padding-bottom: 1rem; }
.legal-copy { width: min(100%, 54rem); }
.legal-copy h2 { margin-top: 2.2em; font-size: var(--step-2); }
.draft-notice { padding: 1.2rem; border-left: 5px solid var(--gold); background: var(--cream); }
.preference-form fieldset { padding: 0; border: 0; }
.preference-form legend { margin-bottom: 1.5rem; font-size: var(--step-2); font-weight: 800; }
.preference-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 1.3rem 0; border-top: 1px solid var(--line); }
.preference-row p { margin: 0; }
.preference-row input { width: 1.4rem; height: 1.4rem; }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.sitemap-grid h2 { font-size: var(--step-2); }

.site-footer { padding-top: 4rem; background: var(--charcoal); color: #d3d6cf; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-grid > div:first-child p { max-width: 18rem; }
.footer-brand { display: block; width: 9.25rem; margin-bottom: 1rem; filter: invert(1); }
.footer-grid h2 { color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a { display: block; padding: .25rem 0; color: inherit; text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding: 1.25rem 0; border-top: 1px solid #3a3e35; font-size: .84rem; }
.footer-bottom p { margin: 0; }
.consent-banner {
  position: fixed; z-index: 100; right: 1rem; bottom: 1rem; display: grid; grid-template-columns: 1fr; align-items: start; gap: .9rem;
  width: min(30vw, 25rem); min-width: 20rem; padding: 1.1rem; background: var(--white); border: 1px solid var(--ink); border-top: .4rem solid var(--gold); box-shadow: 0 18px 60px rgb(0 0 0 / 25%);
}
.consent-banner[hidden] { display: none; }
.consent-banner h2 { font-size: var(--step-0); margin-bottom: .25rem; }
.consent-banner p { margin: 0; font-size: .84rem; line-height: 1.45; }
.consent-actions { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: .55rem; }
.consent-actions .button { width: 100%; min-height: 2.75rem; padding: .65rem .85rem; font-size: .88rem; }
.consent-actions > a { justify-self: center; font-size: .82rem; }

@media (max-width: 62rem) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0;
    padding: 1rem 1.2rem 1.5rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .primary-nav[data-open] { display: grid; }
  .primary-nav a { padding: .8rem; }
  .primary-nav .nav-cta { margin-top: .5rem; text-align: center; }
  .card-grid, .card-grid-three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .consent-banner { width: min(42vw, 24rem); }
}
@media (max-width: 46rem) {
  .wrap { width: min(calc(100% - 1.5rem), var(--content)); }
  h1 { font-size: clamp(2.55rem, 12vw, 4.2rem); }
  .hero { padding-top: 4rem; }
  .hero-compact { padding-top: 2.5rem; }
  .outcome-strip, .card-grid, .card-grid-three, .split, .cta-band, .feature-article, .form-layout, .business-form, .sitemap-grid, .consent-banner { grid-template-columns: 1fr; }
  .outcome-strip div { border-right: 0; border-bottom: 1px solid #3d4138; }
  .split { gap: 2rem; }
  .cta-band .button-row { justify-content: flex-start; }
  .field { grid-column: 1; }
  .contact-aside { position: static; }
  .section-visual { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: .5rem; }
  .consent-banner { right: .75rem; bottom: .75rem; left: .75rem; width: auto; min-width: 0; gap: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .site-header, .site-footer, .consent-banner, .button-row { display: none !important; }
  .hero { padding: 2rem 0; background: var(--white); color: var(--ink); border-bottom: 2px solid var(--ink); }
  .hero-lead { color: var(--ink); }
}
