:root {
  --ink: #171512;
  --charcoal: #221f1a;
  --walnut: #3a3027;
  --olive: #5f674d;
  --brass: #a5793b;
  --linen: #f4efe6;
  --paper: #fffaf2;
  --mist: #e7e1d7;
  --muted: #6f6a61;
  --line: rgba(34, 31, 26, 0.14);
  --line-light: rgba(255, 250, 242, 0.18);
  --shadow: 0 22px 55px rgba(34, 31, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--paper);
  background: rgba(23, 21, 18, 0.86);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.brand,
.brand-text,
.nav,
.hero-actions,
.proof-strip,
.section-heading,
.trust-inner,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-logo rect {
  fill: var(--paper);
}

.brand-logo path:first-of-type {
  fill: var(--charcoal);
}

.brand-logo path:last-of-type {
  fill: var(--brass);
}

.brand-text {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.04rem;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-text span {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  gap: 30px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.94rem;
  font-weight: 620;
}

.nav a:hover,
.footer a:hover {
  color: #d4b98e;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  gap: 5px;
  padding: 0;
  color: var(--paper);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-cta,
.button,
.package-card a,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 760;
}

.nav-cta {
  padding: 0 18px;
  color: var(--charcoal);
  background: var(--paper);
  white-space: nowrap;
}

.cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  padding: 134px clamp(20px, 6vw, 84px) 78px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.94) 0%, rgba(23, 21, 18, 0.84) 45%, rgba(23, 21, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(23, 21, 18, 0.72) 0%, rgba(23, 21, 18, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #d4b98e;
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-copy {
  width: min(700px, 100%);
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 12px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--paper);
  background: var(--olive);
}

.button.primary:hover,
.package-card a:hover,
.contact-form button:hover {
  background: #4d553f;
}

.button.secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 250, 242, 0.36);
}

.hero-reassurance {
  margin: 0 0 32px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.96rem;
  font-weight: 650;
}

.button.secondary.dark {
  color: var(--charcoal);
  border-color: var(--line);
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.84);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 134px;
  padding: 30px;
  background: var(--paper);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.split > div:first-child p,
.section-heading > p,
.contact-copy p,
.trust p,
.visual-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.feature-grid article,
.package-card,
.steps article,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.05);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid span,
.steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brass);
  font-weight: 850;
}

.feature-grid p,
.steps p,
.package-card li,
.terms {
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 84px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.audit-list {
  display: grid;
  gap: 12px;
}

.audit-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: #fbf5eb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.audit-list span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-list h3,
.audit-list p {
  grid-column: 2;
}

.audit-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-types {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(20px, 6vw, 84px);
  background: var(--line);
}

.service-types span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  color: var(--charcoal);
  background: var(--paper);
  font-weight: 760;
  text-align: center;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 84px);
  color: var(--paper);
  background: var(--charcoal);
}

.visual-copy h2 {
  max-width: 720px;
}

.visual-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.72);
}

.site-preview {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.preview-topbar span {
  width: 9px;
  height: 9px;
  background: #cfc7ba;
  border-radius: 50%;
}

.preview-hero {
  position: relative;
  min-height: 420px;
}

.preview-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.86);
}

.preview-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(340px, calc(100% - 44px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(34, 31, 26, 0.16);
}

.preview-copy p {
  margin-bottom: 14px;
  color: var(--muted);
}

.preview-copy a {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--olive);
  border: 0;
  border-radius: 6px;
  font-weight: 780;
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--charcoal);
  background: var(--line);
}

.preview-services span {
  padding: 16px;
  background: var(--paper);
  font-weight: 760;
  text-align: center;
}

.sample-work {
  background: var(--linen);
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.sample-card,
.sample-audit,
.faq-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.05);
}

.sample-card {
  position: relative;
  overflow: hidden;
}

.sample-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 11px;
  color: var(--charcoal);
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(34, 31, 26, 0.12);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 820;
}

.sample-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(0.88);
}

.sample-card-copy {
  padding: 28px;
}

.sample-type {
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-card-copy p:last-child,
.sample-audit li,
.faq-grid p {
  color: var(--muted);
}

.sample-demo-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--olive);
  border-radius: 6px;
  font-weight: 760;
}

.sample-audit {
  padding: 28px;
}

.sample-audit ul {
  margin: 22px 0 24px;
  padding-left: 18px;
}

.sample-audit li + li {
  margin-top: 12px;
}

.sample-audit strong {
  color: var(--charcoal);
}

.sample-audit a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--paper);
  background: var(--olive);
  border-radius: 6px;
  font-weight: 760;
}

.about-founder {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.founder-photo {
  width: min(360px, 100%);
  overflow: hidden;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.08);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}

.founder-copy {
  width: min(760px, 100%);
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-teasers {
  background: var(--linen);
}

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

.teaser-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.05);
}

.teaser-grid span {
  margin-bottom: 20px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.teaser-grid p {
  color: var(--muted);
}

.teaser-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  color: var(--paper);
  background: var(--olive);
  border-radius: 6px;
  font-weight: 760;
}

.teaser-grid a:hover {
  background: #4d553f;
}

.detail-page {
  background: var(--linen);
}

.detail-hero {
  padding: 150px clamp(20px, 6vw, 84px) 84px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.94), rgba(23, 21, 18, 0.72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.detail-hero h1 {
  width: min(940px, 100%);
}

.detail-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.fit-section {
  background: var(--paper);
}

.demo-page {
  background: var(--linen);
}

.demo-hero {
  padding: 150px clamp(20px, 6vw, 84px) 84px;
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.96), rgba(244, 239, 230, 0.78)),
    url("https://images.unsplash.com/photo-1600566753151-384129cf4e3e?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.demo-hero > div {
  width: min(880px, 100%);
}

.demo-hero h1 {
  color: var(--charcoal);
}

.demo-hero p:not(.eyebrow) {
  width: min(700px, 100%);
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.demo-disclaimer {
  width: min(780px, 100%);
  margin: 28px 0 0;
  padding: 16px 18px;
  color: var(--charcoal);
  background: rgba(95, 103, 77, 0.12);
  border: 1px solid rgba(95, 103, 77, 0.22);
  border-radius: 6px;
  font-weight: 700;
}

.comparison-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.comparison-slider {
  --position: 50%;
  background: var(--paper);
  border-radius: 6px;
}

.comparison-stage {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.comparison-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 42px);
}

.before-panel {
  background:
    linear-gradient(135deg, rgba(231, 225, 215, 0.96), rgba(198, 189, 176, 0.84)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1500&q=80");
  background-position: center;
  background-size: cover;
}

.after-panel {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  overflow: hidden;
  background: var(--paper);
  z-index: 2;
}

.comparison-label {
  position: absolute;
  top: 22px;
  z-index: 4;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label.before {
  right: 22px;
  color: var(--charcoal);
  background: rgba(255, 250, 242, 0.82);
}

.comparison-label.after {
  left: 22px;
  color: var(--paper);
  background: var(--olive);
}

.mock-browser {
  width: min(940px, calc(100vw - 56px));
  max-width: calc(100% - 84px);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(34, 31, 26, 0.16);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(34, 31, 26, 0.16);
}

.mock-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #f6f0e7;
  border-bottom: 1px solid rgba(34, 31, 26, 0.12);
}

.mock-topbar span {
  width: 9px;
  height: 9px;
  background: #cfc7ba;
  border-radius: 50%;
}

.mock-before,
.mock-after {
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.mock-before {
  color: #312f2b;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.98), rgba(235, 229, 220, 0.98));
}

.mock-after {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(34, 31, 26, 0.9), rgba(34, 31, 26, 0.62), rgba(34, 31, 26, 0.34)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1400&q=82");
  background-position: center;
  background-size: cover;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 0 clamp(18px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(34, 31, 26, 0.12);
  color: var(--charcoal);
  font-weight: 760;
}

.mock-after .mock-nav {
  color: var(--paper);
  background: rgba(23, 21, 18, 0.58);
  border-bottom-color: rgba(255, 250, 242, 0.18);
}

.mock-nav span {
  font-size: 0.84rem;
  font-weight: 620;
}

.mock-page {
  display: flex;
  min-height: 492px;
  flex: 1;
  flex-direction: column;
}

.mock-body {
  padding: clamp(30px, 5vw, 62px);
}

.mock-tag {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-before .mock-tag {
  color: #86775f;
}

.mock-body h3 {
  max-width: 690px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.45rem);
  font-weight: 500;
  line-height: 1.02;
}

.mock-body p {
  max-width: 560px;
}

.mock-before .mock-body p {
  color: #716d66;
}

.mock-after .mock-body p {
  color: rgba(255, 250, 242, 0.82);
}

.weak-list,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.weak-list span,
.trust-row span {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.weak-list span {
  color: #5c574d;
  background: #e5ded2;
}

.trust-row span {
  color: var(--paper);
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.18);
}

.mock-body a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 760;
}

.mock-before .mock-body a {
  color: #4f4a42;
  background: #ddd5c8;
}

.mock-after .mock-body a {
  color: var(--paper);
  background: var(--olive);
}

.mock-lower {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: auto;
  background: rgba(34, 31, 26, 0.12);
  border-top: 1px solid rgba(34, 31, 26, 0.12);
}

.mock-lower > span,
.mock-lower article {
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.86);
}

.weak-lower > span {
  color: #6a645b;
  font-weight: 700;
}

.preview-lower {
  background: rgba(255, 250, 242, 0.18);
  border-top-color: rgba(255, 250, 242, 0.18);
}

.preview-lower article {
  background: rgba(23, 21, 18, 0.58);
  border-right: 1px solid rgba(255, 250, 242, 0.12);
}

.preview-lower article span {
  display: block;
  margin-bottom: 8px;
  color: #d4b98e;
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-lower article strong {
  color: var(--paper);
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 5;
  width: 2px;
  background: rgba(255, 250, 242, 0.92);
  transform: translateX(-1px);
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(34, 31, 26, 0.2);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.2);
  transform: translate(-50%, -50%);
}

.slider-handle::before,
.slider-handle::after {
  position: absolute;
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1;
}

.slider-handle::before {
  content: "‹";
  left: 14px;
}

.slider-handle::after {
  content: "›";
  right: 14px;
}

.slider-handle span {
  width: 2px;
  height: 22px;
  background: var(--brass);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

.comparison-tips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-tips strong,
.comparison-tips span {
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.comparison-tips strong {
  color: var(--charcoal);
}

.demo-notes {
  background: var(--paper);
}

.demo-note-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.demo-note-grid article {
  padding: 24px;
  background: #fbf5eb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.demo-note-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brass);
  font-weight: 850;
}

.demo-note-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-cta {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 84px);
  color: var(--paper);
  background: var(--walnut);
  text-align: center;
}

.demo-cta h2 {
  width: min(820px, 100%);
  margin: 0 auto 28px;
}

.demo-cta p:not(.section-kicker) {
  width: min(680px, 100%);
  margin: -12px auto 28px;
  color: rgba(255, 250, 242, 0.74);
}

.finder-page {
  background: var(--linen);
}

.finder-hero {
  padding: 150px clamp(20px, 6vw, 84px) 80px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.94), rgba(23, 21, 18, 0.72)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.finder-hero > div {
  width: min(900px, 100%);
}

.finder-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.finder-workspace {
  background: var(--paper);
}

.finder-form {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(150px, 0.5fr) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(20px, 3vw, 30px);
  background: #fbf5eb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.finder-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}

.finder-form button,
.copy-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--paper);
  background: var(--olive);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
}

.finder-form button:hover,
.copy-button:hover {
  background: #4d553f;
}

.finder-output {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.finder-card {
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34, 31, 26, 0.05);
}

.finder-card.wide-card {
  grid-column: 1 / -1;
}

.finder-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.finder-card-header span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 850;
}

.finder-card-header h3,
.finder-card p {
  margin-bottom: 0;
}

.finder-card p {
  color: var(--muted);
}

.chip-list,
.query-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip-list span,
.query-list code {
  padding: 8px 10px;
  background: #fbf5eb;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.query-list code {
  border-radius: 6px;
  font-family: inherit;
}

.finder-card textarea {
  min-height: 190px;
  margin-top: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.copy-button.secondary-copy {
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--line);
}

.copy-button.secondary-copy:hover {
  background: #fbf5eb;
}

.copy-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.finder-rubric {
  background: var(--linen);
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rubric-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rubric-grid strong {
  color: var(--brass);
  font-size: 1.2rem;
}

.rubric-grid span {
  color: var(--charcoal);
  font-weight: 680;
}

.priority-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.priority-strip span {
  padding: 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.94rem;
}

.priority-strip strong {
  color: var(--charcoal);
}

.finder-guardrails {
  background: var(--paper);
}

.guardrail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.guardrail-list article {
  padding: 24px;
  background: #fbf5eb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.guardrail-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading > p {
  width: min(470px, 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  padding: 28px;
}

.package-card.featured {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-10px);
}

.package-card.featured li,
.package-card.featured .monthly {
  color: rgba(255, 250, 242, 0.76);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--charcoal);
  background: #d4b98e;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 850;
}

.price span,
.monthly {
  font-size: 1rem;
  font-weight: 620;
}

.monthly {
  margin: 8px 0 24px;
}

.package-card ul {
  min-height: 210px;
  margin: 0;
  padding: 0 0 0 18px;
}

.package-card li + li {
  margin-top: 10px;
}

.package-card a {
  width: 100%;
  margin-top: 28px;
  color: var(--paper);
  background: var(--olive);
}

.terms {
  margin: 22px 0 0;
  font-size: 0.96rem;
}

.process {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.steps article {
  padding: 24px;
  box-shadow: none;
}

.faq {
  background: var(--linen);
}

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

.faq-grid article {
  padding: 24px;
}

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

.trust {
  padding: clamp(54px, 7vw, 80px) clamp(20px, 6vw, 84px);
  color: var(--paper);
  background: var(--walnut);
}

.trust-inner {
  justify-content: space-between;
  gap: 44px;
}

.trust h2 {
  margin-bottom: 0;
}

.trust p {
  width: min(620px, 100%);
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
  color: var(--charcoal);
  background: rgba(95, 103, 77, 0.12);
  border-left: 4px solid var(--olive);
  border-radius: 6px;
  font-weight: 680;
}

.next-steps {
  margin-top: 28px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.next-steps h3 {
  margin-bottom: 12px;
}

.next-steps ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.next-steps li + li {
  margin-top: 8px;
}

.next-steps p {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form .wide,
.form-status,
.form-privacy,
.contact-form button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(34, 31, 26, 0.2);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(95, 103, 77, 0.18);
  border-color: var(--olive);
}

.contact-form button {
  border: 0;
  color: var(--paper);
  background: var(--olive);
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.96rem;
  font-weight: 720;
}

.form-status.success {
  color: #4d6a3f;
}

.form-status.error {
  color: #9f3e30;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(255, 250, 242, 0.76);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 250, 242, 0.12);
}

.footer p {
  margin: 0;
}

.footer-detail {
  margin-top: 6px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .service-types {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--paper);
    background: #171512;
    border: 1px solid var(--line-light);
    border-radius: 6px;
    box-shadow: 0 20px 44px rgba(23, 21, 18, 0.28);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px;
    border-radius: 4px;
  }

  .nav a:hover {
    background: rgba(255, 250, 242, 0.08);
  }

  .menu-toggle {
    display: grid;
  }

  .credibility,
  .split,
  .founder-layout,
  .proof-section,
  .visual-band,
  .contact,
  .sample-grid,
  .teaser-grid,
  .package-grid,
  .faq-grid,
  .finder-form,
  .finder-output,
  .rubric-grid,
  .priority-strip,
  .guardrail-list,
  .demo-note-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card ul {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text span {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.86rem;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .hero {
    min-height: 94vh;
    padding: 106px 18px 46px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .metric {
    min-height: auto;
    padding: 24px 18px;
  }

  .feature-grid,
  .contact-form,
  .preview-services {
    grid-template-columns: 1fr;
  }

  .audit-list article {
    grid-template-columns: 1fr;
  }

  .audit-list h3,
  .audit-list p {
    grid-column: auto;
  }

  .service-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 18px;
    padding-right: 18px;
  }

  .visual-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .preview-hero {
    min-height: 390px;
  }

  .preview-hero img {
    height: 390px;
  }

  .preview-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .sample-card img {
    height: 300px;
  }

  .founder-photo {
    width: min(300px, 100%);
  }

  .demo-hero {
    padding: 124px 18px 58px;
  }

  .detail-hero {
    padding: 124px 18px 58px;
  }

  .finder-hero {
    padding: 124px 18px 58px;
  }

  .finder-form {
    padding: 18px;
  }

  .finder-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    width: 100%;
  }

  .comparison-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .comparison-stage {
    min-height: 520px;
  }

  .comparison-panel {
    padding: 12px;
  }

  .mock-browser {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .mock-before,
  .mock-after {
    min-height: 450px;
  }

  .mock-page {
    min-height: 374px;
  }

  .mock-nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 76px;
    padding: 12px 16px;
  }

  .mock-nav span {
    display: none;
  }

  .mock-body {
    width: 50%;
    padding: 20px 12px;
  }

  .mock-before .mock-body {
    margin-left: auto;
  }

  .mock-after .mock-body {
    margin-right: auto;
  }

  .mock-body h3 {
    font-size: clamp(1.12rem, 6vw, 1.55rem);
  }

  .mock-body p {
    display: none;
  }

  .weak-list,
  .trust-row {
    display: none;
  }

  .mock-body a {
    min-height: 36px;
    margin-top: 12px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .mock-lower {
    display: none;
  }

  .comparison-label {
    top: 14px;
  }

  .comparison-label.before {
    right: 14px;
  }

  .comparison-label.after {
    left: 14px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
