:root {
  --ink: #101820;
  --ink-soft: #18232d;
  --paper: #f1f0ea;
  --paper-bright: #fbfbf7;
  --blue: #1557d5;
  --blue-deep: #0b3e9e;
  --orange: #ff6b35;
  --mint: #b9e6d3;
  --line-dark: rgba(16, 24, 32, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--paper-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 240, 234, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 2px;
  padding: 5px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark span {
  background: currentColor;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  opacity: 0.25;
}

.brand-name {
  font-size: 20px;
  line-height: 1;
}

.brand-name span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding-top: 78px;
  color: var(--paper-bright);
  background: var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 68px;
  align-items: center;
  min-height: 660px;
  padding-block: 72px 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.eyebrow-dark {
  color: rgba(16, 24, 32, 0.62);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.058em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(64px, 7vw, 104px);
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  font-size: 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-photo {
  position: absolute;
  inset: 0 28px 0 38px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.05), rgba(16, 24, 32, 0.7)),
    linear-gradient(90deg, rgba(21, 87, 213, 0.28), transparent 50%);
  mix-blend-mode: multiply;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(0.7) contrast(1.08);
}

.hero-label {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  color: var(--paper-bright);
  background: rgba(16, 24, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-label span {
  color: var(--orange);
  font-family: var(--mono);
}

.hero-label-top {
  top: 78px;
  right: 0;
}

.hero-label-bottom {
  bottom: 68px;
  left: 0;
}

.clean-pass {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -40px;
  width: 155px;
  height: 52px;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(90deg);
}

.clean-pass::before {
  content: "";
  position: absolute;
  inset: 7px 0;
  background: repeating-linear-gradient(90deg, rgba(255, 107, 53, 0.13) 0 5px, transparent 5px 10px);
}

.clean-pass span {
  position: absolute;
  top: 13px;
  left: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.service-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--ink);
  background: var(--mint);
  border-block: 1px solid rgba(16, 24, 32, 0.2);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 64px;
  align-items: center;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  margin-inline: 32px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding-block: 120px;
}

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

.section-dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.section-blue {
  color: white;
  background: var(--blue);
}

.section-heading h2,
.method h2,
.photo-panel h2,
.faq-heading h2,
.contact-copy h2,
.evidence h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 80px);
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.7fr 0.9fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 72px;
}

.split-heading .eyebrow {
  margin-top: 8px;
}

.split-heading .heading-copy {
  margin-top: 8px;
  color: rgba(16, 24, 32, 0.68);
  font-size: 16px;
}

.source-link {
  display: inline-flex;
  gap: 7px;
  padding-bottom: 3px;
  color: var(--blue-deep);
  border-bottom: 1px solid rgba(11, 62, 158, 0.4);
  font-size: 12px;
  font-weight: 700;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.reason-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.reason-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--blue);
  transition: width 220ms ease;
}

.reason-card:hover::after {
  left: 0;
  width: 100%;
}

.reason-card .card-index {
  display: block;
  margin-bottom: 54px;
  color: rgba(16, 24, 32, 0.45);
  font-family: var(--mono);
  font-size: 11px;
}

.reason-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.reason-card p {
  margin: 0;
  color: rgba(16, 24, 32, 0.64);
  font-size: 14px;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
}

.services .shell {
  position: relative;
}

.services-heading {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.services-heading > p {
  max-width: 400px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.services-heading .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.services-heading h2 em {
  color: var(--mint);
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr 48px;
  gap: 26px;
  align-items: center;
  min-height: 180px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
}

.service-title p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.service-row > p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  font-size: 18px;
}

.scope-note {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 78px;
  padding: 38px;
  color: var(--ink);
  background: var(--mint);
}

.scope-badge {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-8deg);
}

.scope-note h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.scope-note p {
  max-width: 650px;
  margin: 0;
  font-size: 14px;
}

.button-invert {
  color: white;
  background: var(--ink);
}

.method {
  position: relative;
}

.method::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: var(--line-light);
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.method-copy {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-right: 20px;
}

.method-copy h2 {
  max-width: 560px;
  margin-bottom: 32px;
}

.method-intro {
  max-width: 480px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.principle-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.principle-list li:first-child {
  padding-top: 0;
}

.principle-list li > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
}

.principle-list h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.principle-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.photo-break {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 680px;
  background: var(--paper);
}

.photo-break figure {
  min-height: 680px;
  margin: 0;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.7) contrast(1.08);
}

.photo-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 112px);
  background-image: linear-gradient(rgba(16, 24, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

.photo-panel h2 {
  margin-bottom: 30px;
}

.photo-panel > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(16, 24, 32, 0.68);
  font-size: 17px;
}

.photo-meta {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-meta span:last-child {
  color: var(--blue-deep);
}

.process-heading {
  grid-template-columns: 0.65fr 1.6fr 0.9fr;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  padding-right: 30px;
}

.step-number {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.step-line {
  position: relative;
  width: 100%;
  height: 2px;
  margin-bottom: 32px;
  background: var(--line-dark);
}

.step-line i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.process-step h3 {
  max-width: 220px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-step p {
  max-width: 240px;
  margin: 0;
  color: rgba(16, 24, 32, 0.63);
  font-size: 13px;
}

.evidence {
  color: white;
  background: var(--blue-deep);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.evidence h2 {
  margin-bottom: 30px;
}

.evidence h2 em {
  color: var(--mint);
}

.evidence-main > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.72);
}

.evidence-main .fine-print {
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.document-preview {
  position: relative;
  min-height: 500px;
  padding: 48px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 18px 18px 0 rgba(16, 24, 32, 0.22);
  transform: rotate(1.5deg);
}

.doc-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 44px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.doc-row {
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.doc-row i {
  display: block;
  height: 1px;
  margin-top: 15px;
  background: rgba(16, 24, 32, 0.35);
}

.doc-checks {
  display: grid;
  gap: 14px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 10px;
}

.doc-checks span {
  padding: 12px;
  background: rgba(185, 230, 211, 0.55);
}

.doc-stamp {
  position: absolute;
  right: 40px;
  bottom: 36px;
  display: grid;
  width: 115px;
  height: 115px;
  place-items: center;
  color: var(--blue-deep);
  border: 3px solid var(--blue-deep);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-10deg);
}

.doc-stamp small {
  font-size: 7px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 28px;
}

.faq-heading p:not(.eyebrow) {
  max-width: 380px;
  color: rgba(16, 24, 32, 0.64);
}

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

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

.faq-list summary {
  display: flex;
  gap: 30px;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 650px;
  padding: 0 60px 28px 0;
  margin: 0;
  color: rgba(16, 24, 32, 0.64);
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  color: white;
  background: var(--ink);
}

.contact::after {
  content: "";
  position: absolute;
  top: -15vw;
  left: -8vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-copy ul {
  padding: 0;
  margin: 40px 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 700;
}

.contact-copy li span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}

.prototype-note {
  padding: 20px;
  color: var(--ink);
  background: var(--mint);
  border-left: 5px solid var(--orange);
}

.prototype-note strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prototype-note p {
  margin: 6px 0 0;
  font-size: 12px;
}

.inquiry-form {
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper-bright);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label,
.inquiry-form fieldset {
  display: block;
  margin-bottom: 20px;
}

.inquiry-form label > span,
.inquiry-form legend {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inquiry-form input:not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.35);
  border-radius: 0;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form fieldset {
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-grid label {
  position: relative;
  margin: 0;
}

.checkbox-grid input {
  position: absolute;
  opacity: 0;
}

.checkbox-grid label > span {
  display: block;
  padding: 12px;
  margin: 0;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox-grid input:checked + span {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.privacy-check {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-check span {
  margin: 0 !important;
  color: rgba(16, 24, 32, 0.6);
  line-height: 1.5;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
  color: white;
  background: var(--blue);
  cursor: pointer;
}

.button-submit span {
  font-size: 19px;
}

.form-status {
  display: none;
  padding: 14px;
  margin: 16px 0 0;
  color: var(--ink);
  background: var(--mint);
  font-size: 12px;
  white-space: pre-wrap;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  color: white;
  background: #080d11;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: center;
  padding-block: 62px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer {
  font-size: 24px;
}

.footer-top p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 800;
}

.footer-cta span {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
}

.legal-dialog {
  width: min(620px, calc(100vw - 32px));
  padding: 52px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.legal-dialog::backdrop {
  background: rgba(8, 13, 17, 0.78);
  backdrop-filter: blur(5px);
}

.legal-dialog h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  :root { --shell: min(100% - 40px, 900px); }
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero-layout { grid-template-columns: 1fr 0.8fr; gap: 30px; }
  .hero-visual { min-height: 520px; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 50px 0.9fr 1.1fr 42px; }
  .scope-note { grid-template-columns: 110px 1fr; }
  .scope-note .button { grid-column: 2; justify-self: start; }
  .method-layout, .faq-layout, .contact-layout { gap: 54px; }
  .photo-panel { padding: 56px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 52px 0; }
  .evidence-grid { gap: 54px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  html { scroll-padding-top: 70px; }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 24px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a:not(.nav-cta) { display: block; padding: 13px 8px; border-bottom: 1px solid var(--line-dark); }
  .site-nav .nav-cta { margin-top: 14px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-header:not(.is-scrolled):has(.site-nav.is-open) { color: var(--ink); background: var(--paper); }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-layout { display: flex; flex-direction: column; padding-block: 58px 42px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { width: 100%; min-height: 460px; margin-top: 18px; }
  .hero-photo { inset: 0 12px 0 12px; }
  .hero-label-top { top: 45px; }
  .hero-label-bottom { bottom: 44px; }
  .clean-pass { right: -48px; }
  .section { padding-block: 82px; }
  .split-heading, .process-heading { display: block; margin-bottom: 52px; }
  .split-heading .eyebrow { margin-top: 0; }
  .section-heading h2, .method h2, .photo-panel h2, .faq-heading h2, .contact-copy h2, .evidence h2 { font-size: clamp(44px, 14vw, 64px); }
  .evidence h2 { font-size: clamp(42px, 11.5vw, 58px); }
  .split-heading .heading-copy { margin-top: 28px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card { min-height: 280px; }
  .services-heading { display: block; margin-bottom: 45px; }
  .services-heading > p { margin-top: 24px; }
  .service-row { grid-template-columns: 42px 1fr 38px; gap: 16px; min-height: 0; padding-block: 28px; }
  .service-row > p { grid-column: 2 / 4; }
  .service-icon { grid-column: 3; grid-row: 1; }
  .scope-note { display: block; padding: 28px; }
  .scope-badge { width: 90px; height: 90px; margin-bottom: 30px; }
  .scope-note .button { margin-top: 24px; }
  .method::after { display: none; }
  .method-layout { display: block; }
  .method-copy { position: static; margin-bottom: 68px; }
  .photo-break { display: flex; flex-direction: column; }
  .photo-break figure { min-height: 520px; }
  .photo-panel { padding: 72px 24px; }
  .photo-meta { flex-direction: column; gap: 4px; }
  .process-track { grid-template-columns: 1fr; gap: 44px; }
  .process-step { padding-right: 0; }
  .process-step h3, .process-step p { max-width: 100%; }
  .evidence-grid, .faq-layout, .contact-layout { display: block; }
  .evidence-main, .faq-heading, .contact-copy { margin-bottom: 56px; }
  .faq-heading { position: static; }
  .document-preview { min-height: 440px; padding: 30px; }
  .faq-list summary { font-size: 19px; }
  .contact { padding-block: 82px; }
  .field-row, .checkbox-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 28px 20px; }
  .footer-top { display: block; }
  .footer-top p { margin-block: 25px; }
  .footer-cta { display: inline-flex; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 20px; padding-block: 24px; }
  .footer-bottom div { flex-wrap: wrap; gap: 14px 22px; }
  .legal-dialog { padding: 48px 24px 32px; }
}

@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; }
  [data-reveal] { opacity: 1; transform: none; }
}
