:root {
  --ink: #071923;
  --ink-soft: #0d2834;
  --ink-muted: #173947;
  --paper: #f7f4ed;
  --paper-warm: #eee8dc;
  --white: #fffdf8;
  --line: rgba(7, 25, 35, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --blue: #9adbe9;
  --blue-bright: #bdebf4;
  --orange: #f2a255;
  --orange-deep: #c8711e;
  --red: #e36955;
  --green: #6fc0a8;
  --text: #132a34;
  --muted: #55707a;
  --shadow: 0 24px 70px rgba(7, 25, 35, 0.16);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family:
    "Avenir Next",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

button {
  color: inherit;
}

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

: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;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  transition: transform 160ms ease;
}

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

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

.section {
  position: relative;
  padding: 120px 0;
}

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

.anchor-target {
  position: absolute;
  top: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 25, 35, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 25, 35, 0.96);
  box-shadow: 0 10px 28px rgba(2, 12, 18, 0.18);
}

.page-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue-bright));
  box-shadow: 0 0 14px rgba(154, 219, 233, 0.5);
  transform: scaleX(0);
  transform-origin: left;
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--white);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand > span {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  font-size: 0.95rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(154, 219, 233, 0.6);
  border-radius: 10px;
  background: rgba(154, 219, 233, 0.08);
  color: var(--blue-bright);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--ink);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-label {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-lines {
  width: 26px;
  height: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  padding: calc(var(--header-height) + 86px) 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(71, 150, 168, 0.26), transparent 28%),
    radial-gradient(circle at 3% 87%, rgba(242, 162, 85, 0.1), transparent 27%),
    linear-gradient(135deg, #071923 0%, #0a222e 48%, #071923 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(154, 219, 233, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(154, 219, 233, 0.025),
    0 0 0 150px rgba(154, 219, 233, 0.02);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 31px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6vw, 6.15rem);
  font-weight: 710;
  letter-spacing: -0.068em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--blue-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 em.is-decoding::after {
  content: "";
  width: 0.075em;
  height: 0.76em;
  display: inline-block;
  margin-left: 0.09em;
  background: var(--orange);
  vertical-align: -0.03em;
  animation: decode-cursor 150ms steps(1, end) infinite;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(242, 162, 85, 0.18);
}

.button-primary:hover {
  border-color: #ffb46a;
  background: #ffb46a;
  box-shadow: 0 16px 40px rgba(242, 162, 85, 0.25);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: rgba(7, 25, 35, 0.28);
  background: transparent;
  color: var(--ink);
}

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

.hero-assurances {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.74rem;
  font-weight: 590;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-proof {
  position: relative;
  z-index: 2;
  perspective: 1400px;
}

.report-sheet {
  --tilt-x: 0deg;
  --tilt-y: -5deg;
  --glow-x: 70%;
  --glow-y: 20%;
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(1.2deg);
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease;
  will-change: transform;
}

.report-sheet::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(154, 219, 233, 0.29), transparent 31%);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.report-sheet.is-pointer-active {
  box-shadow: 0 42px 105px rgba(0, 0, 0, 0.4);
}

.report-sheet.is-pointer-active::before {
  opacity: 1;
}

.report-sheet > * {
  position: relative;
  z-index: 1;
}

.report-sheet::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -100px;
  top: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(154, 219, 233, 0.24);
  filter: blur(1px);
  pointer-events: none;
}

.report-topline,
.report-heading,
.report-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-topline {
  overflow: hidden;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #60747b;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-topline::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -1px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--blue-bright), transparent);
  opacity: 0;
}

.report-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-deep);
}

.report-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 162, 85, 0.16);
}

.report-heading {
  padding: 25px 0;
}

.report-heading > div {
  display: grid;
}

.report-heading small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-heading strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.priority-stamp {
  padding: 8px 11px;
  border: 1px solid rgba(200, 113, 30, 0.4);
  border-radius: 999px;
  color: var(--orange-deep);
  font-size: 0.67rem;
  font-weight: 780;
  text-transform: uppercase;
}

.report-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -7px 0 10px;
  color: #708188;
  font-size: 0.57rem;
  font-weight: 690;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-hint span {
  width: 14px;
  height: 1px;
  background: var(--orange-deep);
}

.path-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f1eee6;
}

.path-step {
  --step-color: var(--ink);
  appearance: none;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 5px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.path-step > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--step-color);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.path-step.is-warning > span {
  color: var(--ink);
}

.path-step.is-warning {
  --step-color: var(--orange);
}

.path-step.is-critical {
  --step-color: var(--red);
}

.path-step strong {
  font-size: 0.72rem;
}

.path-step small {
  max-width: 73px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.54rem;
  line-height: 1.2;
  transition: color 160ms ease;
}

.path-step:hover,
.path-step.is-active {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.path-step.is-active > span {
  box-shadow:
    0 0 0 3px #f1eee6,
    0 0 0 5px var(--step-color),
    0 7px 16px rgba(7, 25, 35, 0.18);
  transform: scale(1.08);
}

.path-step.is-active small {
  color: var(--ink);
}

.path-line {
  height: 1px;
  margin-inline: 7px;
  background: repeating-linear-gradient(90deg, rgba(7, 25, 35, 0.25) 0 4px, transparent 4px 7px);
  background-size: 14px 1px;
}

.report-finding {
  --finding-color: var(--red);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  padding: 15px 16px;
  border-left: 3px solid var(--finding-color);
  border-radius: 2px 10px 10px 2px;
  background: rgba(227, 105, 85, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 130ms ease,
    transform 180ms ease;
}

.report-finding[data-tone="clear"] {
  --finding-color: #298a70;
  background: rgba(111, 192, 168, 0.11);
}

.report-finding[data-tone="warning"] {
  --finding-color: var(--orange-deep);
  background: rgba(242, 162, 85, 0.11);
}

.report-finding.is-changing {
  opacity: 0.22;
  transform: translateY(4px);
}

.finding-index {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}

.report-finding > div {
  display: grid;
}

.report-finding small {
  color: var(--finding-color);
  font-size: 0.57rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.report-finding strong {
  margin-top: 2px;
  font-size: 0.75rem;
  line-height: 1.35;
}

.finding-impact {
  color: var(--finding-color);
  font-size: 0.58rem;
  font-weight: 760;
  white-space: nowrap;
}

.report-footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.report-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 650;
}

.report-footer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.proof-caption {
  width: 88%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.5;
}

.proof-caption > span {
  color: var(--orange);
  font-family: ui-monospace, monospace;
}

.trust-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  margin: 0;
  padding: 27px clamp(16px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.trust-grid p:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid span {
  grid-row: 1 / span 2;
  color: var(--orange-deep);
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 760;
}

.trust-grid strong {
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.trust-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 56px;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--orange-deep);
}

.section-kicker::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.section-kicker-light {
  color: var(--orange);
}

.section-heading h2,
.sample-copy h2,
.process-intro h2,
.brief-copy h2,
.faq-intro h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 680;
  letter-spacing: -0.062em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child,
.sample-copy > p,
.process-intro > p,
.brief-copy > p,
.faq-intro > p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.leaks-section {
  background:
    radial-gradient(circle at 98% 5%, rgba(154, 219, 233, 0.22), transparent 21%),
    var(--paper);
}

.leak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leak-card {
  min-width: 0;
  padding: 30px 28px 34px;
  border-left: 1px solid var(--line);
}

.leak-card:last-child {
  border-right: 1px solid var(--line);
}

.leak-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.59rem;
  font-weight: 760;
  letter-spacing: 0.07em;
}

.leak-card-top em {
  color: var(--orange-deep);
  font-family: inherit;
  font-style: normal;
}

.leak-visual {
  position: relative;
  height: 195px;
  margin: 28px 0 32px;
  overflow: hidden;
  border-radius: 13px;
  background: #e5e0d6;
}

.visual-note {
  position: absolute;
  right: 14px;
  bottom: 13px;
  padding: 5px 8px;
  border: 1px solid rgba(7, 25, 35, 0.14);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.phone-frame {
  position: absolute;
  top: 19px;
  left: 50%;
  width: 136px;
  height: 215px;
  transform: translateX(-50%);
  padding: 30px 14px 14px;
  border: 5px solid var(--ink);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(7, 25, 35, 0.2);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--ink);
}

.phone-frame i {
  display: block;
  height: 7px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #d8e1e2;
}

.phone-frame i:nth-child(2) {
  width: 74%;
}

.phone-frame i:nth-child(3) {
  width: 86%;
  margin-bottom: 50px;
}

.phone-frame strong {
  display: grid;
  place-items: center;
  min-height: 31px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.55rem;
}

.leak-visual-form {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(154, 219, 233, 0.26), transparent 56%),
    #dfe8e8;
}

.form-lines {
  padding: 18px;
  border-radius: 12px 12px 0 0;
  background: var(--white);
}

.form-lines i {
  display: block;
  height: 27px;
  margin-bottom: 9px;
  border: 1px solid rgba(7, 25, 35, 0.17);
  border-radius: 6px;
}

.form-lines i:last-child {
  margin-bottom: 0;
}

.form-send {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 0 0 10px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.59rem;
  font-weight: 740;
}

.leak-visual-reply {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(154, 219, 233, 0.5), transparent 45%),
    #dce7e6;
}

.reply-pulse {
  position: relative;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--blue-bright);
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 780;
  box-shadow: 0 14px 35px rgba(7, 25, 35, 0.25);
}

.reply-pulse i {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(7, 25, 35, 0.15);
  border-radius: 50%;
}

.reply-pulse i:nth-of-type(2) {
  inset: -31px;
}

.reply-pulse i:nth-of-type(3) {
  inset: -47px;
}

.reply-message {
  position: absolute;
  top: 25px;
  right: 14px;
  max-width: 105px;
  padding: 8px 10px;
  border-radius: 10px 10px 3px 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.51rem;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(7, 25, 35, 0.14);
}

.leak-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.leak-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.sample-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 110%, rgba(242, 162, 85, 0.14), transparent 33%),
    linear-gradient(145deg, #071923, #0c2935);
  color: var(--white);
}

.sample-section::after {
  content: "";
  position: absolute;
  top: -290px;
  right: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(154, 219, 233, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(154, 219, 233, 0.025),
    0 0 0 150px rgba(154, 219, 233, 0.02);
}

.sample-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(65px, 8vw, 115px);
}

.sample-copy h2,
.process-intro h2 {
  color: var(--white);
}

.sample-copy > p,
.process-intro > p {
  color: rgba(255, 255, 255, 0.63);
}

.sample-includes {
  display: grid;
  gap: 0;
  margin: 38px 0 31px;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.sample-includes li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.sample-includes span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-family: ui-monospace, monospace;
  font-size: 0.64rem;
}

.sample-includes strong {
  color: var(--white);
  font-size: 0.82rem;
}

.sample-includes small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.71rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
}

.text-link-light {
  color: var(--blue-bright);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.audit-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 19px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.audit-preview-head {
  display: grid;
  padding: 25px 28px 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(154, 219, 233, 0.26), transparent 55%),
    var(--paper-warm);
}

.audit-preview-head span {
  margin-bottom: 13px;
  color: var(--orange-deep);
  font-family: ui-monospace, monospace;
  font-size: 0.6rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-preview-head strong {
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.audit-preview-head small {
  color: var(--muted);
  font-size: 0.72rem;
}

.audit-findings {
  margin: 0;
  padding: 0 28px;
  list-style: none;
}

.audit-findings li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.audit-findings li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e6eceb;
  color: var(--ink-muted);
  font-family: ui-monospace, monospace;
  font-size: 0.59rem;
  font-weight: 750;
}

.audit-findings li > div {
  display: grid;
}

.audit-findings strong {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.audit-findings small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.audit-findings em {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e6eceb;
  color: var(--ink-muted);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 780;
}

.audit-findings li.is-high > span,
.audit-findings li.is-high em {
  background: rgba(227, 105, 85, 0.13);
  color: #aa3e2d;
}

.audit-findings li.is-medium-high > span,
.audit-findings li.is-medium-high em {
  background: rgba(242, 162, 85, 0.18);
  color: #965311;
}

.audit-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 28px;
  background: #efebe2;
  color: var(--muted);
  font-size: 0.62rem;
}

.audit-preview-foot span {
  color: var(--orange-deep);
  font-weight: 750;
}

.audit-preview-foot > div {
  display: flex;
  gap: 5px;
}

.audit-preview-foot i {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #bcc7c7;
}

.audit-preview-foot i:first-child {
  background: var(--orange);
}

.audit-preview-foot strong {
  font-weight: 650;
}

.pricing-section {
  background:
    linear-gradient(rgba(7, 25, 35, 0.035) 1px, transparent 1px),
    var(--paper-warm);
  background-size: 100% 72px;
}

.pricing-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.pricing-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.pricing-heading > p {
  padding-bottom: 5px;
}

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

.package-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 22px;
  min-width: 0;
  min-height: 490px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.72);
}

.package-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(154, 219, 233, 0.32), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card.is-pointer-active::before {
  opacity: 1;
}

.package-card-featured {
  background:
    radial-gradient(circle at 98% 0%, rgba(154, 219, 233, 0.18), transparent 33%),
    var(--ink);
  color: var(--white);
}

.package-number {
  grid-row: 1 / span 6;
  padding-top: 5px;
  color: var(--orange-deep);
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 780;
}

.package-card-featured .package-number {
  color: var(--orange);
}

.package-name {
  margin-bottom: 18px;
}

.package-name span {
  color: var(--orange-deep);
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card-featured .package-name span {
  color: var(--orange);
}

.package-name h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.package-card-featured .package-name h3 {
  color: var(--white);
}

.package-card > p {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.package-card-featured > p {
  color: rgba(255, 255, 255, 0.63);
}

.package-card ul {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 670;
}

.package-card-featured li {
  border-color: rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.64);
}

.package-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 10px;
  margin-top: auto;
  margin-bottom: 22px;
}

.package-price span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.package-price strong {
  color: var(--ink);
  font-size: 2.55rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.package-price small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.67rem;
}

.package-card-featured .package-price span,
.package-card-featured .package-price small {
  color: rgba(255, 255, 255, 0.52);
}

.package-card-featured .package-price strong {
  color: var(--blue-bright);
}

.package-card .button {
  justify-self: start;
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 58%, rgba(154, 219, 233, 0.07)),
    var(--ink-soft);
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -340px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(242, 162, 85, 0.12);
  border-radius: 50%;
}

.process-section .page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(65px, 9vw, 140px);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 219, 233, 0.36);
  border-radius: 50%;
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}

.process-list h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.process-list p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
}

.process-list em {
  padding-top: 8px;
  color: var(--orange);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.brief-section {
  background:
    radial-gradient(circle at 5% 100%, rgba(242, 162, 85, 0.18), transparent 26%),
    var(--paper);
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.brief-copy {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.selected-package {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 4px 13px 13px 4px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 25, 35, 0.07);
}

.selected-package > span {
  color: var(--orange-deep);
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.selected-package > strong {
  display: block;
  margin: 5px 0 20px;
  color: var(--ink);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.selected-package > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.selected-package p {
  display: grid;
  margin: 0;
}

.selected-package small {
  color: var(--muted);
  font-size: 0.61rem;
}

.selected-package b {
  color: var(--ink);
  font-size: 0.78rem;
}

.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(7, 25, 35, 0.22);
  border-radius: 9px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field input,
.field select {
  min-height: 51px;
  padding: 0 13px;
}

.field textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #87979c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 162, 85, 0.15);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.form-note {
  grid-column: 1 / -1;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.form-note a {
  border-bottom: 1px solid currentColor;
  color: var(--orange-deep);
  font-weight: 710;
}

.faq-section {
  padding-top: 100px;
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(65px, 9vw, 140px);
}

.faq-intro .text-link {
  margin-top: 28px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

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

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

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

.faq-list details > p {
  max-width: 650px;
  margin: -3px 44px 24px 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(154, 219, 233, 0.13), transparent 28%),
    var(--ink);
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta p {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 770;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #051218;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(500px, 1.35fr);
  gap: 90px;
  padding-bottom: 60px;
}

.brand-footer {
  align-self: start;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 0.6rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled [data-reveal="scale"] {
  transform: translate3d(0, 20px, 0) scale(0.975);
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-enabled .hero::after {
  animation: orbit-breathe 9s ease-in-out infinite alternate;
}

.motion-enabled .hero-proof.is-visible .report-topline::after {
  animation: report-scan 950ms 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-enabled .hero-proof.is-visible .path-line {
  animation: path-flow 900ms 720ms ease both;
}

@keyframes decode-cursor {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.18;
  }
}

@keyframes report-scan {
  0% {
    right: 100%;
    opacity: 0;
  }

  16%,
  75% {
    opacity: 1;
  }

  100% {
    right: -42%;
    opacity: 0;
  }
}

@keyframes path-flow {
  from {
    opacity: 0.22;
    background-position-x: 0;
  }

  to {
    opacity: 1;
    background-position-x: 28px;
  }
}

@keyframes orbit-breathe {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-24px, -15px, 0) scale(1.035);
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 38px, 980px);
  }

  .menu-button {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    z-index: 99;
    inset: 100% 0 auto;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 30px 24px 50px;
    overflow-y: auto;
    background: rgba(7, 25, 35, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a {
    display: flex;
    align-items: center;
    min-height: 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.08rem;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    min-height: 56px;
    margin-top: 26px;
    border: 0;
    background: var(--orange);
    color: var(--ink);
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero h1 {
    font-size: clamp(4rem, 9.6vw, 6.5rem);
  }

  .hero-proof {
    width: min(690px, 92%);
    margin-left: auto;
  }

  .sample-grid,
  .brief-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sample-copy {
    max-width: 700px;
  }

  .audit-preview {
    width: min(780px, 100%);
    margin-left: auto;
  }

  .brief-copy,
  .process-intro {
    position: static;
  }

  .brief-copy {
    max-width: 740px;
  }

  .selected-package {
    max-width: 520px;
  }

  .process-section .page-shell {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-intro {
    max-width: 730px;
  }

  .process-list {
    max-width: 850px;
    margin-left: auto;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 92px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

  .leak-grid {
    grid-template-columns: 1fr;
  }

  .leak-card,
  .leak-card:last-child {
    display: grid;
    grid-template-columns: minmax(230px, 0.85fr) 1.15fr;
    column-gap: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .leak-card:last-child {
    border-bottom: 0;
  }

  .leak-card-top {
    grid-column: 1 / -1;
  }

  .leak-visual {
    grid-row: 2 / span 2;
    margin-bottom: 0;
  }

  .leak-card h3 {
    align-self: end;
    margin-top: 32px;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-heading > p {
    max-width: 650px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 450px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    max-width: 700px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

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

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 62px;
  }

  .hero::before {
    background-size: 48px 48px;
  }

  .eyebrow {
    max-width: 330px;
    margin-bottom: 20px;
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.15rem, 15vw, 4.5rem);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    gap: 8px;
  }

  .hero-proof {
    width: 100%;
  }

  .report-sheet {
    padding: 17px;
    border-radius: 15px;
    transform: none;
  }

  .report-ref {
    display: none;
  }

  .report-heading {
    padding: 20px 0;
  }

  .priority-stamp {
    font-size: 0.56rem;
  }

  .path-map {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
  }

  .path-line {
    display: none;
  }

  .path-step {
    padding: 11px 7px;
    border: 1px solid rgba(7, 25, 35, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
  }

  .path-step small {
    max-width: none;
  }

  .report-finding {
    grid-template-columns: auto 1fr;
  }

  .finding-impact {
    grid-column: 2;
  }

  .report-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .proof-caption {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .sample-copy h2,
  .process-intro h2,
  .brief-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .section-heading > p:last-child,
  .sample-copy > p,
  .process-intro > p,
  .brief-copy > p,
  .faq-intro > p {
    font-size: 0.92rem;
  }

  .leak-card,
  .leak-card:last-child {
    display: block;
    padding: 25px 20px 28px;
  }

  .leak-visual {
    height: 185px;
    margin: 24px 0 27px;
  }

  .leak-card h3 {
    margin-top: 0;
  }

  .sample-grid {
    gap: 47px;
  }

  .audit-preview-head,
  .audit-findings,
  .audit-preview-foot {
    padding-right: 18px;
    padding-left: 18px;
  }

  .audit-findings li {
    grid-template-columns: 30px 1fr;
    gap: 11px;
  }

  .audit-findings li > span {
    width: 28px;
    height: 28px;
  }

  .audit-findings em {
    grid-column: 2;
    justify-self: start;
  }

  .audit-findings small {
    line-height: 1.4;
  }

  .audit-preview-foot {
    gap: 10px;
  }

  .audit-preview-foot > div {
    display: none;
  }

  .pricing-heading {
    margin-bottom: 40px;
  }

  .package-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px;
  }

  .package-number {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .package-card .button {
    width: 100%;
  }

  .process-section .page-shell {
    gap: 40px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .process-list li > span {
    width: 34px;
    height: 34px;
  }

  .process-list em {
    grid-column: 2;
    padding-top: 0;
  }

  .brief-grid {
    gap: 42px;
  }

  .selected-package > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brief-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 23px 18px;
  }

  .field,
  .field-full {
    grid-column: 1;
  }

  .form-submit,
  .form-note {
    grid-column: 1;
  }

  .faq-section {
    padding-top: 72px;
  }

  .faq-list summary {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta-inner {
    gap: 32px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
