:root {
  --bg: #f6efe6;
  --bg-soft: #fff9f2;
  --ink: #21140a;
  --body: #4b3527;
  --muted: #7a6455;
  --line: rgba(77, 38, 0, 0.14);
  --orange: #ef7e29;
  --orange-deep: #d9650d;
  --gold: #ffc313;
  --brown: #4d2600;
  --white: #ffffff;
  --shadow: 0 12px 26px rgba(42, 24, 11, 0.06);
  --line-light: rgba(77, 38, 0, 0.10);
  --line-medium: rgba(77, 38, 0, 0.18);
  --line-strong: rgba(77, 38, 0, 0.22);
  --surface: rgba(255, 255, 255, 0.92);
  --surface-accent: rgba(255, 195, 19, 0.18);
  --tint: rgba(77, 38, 0, 0.035);
  --focus-ring: rgba(239, 126, 41, 0.25);
  --font-body: "Open Sans", sans-serif;
  --font-brand: "PT Mono", monospace;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

  [data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
  [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
  [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
  [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* Keyboard focus indicator for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Inline body-text links need underlines for accessibility */
.proof-link-row a,
.output-card p a,
.team-card p a,
.trust-copy p a,
.timeline-note a,
.compare-copy .timeline-note a,
.form-meta a,
.form-secondary-path a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.proof-link-row a:hover,
.output-card p a:hover,
.team-card p a:hover,
.trust-copy p a:hover,
.timeline-note a:hover,
.form-meta a:hover,
.form-secondary-path a:hover {
  color: var(--orange);
}

/* Arrow indicators for navigation-style links */
.proof-link-row a::after,
.output-card p a::after,
.team-card p a::after,
.trust-copy p a::after {
  content: " \2192";
  display: inline;
  transition: transform 0.2s ease;
}

.container {
  width: min(var(--max-width), calc(100vw - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid rgba(77, 38, 0, 0.12);
}

/* --- Sticky CTA bar --- */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--brown);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.sticky-cta.is-visible {
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.sticky-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 30px;
  height: 30px;
}

.brand-name,
.brand-tag {
  font-family: var(--font-brand);
  color: var(--brown);
}

.brand-name {
  font-size: 16px;
}

.brand-tag {
  font-size: 13px;
}

.site-nav,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--orange);
}

.site-nav a.is-active {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 13px;
  transition: 0.2s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--gold);
  border-color: rgba(77, 38, 0, 0.16);
  color: var(--ink);
}

.btn-primary:hover {
  background: #f4b700;
}

.btn-ghost {
  border-color: transparent;
  color: var(--brown);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(77, 38, 0, 0.04);
}

.btn-primary:active {
  transform: scale(0.97);
}

.header-actions .btn-primary {
  background: var(--gold);
  border-color: rgba(77, 38, 0, 0.16);
  color: var(--ink);
  padding: 11px 18px;
  font-size: 13px;
}

.header-actions .btn-primary:hover {
  background: #f4b700;
}

/* --- Card hover transforms --- */
@media (prefers-reduced-motion: no-preference) {
  .output-card,
  .workflow-card,
  .team-card,
  .proof-strip-card,
  .roi-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .output-card:hover,
  .workflow-card:hover,
  .team-card:hover,
  .proof-strip-card:hover,
  .roi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 38, 0, 0.1);
  }
}

.hero {
  padding: 80px 0 48px;
}

.hero-grid,
.compare-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 901px) {
  .hero-grid,
  .compare-grid,
  .trust-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.68fr);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-head h2,
.compare-copy h2,
.trust-copy h2,
.cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 39px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-lede,
.section-head p,
.compare-copy p,
.trust-copy p,
.cta-copy p {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 16px;
  color: var(--body);
}

.hero-actions {
  margin-top: 22px;
  gap: 18px;
}

.hero-actions .btn-ghost {
  border-color: var(--line-medium);
}


.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.hero-note {
  margin-top: 14px;
  max-width: 44ch;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hero-panel,
.output-card,
.team-card,
.cta-shell,
.workflow-card,
.roi-card {
  background: var(--surface);
  border: 1px solid var(--line-medium);
}

.hero-panel {
  padding: 16px;
  max-width: 430px;
  justify-self: end;
}

.hero-media {
  margin: -16px -16px 14px;
  overflow: hidden;
  background: #e9dbc8;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 0.58;
  object-fit: cover;
}

.hero-media-proof {
  position: relative;
  background: linear-gradient(180deg, rgba(77, 38, 0, 0.08), rgba(77, 38, 0, 0.18));
}

.hero-media-proof img {
  aspect-ratio: 1200 / 655;
  object-position: top center;
}

.hero-proof-callout {
  position: absolute;
  z-index: 1;
  max-width: 220px;
  padding: 12px 14px;
  background: rgba(255, 249, 242, 0.96);
  border: 1px solid var(--line-medium);
  box-shadow: var(--shadow);
}

.hero-proof-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.hero-proof-callout p {
  margin: 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.4;
}

.hero-proof-callout-top {
  top: 16px;
  right: 16px;
}

.hero-proof-callout-bottom {
  bottom: 16px;
  left: 16px;
}

.hero-proof-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  background: var(--surface-accent);
  border: 1px solid rgba(77, 38, 0, 0.12);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
}

.metric-chip {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.metric-chip span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.metric-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.panel-block + .panel-block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.panel-block-accent {
  padding: 14px;
  background: var(--surface-accent);
}

.panel-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-block strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.outputs-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

.proof-hub,
.proof-sample {
  padding: 48px 0 32px;
  background: var(--tint);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.proof-head .section-head h2 {
  max-width: 18ch;
}

.proof-strip-card,
.alt-card,
.sample-panel,
.matrix-card {
  background: var(--surface);
  border: 1px solid var(--line-medium);
}

.proof-strip-card {
  padding: 20px;
}

.proof-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.evidence-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line-medium);
}

.evidence-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.evidence-card p {
  margin: 12px 0 0;
  font-size: 14px;
}

.evidence-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.evidence-card blockquote p {
  margin: 0 0 12px;
}

.evidence-card blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-card,
.buyer-standard-card {
  border-left: 4px solid var(--orange);
}

.testimonial-author {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.evidence-metric {
  padding: 12px;
  background: var(--surface-accent);
  border: 1px solid rgba(77, 38, 0, 0.12);
}

.evidence-metric span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.evidence-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.buyer-standard-card blockquote {
  font-size: 24px;
  line-height: 1.2;
}

.trust-mark-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.trust-mark {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-medium);
}

.trust-mark strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.proof-strip-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.05;
}

.proof-hub-grid,
.proof-sample-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

@media (min-width: 901px) {
  .proof-hub-grid,
  .proof-sample-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  }
}

.alt-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.alt-card {
  padding: 20px;
}

.alt-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.buyer-standard {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.5);
}

.buyer-standard blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.buyer-standard p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.sample-panel {
  padding: 20px;
}

.sample-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.sample-panel-head strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.sample-summary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.sample-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(77, 38, 0, 0.1);
}

.sample-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.sample-date,
.sample-cite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  background: var(--surface-accent);
  border: 1px solid rgba(77, 38, 0, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
}

.sample-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.proof-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

/* --- Mid-page CTA --- */
.mid-cta {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  background: var(--surface-accent);
  border: 1px solid rgba(77, 38, 0, 0.12);
}

.mid-cta-text {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  max-width: 38ch;
  margin-inline: auto;
}

.output-card h3,
.team-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.outputs,
.workflow,
.teams,
.trust,
.cta {
  padding: 80px 0;
}

.outputs {
  padding-top: 48px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 20ch;
  font-size: clamp(31px, 3.5vw, 39px);
}

.outputs .section-head h2,
.teams .section-head h2 {
  max-width: 16ch;
}

.outputs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.output-card {
  padding: 20px;
  min-height: 100%;
}

.workflow {
  position: relative;
  padding-top: 48px;
  background: var(--tint);
}

.workflow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
  background: linear-gradient(90deg, #ff941f, #ef7e29);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.workflow-head h2 {
  max-width: 10ch;
}

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

.workflow-step {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-brand);
  font-size: 20px;
  color: var(--orange);
}

.workflow-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.workflow-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--orange);
}

.compare-band {
  position: relative;
  padding: 48px 0;
  color: var(--white);
}

.compare-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5c2a00, #4d2600 54%, #5d2a00);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  z-index: -1;
}

.compare-grid {
  padding: 48px 0;
}

.compare-copy h2 {
  color: var(--white);
  max-width: 13ch;
  font-size: clamp(31px, 3.6vw, 39px);
}

.compare-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.compare-list {
  margin: 24px 0 0;
  padding-left: 18px;
}

.compare-list li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.compare-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.compare-fit-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.compare-fit-card p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.compare-note {
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.compare-matrix {
  display: grid;
  gap: 12px;
}

.matrix-card {
  overflow: hidden;
}

.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) repeat(3, minmax(0, 1fr));
}

.matrix-head {
  background: rgba(255, 255, 255, 0.08);
}

.matrix-head span,
.matrix-row span,
.matrix-row strong {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}

.matrix-head span {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.matrix-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.matrix-row strong {
  color: var(--white);
  font-size: 13px;
}

.matrix-row span {
  color: rgba(255, 255, 255, 0.9);
}

.matrix-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.matrix-card .panel-label {
  color: rgba(255, 255, 255, 0.72);
}

.trust-image img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border: 1px solid rgba(77, 38, 0, 0.14);
}

.trust-image {
  max-width: 360px;
  justify-self: end;
}

.roi-band {
  position: relative;
  padding: 48px 0 0;
}

.roi-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background: linear-gradient(90deg, #ff941f, #ef7e29);
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}

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

.roi-card {
  box-shadow: none;
}

.roi-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.04;
}

.roi-card-featured {
  background: rgba(255, 195, 19, 0.16);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 901px) {
  .team-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }
}

.team-photo {
  margin-top: 18px;
  max-width: 280px;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border: 1px solid rgba(77, 38, 0, 0.14);
}

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

.team-card {
  padding: 20px;
}

.team-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.team-card li {
  margin-bottom: 8px;
}

.team-card-dark {
  background: linear-gradient(180deg, rgba(77, 38, 0, 0.94), rgba(56, 24, 4, 0.97));
  color: rgba(255, 255, 255, 0.9);
}

.team-card-dark h3 {
  color: var(--white);
}

.trust-copy h2,
.cta-copy h2 {
  max-width: 13ch;
  font-size: clamp(31px, 3.7vw, 39px);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pills span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}

.faq {
  padding: 64px 0 24px;
}

.faq-head h2 {
  max-width: 16ch;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-medium);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  margin-left: 12px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 14px 0 0;
  font-size: 14px;
}

.cta {
  position: relative;
  padding-top: 80px;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 195, 19, 0.92), rgba(255, 195, 19, 0.82));
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding: 22px 0 0;
  background: transparent;
  border: 0;
}

@media (min-width: 901px) {
  .cta-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  }
}

.cta-support {
  max-width: 42ch;
}

.cta-next-steps {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(77, 38, 0, 0.12);
}

.cta-next-steps ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.cta-next-steps li {
  margin-bottom: 8px;
  font-size: 14px;
}

.cta-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cta-form-wrap {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(77, 38, 0, 0.14);
  padding: 20px;
}

.mini-form-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-form-title {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.mini-form-copy {
  margin: 10px 0 18px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.mini-form {
  display: grid;
  gap: 14px;
}

.form-intro p {
  margin: 6px 0 0;
  font-size: 14px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder {
  color: rgba(77, 53, 39, 0.72);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: #c2541a;
  box-shadow: 0 0 0 3px rgba(194, 84, 26, 0.14);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D2600' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-help,
.form-error {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.form-help {
  color: var(--muted);
}

.cf-turnstile {
  margin: 4px 0;
  min-height: 70px;
}

.form-error {
  min-height: 17px;
  color: #a84310;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-meta,
.form-privacy,
.form-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.form-meta a {
  color: var(--brown);
  text-decoration: underline;
}

.form-secondary-path {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-secondary-path a {
  color: var(--brown);
  text-decoration: underline;
}

.form-privacy {
  color: var(--muted);
}

.form-status {
  min-height: 20px;
  font-weight: 700;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.warning {
  color: #9a6700;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  padding: 48px 0 28px;
  text-align: center;
  border-top: 1px solid rgba(77, 38, 0, 0.16);
}

.footer-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
}

.footer-brand-name {
  font-family: var(--font-brand);
  font-size: 31px;
  color: var(--brown);
  margin-bottom: 6px;
}

.footer-tagline {
  font-family: var(--font-brand);
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Hamburger menu ---------- */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-contact {
  display: none;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav.is-open a {
    font-size: 18px;
    padding: 12px 24px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav-contact {
    display: inline-flex;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

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

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

  .hero-trust-row {
    gap: 8px;
  }

  .proof-strip,
  .proof-evidence-grid,
  .trust-mark-strip,
  .faq-grid,
  .proof-hub-grid,
  .proof-sample-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cta-shell,
  .hero-grid,
  .compare-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

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

  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: unset;
    padding: 14px 0;
    gap: 12px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .team-grid,
  .outputs-grid,
  .workflow-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .outputs,
  .teams,
  .trust,
  .cta {
    padding: 56px 0;
  }

  .hero-trust-row {
    gap: 8px;
  }

  .compare-grid {
    padding: 52px 0;
  }

  .metric-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    max-width: none;
    justify-self: stretch;
  }

  .trust-image,
  .team-photo {
    max-width: none;
    justify-self: stretch;
  }

  .compare-fit {
    grid-template-columns: 1fr;
  }

  .evidence-metrics {
    grid-template-columns: 1fr;
  }

  .sample-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-bottom: 16px;
  }

  .hero-proof-callout {
    position: static;
    max-width: none;
    margin: 12px 16px 0;
  }

  /* ---------- Comparison matrix mobile layout ---------- */
  .matrix-head {
    display: none;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    padding: 14px 16px;
    gap: 6px;
  }

  .matrix-row strong {
    font-size: 16px;
    padding: 0;
    margin-bottom: 4px;
  }

  .matrix-row span {
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .matrix-row span::before {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 2px;
  }

  .matrix-row span:nth-child(2)::before { content: "PG"; }
  .matrix-row span:nth-child(3)::before { content: "Generic AI"; }
  .matrix-row span:nth-child(4)::before { content: "Manual"; }

  /* ---------- Touch targets: minimum 44px ---------- */
  .proof-link-row {
    flex-direction: column;
    gap: 0;
  }

  .proof-link-row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
  }

  .output-card a,
  .team-card a,
  .trust-copy a,
  .timeline-note a,
  .compare-copy a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
  }

  .form-meta,
  .form-secondary-path {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .form-meta a,
  .form-secondary-path a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .btn,
  .form-submit {
    min-height: 48px;
  }

  .form-field input,
  .form-field select {
    min-height: 48px;
  }

  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100vw - 28px));
  }

  .hero h1,
  .section-head h2,
  .compare-copy h2,
  .trust-copy h2,
  .cta-copy h2 {
    font-size: 31px;
    line-height: 1.02;
  }

  .hero-lede,
  .section-head p,
  .compare-copy p,
  .trust-copy p,
  .cta-copy p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .cta-form-wrap {
    padding: 16px;
  }

  .footer-brand-name {
    font-size: 25px;
  }
}
