@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/Switzer-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zodiak";
  src: url("assets/fonts/Zodiak-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zodiak";
  src: url("assets/fonts/Zodiak-VariableItalic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f5f3ee;
  --paper-alt: #eeeade;
  --card: #ffffff;
  --ink: #17181a;
  --ink-soft: #4a4a46;
  --muted: #83837a;
  --faint: #a6a69c;
  --line: #e3ded0;
  --line-strong: #d1c9b4;
  --brass: #96692c;
  --brass-deep: #6f4d20;
  --brass-soft: #f1e6d3;
  --accent-blue: #4f5fff;
  --accent-blue-deep: #3a46d6;
  --gauge-green: #2b6b47;
  --gauge-green-soft: #e3eee1;
  --gauge-red: #9c3821;
  --gauge-red-soft: #f1dcd1;
  --gauge-blue: #2b5e76;
  --gauge-blue-soft: #dceaef;
  --shadow: 0 24px 60px rgba(23, 24, 26, 0.09);
  --shadow-tight: 0 10px 28px rgba(23, 24, 26, 0.08);
  --font-display: "Zodiak", Georgia, "Times New Roman", serif;
  --font-body: "Switzer", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

button,
select,
input {
  border-radius: 8px;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(79, 95, 255, 0.4);
  outline-offset: 3px;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

h1 {
  max-width: 640px;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 1.08;
}

h1 .muted-ink {
  color: var(--muted);
}

h2 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

p {
  line-height: 1.62;
}

/* Announcement + header */

.announcement {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
}

.announcement a {
  border-bottom: 1px solid rgba(245, 243, 238, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  margin-inline: 0;
  background: rgba(245, 243, 238, 0.95);
  border: 1px solid transparent;
  border-radius: 0;
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition:
    margin-inline 380ms cubic-bezier(0.22, 1, 0.36, 1),
    top 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 380ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 380ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  min-height: 62px;
  padding: 10px 28px;
  margin-inline: max(24px, calc((100vw - 1080px) / 2));
  border-radius: 999px;
  border-color: var(--line);
  background: rgba(255, 253, 246, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(23, 24, 26, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

.nav-cta {
  color: var(--paper);
  background: var(--ink);
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-blue-deep);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

/* Hero */

.hero-section {
  position: relative;
}

/* Copy sits in normal flow so the banner grows to fit it instead of
   clipping the headline on short/narrow viewports. */
.hero-banner {
  position: relative;
  display: grid;
  margin: 0;
  overflow: hidden;
  min-height: clamp(620px, calc(100vh - 132px), 860px);
}

.hero-banner img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 28%;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--paper) 0%,
    var(--paper) 30%,
    rgba(245, 243, 238, 0.72) 40%,
    rgba(245, 243, 238, 0) 58%
  );
}

.hero-banner-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(46%, 560px);
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px 56px max(32px, calc((100vw - 1280px) / 2));
}

.hero-banner-copy h1 {
  max-width: 100%;
  font-size: clamp(2.1rem, 3vw, 3.15rem);
}

.hero-subcopy {
  max-width: 500px;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1.14rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.cta-note {
  margin: 0 0 34px;
  color: var(--faint);
  font-size: 0.9rem;
}

.week-sample-label {
  margin: 0 0 16px;
  color: var(--faint);
  font-size: 0.84rem;
}

.hero-metrics {
  display: flex;
  max-width: 460px;
  margin: 0;
  padding: 0;
}

.hero-metrics div {
  flex: 1;
  padding: 0 20px;
  border-left: 1px solid var(--line-strong);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.ticket-no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brass-deep);
  font-weight: 500;
}

/* Trust strip */

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tool-row span {
  padding: 7px 13px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 500;
}

/* Section base */

.section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.section-split > div > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.field-section {
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
}

.field-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 2.1 / 1;
}

.field-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
}

.field-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    var(--paper) 32%,
    rgba(245, 243, 238, 0.7) 42%,
    rgba(245, 243, 238, 0) 58%
  );
}

.field-photo figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  width: min(38%, 420px);
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 0 44px;
}

.field-photo h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.field-photo p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.66;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-tight);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-photo {
  min-height: 340px;
  aspect-ratio: 16 / 9;
}

.owner-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 330px;
  padding: 14px 16px;
  color: var(--paper);
  background: rgba(23, 24, 26, 0.82);
  border-radius: 12px;
}

.owner-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #c7d4cb;
  font-size: 0.82rem;
  font-weight: 500;
}

.owner-photo figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.34;
}

/* Manifest section (market gaps) */

.manifest-section {
  padding-bottom: 70px;
}

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.manifest-grid article {
  padding: 26px 22px 6px;
  border-right: 1px solid var(--line);
}

.manifest-grid article:last-child {
  border-right: 0;
}

.manifest-grid h3 {
  position: relative;
  padding-left: 20px;
  font-size: 1.05rem;
}

.manifest-grid h3::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gauge-green);
  border-radius: 50%;
}

.manifest-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

/* Numbers section */

.numbers-section {
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
}

.numbers-grid article {
  min-height: 226px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.numbers-grid article:last-child {
  border-right: 0;
}

.numbers-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 500;
  color: var(--ink);
}

.numbers-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--brass-deep);
  font-weight: 600;
  font-size: 0.86rem;
}

.numbers-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Principles */

.principles-section {
  padding-top: 40px;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
}

.principles-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--ink);
  border-radius: 16px;
  color: var(--paper);
}

.principles-grid article:nth-child(2) {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}

.principles-grid article:nth-child(3) {
  background: var(--gauge-green-soft);
  color: var(--ink);
  border: 1px solid #c4dcc7;
}

.principles-grid h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.principles-grid p {
  margin: 0;
  color: inherit;
  line-height: 1.6;
  opacity: 0.82;
}

/* Section heading row */

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
}

.filter-button.active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

/* Workflow cards */

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

.agent-card {
  position: relative;
  display: flex;
  min-height: 288px;
  flex-direction: column;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.agent-card[hidden] {
  display: none;
}

.agent-tab {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.gauge-green.agent-tab,
.gauge-green.gauge-dot {
  color: var(--gauge-green);
  background: var(--gauge-green-soft);
}

.gauge-blue.agent-tab,
.gauge-blue.gauge-dot {
  color: var(--gauge-blue);
  background: var(--gauge-blue-soft);
}

.gauge-red.agent-tab,
.gauge-red.gauge-dot {
  color: var(--gauge-red);
  background: var(--gauge-red-soft);
}

.gauge-brass.agent-tab,
.gauge-brass.gauge-dot {
  color: var(--brass-deep);
  background: var(--brass-soft);
}

.agent-card p {
  color: var(--muted);
  line-height: 1.56;
}

.agent-card ul,
.price-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Audit section */

.audit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audit-kicker {
  margin: 0 0 14px;
  color: var(--brass-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.audit-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.audit-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-tight);
}

.audit-panel-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed var(--line-strong);
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.audit-panel label,
.audit-panel legend {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.audit-panel select {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.audit-panel fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.audit-panel legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.check-row {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 500;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-blue);
}

.full-width {
  width: 100%;
}

.audit-result {
  display: block;
  padding: 18px;
  background: var(--gauge-green-soft);
  border: 1px solid #c4dcc7;
  border-radius: 12px;
}

.result-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gauge-green);
  font-size: 0.78rem;
  font-weight: 600;
}

.audit-result strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.audit-result p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.audit-result .audit-cta {
  display: inline-flex;
  margin-top: 14px;
}

.sms-example-cta {
  margin-top: 20px;
  text-align: center;
}

.pricing-note {
  margin-top: 18px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Steps / stages */

.steps-grid,
.pricing-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article,
.price-card,
.security-grid article {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stage-pill {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 5px 12px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.steps-grid p,
.price-card p,
.security-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.modes-grid article {
  padding-top: 24px;
}

.mode-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 36px;
  border-radius: 50%;
}

.mode-dot--draft {
  background: var(--faint);
}

.mode-dot--assisted {
  background: #b9852b;
}

.mode-dot--autopilot {
  background: var(--gauge-green);
}

.outcome-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.technician-photo {
  min-height: 340px;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.outcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px;
}

.outcome-copy h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.16;
}

.outcome-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Pricing */

.price-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  border-radius: 18px;
}

.price-card.highlighted {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.price-card.highlighted p,
.price-card.highlighted .plan-name {
  color: #cfd0cb;
}

.price-card-head {
  margin-bottom: 4px;
}

.plan-name {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.price-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 500;
}

.ticket-tear {
  height: 0;
  margin: 18px 0;
  border-top: 1.5px dashed var(--line-strong);
}

.price-card.highlighted .ticket-tear {
  border-top-color: rgba(245, 243, 238, 0.28);
}

.price-card .button {
  margin-top: auto;
}

/* Safety */

.security-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 56px;
  align-items: start;
}

.security-section > div > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.security-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gauge-dot {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0;
}

.gauge-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

/* Footer */

.site-footer {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 56px;
  padding: 64px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.14);
}

.footer-pitch {
  max-width: 420px;
}

.footer-pitch h2 {
  color: var(--paper);
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.footer-nav-groups {
  display: flex;
  gap: 64px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 130px;
  padding-top: 6px;
}

.footer-links-label {
  margin-bottom: 4px;
  color: rgba(245, 243, 238, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-links a {
  color: rgba(245, 243, 238, 0.8);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 243, 238, 0.6);
}

.footer-legal {
  width: min(1320px, calc(100% - 32px));
  margin: -28px auto 40px;
  color: var(--faint);
  font-size: 0.85rem;
}

/* Responsive */

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

  .nav-links {
    display: none;
  }

  .footer-nav-groups {
    flex-wrap: wrap;
    gap: 28px 40px;
  }

  .section-split,
  .outcome-band,
  .audit-section,
  .security-section {
    grid-template-columns: 1fr;
  }

  .hero-banner-copy {
    width: min(56%, 480px);
  }

  .section-split figure {
    order: -1;
  }

  .field-photo {
    aspect-ratio: auto;
    border-radius: 16px;
  }

  .field-photo::before {
    display: none;
  }

  .field-photo img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .field-photo figcaption {
    position: static;
    width: auto;
    padding: 24px 0 0;
  }

  .agent-grid,
  .steps-grid,
  .pricing-grid,
  .manifest-grid,
  .numbers-grid,
  .principles-grid,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifest-grid article:nth-child(2n) {
    border-right: 0;
  }

  .manifest-grid article:nth-child(1),
  .manifest-grid article:nth-child(2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

  .numbers-grid article:nth-child(2) {
    border-right: 0;
  }

  .numbers-grid article:nth-child(1),
  .numbers-grid article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .announcement {
    min-height: 34px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .site-header.is-scrolled {
    min-height: 56px;
  }

  .site-header.is-scrolled {
    margin-inline: 12px;
    padding-inline: 14px 8px;
    border-radius: 20px;
  }

  .site-header {
    gap: 14px;
  }

  .nav-signin {
    margin-left: auto;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-section {
    margin-inline: auto;
  }

  .hero-section,
  .section,
  .trust-strip,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-subcopy {
    font-size: 1rem;
  }

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

  .hero-banner {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .hero-banner::before {
    display: none;
  }

  .hero-banner img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-banner-copy {
    position: static;
    width: auto;
    padding: 28px 0 0;
  }

  .hero-metrics,
  .agent-grid,
  .steps-grid,
  .pricing-grid,
  .security-grid,
  .manifest-grid,
  .numbers-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .manifest-grid article,
  .manifest-grid article:nth-child(1),
  .manifest-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .numbers-grid article,
  .numbers-grid article:nth-child(1),
  .numbers-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .numbers-grid article:last-child {
    border-bottom: 0;
  }

  .owner-photo,
  .technician-photo {
    min-height: 0;
  }

  .outcome-band {
    gap: 16px;
    padding: 16px;
  }

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

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .tool-row,
  .filter-group {
    justify-content: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .audit-panel fieldset {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-bottom: 40px;
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Heading sub-lines under question-form section titles */
.heading-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* FAQ */
.faq-section .faq-list {
  max-width: 780px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  font-weight: 600;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "\2013";
}

.faq-list details p {
  margin: 0;
  padding: 0 0 18px;
  max-width: 65ch;
  color: var(--ink-soft);
}

/* Content pages: alternatives & compare */
.content-main {
  max-width: 1020px;
  margin: 0 auto;
  padding: 46px 24px 90px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.content-main .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 72ch;
  margin-top: 14px;
}

.checked-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.table-scroll {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow-tight);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 640px;
}

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

.compare-table thead th {
  background: var(--paper-alt);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

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

.compare-table tbody th {
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.alt-block {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 20px 0;
  box-shadow: var(--shadow-tight);
}

.alt-block h3 {
  margin: 0;
}

.alt-meta {
  margin: 4px 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.pick {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 17px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.pick strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.sources-list {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 18px;
}

.sources-list a {
  color: inherit;
  text-decoration: underline;
}

.content-cta {
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-tight);
}

.content-cta .button {
  margin-top: 14px;
}

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

/* Example SMS conversation (simulated) */

.sms-example {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-tight);
}

.sms-example-label {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1.5px dashed var(--line-strong);
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.sms-thread {
  display: grid;
  gap: 10px;
}

.sms-bubble {
  max-width: 85%;
  margin: 0;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sms-out {
  justify-self: end;
  color: var(--paper);
  background: var(--accent-blue);
  border-bottom-right-radius: 4px;
}

.sms-in {
  justify-self: start;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.sms-example-note {
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 0.82rem;
}

/* Founder note */

.founder-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-tight);
}

.founder-kicker {
  margin: 0 0 12px;
  color: var(--brass-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-card h2 {
  margin-top: 0;
}

.founder-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.founder-sign {
  margin-bottom: 0;
  color: var(--muted);
  font-style: italic;
}

/* Visually hidden (screen-reader-only) text */
.nowrap {
  white-space: nowrap;
}

.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;
}

/* Pricing table CTA cells */
.compare-table .button {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 10px 16px;
}

@media (max-width: 359px) {
  .site-header .brand span {
    display: none;
  }
}

/* ------------------------------------------------------------------
   Premium pass: paper grain, editorial labels, hero phone, story bands,
   night band, motion states. Motion states apply only when motion.js
   runs (html.has-motion); without JS everything renders complete.
   ------------------------------------------------------------------ */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.33 0 0 0 0 0.2 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

section[id] {
  scroll-margin-top: 96px;
}

/* Editorial section labels */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brass-deep);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 2px 8px;
  border: 1px solid rgba(150, 105, 44, 0.45);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.eyebrow::after {
  content: "";
  flex: 0 0 48px;
  height: 1px;
  background: var(--brass);
  opacity: 0.45;
}

/* Hero phone: the product story in the first viewport */

.hero-phone {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  bottom: 48px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 292px;
  padding: 16px;
  background: rgba(255, 253, 246, 0.9);
  border: 1px solid rgba(209, 201, 180, 0.8);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(23, 24, 26, 0.22), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(14px);
}

.hero-phone .sms-bubble {
  font-size: 0.84rem;
  padding: 8px 12px;
}

.hero-phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1;
}

.hero-phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gauge-red);
  box-shadow: 0 0 0 4px var(--gauge-red-soft);
}

.hero-phone-booked {
  justify-self: start;
  margin: 4px 0 0;
  padding: 6px 12px;
  color: var(--gauge-green);
  background: var(--gauge-green-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-phone-note {
  margin: 0;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1;
  text-align: right;
}

/* Story bands: full-width editorial photography */

.story-band {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
}

.story-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-radius: 28px;
  background: var(--paper-alt);
}

.story-figure img {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.story-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 24, 26, 0.82) 0%, rgba(23, 24, 26, 0.5) 40%, rgba(23, 24, 26, 0) 66%);
}

.story-figure--right::after {
  background: linear-gradient(-90deg, rgba(23, 24, 26, 0.82) 0%, rgba(23, 24, 26, 0.5) 40%, rgba(23, 24, 26, 0) 66%);
}

.story-figure figcaption {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: clamp(20px, 4vw, 52px);
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(34rem, 52%);
  color: var(--paper);
}

.story-figure--right figcaption {
  left: auto;
  right: clamp(20px, 4vw, 56px);
  text-align: right;
  justify-items: end;
}

.story-figure figcaption span {
  color: var(--brass-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-figure figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.12;
}

/* Night band: the "after hours" section */

.night-band {
  width: min(1280px, calc(100% - 32px));
  margin-block: 40px;
  padding: 88px clamp(20px, 5vw, 64px);
  color: var(--paper);
  background:
    radial-gradient(ellipse at 88% -10%, rgba(185, 133, 43, 0.26), transparent 55%),
    var(--ink);
  border-radius: 28px;
}

.night-band .eyebrow {
  color: #d9b77e;
}

.night-band .eyebrow span {
  border-color: rgba(217, 183, 126, 0.45);
}

.night-band .eyebrow::after {
  background: #d9b77e;
}

.night-band .heading-sub,
.night-band .steps-grid p {
  color: #bdb8ab;
}

.night-band .steps-grid article {
  background: rgba(245, 243, 238, 0.04);
  border-color: rgba(245, 243, 238, 0.12);
}

.night-band .pricing-note {
  color: #cfcabd;
}

.night-band .pricing-note strong {
  color: var(--paper);
}

/* Motion states (motion.js) */

.split .sw {
  display: inline-block;
}

html.has-motion .hero-banner-copy h1 {
  visibility: hidden;
}

html.has-motion .hero-phone .sms-bubble,
html.has-motion .hero-phone-booked {
  opacity: 0;
  transform: translateY(8px);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

@media (max-width: 1040px) {
  .hero-phone {
    width: 260px;
    bottom: 32px;
  }
}

@media (max-width: 760px) {
  .hero-phone {
    position: relative;
    right: auto;
    bottom: auto;
    order: 3;
    width: min(320px, 100%);
    margin: 28px auto 0;
  }

  .story-band {
    width: min(100% - 28px, 1160px);
  }

  .story-figure {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .story-figure img {
    object-position: 42% center;
  }

  .story-figure::after,
  .story-figure--right::after {
    background: linear-gradient(0deg, rgba(23, 24, 26, 0.78) 0%, rgba(23, 24, 26, 0.2) 50%, rgba(23, 24, 26, 0) 70%);
  }

  .story-figure figcaption {
    max-width: none;
  }

  .story-figure--right figcaption {
    left: clamp(20px, 4vw, 56px);
    text-align: left;
    justify-items: start;
  }

  .night-band {
    width: min(100% - 28px, 1160px);
    padding: 56px 18px;
    border-radius: 20px;
  }
}
