/* ==========================================================================
   SalesCureAll — "The Work Order" design system
   Palette: job-sheet white / tool-steel ink / safety orange / galvanized gray
   Type:    Big Shoulders (display) · Barlow (body) · IBM Plex Mono (utility)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper: #FAFAF7;
  --paper-dim: #F1F2EC;
  --white: #FFFFFF;
  --ink: #131A1F;
  --ink-2: #0C1216;
  --ink-card: #16212A;
  --steel: #54636C;
  --mist: #A9B6BE;
  --mist-dim: #8E9CA6;
  --line: #DCDFD6;
  --line-dark: #2B3942;
  --safety: #FF6A1A;
  --safety-deep: #C24300;
  --safety-soft: #FFEDE2;
  --green: #1F7A4A;
  --green-soft: #E4F2EA;
  --red: #C63822;
  --red-soft: #FBEAE6;

  --font-display: "Big Shoulders", "Big Shoulders Display", Impact, "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, "Courier New", monospace;

  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;

  --shadow-s: 0 1px 2px rgba(19, 26, 31, 0.06), 0 2px 8px rgba(19, 26, 31, 0.05);
  --shadow-m: 0 2px 4px rgba(19, 26, 31, 0.05), 0 10px 28px rgba(19, 26, 31, 0.09);
  --shadow-l: 0 4px 10px rgba(19, 26, 31, 0.06), 0 22px 48px rgba(19, 26, 31, 0.13);

  --container: 1180px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html { overflow-x: hidden; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
[hidden] { display: none !important; }
ul[class], ol[class] { padding: 0; list-style: none; }
nav ul,
.footer-col ul { padding: 0; margin: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

::selection { background: var(--safety); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--safety-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  border-radius: var(--radius-s);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 3rem); margin-inline: auto; }

.section { padding: 6.75rem 0; }
.section--tight { padding: 5rem 0; }
.section--dim { background: var(--paper-dim); }

.section-head { max-width: 620px; margin-bottom: 3.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--safety-deep);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--safety);
}
.on-dark .eyebrow { color: var(--safety); }
.on-dark .eyebrow::before { background: var(--safety); }

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.1rem, 8.5vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-top: 1.1rem;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}

.lead {
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--steel);
}
.on-dark .lead { color: var(--mist); }

.mono { font-family: var(--font-mono); }

.hl-line { display: inline-block; }

.hl-tape {
  display: inline-block;
  padding: 0 0.18em;
  margin: 0 -0.04em;
  background: var(--safety);
  color: var(--ink);
  transform: rotate(-1deg);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 247, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}
.site-header.is-scrolled {
  height: 62px;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(19, 26, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--safety);
  display: grid;
  place-items: center;
  flex: none;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name span { color: var(--safety-deep); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.99rem;
  padding: 0.35rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--safety);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-s);
}
.nav-toggle .bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}
.btn .btn-arrow { transition: transform 0.18s ease; }

.btn-primary {
  background: var(--safety);
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(19, 26, 31, 0.9), 0 10px 24px rgba(255, 106, 26, 0.28);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(19, 26, 31, 0.9), 0 6px 14px rgba(255, 106, 26, 0.25);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:active { transform: translateY(1px); }

/* Hover states only on devices that actually hover — touch screens latch
   :hover after a tap ("sticky hover"), leaving the lifted button + enlarged
   glow stuck on, which is what bled orange into the hero checklist on phones. */
@media (hover: hover) {
  .btn:hover .btn-arrow { transform: translateX(4px); }
  .btn-primary:hover {
    background: #FF7E39;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(19, 26, 31, 0.9), 0 16px 30px rgba(255, 106, 26, 0.34);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
}

.btn-sm { padding: 0.7rem 1.2rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 5.5rem;
  overflow: hidden;
}
.hero::before {
  /* faint job-sheet grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(19, 26, 31, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19, 26, 31, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 70% 20%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .lead {
  max-width: 34rem;
  margin-top: 1.4rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2.1rem;
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--steel);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-trust svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* --- Hero visual: the lead ticket --- */
.lead-visual {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 1rem 0 0.25rem;
}

.ring-wrap {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  pointer-events: none;
}
.ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 106, 26, 0.4);
  border-radius: 50%;
  opacity: 0;
}

.call-card {
  position: relative;
  z-index: 2;
  width: min(370px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.call-dot {
  position: relative;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--safety-soft);
  display: grid;
  place-items: center;
  color: var(--safety-deep);
}
.call-dot svg { width: 20px; height: 20px; }
.call-meta { min-width: 0; }
.call-title { display: block; font-weight: 600; font-size: 1rem; line-height: 1.25; }
.call-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--steel);
  margin-top: 0.15rem;
}
.call-badge {
  margin-left: auto;
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(31, 122, 74, 0.25);
  padding: 0.32rem 0.5rem;
  border-radius: 99px;
}

.ticket {
  position: relative;
  z-index: 1;
  width: min(370px, 100%);
  margin-top: 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
}
.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.15rem;
  border-bottom: 2px dashed var(--line);
  position: relative;
}
/* perforation notches */
.ticket-head::before,
.ticket-head::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
}
.ticket-head::before { left: -8px; }
.ticket-head::after { right: -8px; }

.ticket-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.ticket-no {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--safety-deep);
}

.ticket-body { padding: 1rem 1.15rem 2.9rem; }
.ticket-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
}
.ticket-row + .ticket-row { border-top: 1px dotted var(--line); }
.ticket-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  flex: none;
}
.ticket-value {
  font-weight: 600;
  font-size: 0.96rem;
  text-align: right;
}

.stamp {
  position: absolute;
  right: -12px;
  bottom: -16px;
  z-index: 3;
  transform: rotate(-7deg);
  border: 3px solid var(--safety-deep);
  border-radius: 6px;
  padding: 0.45rem 0.8rem 0.5rem;
  text-align: center;
  color: var(--safety-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 18px rgba(214, 74, 0, 0.18);
}
.stamp-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}
.stamp-sub {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.22rem;
}

.chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: var(--shadow-s);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.chip svg { width: 14px; height: 14px; color: var(--safety-deep); flex: none; }
.chip--sms { top: -4px; left: -3%; }
.chip--rec { bottom: 12%; left: -7%; }

.visual-caption {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--steel);
  text-align: center;
}

/* ==========================================================================
   Trades marquee (orange tape)
   ========================================================================== */
.tape {
  position: relative;
  background: var(--safety);
  transform: rotate(-0.6deg) scale(1.01);
  margin: 0.5rem 0 -0.5rem;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}
.tape-track {
  display: flex;
  width: max-content;
  animation: tape-scroll 36s linear infinite;
}
.tape:hover .tape-track { animation-play-state: paused; }
.tape-group {
  display: flex;
  align-items: center;
  flex: none;
  padding: 0.72rem 0;
}
.tape-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.tape-item::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--ink);
  transform: rotate(45deg);
  flex: none;
}
@keyframes tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   How it works — numbered work-order steps
   ========================================================================== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.steps::before {
  content: "";
  position: absolute;
  top: 3.4rem;
  left: 8%;
  right: 8%;
  border-top: 2px dashed var(--line);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 1.9rem 1.7rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }

.step-no {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-s);
  background: var(--ink);
  color: var(--safety);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 1.2rem;
}
.step-card p { margin-top: 0.7rem; color: var(--steel); font-size: 1rem; line-height: 1.62; }

/* ==========================================================================
   Why — benefits grid
   ========================================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.7rem 1.6rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--safety);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
  border-color: rgba(255, 106, 26, 0.45);
}
.benefit:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-s);
  background: var(--safety-soft);
  color: var(--safety-deep);
  display: grid;
  place-items: center;
}
.benefit-icon svg { width: 23px; height: 23px; }
.benefit h3 { font-size: 1.14rem; font-weight: 600; margin-top: 1.05rem; }
.benefit p { margin-top: 0.5rem; font-size: 0.99rem; line-height: 1.6; color: var(--steel); }

/* ==========================================================================
   Proof — dark band, blank tickets (honest placeholders)
   ========================================================================== */
.proof {
  position: relative;
  background: var(--ink-2);
  color: var(--paper);
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(250, 250, 247, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250, 250, 247, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.proof > .container { position: relative; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial-slot {
  position: relative;
  border: 2px dashed var(--line-dark);
  border-radius: var(--radius-m);
  padding: 2rem 1.8rem 1.7rem;
  background: rgba(250, 250, 247, 0.02);
}
.testimonial-slot .quote-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--safety);
}
.slot-tag {
  position: absolute;
  top: -11px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety);
  background: var(--ink-2);
  border: 1px solid var(--safety-deep);
  border-radius: 99px;
  padding: 0.3rem 0.65rem;
}
.slot-text {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mist);
}
.slot-attr {
  margin-top: 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--mist-dim);
  border-top: 1px dotted var(--line-dark);
  padding-top: 0.9rem;
}

.results-band {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.result-tile {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  background: var(--ink-card);
  padding: 1.7rem 1.6rem 1.5rem;
  text-align: center;
}
.result-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--paper);
}
.result-value .unit { color: var(--safety); }
.result-value.is-placeholder { color: var(--safety); }
.result-label {
  margin-top: 0.55rem;
  font-weight: 500;
  font-size: 0.99rem;
  color: var(--mist);
}
.result-note {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

.proof-footnote {
  margin-top: 2.2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--mist-dim);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.35rem 0.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.13rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--safety-deep); }

.faq-icon {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--safety-deep);
  background: var(--safety-soft);
  color: var(--safety-deep);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}
.faq-a > div {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 0.38s;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { visibility: visible; transition-delay: 0s; }
.faq-a p {
  padding: 0.1rem 0.25rem 1.5rem;
  max-width: 44rem;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ==========================================================================
   Contact / form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4rem;
  align-items: start;
}

.next-steps { margin-top: 2.3rem; display: grid; gap: 1.1rem; }
.next-step {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.next-step .n {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--safety-deep);
  border: 1.5px solid var(--safety);
  border-radius: 99px;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  transform: translateY(0.35rem);
}
.next-step p { color: var(--steel); font-size: 1rem; }
.next-step strong { color: var(--ink); font-weight: 600; }

.contact-alt {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--steel);
}
.contact-alt a { color: var(--safety-deep); font-weight: 500; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.form-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--safety);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  padding: 2.1rem 2rem 2.2rem;
}
.form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.form-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-card-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.32rem 0.6rem;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.field label .req { color: var(--safety-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.78rem 0.9rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2354636C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B9BFB2; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--safety);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.22);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red);
  background: var(--red-soft);
}
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 3px rgba(198, 56, 34, 0.18); }

.field-error {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--red);
}
.field.has-error .field-error { display: inline-flex; }
.field-error svg { width: 13px; height: 13px; flex: none; }

/* honeypot — visually removed, still in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer { grid-column: 1 / -1; margin-top: 0.4rem; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--red);
  border-radius: var(--radius-s);
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
}
.form-alert.is-visible { display: flex; }
.form-alert svg { width: 17px; height: 17px; flex: none; margin-top: 0.1rem; }

.btn-submit { position: relative; }
.btn-submit .spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2.5px solid rgba(19, 26, 31, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.is-loading .spinner { display: inline-block; }
.btn-submit.is-loading .btn-arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-consent {
  margin-top: 0.95rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--steel);
}
.form-consent a { color: var(--safety-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* success panel */
.form-success {
  text-align: center;
  padding: 2.2rem 0.5rem 1.2rem;
}
.success-stamp {
  display: inline-block;
  transform: rotate(-6deg);
  border: 3px solid var(--green);
  border-radius: 6px;
  padding: 0.55rem 1.1rem 0.6rem;
  color: var(--green);
}
.success-stamp .stamp-word { font-size: 1.9rem; letter-spacing: 0.08em; }
.success-stamp .stamp-sub { letter-spacing: 0.22em; }
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 1.6rem;
}
.form-success p {
  margin: 0.8rem auto 0;
  max-width: 26rem;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-2);
  color: var(--mist);
  padding: 4.5rem 0 2.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-name span { color: var(--safety); }
.footer-tagline { margin-top: 1rem; max-width: 21rem; font-size: 0.97rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist-dim);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a {
  text-decoration: none;
  font-size: 0.97rem;
  color: var(--mist);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--safety); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2rem;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--mist-dim);
  max-width: 46rem;
  line-height: 1.7;
}
.footer-legal p + p { margin-top: 0.5rem; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--mist-dim);
  white-space: nowrap;
}

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.legal-hero .effective {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--steel);
}

.prose { padding: 3.5rem 0 5.5rem; }
.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px dashed var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h2 .sec-no {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--safety-deep);
  margin-right: 0.6rem;
}
.prose h3 { font-size: 1.08rem; font-weight: 600; margin-top: 1.6rem; }
.prose p, .prose li { margin-top: 0.85rem; line-height: 1.72; color: #3A464E; font-size: 1.01rem; }
.prose ul { padding-left: 1.3rem; margin-top: 0.4rem; }
.prose ul li { list-style: square; }
.prose ul li::marker { color: var(--safety-deep); }
.prose a { color: var(--safety-deep); text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

.sms-callout {
  margin-top: 1.4rem;
  border: 1.5px solid var(--line);
  border-left: 5px solid var(--safety);
  border-radius: var(--radius-s);
  background: var(--white);
  padding: 1.4rem 1.6rem;
}
.sms-callout p:first-child { margin-top: 0; }

/* ==========================================================================
   Utility / motion
   ========================================================================== */
.section-cta-row { margin-top: 3rem; text-align: center; }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.error-page .h-display { font-size: clamp(3rem, 10vw, 6rem); }
.error-page p { margin-top: 1rem; color: var(--steel); }
.error-page .btn { margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .tape-track { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
  .hero-inner { gap: 2.5rem; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--header-h) + 3rem); }
  .hero-inner { grid-template-columns: 1fr; }
  .lead-visual { margin-top: 1rem; }
  .chip--sms { left: 2%; }
  .chip--rec { left: 0; }

  .steps { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .steps::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .results-band { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; margin-top: 2.6rem; }

  /* mobile nav */
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    padding: 1.2rem 1.5rem 1.6rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
  }
  .site-header.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .site-header.is-scrolled .site-nav { top: 62px; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 0.95rem 0.25rem; font-size: 1.08rem; }
  .site-nav a::after { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .section--tight { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2.4rem; }

  .header-cta { display: none; }

  .hero-ctas .btn { flex: 1 1 auto; }
  .ring-wrap { width: 300px; height: 300px; }
  .stamp { right: -6px; }
  .chip--rec { display: none; }

  .benefits { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.7rem 1.3rem 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* ==========================================================================
   Mobile readability layer (<=640px)
   Phones only: bigger base type, every small tier raised to legible sizes,
   and guaranteed clearance between the hero CTAs and the trust checklist.
   Desktop/tablet rendering is untouched.
   ========================================================================== */
@media (max-width: 640px) {
  html { font-size: 17px; }

  /* --- Hero: CTAs stack full-width; checklist sits fully clear below --- */
  .hero-ctas { gap: 0.8rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .btn-primary {
    /* shorter, tighter glow on phones so no orange bleeds toward text below */
    box-shadow: 0 2px 0 rgba(19, 26, 31, 0.9), 0 5px 12px rgba(255, 106, 26, 0.22);
  }
  .hero-trust {
    margin-top: 2.6rem;
    gap: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }
  .hero-trust li { gap: 0.55rem; }
  .hero-trust svg { width: 17px; height: 17px; }

  /* --- Mono/utility tiers up to legible sizes --- */
  .eyebrow { font-size: 0.85rem; }
  .call-title { font-size: 1.05rem; }
  .call-sub { font-size: 0.85rem; }
  .call-badge { font-size: 0.75rem; }
  .ticket-title,
  .ticket-no { font-size: 0.85rem; }
  .ticket-label { font-size: 0.82rem; }
  .ticket-value { font-size: 1rem; }
  .stamp-sub { font-size: 0.7rem; }
  .chip { font-size: 0.85rem; }
  .visual-caption { font-size: 0.85rem; }

  /* --- Section body copy --- */
  .step-card p { font-size: 1.02rem; }
  .benefit p { font-size: 1.02rem; }
  .faq-a p { font-size: 1.05rem; }

  /* --- Proof band --- */
  .slot-tag { font-size: 0.75rem; }
  .slot-text { font-size: 1rem; line-height: 1.7; }
  .slot-attr { font-size: 0.85rem; }
  .result-note { font-size: 0.8rem; }
  .proof-footnote { font-size: 0.88rem; line-height: 1.7; }

  /* --- Contact / form --- */
  .next-step .n { width: 34px; height: 34px; font-size: 0.85rem; }
  .contact-alt { font-size: 0.9rem; }
  .form-card-tag { font-size: 0.75rem; }
  .field label { font-size: 0.85rem; }
  .field-error { font-size: 0.9rem; }
  .form-consent { font-size: 0.9rem; line-height: 1.6; }

  /* --- Footer --- */
  .footer-col h4 { font-size: 0.8rem; }
  .footer-col a { font-size: 1.02rem; }
  .footer-legal { font-size: 0.85rem; line-height: 1.75; }
  .footer-copy { font-size: 0.85rem; }

  /* --- Legal pages --- */
  .legal-hero .effective { font-size: 0.9rem; }
  .prose p,
  .prose li { font-size: 1.05rem; line-height: 1.75; }
  .prose h2 .sec-no { font-size: 0.95rem; }
}
