:root {
  --ink: #141a22;
  --ink-soft: #26303c;
  --paper: #f6f2eb;
  --paper-deep: #eae2d7;
  --white: #fff;
  --muted: #6f746f;
  --line: rgba(20, 26, 34, .15);
  --red: #a82d35;
  --red-dark: #782027;
  --gold: #c69a54;
  --green: #3b725b;
  --shadow: 0 24px 70px rgba(12, 18, 25, .15);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(168, 45, 53, .45); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #e5bd81; }
.display {
  max-width: 820px;
  margin: 0;
  font: 400 clamp(2.65rem, 5vw, 5.7rem)/.96 var(--serif);
  letter-spacing: -.045em;
}
.section-title {
  margin: 0;
  font: 400 clamp(2.25rem, 4vw, 4.35rem)/1.02 var(--serif);
  letter-spacing: -.035em;
}
.lead { max-width: 700px; color: #5d625f; font-size: 1.12rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 1px solid var(--red);
  border-radius: 2px;
  padding: .85rem 1.25rem;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.55); }
.button.ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button.ink { background: var(--ink); border-color: var(--ink); }
.text-link {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  color: var(--red);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.text-link::after { content: "\2192"; font-size: 1.1rem; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Site shell */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, .96);
  backdrop-filter: blur(12px);
}
.header-inner { width: var(--container); min-height: 78px; margin: auto; display: flex; align-items: center; gap: 2rem; }
.wordmark { margin-right: auto; font: 400 1.45rem/1 var(--serif); letter-spacing: .08em; white-space: nowrap; }
.wordmark small { display: block; margin-top: .35rem; font: 650 .55rem/1 var(--sans); letter-spacing: .2em; }
.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav > a { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav > a:not(.button):hover, .desktop-nav > a.active { color: var(--red); }
.header-cta { min-height: 42px; padding: .65rem 1rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 19px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  z-index: 90;
  padding: 2rem 24px;
  background: var(--paper);
}
.nav-open .mobile-nav { display: grid; align-content: start; gap: 0; }
.mobile-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font: 400 2rem/1.1 var(--serif); }
.mobile-nav .button { margin-top: 1.5rem; font: 750 .75rem/1 var(--sans); }

/* Homepage hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  background: #111820 url('../assets/hero-manhattan-office.png') center/cover no-repeat;
  color: var(--white);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,10,14,.9) 0%, rgba(7,10,14,.72) 40%, rgba(7,10,14,.26) 67%, rgba(7,10,14,.34) 100%);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(3rem, 6vw, 6.5rem); align-items: center; padding: 5.25rem 0; }
.hero-copy { max-width: 690px; }
.hero-copy h1 { margin: 0; font: 400 clamp(3.7rem, 6.4vw, 7.3rem)/.89 var(--serif); letter-spacing: -.05em; }
.hero-copy p { max-width: 590px; margin: 1.65rem 0 2rem; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.assessment-card { padding: 2rem; background: rgba(255,255,255,.97); color: var(--ink); box-shadow: var(--shadow); }
.assessment-card h2 { margin: 0 0 .45rem; font: 400 2rem/1.05 var(--serif); }
.assessment-card > p { margin: 0 0 1.4rem; color: var(--muted); font-size: .84rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field { display: grid; gap: .38rem; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .66rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 45px;
  border: 1px solid #c9c6c1;
  border-radius: 0;
  padding: .7rem .75rem;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 82px; resize: vertical; }
.form-note { margin: .9rem 0 !important; color: var(--muted); font-size: .68rem !important; }
.form-status { min-height: 1.3rem; margin: .65rem 0 0; color: var(--green); font-size: .78rem; }
.assessment-card .button { width: 100%; }

/* Process interaction */
.process-section { padding: clamp(5rem, 8vw, 8.5rem) 0; background: var(--paper); overflow: hidden; }
.process-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.process-head .section-title { max-width: 700px; }
.process-intro { max-width: 375px; margin: 0; color: var(--muted); }
.process-shell { display: grid; grid-template-columns: 340px minmax(0, 1fr); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.process-steps { padding: 1.4rem; border-right: 1px solid rgba(255,255,255,.12); }
.process-step {
  position: relative;
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .9rem;
  align-content: center;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 1rem .75rem;
  background: transparent;
  color: rgba(255,255,255,.52);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s, background .25s;
}
.process-step:last-child { border-bottom: 0; }
.process-step:hover { color: var(--white); background: rgba(255,255,255,.035); }
.process-step.active { color: var(--white); background: rgba(255,255,255,.055); }
.process-step .num { color: var(--gold); font-size: .7rem; font-weight: 750; letter-spacing: .12em; }
.process-step strong { display: block; margin-bottom: .3rem; font: 400 1.35rem/1 var(--serif); }
.process-step small { display: block; max-width: 230px; font-size: .69rem; line-height: 1.45; }
.step-progress { position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--red); }
.process-step.active .step-progress.playing { animation: stage-progress 6.5s linear forwards; }
@keyframes stage-progress { from { width: 0; } to { width: 100%; } }
.process-visual { min-width: 0; padding: clamp(1.2rem, 3.3vw, 2.8rem); background: radial-gradient(circle at 86% 8%, rgba(168,45,53,.16), transparent 35%), #18202a; }
.demo-topline { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.demo-state { display: flex; align-items: center; gap: .6rem; font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(198,154,84,.12); }
.stage-4 .status-dot { background: #70b18e; box-shadow: 0 0 0 5px rgba(112,177,142,.12); }
.demo-controls { display: flex; align-items: center; gap: .45rem; }
.control-button { min-height: 36px; border: 1px solid rgba(255,255,255,.25); padding: .45rem .7rem; background: transparent; color: #fff; cursor: pointer; font-size: .64rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.control-button:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.browser-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: #f7f7f5; color: var(--ink); box-shadow: 0 24px 55px rgba(0,0,0,.25); }
.browser-bar { height: 45px; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid #dadbd8; padding: 0 .85rem; background: #e9e9e6; }
.browser-dot { width: 8px; height: 8px; border-radius: 50%; background: #b7b7b3; }
.address-bar { min-width: 0; flex: 1; margin-left: .45rem; border: 1px solid #d2d2ce; border-radius: 4px; padding: .38rem .7rem; background: white; color: #777; font-size: .67rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-screen { min-height: 450px; padding: clamp(1.1rem, 2.8vw, 2rem); }
.search-brand { margin: 0 0 1rem; font: 400 1.25rem/1 var(--serif); }
.search-box { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid #ccc; border-radius: 24px; padding: .7rem 1rem; background: white; font-size: .8rem; }
.search-meta { display: flex; justify-content: space-between; gap: 1rem; margin: .85rem 0 1.15rem; color: #838580; font-size: .64rem; }
.results-list { display: grid; gap: .7rem; }
.result-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem;
  min-height: 68px;
  align-items: center;
  border: 1px solid #ddddd8;
  border-radius: 3px;
  padding: .75rem;
  background: #fff;
  animation: result-in .42s both;
}
.result-card:nth-child(2) { animation-delay: .07s; }
.result-card:nth-child(3) { animation-delay: .14s; }
.result-card:nth-child(4) { animation-delay: .21s; }
@keyframes result-in { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.result-card small { display: block; margin-bottom: .25rem; color: var(--green); font-size: .57rem; letter-spacing: .03em; }
.result-card strong { display: block; font-family: var(--serif); font-size: .96rem; font-weight: 400; line-height: 1.05; }
.result-card p { margin: .25rem 0 0; color: #777; font-size: .62rem; line-height: 1.3; }
.result-badge { border: 1px solid #c7c7c2; border-radius: 20px; padding: .28rem .5rem; color: #777; font-size: .55rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.result-card.risk { border-left: 3px solid var(--red); }
.result-card.risk small { color: var(--red); }
.result-card.positive { border-left: 3px solid var(--green); }
.result-card.positive .result-badge { border-color: rgba(59,114,91,.35); color: var(--green); }
.result-card.removed { color: #777; background: #f0efec; border-style: dashed; }
.scan-line { position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; }
.stage-1 .scan-line { opacity: 1; animation: scan 2.1s ease-in-out infinite; }
@keyframes scan { from { top: 0; } to { top: 100%; } }
.stage-caption { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: start; margin-top: 1.4rem; }
.stage-caption h3 { margin: 0; font: 400 1.65rem/1.05 var(--serif); }
.stage-caption p { max-width: 590px; margin: .5rem 0 0; color: rgba(255,255,255,.65); font-size: .8rem; }
.stage-counter { color: var(--gold); font-size: .68rem; font-weight: 750; letter-spacing: .12em; }
.demo-footnote { margin: 1rem 0 0; color: rgba(255,255,255,.4); font-size: .62rem; }

/* Home content */
.services-section { padding: clamp(5rem, 9vw, 9rem) 0; background: #fcfaf6; }
.section-heading-row { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading-row p { margin: 0; color: var(--muted); }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 75px 1.1fr 1fr 30px;
  gap: 1.5rem;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s;
}
.service-row:hover { padding-inline: 1rem; background: var(--paper); }
.service-row .index { color: var(--red); font-size: .7rem; font-weight: 750; }
.service-row h3 { margin: 0; font: 400 clamp(1.55rem, 3vw, 2.55rem)/1 var(--serif); }
.service-row p { max-width: 490px; margin: 0; color: var(--muted); font-size: .86rem; }
.service-row .arrow { color: var(--red); font-size: 1.5rem; }
.audiences { display: grid; grid-template-columns: 1fr 1fr; }
.audience-card { position: relative; min-height: 590px; overflow: hidden; color: var(--white); }
.audience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.audience-card:hover img { transform: scale(1.025); }
.audience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,20,.9), rgba(10,14,20,.08) 68%); }
.audience-content { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(2rem, 4vw, 4rem); }
.audience-content h3 { margin: 0; font: 400 clamp(2.4rem, 4vw, 4rem)/1 var(--serif); }
.audience-content p { max-width: 500px; margin: .8rem 0 1.4rem; color: rgba(255,255,255,.75); }
.trust-band { padding: 4.5rem 0; background: var(--red-dark); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
.trust-grid h2 { margin: 0; font: 400 clamp(2rem, 3.5vw, 3.7rem)/1 var(--serif); }
.trust-item { border-left: 1px solid rgba(255,255,255,.35); padding-left: 2rem; }
.trust-item strong { display: block; margin-bottom: .4rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.trust-item p { margin: 0; color: rgba(255,255,255,.7); font-size: .8rem; }
.case-section { padding: clamp(5rem, 9vw, 9rem) 0; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3.5rem; background: var(--line); border: 1px solid var(--line); }
.case-card { padding: 2rem; background: var(--paper); }
.case-card .case-num { color: var(--red); font-size: .66rem; font-weight: 750; letter-spacing: .12em; }
.case-card h3 { min-height: 4.4rem; margin: 1.1rem 0 1rem; font: 400 1.75rem/1.08 var(--serif); }
.case-card p { color: var(--muted); font-size: .83rem; }
.case-card .label { display: block; margin-top: 2rem; color: #888; font-size: .62rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.faq-section { padding: clamp(5rem, 8vw, 8rem) 0; background: #fcfaf6; }
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.35rem 2.5rem 1.35rem 0; cursor: pointer; list-style: none; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .3rem; top: 1.2rem; color: var(--red); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { max-width: 680px; margin: -.25rem 0 1.5rem; color: var(--muted); font-size: .9rem; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: clamp(5rem, 9vw, 9rem) 0; background: var(--ink); color: var(--white); }
.page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -230px; border: 1px solid rgba(198,154,84,.28); border-radius: 50%; box-shadow: 0 0 0 80px rgba(198,154,84,.03), 0 0 0 160px rgba(198,154,84,.025); }
.page-hero .display { max-width: 900px; }
.page-hero .lead { max-width: 670px; margin: 1.5rem 0 2rem; color: rgba(255,255,255,.68); }
.breadcrumb { margin-bottom: 2.5rem; color: rgba(255,255,255,.45); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.content-section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.content-section.white { background: #fcfaf6; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.prose h2 { margin: 0 0 1.2rem; font: 400 clamp(2.2rem, 4vw, 4rem)/1.02 var(--serif); }
.prose h3 { margin: 2.2rem 0 .7rem; font: 400 1.8rem/1.05 var(--serif); }
.prose p { max-width: 760px; color: #5e625e; }
.prose ul { padding-left: 1.2rem; color: #5e625e; }
.prose li { margin: .55rem 0; }
.side-card { position: sticky; top: 110px; border-top: 3px solid var(--red); padding: 1.6rem; background: var(--paper-deep); }
.side-card h3 { margin: 0; font: 400 1.7rem/1.05 var(--serif); }
.side-card p { color: #626560; font-size: .84rem; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3rem; background: var(--line); }
.outcome { min-height: 200px; padding: 1.8rem; background: var(--paper); }
.outcome span { color: var(--red); font-size: .7rem; font-weight: 750; }
.outcome h3 { margin: 1.5rem 0 .5rem; font: 400 1.5rem/1 var(--serif); }
.outcome p { color: var(--muted); font-size: .82rem; }
.image-break { min-height: 510px; background: #10161d center/cover no-repeat; }
.about-break { background-image: linear-gradient(90deg, rgba(11,15,20,.25), rgba(11,15,20,.1)), url('../assets/business-advisory.png'); }
.assessment-page { display: grid; grid-template-columns: 1fr 440px; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.assessment-page .assessment-card { box-shadow: 0 20px 60px rgba(20,26,34,.12); }
.privacy-copy { max-width: 850px; }
.privacy-copy h2 { margin-top: 3rem; font: 400 2rem/1 var(--serif); }

.closing-cta { padding: clamp(5rem, 8vw, 8rem) 0; background: linear-gradient(110deg, #111720, #242a31); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.closing-cta h2 { max-width: 800px; margin: 0; font: 400 clamp(2.7rem, 5vw, 5rem)/.98 var(--serif); letter-spacing: -.035em; }
.closing-cta p { color: rgba(255,255,255,.62); }
.site-footer { padding: 3.5rem 0 2rem; background: #0c1118; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr .65fr; gap: 3rem; }
.footer-wordmark { font: 400 1.6rem/1 var(--serif); letter-spacing: .08em; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.52); font-size: .77rem; }
.footer-nav { display: grid; align-content: start; gap: .55rem; }
.footer-nav strong { margin-bottom: .45rem; color: #d3ae77; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a { color: rgba(255,255,255,.63); font-size: .75rem; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; color: rgba(255,255,255,.35); font-size: .64rem; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .assessment-card { max-width: 560px; }
  .process-head, .section-heading-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
  .process-shell { grid-template-columns: 1fr; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: .7rem; }
  .process-step { min-height: 95px; grid-template-columns: 1fr; gap: .25rem; border: 0; border-right: 1px solid rgba(255,255,255,.12); }
  .process-step:last-child { border-right: 0; }
  .process-step small { display: none; }
  .service-row { grid-template-columns: 50px 1fr 30px; }
  .service-row p { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid h2 { grid-column: 1/-1; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card h3 { min-height: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-grid, .assessment-page { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 32px); }
  .header-inner { min-height: 70px; }
  .mobile-nav { top: 70px; }
  .wordmark { font-size: 1.15rem; }
  .home-hero { min-height: auto; background-position: 61% center; }
  .home-hero::before { background: linear-gradient(180deg, rgba(7,10,14,.66), rgba(7,10,14,.92) 48%, rgba(7,10,14,.97)); }
  .hero-grid { min-height: auto; padding: 4.5rem 0 3rem; }
  .hero-copy h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .assessment-card { padding: 1.3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .process-section { padding-block: 4.5rem; }
  .process-head { margin-bottom: 2rem; }
  .process-shell { width: calc(100% + 32px); margin-left: -16px; }
  .process-steps { grid-template-columns: 1fr; padding: .5rem 1rem; }
  .process-step { display: none; min-height: 82px; border: 0; padding: .75rem .25rem; grid-template-columns: 34px 1fr; }
  .process-step.active { display: grid; }
  .process-step small { display: block; }
  .process-visual { padding: 1rem; }
  .demo-topline { align-items: flex-start; }
  .demo-state { font-size: .61rem; }
  .control-button { min-height: 38px; padding: .4rem .55rem; }
  .control-button span { display: none; }
  .browser-bar { height: 38px; padding-inline: .6rem; }
  .address-bar { font-size: .58rem; }
  .search-screen { min-height: 440px; padding: 1rem .75rem; }
  .search-meta span:last-child { display: none; }
  .result-card { grid-template-columns: minmax(0, 1fr) auto; }
  .result-card strong { font-size: .85rem; }
  .result-card p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .result-badge { max-width: 78px; overflow: hidden; text-overflow: ellipsis; }
  .stage-caption { grid-template-columns: 1fr; }
  .stage-counter { order: -1; }
  .service-row { min-height: 105px; grid-template-columns: 35px 1fr 20px; gap: .7rem; }
  .service-row:hover { padding-inline: .5rem; }
  .audiences { grid-template-columns: 1fr; }
  .audience-card { min-height: 520px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid h2 { grid-column: auto; }
  .trust-item { padding: 1.25rem 0 0; border: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .case-grid { margin-top: 2.5rem; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .page-hero { padding: 4.5rem 0; }
  .image-break { min-height: 380px; background-position: 63% center; }
}

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

/* Process v2: closer to the audited Erase interaction model */
.process-section { padding: clamp(5rem, 8vw, 8.5rem) 0; background: #eef1f7; overflow: hidden; }
.process-head { display: block; max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.process-head .eyebrow { justify-content: center; color: var(--red); }
.process-head .section-title { max-width: 760px; }
.process-intro { max-width: 650px; margin: 1rem auto 0; color: #59616d; font-size: 1.08rem; }
.process-shell { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 2rem; background: transparent; color: var(--ink); box-shadow: none; }
.process-steps { display: grid; align-content: start; padding: 0; border: 0; }
.process-step {
  position: relative;
  width: 100%;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .32rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 1.2rem 1rem;
  background: transparent;
  color: #8b929d;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s, background .25s, border-color .25s;
}
.process-step:last-child { border-bottom: 1px solid transparent; }
.process-step::after { content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0; height: 2px; background: #c8d0da; }
.process-step:hover { color: var(--ink); background: rgba(255,255,255,.45); }
.process-step.active { border-color: rgba(168,45,53,.8); background: rgba(255,255,255,.65); color: var(--ink); box-shadow: 0 8px 30px rgba(42,53,70,.06); }
.process-step .num { color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-step strong { display: block; margin: 0; font: 650 1.15rem/1.1 var(--sans); }
.process-step small { display: block; max-width: 280px; font-size: .72rem; line-height: 1.45; }
.step-progress { position: absolute; z-index: 2; left: 1rem; bottom: 0; width: 0; height: 3px; background: var(--red); }
.process-step.complete .step-progress { width: calc(100% - 2rem); height: 2px; background: rgba(168,45,53,.6); }
.process-step.active .step-progress.playing { animation: process-v2-progress 6s linear forwards; }
@keyframes process-v2-progress { from { width: 0; } to { width: calc(100% - 2rem); } }
.process-visual { min-width: 0; padding: 0; background: transparent; }
.browser-frame { overflow: hidden; border: 1px solid #d5dbe4; border-radius: 8px; background: #f9fafc; color: var(--ink); box-shadow: 0 18px 50px rgba(45,56,73,.08); }
.browser-bar { height: 48px; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid #d5dbe4; padding: 0 .85rem; background: #e8ebf0; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #c4c9d0; }
.address-bar { min-width: 0; flex: 1; margin-left: .45rem; border: 1px solid #cfd5dd; border-radius: 4px; padding: .45rem .75rem; background: #fff; color: #656c77; font-size: .7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-screen { position: relative; min-height: 515px; padding: 0 .75rem .75rem; }
.demo-state { min-height: 40px; display: flex; align-items: center; gap: .55rem; border-bottom: 1px solid #e0e4ea; color: #526276; font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(168,45,53,.1); }
.stage-4 .status-dot { background: var(--green); box-shadow: 0 0 0 4px rgba(59,114,91,.12); }
.results-list { display: grid; gap: .55rem; padding-top: .65rem; }
.result-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: .75rem;
  min-height: 82px;
  align-items: center;
  border: 1px solid #d9dee6;
  border-radius: 6px;
  padding: .72rem .8rem;
  background: #fff;
  animation: process-result-in .55s cubic-bezier(.22,.75,.24,1) both;
  animation-delay: var(--result-delay);
}
@keyframes process-result-in { from { opacity: .12; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.result-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 5px; background: #687381; color: #fff; font-size: .58rem; font-weight: 800; }
.result-copy { min-width: 0; }
.result-card small { display: block; margin-bottom: .2rem; color: #717986; font-size: .57rem; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result-card strong { display: block; color: #26344d; font: 700 .84rem/1.15 var(--sans); }
.result-card p { margin: .22rem 0 0; color: #747b85; font-size: .61rem; line-height: 1.25; }
.result-badge { border: 0; border-radius: 3px; padding: .34rem .48rem; background: #edf0f4; color: #66707c; font-size: .49rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.result-card.risk { border-color: rgba(168,45,53,.35); }
.result-card.risk .result-icon, .result-card.risk .result-badge { background: rgba(168,45,53,.1); color: var(--red); }
.result-card.positive { border-color: rgba(59,114,91,.32); border-left-width: 1px; }
.result-card.positive .result-icon, .result-card.positive .result-badge { background: #edf7f1; color: var(--green); }
.result-card.review { border-color: rgba(164,116,49,.32); }
.result-card.review .result-icon, .result-card.review .result-badge { background: #faf3e7; color: #8b642e; }
.result-card.removed { border-style: dashed; background: #f2f7f4; color: inherit; }
.result-card.removed .result-icon, .result-card.removed .result-badge { background: #e3f2e9; color: var(--green); }
.stage-1 .result-card { animation-name: process-audit-reveal; animation-duration: 1.6s; }
@keyframes process-audit-reveal { 0% { opacity: .2; filter: grayscale(1); } 65% { opacity: .45; filter: grayscale(.8); } 100% { opacity: 1; filter: none; } }
.stage-2 .result-card.removed { animation-name: process-removal-confirm; animation-duration: .85s; }
@keyframes process-removal-confirm { 0% { opacity: 1; transform: none; } 45% { opacity: .25; transform: translateX(12px); } 100% { opacity: 1; transform: none; } }
.stage-3 .result-card { animation-name: process-asset-rise; }
@keyframes process-asset-rise { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
.stage-4 .result-card { animation: process-monitor-pulse 2.8s ease-in-out infinite; animation-delay: var(--result-delay); }
@keyframes process-monitor-pulse { 0%,70%,100% { box-shadow: none; } 35% { box-shadow: 0 0 0 2px rgba(59,114,91,.12); } }
.scan-line { position: absolute; z-index: 4; inset: 40px auto auto 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; pointer-events: none; }
.stage-1 .scan-line { opacity: .65; animation: process-scan 2.2s ease-in-out infinite; }
@keyframes process-scan { from { top: 40px; } to { top: calc(100% - 4px); } }
.demo-controls { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin-top: 1rem; }
.control-button { width: max-content; min-height: 38px; border: 1px solid #b9c0ca; border-radius: 3px; padding: .5rem .75rem; background: rgba(255,255,255,.4); color: #46505e; cursor: pointer; font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.control-button:hover { border-color: var(--red); color: var(--red); background: #fff; }
.next-control { justify-self: end; }
.stage-dots { display: flex; gap: .65rem; align-items: center; }
.stage-dot { width: 9px; height: 9px; border: 1px solid #8d96a3; border-radius: 50%; padding: 0; background: transparent; cursor: pointer; }
.stage-dot.active { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 4px rgba(168,45,53,.1); }
.demo-footnote { margin: .85rem 0 0; color: #7b828c; font-size: .61rem; text-align: center; }

@media (max-width: 980px) and (min-width: 681px) {
  .process-head { display: block; }
  .process-shell { grid-template-columns: 270px minmax(0, 1fr); gap: 1.25rem; }
  .process-steps { display: grid; grid-template-columns: 1fr; padding: 0; border: 0; }
  .process-step { min-height: 124px; display: flex; border: 1px solid transparent; }
  .process-step small { display: block; font-size: .66rem; }
  .search-screen { min-height: 495px; }
  .result-card { grid-template-columns: 34px minmax(0, 1fr) auto; gap: .55rem; padding-inline: .55rem; }
  .result-icon { width: 31px; height: 31px; }
  .result-card p { display: none; }
}

@media (max-width: 680px) {
  .process-section { padding-block: 4rem; }
  .process-head { margin-bottom: 2.25rem; }
  .process-head .section-title { font-size: 2.65rem; }
  .process-intro { font-size: .96rem; }
  .process-shell { width: 100%; margin: 0; display: block; }
  .process-steps { display: block; margin-bottom: 1rem; padding: 0; border: 0; }
  .process-step { display: none; min-height: 150px; padding: 1.25rem 1rem; border: 1px solid transparent; }
  .process-step.active { display: flex; }
  .process-step small { display: block; max-width: 310px; font-size: .74rem; }
  .process-step::after { display: none; }
  .step-progress { left: 1rem; }
  .process-step.active .step-progress.playing { animation-name: process-v2-mobile-progress; }
  @keyframes process-v2-mobile-progress { from { width: 0; } to { width: calc(100% - 2rem); } }
  .process-visual { padding: 0; }
  .browser-bar { height: 44px; padding-inline: .65rem; }
  .browser-dot { width: 8px; height: 8px; }
  .address-bar { font-size: .58rem; padding-inline: .55rem; }
  .search-screen { min-height: 405px; padding: 0 .5rem .5rem; }
  .demo-state { min-height: 38px; font-size: .55rem; letter-spacing: .075em; }
  .results-list { gap: .42rem; padding-top: .5rem; }
  .result-card { grid-template-columns: 32px minmax(0, 1fr) auto; min-height: 65px; gap: .5rem; padding: .48rem .5rem; }
  .result-icon { width: 30px; height: 30px; font-size: .5rem; }
  .result-card small { font-size: .49rem; }
  .result-card strong { font-size: .73rem; line-height: 1.15; }
  .result-card p { display: none; }
  .result-badge { max-width: 62px; overflow: hidden; text-overflow: ellipsis; padding: .27rem .32rem; font-size: .43rem; }
  .demo-controls { grid-template-columns: 1fr auto 1fr; gap: .5rem; }
  .control-button { min-height: 42px; padding: .5rem .6rem; }
  .control-button span { display: inline; }
  .stage-dots { gap: .5rem; }
  .stage-dot { width: 8px; height: 8px; }
  .demo-footnote { font-size: .57rem; line-height: 1.35; }
}

/* Process v3: source-matched palette and visible removal sequence */
.process-section {
  --process-blue: #215b94;
  --process-blue-dark: #16446f;
  --process-blue-light: #e7eff9;
  --process-red: #d62f3d;
  --process-green: #148647;
  --process-amber: #a96608;
  background: #f1f4fa;
}
.process-step.active .step-progress.playing { animation-duration: 7s; }
.process-head .eyebrow { color: var(--process-blue); }
.process-head .section-title { color: var(--process-blue-dark); font-family: var(--sans); font-weight: 750; letter-spacing: -.04em; }
.process-intro { color: #414d5c; }
.process-step { color: #8996a7; }
.process-step::after { background: #b9c8d9; }
.process-step:hover { color: var(--process-blue-dark); }
.process-step.active { border-color: var(--process-blue); color: #162a3e; background: rgba(255,255,255,.76); box-shadow: 0 10px 34px rgba(24,69,111,.09); }
.process-step .num { color: var(--process-blue); }
.step-progress { background: var(--process-blue); }
.process-step.complete .step-progress { background: rgba(33,91,148,.7); }
.browser-frame { border-color: #c5d2e1; background: #fff; box-shadow: 0 20px 50px rgba(28,70,112,.1); }
.browser-bar { border-color: #c5d2e1; background: #e5eaf1; }
.browser-dot:nth-child(1) { background: #d95a61; }
.browser-dot:nth-child(2) { background: #d9ab45; }
.browser-dot:nth-child(3) { background: #5aaa78; }
.address-bar { border-color: #bdc9d7; color: #526171; }
.search-screen { background: #f8faff; }
.demo-state { color: var(--process-blue); border-color: #cbd7e4; }
.stage-2 .demo-state { color: #b51f2d; }
.stage-4 .demo-state { color: #08703a; }
.status-dot { background: var(--process-blue); box-shadow: 0 0 0 4px rgba(33,91,148,.13); }
.stage-2 .status-dot { background: var(--process-red); box-shadow: 0 0 0 4px rgba(214,47,61,.13); }
.stage-4 .status-dot { background: var(--process-green); box-shadow: 0 0 0 4px rgba(20,134,71,.13); }
.result-card { border-color: #cad5e2; box-shadow: 0 2px 7px rgba(36,74,111,.035); }
.result-card strong { color: #134f8d; }
.result-card.positive { border-color: rgba(20,134,71,.78); border-left: 4px solid var(--process-green); background: linear-gradient(90deg, rgba(20,134,71,.055), #fff 24%); }
.result-card.positive .result-icon, .result-card.positive .result-badge { background: var(--process-green); color: #fff; }
.result-card.risk { border-color: rgba(214,47,61,.84); border-left: 4px solid var(--process-red); background: linear-gradient(90deg, rgba(214,47,61,.08), #fff 26%); }
.result-card.risk .result-icon, .result-card.risk .result-badge { background: var(--process-red); color: #fff; }
.result-card.review { border-color: rgba(169,102,8,.75); border-left: 4px solid var(--process-amber); background: linear-gradient(90deg, rgba(169,102,8,.065), #fff 24%); }
.result-card.review .result-icon, .result-card.review .result-badge { background: var(--process-amber); color: #fff; }
.result-card.neutral { border-left: 4px solid var(--process-blue); background: linear-gradient(90deg, rgba(33,91,148,.055), #fff 24%); }
.result-card.neutral .result-icon, .result-card.neutral .result-badge { background: var(--process-blue); color: #fff; }
.control-button { border-color: #8fa8c2; color: var(--process-blue-dark); background: rgba(255,255,255,.65); }
.control-button:hover { border-color: var(--process-blue); color: var(--process-blue); }
.stage-dot { border-color: #6d88a4; }
.stage-dot.active { border-color: var(--process-blue); background: var(--process-blue); box-shadow: 0 0 0 4px rgba(33,91,148,.12); }

.removal-confirm {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(214,47,61,.94);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}
.stage-2 .result-card.removable {
  height: 82px;
  min-height: 82px;
  overflow: hidden;
  transform-origin: center;
  animation: process-actual-removal 4.5s cubic-bezier(.55,.05,.18,1) .35s forwards;
}
.stage-2 .result-card.removable .removal-confirm { animation: process-removal-stamp 1.45s ease 1.25s both; }
@keyframes process-removal-stamp {
  0% { opacity: 0; transform: scale(.96); }
  20%,75% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.01); }
}
@keyframes process-actual-removal {
  0%,18% { height: 82px; min-height: 82px; opacity: 1; transform: none; border-color: rgba(214,47,61,.65); }
  34%,48% { height: 82px; min-height: 82px; opacity: 1; transform: translateX(0); border-color: var(--process-red); box-shadow: 0 0 0 3px rgba(214,47,61,.13); }
  68% { height: 82px; min-height: 82px; opacity: .05; transform: translateX(110px) scale(.98); padding-top: .72rem; padding-bottom: .72rem; border-width: 1px; }
  100% { height: 0; min-height: 0; opacity: 0; transform: translateX(145px) scale(.97); padding-top: 0; padding-bottom: 0; border-width: 0; margin-top: -.55rem; }
}
.removal-outcome { display: none; margin-left: auto; align-items: center; gap: .35rem; border-radius: 3px; padding: .34rem .55rem; background: #dff4e8; color: #096c35; font-size: .55rem; font-weight: 850; letter-spacing: .06em; white-space: nowrap; opacity: 0; }
.stage-2 .removal-outcome { display: inline-flex; animation: process-removal-outcome .4s ease 4.65s forwards; }
@keyframes process-removal-outcome { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.process-shell.is-paused *, .process-shell.is-paused *::before, .process-shell.is-paused *::after { animation-play-state: paused !important; }

@media (max-width: 680px) {
  .process-head .section-title { font-size: 2.1rem; line-height: 1.06; letter-spacing: -.035em; }
  .process-intro { font-size: .94rem; }
  .process-step.active { border-color: var(--process-blue); }
  .stage-2 .result-card.removable { height: 65px; min-height: 65px; }
  @keyframes process-actual-removal {
    0%,18% { height: 65px; min-height: 65px; opacity: 1; transform: none; border-color: rgba(214,47,61,.65); }
    34%,48% { height: 65px; min-height: 65px; opacity: 1; transform: translateX(0); border-color: var(--process-red); box-shadow: 0 0 0 3px rgba(214,47,61,.13); }
    68% { height: 65px; min-height: 65px; opacity: .05; transform: translateX(70px) scale(.98); padding-top: .48rem; padding-bottom: .48rem; border-width: 1px; }
    100% { height: 0; min-height: 0; opacity: 0; transform: translateX(95px) scale(.97); padding-top: 0; padding-bottom: 0; border-width: 0; margin-top: -.42rem; }
  }
  .removal-confirm { font-size: .6rem; }
  .stage-2 .demo-state { min-height: 62px; flex-wrap: wrap; align-content: center; gap: .3rem .5rem; }
  .stage-2 .removal-outcome { width: max-content; margin: 0; flex-basis: auto; padding: .25rem .4rem; font-size: .48rem; }
}

/* Process v4: measured Erase-style composition and choreography */
@font-face {
  font-family: "Process DM Sans";
  src: url("../assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Process Lato";
  src: url("../assets/fonts/lato-regular-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Process Lato";
  src: url("../assets/fonts/lato-bold-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

.process-section {
  --process-blue: #346fb2;
  --process-blue-dark: #1b4f8b;
  --process-canvas: #f0f2f8;
  --process-red: #c0392b;
  --process-green: #1e7e34;
  padding: 96px 0 112px;
  background: var(--process-canvas);
  color: #4d4d4d;
  font-family: "Process DM Sans", Arial, sans-serif;
  overflow: hidden;
}
.process-section .container { width: min(1256px, calc(100vw - 48px)); }
.process-head { display: block; max-width: 720px; margin: 0 auto 48px; text-align: center; }
.process-head .eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #3168a7;
  font: 700 14px/1.4 "Process DM Sans", Arial, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.process-head .eyebrow::before { display: none; }
.process-head .section-title {
  max-width: none;
  color: var(--process-blue-dark);
  font: 800 32px/1 "Process Lato", Arial, sans-serif;
  letter-spacing: 0;
}
.process-intro {
  max-width: 620px;
  margin: 18px auto 0;
  color: #4d4d4d;
  font: 400 19px/1.55 "Process DM Sans", Arial, sans-serif;
}
.process-shell {
  width: 100%;
  min-height: 635px;
  display: grid;
  grid-template-columns: 376.8px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  background: transparent;
  color: #4d4d4d;
  box-shadow: none;
}
.process-steps { display: grid; grid-template-columns: 1fr; align-content: start; padding: 0; border: 0; }
.process-step {
  position: relative;
  width: 100%;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  background: transparent;
  color: #8d99a8;
  text-align: center;
  opacity: .48;
  overflow: hidden;
  transition: opacity .25s, color .25s, background-color .25s, border-color .25s;
}
.process-step::after { display: none; }
.process-step.active {
  border-color: var(--process-blue);
  background: #f0f5fb;
  color: #4d4d4d;
  opacity: 1;
  box-shadow: none;
}
.process-step.complete { opacity: .62; }
.process-step .num {
  color: #3168a7;
  font: 700 11px/25.6px "Process DM Sans", Arial, sans-serif;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.process-step strong {
  display: block;
  margin: 0;
  color: var(--process-blue-dark);
  font: 700 16px/25.6px "Process DM Sans", Arial, sans-serif;
}
.process-step small {
  display: block;
  max-width: 342px;
  color: #666;
  font: 400 13px/19.5px "Process DM Sans", Arial, sans-serif;
}
.step-track {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: rgba(52,111,178,.42);
  overflow: hidden;
}
.step-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 3px;
  background: var(--process-blue);
}
.process-step.complete .step-progress { width: 100%; height: 3px; background: var(--process-blue); }
.process-visual { min-width: 0; padding: 0; background: transparent; }
.browser-frame {
  width: 100%;
  height: 635px;
  overflow: hidden;
  border: 1px solid rgba(52,111,178,.12);
  border-radius: 14px;
  background: var(--process-canvas);
  color: #4d4d4d;
  box-shadow: none;
}
.browser-bar {
  width: 100%;
  height: 54.6px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid #d0d3d8;
  padding: 9px 14px;
  background: #e8eaed;
}
.browser-dots { display: flex; flex: 0 0 auto; gap: 5px; }
.browser-dot,
.browser-dot:nth-child(1),
.browser-dot:nth-child(2),
.browser-dot:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: #c9ccd1; }
.address-bar {
  min-width: 0;
  height: 35.6px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  border: 1px solid #d0d3d8;
  border-radius: 4px;
  padding: 4px 10px;
  background: #fff;
  color: #555;
  font: 400 12px/25.6px "Process DM Sans", Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address-bar span { overflow: hidden; text-overflow: ellipsis; }
.search-icon { flex: 0 0 auto; color: #bbb; }
.search-screen { position: relative; min-height: 579px; padding: 0; background: var(--process-canvas); }
.demo-state {
  width: 100%;
  min-height: 28px;
  display: block;
  border: 0;
  padding: 0 12px;
  color: var(--process-blue);
  font: 700 11px/28px "Process DM Sans", Arial, sans-serif;
  letter-spacing: .99px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stage-2 .demo-state,
.stage-4 .demo-state { color: var(--process-blue); }
.results-list {
  position: relative;
  width: 100%;
  height: 551px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 10px 10px;
  overflow: hidden;
}
.result-card {
  position: relative;
  width: 100%;
  height: 86.95px;
  min-height: 86.95px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0;
  border: 1.5px solid #e4e6ec;
  border-left-width: 1.5px;
  border-radius: 8px;
  padding: 10px 76px 10px 10px;
  background: #fff;
  box-shadow: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  transform-origin: center;
  animation: none;
  transition: transform .78s cubic-bezier(.64,.02,.92,.52), opacity .35s ease, height .55s ease, min-height .55s ease, padding .55s ease, border-width .55s ease;
}
.process-section .stage-1 .result-card,
.process-section .stage-2 .result-card,
.process-section .stage-3 .result-card,
.process-section .stage-4 .result-card { animation: none; }
.result-card.positive,
.result-card.negative,
.result-card.neutral { background: #fff; }
.result-card.positive { border-color: rgba(30,126,52,.35); border-left-width: 1.5px; }
.result-card.negative { border-color: rgba(192,57,43,.46); }
.result-card.neutral { border-color: rgba(52,111,178,.28); border-left-width: 1.5px; }
.result-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #346fb2;
  color: #fff;
  font: 700 9px/1 "Process DM Sans", Arial, sans-serif;
}
.result-card.positive .result-icon { background: var(--process-green); color: #fff; }
.result-card.negative .result-icon { background: var(--process-red); color: #fff; }
.result-card.neutral .result-icon { background: var(--process-blue); color: #fff; }
.result-copy { min-width: 0; }
.result-meta { height: 17px; display: flex; align-items: baseline; gap: 6px; min-width: 0; white-space: nowrap; overflow: hidden; }
.result-meta > span { flex: 0 0 auto; color: #333; font: 400 11px/16px "Process DM Sans", Arial, sans-serif; }
.result-meta small {
  display: block;
  min-width: 0;
  margin: 0;
  color: #777;
  font: 400 10px/16px "Process DM Sans", Arial, sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-card strong {
  display: block;
  margin: 0;
  color: #1a0dab;
  font: 600 13px/16.9px "Process DM Sans", Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-card.negative strong { color: #b14437; }
.result-card p {
  margin: 2px 0 0;
  color: #4d5156;
  font: 400 11px/15.95px "Process DM Sans", Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 0;
  max-width: none;
  height: 29.6px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  padding: 2px 6px;
  font: 700 9px/25.6px "Process DM Sans", Arial, sans-serif;
  letter-spacing: .54px;
  text-transform: uppercase;
  white-space: nowrap;
}
.result-card.positive .result-badge { background: #eafbea; color: var(--process-green); }
.result-card.negative .result-badge { background: #fdecea; color: var(--process-red); }
.result-card.neutral .result-badge { background: #f0f2fc; color: var(--process-blue); }
.result-card.is-hidden { opacity: 0; transform: translateY(10px); }
.result-card.is-marked { border-color: var(--process-red); }
.result-card.is-marked .result-badge { background: var(--process-red); color: #fff; }
.result-card.is-removing { transform: translateX(calc(-100% - 70px)); }
.result-card.is-collapsing {
  height: 0;
  min-height: 0;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.result-card.is-entering { opacity: 0; transform: translateY(26px); }
.result-card.is-fading { opacity: 0; transform: translateY(34px); }
.result-card.is-watched { border-color: var(--process-green); box-shadow: 0 0 0 2px rgba(30,126,52,.12); }
.demo-controls,
.demo-footnote,
.scan-line,
.removal-outcome,
.removal-confirm { display: none !important; }

@media (max-width: 980px) and (min-width: 681px) {
  .process-section .container { width: min(920px, calc(100vw - 36px)); }
  .process-shell { grid-template-columns: 292px minmax(0, 1fr); gap: 20px; }
  .process-step { min-height: 154px; }
  .result-card { padding-right: 68px; }
}

@media (max-width: 680px) {
  .process-section { padding: 76px 0 88px; }
  .process-section .container { width: min(350px, calc(100vw - 40px)); }
  .process-head { margin-bottom: 32px; }
  .process-head .eyebrow { font-size: 12px; }
  .process-head .section-title { font-size: 32px; line-height: 1; letter-spacing: 0; }
  .process-intro { margin-top: 16px; font-size: 16px; line-height: 1.55; }
  .process-shell { width: 100%; min-height: 845px; display: block; margin: 0; }
  .process-steps { display: block; margin: 0; }
  .process-step { display: none; }
  .process-step.active {
    min-height: 146px;
    display: flex;
    border: 0;
    border-radius: 0;
    padding: 0 0 12px;
    background: transparent;
  }
  .process-step .num { font-size: 11px; }
  .process-step strong { font-size: 18px; }
  .process-step small { max-width: 330px; font-size: 13px; line-height: 19.5px; }
  .step-track { left: 0; right: 0; }
  .process-visual { width: 100%; padding: 0; }
  .browser-frame { width: 100%; height: 699px; border-radius: 14px; }
  .browser-bar { height: 54.6px; padding: 9px 14px; }
  .browser-dot,
  .browser-dot:nth-child(1),
  .browser-dot:nth-child(2),
  .browser-dot:nth-child(3) { width: 10px; height: 10px; }
  .address-bar { height: 35.6px; padding: 4px 10px; font-size: 12px; }
  .search-screen { min-height: 643px; }
  .demo-state { min-height: 28px; padding: 0 12px; font-size: 11px; line-height: 28px; letter-spacing: .99px; }
  .results-list { height: 615px; gap: 6px; padding: 8px 10px 10px; }
  .result-card {
    height: 94px;
    min-height: 94px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 68px 9px 9px;
  }
  .result-card strong {
    display: -webkit-box;
    font-size: 14px;
    line-height: 18px;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .result-card p { display: none; }
  .result-meta { height: 18px; }
  .result-meta > span { font-size: 11px; }
  .result-meta small { font-size: 10px; }
  .result-badge { top: 9px; right: 9px; height: 29.6px; max-width: none; padding: 2px 6px; font-size: 9px; }
  .result-card.is-removing { transform: translateX(calc(-100% - 42px)); }
}
