:root {
  --ink: #0d0f0e;
  --ink-soft: #171a18;
  --paper: #f1f2ed;
  --paper-cool: #e8ece9;
  --white: #ffffff;
  --muted: #626965;
  --line: rgba(13, 15, 14, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --signal: #ff4f2f;
  --signal-dark: #d9361b;
  --cyan: #33c7d7;
  --green: #54b98e;
  --yellow: #e8c358;
  --header-height: 78px;
  --page-pad: max(24px, calc((100vw - 1480px) / 2));
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.auth-open { overflow: hidden; }
main > section[id] { scroll-margin-top: var(--header-height); }
a { color: inherit; }
button,
input,
textarea,
select { font: inherit; }
button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; }
h1,
h2,
h3 { text-wrap: balance; }
p { text-wrap: pretty; }
[hidden] { display: none !important; }
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 300;
  padding: 12px 16px;
  color: var(--white);
  background: var(--signal);
  text-decoration: none;
}
.skip-link:focus { top: 18px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 250;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  animation: headerEnter 700ms var(--ease-out-expo) both;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header:not(.scrolled) {
  background: rgba(8, 10, 9, 0.38);
  backdrop-filter: blur(14px) saturate(135%);
}
.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(241, 242, 237, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(13, 15, 14, 0.08);
}
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #050605;
  font: 800 13px/1 var(--body);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-header.scrolled .brand-mark { border-color: var(--signal); }
.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.brand-copy b {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand-copy small {
  color: currentColor;
  font: 500 8px/1.2 var(--mono);
  letter-spacing: 0;
  opacity: 0.62;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header:not(.scrolled) .desktop-nav a[aria-current="location"] { color: var(--cyan); }
.site-header.scrolled .desktop-nav a[aria-current="location"] { color: var(--signal-dark); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.access-link {
  padding: 9px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.access-link:hover { color: var(--signal); }
.account-active { color: var(--cyan); }
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.site-header.scrolled .header-cta {
  color: var(--white);
  background: var(--ink);
}
.header-cta:hover {
  color: var(--white);
  background: var(--signal);
  transform: translateY(-2px);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 220ms ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 32px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}
.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  font-size: 31px;
  font-weight: 750;
  text-decoration: none;
}
.mobile-menu nav small { color: var(--signal); font: 10px var(--mono); }
.mobile-menu nav a[aria-current="location"] { color: var(--cyan); }
.mobile-auth,
.mobile-admin,
.mobile-contact {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}
.mobile-auth { margin-top: 24px; cursor: pointer; }
.mobile-contact {
  margin-top: 18px;
  padding: 0 15px;
  color: var(--ink);
  border: 0;
  background: var(--signal);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  height: 92svh;
  min-height: 720px;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: calc(100% + 28px);
  height: calc(100% + 20px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.035);
  will-change: transform;
  transition: transform 700ms var(--ease-out-expo);
  animation: heroReveal 1200ms var(--ease-out-expo) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96) 0%, rgba(7, 9, 8, 0.8) 32%, rgba(7, 9, 8, 0.2) 67%, rgba(7, 9, 8, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 9, 8, 0.82) 0%, transparent 42%);
}
.hero-grid {
  position: absolute;
  inset: var(--header-height) 0 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}
.hero-grid::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(51, 199, 215, 0.42);
  box-shadow: 0 0 18px rgba(51, 199, 215, 0.36);
  content: "";
  opacity: 0;
  transform: translateY(0);
  animation: gridScan 9s 1.2s ease-in-out infinite;
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: var(--page-pad);
  width: min(860px, calc(100vw - var(--page-pad) - 24px));
  transform: translateY(-47%);
}
.hero-content > * {
  animation: heroContentEnter 760ms var(--ease-out-expo) both;
}
.hero-content > :nth-child(1) { animation-delay: 140ms; }
.hero-content > :nth-child(2) { animation: none; }
.hero-content > :nth-child(3) { animation-delay: 290ms; }
.hero-content > :nth-child(4) { animation-delay: 370ms; }
.hero-content > :nth-child(5) { animation-delay: 450ms; }
.kicker,
.eyebrow,
.section-label {
  font-family: var(--mono);
  letter-spacing: 0;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}
.kicker span {
  width: 28px;
  height: 2px;
  background: var(--signal);
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 112px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  overflow: hidden;
}
.hero h1 b {
  display: block;
  font: inherit;
  animation: heroTitleEnter 900ms var(--ease-out-expo) both;
}
.hero h1 span:first-child b { animation-delay: 190ms; }
.hero h1 span:last-child b { animation-delay: 270ms; }
.hero h1.hero-seo-title {
  max-width: 1080px;
  font-size: clamp(56px, 6.6vw, 118px);
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-statement {
  margin: 24px 0 0;
  color: var(--cyan);
  font-size: 33px;
  font-weight: 760;
  line-height: 1.04;
}
.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button::before {
  position: absolute;
  top: -120%;
  left: -60%;
  width: 35%;
  height: 340%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: rotate(20deg) translateX(-240%);
  transition: transform 620ms ease;
}
.button:hover::before { transform: rotate(20deg) translateX(760%); }
.button-primary {
  color: var(--ink);
  background: var(--signal);
}
.button-primary:hover {
  color: var(--white);
  background: var(--signal-dark);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { color: var(--signal); }
.hero-index {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 24px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.hero-index div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding-right: 22px;
  color: rgba(255, 255, 255, 0.72);
  animation: heroIndexEnter 700ms var(--ease-out-expo) both;
}
.hero-index div:nth-child(1) { animation-delay: 560ms; }
.hero-index div:nth-child(2) { animation-delay: 640ms; }
.hero-index div:nth-child(3) { animation-delay: 720ms; }
.hero-index strong { color: var(--signal); font: 10px var(--mono); }
.hero-index span { font-size: 11px; font-weight: 700; text-transform: uppercase; }

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.035); }
}
@keyframes headerEnter {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroContentEnter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTitleEnter {
  from { opacity: 0; transform: translateY(104%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroIndexEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gridScan {
  0%, 14% { opacity: 0; transform: translateY(0); }
  22% { opacity: 1; }
  72% { opacity: 0.7; }
  82%, 100% { opacity: 0; transform: translateY(calc(92svh - var(--header-height))); }
}

.signal-rail {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--signal);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: railMove 30s linear infinite;
}
.signal-rail:hover .signal-track { animation-play-state: paused; }
.signal-track span {
  font: 750 11px var(--mono);
  white-space: nowrap;
}
.signal-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}
@keyframes railMove { to { transform: translateX(calc(-50% - 12px)); } }

.section { padding: 118px var(--page-pad); }

.answer-section {
  padding-top: 96px;
  padding-bottom: 104px;
  background: var(--paper-cool);
}
.answer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 18px 88px;
  align-items: end;
  margin-bottom: 64px;
}
.answer-intro > * { min-width: 0; }
.answer-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}
.answer-intro h2 {
  grid-column: 1;
  margin: 0;
  max-width: 760px;
  font: 900 clamp(48px, 4.2vw, 72px)/.94 var(--display);
  text-transform: uppercase;
}
.answer-intro > p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.answer-item {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease;
}
.answer-item > span { color: var(--signal); font: 11px var(--mono); }
.answer-item h3 { margin: 54px 0 14px; font-size: 24px; line-height: 1.12; }
.answer-item p { margin: 0; color: var(--muted); line-height: 1.6; }
.answer-item b { margin-top: auto; padding-top: 24px; font-size: 13px; }
.answer-item i { color: var(--signal); font-style: normal; }
.systems-glossary {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.8fr);
  gap: 34px 64px;
  margin-top: 28px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .48);
}
.systems-glossary-heading h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.12;
}
.systems-glossary-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.systems-glossary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.systems-glossary dl > div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.systems-glossary dt {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}
.systems-glossary dt abbr {
  color: var(--signal-dark);
  font: 800 17px var(--mono);
  text-decoration: none;
}
.systems-glossary dt span {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}
.systems-glossary dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.systems-glossary-flow {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
.section-label {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 4fr;
  margin-bottom: 74px;
  font-size: 10px;
}
.section-label span { color: var(--signal); }
.section-label p { margin: 0; color: var(--muted); }
.section-label.light p { color: rgba(255, 255, 255, 0.5); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--signal-dark);
  font-size: 11px;
  font-weight: 700;
}
.eyebrow.light { color: var(--signal); }
.outcome-section { background: var(--paper); }
.outcome-copy {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.outcome-copy h2,
.calculator-heading h2,
.field-copy h2,
.method-heading h2,
.solutions-heading h2,
.checkup-copy h2,
.faq-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 66px;
  line-height: 0.98;
  letter-spacing: 0;
}
.outcome-copy .lead {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.outcome-lines {
  margin-top: 82px;
  border-top: 1px solid var(--line);
}
.outcome-line {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(230px, 1.1fr) 2fr minmax(150px, auto);
  gap: 30px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  transition: background-color 240ms ease, padding-right 240ms var(--ease-out-expo), padding-left 240ms var(--ease-out-expo);
}
.outcome-line > span { color: var(--signal-dark); font: 10px var(--mono); }
.outcome-line h3 { margin: 0; font-size: 23px; line-height: 1.15; }
.outcome-line p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.outcome-line b {
  justify-self: end;
  color: var(--ink);
  font: 10px var(--mono);
  text-transform: uppercase;
}

.calculator-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  color: var(--white);
  background: var(--ink);
}
.calculator-heading h2 { max-width: 680px; }
.calculator-heading > p:not(.eyebrow) {
  max-width: 550px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}
.time-calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.time-calculator label {
  display: grid;
  min-height: 128px;
  align-content: space-between;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.time-calculator label > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 650;
}
.time-calculator input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-family: var(--display);
  font-size: 36px;
}
.input-unit {
  display: flex;
  align-items: end;
}
.input-unit i {
  padding-bottom: 5px;
  color: var(--signal);
  font-size: 18px;
  font-style: normal;
}
.calculator-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 50px;
  margin-top: 8px;
  padding-top: 38px;
  border-top: 1px solid var(--line-light);
}
.calculator-result.pulse .result-main strong {
  animation: valuePulse 360ms ease;
}
.result-main p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}
.result-main strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.result-main strong span { min-width: 2ch; }
.result-main small {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--body);
  font-size: 13px;
}
.result-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.result-detail div {
  min-width: 0;
  padding: 12px 18px;
  border-left: 1px solid var(--line-light);
}
.result-detail span,
.result-detail b { display: block; }
.result-detail span { color: rgba(255, 255, 255, 0.5); font-size: 10px; }
.result-detail b { margin-top: 12px; font-size: 17px; line-height: 1.3; }
.result-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}

.field-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 760px;
  background: var(--white);
}
.field-visual {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}
.field-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.field-visual:hover img { transform: scale(1.025); }
.field-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: var(--white);
  background: rgba(13, 15, 14, 0.78);
  backdrop-filter: blur(14px);
}
.field-visual figcaption span { font: 9px var(--mono); }
.field-visual figcaption b { font-size: 13px; }
.field-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(34px, 6vw);
}
.field-copy h2 { font-size: 48px; }
.field-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.field-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.field-copy li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.field-copy li span { color: var(--signal-dark); font: 9px var(--mono); }

.method-section {
  color: var(--white);
  background: var(--ink-soft);
}
.method-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: end;
}
.method-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
}
.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 80px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.method-flow::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}
.method-step {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, background-color 220ms ease, transform 320ms var(--ease-out-expo);
}
.method-step:hover {
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(-4px);
}
.method-step > span { color: var(--signal); font: 10px var(--mono); }
.method-step:hover > span { color: var(--ink); }
.method-step small { color: rgba(255, 255, 255, 0.48); font: 9px var(--mono); }
.method-step:hover small { color: rgba(13, 15, 14, 0.62); }
.method-step h3 {
  min-height: 58px;
  margin: 9px 0 14px;
  font-size: 23px;
  line-height: 1.15;
}
.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}
.method-step:hover p { color: rgba(13, 15, 14, 0.72); }

.solutions-section { background: var(--paper-cool); }
.solutions-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.solutions-heading h2 { justify-self: end; max-width: 800px; }
.solution-switcher {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.solution-tabs {
  display: grid;
  align-content: start;
  border-left: 1px solid var(--line);
}
.solution-tabs button {
  display: grid;
  grid-template-columns: 44px 1fr;
  min-height: 82px;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, padding-left 280ms var(--ease-out-expo);
}
.solution-tabs button span { color: var(--signal-dark); font: 9px var(--mono); }
.solution-tabs button.active {
  color: var(--white);
  background: var(--ink);
}
.solution-tabs button.active span { color: var(--cyan); }
.solution-panels {
  min-height: 420px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 60px;
  min-height: 420px;
  align-items: end;
  padding: 50px;
  animation: panelIn 380ms ease both;
}
.solution-panel > div > p { margin: 0 0 30px; color: var(--signal-dark); font: 10px var(--mono); }
.solution-panel h3 { max-width: 720px; margin: 0; font-size: 39px; line-height: 1.08; }
.solution-panel > div > span { display: block; margin-top: 32px; color: var(--muted); font-size: 12px; }
.solution-panel ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.solution-panel li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes valuePulse {
  50% { color: var(--yellow); transform: translateY(-2px); }
}

.compliance-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(51, 199, 215, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 199, 215, 0.055) 1px, transparent 1px),
    #101817;
  background-size: 72px 72px;
}
.compliance-section::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 38%, var(--signal) 38% 62%, transparent 62%);
  content: "";
}
.compliance-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: end;
}
.compliance-eyebrow { color: var(--cyan); }
.compliance-heading h2 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 66px;
  line-height: 0.98;
}
.compliance-heading > p {
  max-width: 620px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.compliance-item {
  min-width: 0;
  min-height: 300px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 240ms ease, background-color 240ms ease, transform 320ms var(--ease-out-expo);
}
.compliance-item > span {
  color: var(--cyan);
  font: 9px var(--mono);
}
.compliance-item h3 {
  max-width: 240px;
  margin: 70px 0 16px;
  font-size: 22px;
  line-height: 1.15;
}
.compliance-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.68;
}
.legal-partner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1.35fr) minmax(220px, 0.7fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(51, 199, 215, 0.34);
  background: rgba(51, 199, 215, 0.08);
}
.legal-partner-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
}
.legal-partner-copy span,
.legal-partner-scope span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font: 9px var(--mono);
}
.legal-partner-copy strong { display: block; font-size: 22px; }
.legal-partner-copy p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.legal-partner-scope {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.legal-partner-scope b {
  display: block;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.5;
}
.legal-partner-cta {
  min-height: 52px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}
.legal-partner-cta:hover {
  color: var(--white);
  background: var(--signal);
}
.compliance-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.checkup-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  color: var(--white);
  background: var(--signal-dark);
}
.checkup-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}
.checkup-section .button-primary {
  color: var(--ink);
  background: var(--white);
}
.checkup-section .button-primary:hover { color: var(--white); background: var(--ink); }
.checkup-output { align-self: center; }
.checkup-output > p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.58); font: 10px var(--mono); }
.checkup-output ol { margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.26); list-style: none; }
.checkup-output li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
.checkup-output li > span { color: var(--yellow); font: 9px var(--mono); }
.checkup-output b,
.checkup-output small { display: block; }
.checkup-output b { font-size: 14px; }
.checkup-output small { margin-top: 3px; color: rgba(255, 255, 255, 0.62); font-size: 11px; }

.principle-section {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 80px var(--page-pad);
  color: var(--ink);
  background: var(--cyan);
  text-align: center;
}
.principle-section p {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.16;
}
.principle-section strong { font-family: var(--display); }

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  background: var(--paper);
}
.faq-heading h2 { font-size: 54px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary > span { color: var(--signal-dark); font: 9px var(--mono); }
.faq summary i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}
.faq details[open] summary i {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}
.faq details p {
  max-width: 720px;
  margin: -4px 42px 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.contact::before {
  position: absolute;
  inset: 0;
  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: 80px 80px;
  content: "";
  mask-image: linear-gradient(120deg, black, transparent 72%);
}
.contact > * { position: relative; z-index: 1; }
.contact-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}
.contact-direct {
  display: grid;
  max-width: 430px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}
.contact-direct small { color: rgba(255, 255, 255, 0.44); font: 9px var(--mono); }
.contact-direct strong { margin-top: 8px; font-size: 16px; }
.contact-direct a {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.contact-direct > span { margin-top: 5px; color: rgba(255, 255, 255, 0.56); font-size: 12px; }
.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}
.form-row,
.auth-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.lead-form label,
.auth-form label { display: grid; gap: 8px; }
.lead-form label > span,
.auth-form label > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 650;
}
.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea,
.auth-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
}
.lead-form textarea { min-height: 125px; resize: vertical; }
.lead-form select { appearance: auto; }
.lead-form option { color: var(--ink); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.auth-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(51, 199, 215, 0.18);
}
.lead-form ::placeholder,
.auth-form ::placeholder { color: rgba(255, 255, 255, 0.38); }
.privacy,
.auth-privacy {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: start;
}
.privacy input,
.auth-privacy input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--signal);
}
.privacy span,
.auth-privacy span {
  font-size: 12px !important;
  line-height: 1.55;
}
.lead-form .button { justify-self: start; }

.site-footer {
  padding: 60px var(--page-pad) 34px;
  color: var(--white);
  background: #080a09;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-light);
}
.footer-top > p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 12px 32px; }
.footer-links a { font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}
.footer-utilities { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-utilities a { text-decoration: none; }
.footer-legal { position: relative; }
.footer-legal summary { color: inherit; cursor: pointer; list-style: none; }
.footer-legal summary::-webkit-details-marker { display: none; }
.footer-legal-card {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 300px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}
.footer-legal-card strong { font-size: 12px; }
.footer-legal-card p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.mobile-float-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 75;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: var(--ink);
  background: var(--signal);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(13, 15, 14, 0.28);
  transition: opacity 180ms ease, transform 180ms ease;
}
.mobile-float-cta.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 220;
  display: flex;
  min-width: 300px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
}
.toast p { margin: 0; }
.toast strong,
.toast small { display: block; }
.toast strong { font-size: 13px; }
.toast small { margin-top: 2px; color: var(--muted); font-size: 11px; }

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.78);
  backdrop-filter: blur(10px);
}
.auth-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 34px;
  color: var(--white);
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  animation: modalIn 240ms ease both;
}
.auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font: 9px var(--mono);
}
.auth-tabs {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  border-bottom: 1px solid var(--line-light);
}
.auth-tabs button {
  position: relative;
  padding: 0 0 13px;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.auth-tabs button.active { color: var(--white); }
.auth-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
}
.auth-intro { margin: 30px 0 24px; }
.auth-intro h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.auth-intro > p:not(.eyebrow) { margin: 14px 0 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.auth-form { display: grid; gap: 16px; }
.auth-form .button { justify-self: start; margin-top: 4px; }
.auth-help {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.auth-help:hover { color: #fff; }
.auth-feedback { min-height: 20px; margin: 0; color: #ff8d77; font-size: 12px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms var(--ease-out-expo);
}
.outcome-line.reveal.will-reveal {
  transition:
    opacity 720ms ease,
    transform 720ms var(--ease-out-expo),
    background-color 240ms ease,
    padding-right 240ms var(--ease-out-expo),
    padding-left 240ms var(--ease-out-expo);
}
.method-step.reveal.will-reveal {
  transition:
    opacity 720ms ease,
    transform 720ms var(--ease-out-expo),
    color 220ms ease,
    background-color 220ms ease;
}
.reveal.will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .answer-item:hover { color: var(--white); background: var(--ink); }
  .answer-item:hover p { color: #b9c0bc; }
  .outcome-line:hover {
    padding-right: 16px;
    padding-left: 16px;
    background: rgba(255, 255, 255, 0.56);
  }
  .solution-tabs button:not(.active):hover { padding-left: 24px; }
}

@supports (animation-timeline: view()) {
  .method-flow::before {
    animation: methodTrace 1ms linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 42%;
  }
  .principle-section p {
    animation: principleReveal linear both;
    animation-timeline: view();
    animation-range: entry 12% cover 36%;
  }
  @keyframes principleReveal {
    from { opacity: 0.35; transform: translateY(28px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes methodTrace {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .hero-content { top: 49%; }
  .hero h1 { font-size: 96px; }
  .hero h1.hero-seo-title { font-size: 90px; }
  .hero-statement { margin-top: 18px; font-size: 28px; }
  .hero-copy { margin-top: 14px; font-size: 15px; line-height: 1.5; }
  .hero-actions { margin-top: 20px; }
}

@media (max-width: 1180px) {
  :root { --page-pad: 34px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-cta { display: none; }
  .hero h1 { font-size: 88px; }
  .hero h1.hero-seo-title { font-size: 82px; }
  .answer-intro { grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 56px; }
  .answer-intro h2 { font-size: 58px; }
  .answer-item { padding: 24px; }
  .answer-item h3 { font-size: 21px; }
  .outcome-copy h2,
  .calculator-heading h2,
  .method-heading h2,
  .solutions-heading h2,
  .compliance-heading h2,
  .checkup-copy h2,
  .contact-heading h2 { font-size: 56px; }
  .outcome-line { grid-template-columns: 44px minmax(200px, 1fr) 1.6fr; }
  .outcome-line b { display: none; }
  .method-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .method-step { min-height: 285px; }
  .field-section { grid-template-columns: 1.05fr 0.95fr; }
  .field-copy { padding: 60px 34px; }
  .solution-panel { padding: 40px; }
  .compliance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compliance-item { min-height: 260px; }
  .legal-partner { grid-template-columns: auto 1fr auto; }
  .legal-partner-scope { display: none; }
}

@media (max-width: 860px) {
  .answer-intro { grid-template-columns: 1fr; gap: 22px; }
  .answer-intro .eyebrow,
  .answer-intro h2,
  .answer-intro > p:last-child { grid-column: 1; grid-row: auto; }
  .answer-grid { grid-template-columns: 1fr 1fr; }
  .systems-glossary { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
  :root { --page-pad: 22px; --header-height: 68px; }
  .site-header { padding: 0 var(--page-pad); }
  .access-link { display: none; }
  .hero { height: 92svh; min-height: 700px; }
  .hero-image { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.34)),
      linear-gradient(0deg, rgba(7, 9, 8, 0.94) 0%, rgba(7, 9, 8, 0.36) 55%, rgba(7, 9, 8, 0.56) 100%);
  }
  .hero-content { width: min(650px, calc(100vw - 44px)); }
  .hero h1 { font-size: 72px; }
  .hero h1.hero-seo-title { font-size: 66px; }
  .hero-index div:nth-child(3) { display: none; }
  .hero-index { grid-template-columns: repeat(2, 1fr); }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-label { grid-template-columns: 80px 1fr; margin-bottom: 50px; }
  .outcome-copy,
  .calculator-section,
  .method-heading,
  .solutions-heading,
  .compliance-heading,
  .checkup-section,
  .faq,
  .contact { grid-template-columns: 1fr; }
  .outcome-copy { align-items: start; }
  .outcome-copy .lead { max-width: 620px; }
  .outcome-lines { margin-top: 55px; }
  .outcome-line {
    grid-template-columns: 40px 1fr;
    gap: 10px 14px;
    padding: 24px 0;
  }
  .outcome-line p { grid-column: 2; }
  .calculator-section { gap: 45px; }
  .calculator-result { grid-template-columns: 1fr; gap: 28px; }
  .field-section { grid-template-columns: 1fr; }
  .field-visual { min-height: 520px; }
  .field-copy { padding: 80px var(--page-pad); }
  .method-heading { gap: 24px; }
  .method-heading p { max-width: 600px; }
  .method-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 54px; }
  .solutions-heading h2 { justify-self: start; }
  .solution-switcher { grid-template-columns: 1fr; margin-top: 54px; }
  .solution-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: auto;
  }
  .solution-tabs button {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 76px;
    font-size: 12px;
  }
  .solution-panel { min-height: 400px; }
  .compliance-heading { gap: 28px; }
  .compliance-heading > p { max-width: 650px; }
  .legal-partner { grid-template-columns: auto 1fr; }
  .legal-partner-cta { grid-column: 1 / -1; justify-content: space-between; }
  .checkup-section { gap: 54px; }
  .principle-section { min-height: 420px; }
  .principle-section p { font-size: 38px; }
  .faq { gap: 46px; }
  .contact { gap: 54px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero h1.hero-seo-title { font-size: 38px; line-height: .92; }
  .answer-grid { grid-template-columns: 1fr; }
  .answer-intro h2 { font-size: 40px; overflow-wrap: anywhere; }
  .answer-item { min-height: 250px; }
  .systems-glossary { margin-top: 20px; padding: 24px 18px; }
  .systems-glossary-heading h3 { font-size: 23px; }
  .systems-glossary dl { grid-template-columns: 1fr; }
  .systems-glossary dl > div { padding: 18px; }
  :root { --page-pad: 18px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-copy b { font-size: 12px; }
  .brand-copy small { font-size: 7px; }
  .site-header .header-actions { gap: 4px; }
  .hero { min-height: 720px; max-height: none; }
  .hero-image { object-position: 62% center; }
  .hero-grid { background-size: 64px 64px; }
  .hero-content { top: 46%; width: calc(100vw - 36px); transform: translateY(-46%); }
  .kicker { font-size: 9px; }
  .hero h1 { font-size: 49px; line-height: 0.86; }
  .hero-statement { margin-top: 20px; font-size: 27px; }
  .hero-copy { max-width: 94%; margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: stretch; gap: 16px; margin-top: 24px; }
  .hero-actions .button { min-height: 50px; gap: 16px; padding: 0 15px; font-size: 12px; }
  .hero-actions .text-link { display: none; }
  .hero-index { bottom: 10px; }
  .hero-index div { min-height: 50px; padding-right: 8px; }
  .hero-index span { font-size: 9px; }
  .signal-rail { padding: 16px 0; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-label { margin-bottom: 42px; }
  .section-label p { font-size: 9px; }
  .outcome-copy h2,
  .calculator-heading h2,
  .method-heading h2,
  .solutions-heading h2,
  .compliance-heading h2,
  .checkup-copy h2,
  .faq-heading h2,
  .contact-heading h2 { font-size: 42px; line-height: 1; }
  .outcome-copy { gap: 24px; }
  .outcome-copy .lead { font-size: 16px; }
  .outcome-line h3 { font-size: 20px; }
  .time-calculator { grid-template-columns: 1fr; }
  .time-calculator label { min-height: 105px; }
  .time-calculator input { font-size: 31px; }
  .result-main strong { font-size: 39px; }
  .result-detail { grid-template-columns: 1fr; }
  .result-detail div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 10px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
  .result-detail b { margin-top: 0; font-size: 14px; }
  .field-visual { min-height: 430px; }
  .field-visual img { object-position: 47% center; }
  .field-visual figcaption { right: 12px; bottom: 12px; left: 12px; display: grid; padding: 14px; }
  .field-visual figcaption b { font-size: 11px; }
  .field-copy { padding-top: 68px; padding-bottom: 68px; }
  .field-copy h2 { font-size: 38px; }
  .method-flow { grid-template-columns: 1fr; }
  .method-step {
    grid-template-columns: 38px 1fr;
    gap: 8px;
    min-height: 0;
    padding: 22px;
  }
  .method-step > span { grid-row: 1; }
  .method-step > div { grid-column: 2; }
  .method-step h3 { min-height: 0; margin-top: 6px; font-size: 21px; }
  .solution-tabs {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(145px, 1fr);
  }
  .solution-tabs button { min-width: 145px; }
  .solution-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 520px;
    align-content: space-between;
    padding: 28px 20px;
  }
  .solution-panel h3 { font-size: 30px; }
  .compliance-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .compliance-item {
    min-height: 0;
    padding: 24px 20px 28px;
  }
  .compliance-item h3 { max-width: none; margin: 30px 0 10px; font-size: 21px; }
  .legal-partner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .legal-partner-mark { width: 58px; height: 58px; }
  .legal-partner-cta { grid-column: auto; width: 100%; }
  .compliance-note { line-height: 1.55; }
  .checkup-section { gap: 48px; }
  .principle-section { min-height: 380px; }
  .principle-section p { font-size: 30px; }
  .faq summary { min-height: 76px; font-size: 15px; }
  .faq details p { margin-left: 0; }
  .form-row,
  .auth-row { grid-template-columns: 1fr; }
  .lead-form { padding: 20px 16px; }
  .lead-form .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-utilities { justify-content: flex-start; }
  .footer-legal-card { right: auto; left: 0; }
  .mobile-float-cta { display: flex; }
  .site-footer { padding-bottom: 90px; }
  .toast {
    right: 12px;
    bottom: 76px;
    left: 12px;
    min-width: 0;
  }
  .auth-panel { padding: 28px 20px; }
  .auth-intro h2 { font-size: 30px; }
}

@media (max-width: 370px) {
  .hero h1.hero-seo-title { font-size: 34px; }
  .brand-copy small { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-statement { font-size: 24px; }
  .outcome-copy h2,
  .calculator-heading h2,
  .method-heading h2,
  .solutions-heading h2,
  .compliance-heading h2,
  .checkup-copy h2,
  .faq-heading h2,
  .contact-heading h2 { font-size: 37px; }
}

@media (max-width: 340px) {
  .hero h1 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .signal-track { animation: none; }
  .principle-section p { animation: none; }
  .hero-content > *,
  .hero-index div { opacity: 1; transform: none; }
  .hero-grid::after { display: none; }
  .reveal.will-reveal { opacity: 1; transform: none; }
}
