@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/atkinson-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/atkinson-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/barlow-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --teal-950: #04282f;
  --teal-900: #06353e;
  --teal-850: #073f49;
  --teal-800: #084a55;
  --teal-700: #0c5a66;
  --ink: #102328;
  --paper: #f7f4ea;
  --paper-2: #eae6dc;
  --ice: #e8f3f2;
  --mist: #a9d3d8;
  --charcoal: #202729;
  --steel: #aab1b2;
  --steel-dark: #4e5b5d;
  --line: #91a9aa;
  --chartreuse: #dce912;
  --persimmon: #ff4f2b;
  --white: #fffdf7;
  --shadow: 0 22px 48px rgba(3, 28, 33, 0.18);
  --ease-casefile: cubic-bezier(0.16, 1, 0.3, 1);
  --powdercoat-image: url("assets/powdercoat.jpg");
  --felt-image: url("assets/felt.jpg");
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Atkinson Hyperlegible", Arial, sans-serif;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-is-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-header,
.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px max(24px, calc((100vw - 980px) / 2));
  color: var(--white);
  background: var(--teal-900);
}

.legal-header > a:first-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-header small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.legal-document {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.legal-document h1,
.legal-document h2 {
  color: var(--teal-900);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.92;
}

.legal-document h2 {
  margin: 42px 0 10px;
  font-size: 1.75rem;
}

.legal-document p,
.legal-document li {
  max-width: 75ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-document a,
.legal-header a,
.legal-footer a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-date {
  color: #526467;
  font-weight: 700;
}

.legal-footer {
  justify-content: center;
  flex-wrap: wrap;
}

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

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.resource-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px;
  color: var(--ink);
  background: var(--ice);
  border-top: 8px solid var(--teal-700);
  box-shadow: 0 10px 24px rgba(2, 25, 30, 0.08);
  text-decoration: none;
}

.resource-grid a:nth-child(2),
.resource-grid a:nth-child(5) { border-top-color: var(--chartreuse); }
.resource-grid a:nth-child(3),
.resource-grid a:nth-child(6) { border-top-color: var(--persimmon); }

.resource-grid strong {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.resource-grid span { line-height: 1.45; }

.landing-page .legal-document > .ticket-button {
  margin: 28px 0;
  text-decoration: none;
}

.landing-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.landing-paths div {
  padding: 20px;
  background: var(--ice);
  border-top: 6px solid var(--teal-700);
}

.landing-paths strong { display: block; color: var(--teal-900); }

@media (max-width: 760px) {
  .resource-grid,
  .landing-paths { grid-template-columns: 1fr; }
  .legal-header { align-items: flex-start; }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid var(--teal-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--chartreuse);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 12px 18px;
  color: var(--teal-950);
  background: var(--chartreuse);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background-color: var(--teal-950);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 22px rgba(0, 24, 29, 0.22);
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: min(100%, 1720px);
  min-height: 76px;
  margin: 0 auto;
}

.brand-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 338px;
  min-height: 76px;
  padding: 9px 38px 9px clamp(20px, 2.6vw, 44px);
  color: var(--white);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.brand-lockup::after {
  position: absolute;
  right: -26px;
  bottom: -2px;
  width: 38px;
  height: 23px;
  content: "";
  background: var(--teal-950);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  transform: skew(48deg);
  transform-origin: bottom;
}

.indexed-t {
  width: 42px;
  flex: 0 0 auto;
}

.indexed-t__signal {
  fill: var(--chartreuse);
}

.brand-lockup__type {
  display: grid;
  line-height: 1;
}

.brand-lockup__type strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-lockup__type small {
  margin-top: 5px;
  color: #c9dddd;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 3.6vw, 64px);
  min-width: 0;
  padding-left: 48px;
}

.site-nav a {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 48px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.header-action {
  align-self: stretch;
  min-width: 250px;
  min-height: 74px;
  padding: 0 38px;
  color: var(--ink);
  background: var(--persimmon);
  border: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 78%, 92% 100%, 0 100%, 0 22%);
  font-weight: 700;
  white-space: nowrap;
}

.header-action:hover {
  background: #ff684b;
}

.header-action:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 4px var(--teal-950), inset 0 0 0 7px var(--chartreuse);
}

.menu-toggle {
  display: none;
  align-self: center;
  width: 52px;
  height: 52px;
  margin-right: 18px;
  padding: 13px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 37%) minmax(0, 63%);
  min-height: clamp(650px, calc(100vh - 76px), 720px);
  color: var(--white);
  background: var(--teal-900);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(52px, 5vw, 82px) clamp(32px, 4.2vw, 72px) 38px;
  background-color: var(--teal-800);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-copy::after {
  position: absolute;
  right: -36px;
  bottom: 45%;
  width: 50px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(5rem, 7vw, 7.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: none;
}

.hero h1 em {
  color: var(--chartreuse);
  font-style: normal;
}

.hero-deck {
  width: min(100%, 420px);
  margin: 42px 0 24px;
  padding-top: 23px;
  border-top: 2px solid rgba(255, 255, 255, 0.86);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.2;
}

.ticket-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 0 38px 0 18px;
  color: #0c171a;
  background: var(--paper);
  border: 0;
  clip-path: polygon(4% 0, 96% 0, 100% 19%, 100% 81%, 96% 100%, 4% 100%, 0 81%, 0 19%);
  box-shadow: var(--shadow);
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  font-weight: 700;
  white-space: nowrap;
}

.ticket-button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  border-left: 1px dashed #8c9494;
  content: "";
}

.ticket-button:hover {
  background: #fffef8;
  transform: translateY(-2px);
}

.ticket-button:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 4px var(--teal-950), inset 0 0 0 7px var(--chartreuse), var(--shadow);
}

.ticket-button__eye {
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 8px solid var(--persimmon);
  border-radius: 50%;
}

.ticket-button__eye i {
  width: 8px;
  height: 8px;
  background: var(--teal-900);
  border-radius: 50%;
}

.prototype-note {
  max-width: 455px;
  margin: 14px 0 0;
  color: #dce9e8;
  font-size: 0.91rem;
  line-height: 1.35;
}

.proof-model {
  width: 100%;
  max-width: 520px;
  margin: auto 0 0;
}

.proof-model-label {
  display: flex;
  gap: 5px 12px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0;
  color: #dce9e8;
  font-size: 0.88rem;
  line-height: 1.4;
}

.proof-model-label strong {
  color: var(--chartreuse);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-sequence {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 520px;
  margin: 8px 0 0;
  padding: 19px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.82);
  list-style: none;
}

.proof-model .proof-sequence {
  margin-top: 8px;
}

.proof-sequence li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0 16px;
  white-space: nowrap;
}

.proof-sequence li:first-child {
  padding-left: 0;
}

.proof-sequence li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.66);
}

.proof-sequence svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--chartreuse);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-sequence span {
  font-size: 0.94rem;
  font-weight: 700;
}

.cabinet-window {
  position: relative;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  background-color: #071d22;
  background-image: var(--felt-image);
  background-blend-mode: luminosity;
}

.cabinet-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  box-shadow: inset 24px 0 34px rgba(0, 0, 0, 0.35), inset -24px 0 34px rgba(0, 0, 0, 0.35);
}

.cabinet-stage::before,
.cabinet-stage::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 30px;
  content: "";
  background-color: var(--teal-900);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border: 1px solid rgba(219, 239, 238, 0.18);
}

.cabinet-stage::before {
  left: 0;
}

.cabinet-stage::after {
  right: 0;
}

.cabinet-kicker {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 14%;
  margin: 0;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet-kicker::after {
  display: inline-block;
  width: 170px;
  height: 1px;
  margin: 0 0 4px 16px;
  content: "";
  background: rgba(237, 242, 234, 0.34);
}

.folder-rack {
  position: absolute;
  z-index: 3;
  inset: 38px 10% 220px 9%;
}

.record-folder {
  --folder-signal: var(--mist);
  position: absolute;
  right: 0;
  left: 0;
  height: 126px;
  color: var(--ink);
  filter: drop-shadow(0 9px 6px rgba(0, 0, 0, 0.28));
}

.record-folder::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: var(--paper-2);
  border: 1px solid #969a93;
  clip-path: polygon(2% 17%, 4% 6%, 38% 6%, 42% 23%, 93% 23%, 95% 31%, 100% 31%, 100% 100%, 0 100%, 0 24%);
}

.record-folder::after {
  position: absolute;
  z-index: 1;
  inset: 13px 1.5% auto 1.2%;
  height: 30px;
  content: "";
  background: var(--folder-signal);
  clip-path: polygon(0 15%, 2% 0, 39% 0, 43% 68%, 100% 68%, 100% 100%, 0 100%);
}

.record-folder--terms {
  top: 0;
  z-index: 1;
  --folder-signal: var(--teal-700);
}

.record-folder--payment {
  top: 96px;
  z-index: 2;
  --folder-signal: var(--chartreuse);
}

.record-folder--property {
  top: 192px;
  z-index: 3;
  --folder-signal: var(--persimmon);
}

.record-folder--docs {
  top: 288px;
  z-index: 4;
  --folder-signal: var(--mist);
}

@media (hover: hover) and (pointer: fine) {
  .record-folder {
    transition: transform 160ms ease-out, filter 160ms ease-out;
  }

  .record-folder__tab {
    position: absolute;
    z-index: 5;
    inset: 0 0 -24px;
    pointer-events: auto;
  }

  .record-folder:hover {
    z-index: 8;
    transform: translateY(-24px);
    filter: drop-shadow(0 18px 12px rgba(0, 0, 0, 0.38));
    transition-duration: 240ms;
    transition-timing-function: var(--ease-casefile);
  }
}

.record-folder__label {
  position: absolute;
  z-index: 3;
  top: 36px;
  left: 10%;
  display: inline-flex;
  align-items: center;
  gap: 19px;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-weight: 700;
}

.record-folder__label svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.record-folder__line {
  position: absolute;
  z-index: 2;
  top: 43px;
  right: 8%;
  width: 38%;
  height: 1px;
  background: #858b88;
}

.cabinet-vault {
  position: absolute;
  z-index: 4;
  top: 74px;
  right: -2px;
  width: 64px;
  height: 150px;
  background: #0b3e47;
  border: 3px solid #617174;
  box-shadow: inset 0 0 0 3px #061f24, -8px 8px 12px rgba(0, 0, 0, 0.35);
}

.cabinet-vault__hinge {
  position: absolute;
  top: 24px;
  right: 14px;
  left: 14px;
  height: 42px;
  background: #8a9495;
  border: 4px solid #2f383a;
}

.cabinet-vault__wheel {
  position: absolute;
  right: 11px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 5px solid #8f9798;
  border-radius: 50%;
}

.cabinet-vault__wheel::before,
.cabinet-vault__wheel::after,
.cabinet-vault__wheel i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 4px;
  content: "";
  background: #8f9798;
  transform: translate(-50%, -50%);
}

.cabinet-vault__wheel::after {
  transform: translate(-50%, -50%) rotate(60deg);
}

.cabinet-vault__wheel i {
  transform: translate(-50%, -50%) rotate(-60deg);
}

.cabinet-drawer {
  position: absolute;
  z-index: 10;
  right: -4px;
  bottom: -2px;
  left: -4px;
  height: 245px;
  background-color: var(--teal-900);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border: 2px solid #637b7d;
  border-top: 8px solid #0b515c;
  box-shadow: 0 -11px 23px rgba(0, 0, 0, 0.42), inset 0 2px rgba(255, 255, 255, 0.18);
}

.cabinet-pulls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 66px);
  align-items: start;
  padding: 48px clamp(42px, 7vw, 104px) 0;
}

.cabinet-pull {
  position: relative;
  min-width: 0;
  height: 132px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.cabinet-pull__label {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 54px;
  place-items: center;
  background: var(--paper-2);
  border: 4px solid #7a8384;
  box-shadow: inset 0 0 0 2px #d9dad4, 0 5px 10px rgba(0, 0, 0, 0.38);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-weight: 700;
}

.cabinet-pull__label::before,
.cabinet-pull__label::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  content: "";
  background: #566164;
  border: 2px solid #c5c9c9;
  border-radius: 50%;
  transform: translateY(-50%);
}

.cabinet-pull__label::before {
  left: 6px;
}

.cabinet-pull__label::after {
  right: 6px;
}

.cabinet-pull__handle {
  position: absolute;
  z-index: 2;
  top: 47px;
  right: 9%;
  left: 9%;
  height: 78px;
  border: 10px solid #818b8d;
  border-top-width: 14px;
  border-radius: 2px 2px 20px 20px;
  box-shadow: inset 0 0 0 3px #374245, 0 7px 8px rgba(0, 0, 0, 0.48);
}

.cabinet-pull__label,
.cabinet-pull__handle {
  transition: transform 110ms ease-out, background-color 110ms ease-out, box-shadow 110ms ease-out;
}

.cabinet-pull__handle::before,
.cabinet-pull__handle::after {
  position: absolute;
  top: -11px;
  width: 17px;
  height: 25px;
  content: "";
  background: #606b6d;
  border: 2px solid #b7bcbc;
}

.cabinet-pull__handle::before {
  left: -10px;
}

.cabinet-pull__handle::after {
  right: -10px;
}

.cabinet-pull:hover .cabinet-pull__label {
  background: var(--white);
}

.cabinet-pull.is-casefile-releasing .cabinet-pull__label,
.cabinet-pull.is-casefile-releasing .cabinet-pull__handle {
  transform: translateY(8px);
}

.cabinet-pull.is-casefile-releasing .cabinet-pull__label {
  background: var(--white);
  box-shadow: inset 0 0 0 2px #d9dad4, 0 2px 5px rgba(0, 0, 0, 0.32);
}

.cabinet-pull:focus-visible {
  outline: 0;
}

.cabinet-pull:focus-visible::after {
  position: absolute;
  z-index: 8;
  inset: -8px;
  content: "";
  border: 4px solid var(--chartreuse);
}

.drawer-lock {
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 88px;
  height: 34px;
  background: #253134;
  border: 4px solid #7d898b;
  transform: translateX(-50%);
}

.drawer-lock i {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 32px;
  height: 18px;
  background: #8f9798;
  border: 3px solid #394446;
  transform: translateX(-50%);
}

.mobile-paths {
  display: none;
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid #b9c5c3;
}

.assurance-strip div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 20px clamp(22px, 3vw, 50px);
}

.assurance-strip div + div {
  border-left: 1px solid #b9c5c3;
}

.assurance-strip strong {
  color: var(--teal-800);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.assurance-strip span {
  margin-top: 4px;
  color: #45585c;
  font-size: 0.92rem;
}

.section {
  padding: clamp(76px, 8vw, 132px) clamp(24px, 5vw, 80px);
}

.section-shell {
  width: min(100%, 1440px);
  min-width: 0;
  margin: 0 auto;
}

.indexed-heading {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
}

.indexed-heading > span {
  display: grid;
  width: 74px;
  height: 48px;
  color: var(--white);
  background: var(--teal-900);
  place-items: center;
  font-weight: 700;
}

.indexed-heading h2 {
  position: relative;
  margin: 46px 0 0 -74px;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.2vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.indexed-heading h2::before {
  position: absolute;
  top: -22px;
  right: 0;
  left: 74px;
  height: 1px;
  content: "";
  background: var(--teal-900);
}

.indexed-heading h2::after {
  position: absolute;
  top: -22px;
  right: 0;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--teal-900);
  transform: rotate(45deg);
  transform-origin: right;
}

.factors-section {
  background: var(--ice);
}

.factors-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(590px, 1.45fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: start;
  margin-top: 72px;
}

.factors-intro {
  max-width: 420px;
  padding-top: 24px;
  font-size: 1.16rem;
}

.underlined-link {
  display: inline-block;
  min-height: 44px;
  margin-top: 16px;
  color: var(--teal-800);
  font-weight: 700;
  text-underline-offset: 6px;
}

.factor-files {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.factor-file {
  --file-accent: var(--mist);
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  min-height: 152px;
  padding: 38px clamp(28px, 4vw, 58px) 25px;
  background: var(--paper);
  border: 1px solid #8f9997;
  box-shadow: 10px 12px 0 rgba(6, 53, 62, 0.08);
}

.factor-file__tab {
  position: absolute;
  top: -14px;
  left: -1px;
  min-width: 44%;
  padding: 7px 22px;
  color: var(--ink);
  background: var(--file-accent);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.factor-file svg {
  width: 46px;
  height: 46px;
  margin-top: 2px;
  fill: none;
  stroke: var(--teal-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.factor-file h3,
.factor-file p {
  margin: 0;
}

.factor-file h3 {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.factor-file p {
  margin-top: 8px;
  color: #3f5155;
}

.factor-file--chartreuse {
  --file-accent: var(--chartreuse);
}

.factor-file--persimmon {
  --file-accent: var(--persimmon);
}

.factor-file--mist {
  --file-accent: var(--mist);
}

.review-section {
  color: var(--white);
  background-color: var(--teal-900);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
}

.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.review-heading h2,
.options-copy h2,
.process-heading h2,
.faq-heading h2,
.closing-cabinet h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.85;
}

.review-heading p {
  max-width: 470px;
  margin: 0 0 7px;
  color: #d0dfdf;
  font-size: 1.17rem;
}

.review-disclosure {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 44px 0 30px;
  padding: 20px 24px;
  color: var(--ink);
  background: var(--chartreuse);
}

.review-disclosure__mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
}

.review-disclosure div {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.review-disclosure span {
  font-size: 0.97rem;
}

.review-tabs {
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 1fr);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #071f25;
}

.tab-list button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 16px 22px;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}

.tab-list button span {
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.tab-list button[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper);
  box-shadow: inset 7px 0 var(--chartreuse);
}

.tab-list button[aria-selected="true"] span {
  color: var(--teal-800);
}

.review-sheet {
  min-width: 0;
  min-height: 445px;
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink);
  background: var(--paper);
}

.review-sheet > section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.review-sheet__copy h3 {
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.review-sheet__copy p {
  margin: 18px 0 0;
  color: #415356;
}

.record-ledger,
.record-ledger dd,
.record-ledger dt {
  margin: 0;
}

.record-ledger div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #b1bebc;
}

.record-ledger dt {
  font-weight: 700;
}

.record-ledger dd {
  color: #536568;
  text-align: right;
}

.factor-ledger,
.next-ledger {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factor-ledger li {
  display: grid;
  grid-template-columns: 15px minmax(150px, 0.75fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #b1bebc;
}

.factor-ledger span {
  color: #536568;
}

.signal {
  width: 12px;
  height: 12px;
  background: var(--teal-700);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.signal--context {
  background: var(--chartreuse);
}

.signal--review {
  background: var(--persimmon);
}

.mini-drawers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-drawers div {
  min-height: 140px;
  padding: 25px 18px;
  background: var(--teal-900);
  border-top: 14px solid var(--steel);
  color: var(--white);
  border-bottom: 1px solid #052930;
}

.mini-drawers strong,
.mini-drawers span {
  display: block;
}

.mini-drawers strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.mini-drawers span {
  margin-top: 8px;
  color: #c7d9d8;
  font-size: 0.9rem;
}

.next-ledger {
  counter-reset: next;
}

.next-ledger li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid #b1bebc;
  font-weight: 700;
}

.next-ledger span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--chartreuse);
  font-family: var(--font-display);
}

.options-section {
  color: var(--ink);
  background: var(--mist);
}

.options-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(590px, 1.28fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: center;
}

.options-copy h2 {
  color: var(--teal-900);
}

.options-copy p {
  max-width: 430px;
  margin: 28px 0;
  font-size: 1.15rem;
}

.ticket-button--teal {
  min-height: 78px;
  color: var(--white);
  background: var(--teal-900);
  font-size: 1.25rem;
}

.ticket-button--teal:hover {
  background: var(--teal-800);
}

.ticket-button--teal .ticket-button__eye i {
  background: var(--paper);
}

.option-drawers {
  display: grid;
  gap: 20px;
}

.option-drawers article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 36px;
  min-height: 200px;
  padding: 48px 42px 32px;
  color: var(--white);
  background-color: var(--teal-900);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border: 1px solid #59787a;
  box-shadow: 8px 10px 0 rgba(4, 40, 47, 0.16);
}

.ticket-button,
.header-action,
.mobile-paths button,
.option-drawers article,
.footer-main > button {
  transition: transform 110ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.ticket-button.is-casefile-releasing,
.header-action.is-casefile-releasing,
.mobile-paths button.is-casefile-releasing,
.option-drawers article.is-casefile-releasing,
.footer-main > button.is-casefile-releasing {
  transform: translateY(-2px);
}

.drawer-tab {
  position: absolute;
  top: -1px;
  left: -1px;
  min-width: 150px;
  padding: 9px 22px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
  text-align: center;
}

.option-drawers h3,
.option-drawers p {
  margin: 0;
}

.option-drawers h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.option-drawers p {
  max-width: 520px;
  margin-top: 9px;
  color: #d1dedd;
}

.option-drawers button {
  align-self: center;
  min-width: 160px;
  min-height: 48px;
  color: var(--white);
  background: transparent;
  border: 1px solid #b7cbca;
  font-weight: 700;
}

.option-drawers button:hover {
  color: var(--ink);
  background: var(--chartreuse);
  border-color: var(--chartreuse);
}

.drawer-handle {
  position: absolute;
  right: 44px;
  bottom: -10px;
  width: 124px;
  height: 25px;
  background: var(--steel-dark);
  border: 5px solid var(--steel);
  border-radius: 0 0 10px 10px;
}

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

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 60px;
  align-items: end;
}

.process-heading h2,
.faq-heading h2 {
  color: var(--teal-900);
}

.process-heading p {
  max-width: 450px;
  margin: 0 0 7px;
  color: #45585b;
  font-size: 1.16rem;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 74px 0 0;
  padding: 0;
  border-top: 2px solid var(--teal-900);
  list-style: none;
}

.process-rail li {
  position: relative;
  min-width: 0;
  padding: 42px clamp(20px, 2.6vw, 38px) 28px;
}

.process-rail li + li {
  border-left: 1px solid #a7b6b4;
}

.process-rail li > span {
  position: absolute;
  top: -25px;
  left: 26px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.process-rail li:nth-child(3) > span {
  color: var(--ink);
  background: var(--chartreuse);
}

.process-rail h3,
.process-rail p {
  margin: 0;
}

.process-rail h3 {
  min-height: 2em;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.process-rail p {
  margin-top: 15px;
  color: #495c5f;
}

.prep-file {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: center;
  margin-top: 66px;
  padding: 36px clamp(28px, 4vw, 60px);
  color: var(--white);
  background: var(--teal-900);
  border-top: 12px solid var(--mist);
}

.prep-file h3,
.prep-file p,
.prep-file ul {
  margin: 0;
}

.prep-file h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.prep-file p {
  margin-top: 9px;
  color: #cfdddc;
  font-size: 0.95rem;
}

.prep-file ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.prep-file li {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
}

.compliance-section {
  color: var(--ink);
  background-color: var(--teal-950);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
}

.compliance-file {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 44px clamp(42px, 6vw, 92px);
  padding: clamp(48px, 6vw, 84px);
  background: var(--paper);
  border-top: 14px solid var(--persimmon);
  box-shadow: var(--shadow);
}

.compliance-file::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  height: 1px;
  content: "";
  background: #c1c8c5;
}

.compliance-file__heading > span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 13px;
  color: var(--white);
  background: var(--teal-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-file__heading h2,
.compliance-file__heading p,
.compliance-status {
  margin: 0;
}

.compliance-file__heading h2 {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.86;
}

.compliance-file__heading p {
  max-width: 470px;
  margin-top: 25px;
  color: #415457;
  font-size: 1.05rem;
}

.compliance-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 2px solid var(--teal-900);
  border-left: 1px solid #a7b5b3;
}

.compliance-ledger div {
  min-width: 0;
  padding: 24px 26px;
  border-right: 1px solid #a7b5b3;
  border-bottom: 1px solid #a7b5b3;
}

.compliance-ledger dt {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.compliance-ledger dd {
  margin: 10px 0 0;
  color: #435659;
  font-size: 0.94rem;
  line-height: 1.45;
}

.compliance-status {
  z-index: 1;
  grid-column: 1 / -1;
  padding: 18px 22px;
  color: #31474b;
  background: var(--ice);
  border-left: 8px solid var(--chartreuse);
  font-size: 0.94rem;
  line-height: 1.5;
}

.faq-section {
  background: var(--ice);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 8vw, 130px);
}

.faq-heading p {
  max-width: 420px;
  margin: 30px 0;
  font-size: 1.14rem;
}

.no-pressure {
  display: grid;
  max-width: 430px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--teal-900);
  border-top: 6px solid var(--chartreuse);
}

.no-pressure span {
  margin-top: 4px;
  color: #d2dedd;
  font-size: 0.92rem;
}

.faq-list {
  border-top: 2px solid var(--teal-900);
}

.faq-list details {
  border-bottom: 1px solid #9aacab;
}

.faq-list summary {
  position: relative;
  min-height: 74px;
  padding: 23px 58px 20px 0;
  color: var(--teal-900);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 42px;
  height: 42px;
  content: "+";
  color: var(--white);
  background: var(--teal-900);
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--ink);
  background: var(--chartreuse);
}

.faq-list details p {
  max-width: 680px;
  margin: 0;
  padding: 0 60px 24px 0;
  color: #415356;
}

.closing-cabinet {
  position: relative;
  display: grid;
  min-height: 510px;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 112px);
  color: var(--white);
  background-color: var(--teal-900);
  background-image: var(--powdercoat-image);
  background-blend-mode: soft-light;
  border-top: 14px solid #0b505b;
  box-shadow: inset 0 16px 28px rgba(0, 0, 0, 0.26);
}

.closing-cabinet__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 70px;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.closing-cabinet h2 {
  color: var(--white);
}

.closing-cabinet p {
  max-width: 660px;
  margin: 28px 0 20px;
  color: #d3e1e0;
  font-size: 1.14rem;
}

.closing-cabinet strong {
  color: var(--chartreuse);
}

.closing-cabinet__rail {
  position: absolute;
  z-index: 0;
  inset: 36px 5%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.closing-cabinet__rail span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #7c8b8d;
  border: 2px solid #c3cccc;
  border-radius: 50%;
}

.closing-cabinet__rail span:first-child {
  top: 12px;
  left: 12px;
}

.closing-cabinet__rail span:nth-child(2) {
  top: 12px;
  right: 12px;
}

.closing-cabinet__rail span:last-child {
  right: 12px;
  bottom: 12px;
}

.closing-handle {
  position: absolute;
  right: 10%;
  bottom: -18px;
  left: 10%;
  height: 42px;
  background: var(--steel-dark);
  border: 10px solid var(--steel);
  border-radius: 0 0 18px 18px;
}

.site-footer {
  color: var(--white);
  background: var(--teal-950);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr) auto;
  gap: 36px;
  align-items: center;
  padding: 48px clamp(24px, 5vw, 80px);
}

.brand-lockup--footer {
  min-width: 0;
  min-height: 60px;
  padding: 0;
  border: 0;
}

.brand-lockup--footer::after {
  display: none;
}

.footer-main nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-main nav a {
  min-height: 44px;
  align-content: center;
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer-main > button {
  min-height: 50px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--persimmon);
  border: 0;
  font-weight: 700;
}

.footer-contact {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px 28px;
  align-items: center;
  flex-wrap: wrap;
  margin: 2px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
}

.footer-contact strong {
  color: var(--chartreuse);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer-contact span {
  color: #bdcdcc;
  font-size: 0.9rem;
}

.review-dialog {
  --casefile-x: 0px;
  --casefile-y: 0px;
  --casefile-scale-x: 1;
  --casefile-scale-y: 1;
  width: min(94vw, 860px);
  max-height: min(92vh, 880px);
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 90px rgba(0, 20, 24, 0.5);
  overflow: auto;
}

.review-dialog.casefile-launching,
.review-dialog.casefile-closing {
  transform-origin: center;
  will-change: transform, opacity, clip-path, filter;
}

.review-dialog.casefile-launching {
  opacity: 0.94;
  transform: translate3d(var(--casefile-x), var(--casefile-y), 0) scale(var(--casefile-scale-x), var(--casefile-scale-y));
  filter: drop-shadow(-12px 14px 0 rgba(234, 230, 220, 0.95)) drop-shadow(-11px 13px 0 rgba(169, 211, 216, 0.72));
}

.review-dialog.casefile-origin-ticket {
  clip-path: polygon(4% 0, 96% 0, 100% 19%, 100% 81%, 96% 100%, 4% 100%, 0 81%, 0 19%);
}

.review-dialog.casefile-origin-file {
  clip-path: polygon(0 14%, 7% 14%, 10% 0, 42% 0, 48% 14%, 100% 14%, 100% 100%, 0 100%);
}

.review-dialog.casefile-launching.casefile-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
  filter: drop-shadow(0 0 0 rgba(234, 230, 220, 0)) drop-shadow(0 0 0 rgba(169, 211, 216, 0));
  transition:
    transform 560ms var(--ease-casefile),
    clip-path 520ms var(--ease-casefile),
    filter 520ms var(--ease-casefile),
    opacity 220ms ease-out;
}

.review-dialog.casefile-launching .dialog-topline {
  transform: scaleX(0.2);
  transform-origin: left;
}

.review-dialog.casefile-launching.casefile-open .dialog-topline {
  transform: scaleX(1);
  transition: transform 440ms 120ms var(--ease-casefile);
}

.review-dialog.casefile-launching .dialog-flow,
.review-dialog.casefile-launching .dialog-success {
  opacity: 0.86;
  transform: translateY(14px);
  clip-path: inset(0 0 16% 0);
  filter: blur(2px);
}

.review-dialog.casefile-launching.casefile-open .dialog-flow,
.review-dialog.casefile-launching.casefile-open .dialog-success {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
  filter: blur(0);
  transition:
    transform 420ms 130ms var(--ease-casefile),
    clip-path 420ms 130ms var(--ease-casefile),
    filter 360ms 130ms ease-out,
    opacity 260ms 130ms ease-out;
}

.review-dialog.casefile-closing {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
  filter: drop-shadow(0 0 0 rgba(234, 230, 220, 0)) drop-shadow(0 0 0 rgba(169, 211, 216, 0));
  transition:
    transform 300ms var(--ease-casefile),
    clip-path 300ms var(--ease-casefile),
    filter 300ms var(--ease-casefile),
    opacity 180ms ease-out;
}

.review-dialog.casefile-closing.casefile-return {
  opacity: 0.92;
  transform: translate3d(var(--casefile-x), var(--casefile-y), 0) scale(var(--casefile-scale-x), var(--casefile-scale-y));
  filter: drop-shadow(-9px 11px 0 rgba(234, 230, 220, 0.88)) drop-shadow(-8px 10px 0 rgba(169, 211, 216, 0.58));
}

.review-dialog.casefile-closing.casefile-return.casefile-origin-ticket {
  clip-path: polygon(4% 0, 96% 0, 100% 19%, 100% 81%, 96% 100%, 4% 100%, 0 81%, 0 19%);
}

.review-dialog.casefile-closing.casefile-return.casefile-origin-file {
  clip-path: polygon(0 14%, 7% 14%, 10% 0, 42% 0, 48% 14%, 100% 14%, 100% 100%, 0 100%);
}

.review-dialog.casefile-closing.casefile-fade {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  clip-path: inset(0 0 8% 0);
  filter: blur(2px);
}

.review-dialog.casefile-closing.casefile-return .dialog-flow,
.review-dialog.casefile-closing.casefile-return .dialog-success,
.review-dialog.casefile-closing.casefile-fade .dialog-flow,
.review-dialog.casefile-closing.casefile-fade .dialog-success {
  opacity: 0.78;
  transition: opacity 140ms ease-out;
}

.review-dialog::backdrop {
  background: rgba(0, 25, 30, 0.78);
}

.review-dialog.casefile-launching::backdrop {
  background: rgba(0, 25, 30, 0.08);
}

.review-dialog.casefile-launching.casefile-open::backdrop {
  background: rgba(0, 25, 30, 0.78);
  transition: background-color 420ms ease-out;
}

.review-dialog.casefile-closing::backdrop {
  background: rgba(0, 25, 30, 0.78);
  transition: background-color 240ms ease-out;
}

.review-dialog.casefile-closing.casefile-return::backdrop,
.review-dialog.casefile-closing.casefile-fade::backdrop {
  background: rgba(0, 25, 30, 0.08);
}

.dialog-topline {
  height: 14px;
  background: var(--persimmon);
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 16px;
  float: right;
  width: 48px;
  height: 48px;
  margin: 16px 18px 0 0;
  color: var(--white);
  background: var(--teal-900);
  border: 0;
  font-size: 2rem;
  line-height: 1;
}

.dialog-flow,
.dialog-success {
  padding: clamp(28px, 5vw, 58px);
}

.dialog-header {
  padding-right: 55px;
}

.dialog-header h2,
.dialog-success h2 {
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.dialog-header > p:last-child {
  max-width: 660px;
  margin: 16px 0 0;
  color: #4c5d60;
}

.dialog-progress {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 10px;
  align-items: center;
  margin: 34px 0;
}

.dialog-progress span {
  margin-right: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.dialog-progress i {
  height: 5px;
  background: #c3cdcb;
}

.dialog-progress i.is-current,
.dialog-progress i.is-complete {
  background: var(--teal-800);
}

.error-summary {
  margin-bottom: 26px;
  padding: 18px 20px;
  color: #641608;
  background: #ffe6df;
  border-top: 7px solid var(--persimmon);
}

.error-summary strong {
  display: block;
}

.error-summary ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.error-summary a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.form-grid > label,
.path-fieldset {
  min-width: 0;
}

.contact-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-fieldset legend {
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-radios label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  background: var(--white);
  border: 2px solid #879796;
  cursor: pointer;
}

.contact-radios input,
.consent-field > input {
  width: 22px;
  min-width: 22px;
  min-height: 22px;
}

.contact-radios label:has(input:checked) {
  background: #eff5d0;
  border-color: var(--teal-800);
  box-shadow: inset 0 -5px var(--chartreuse);
}

.contact-fieldset.has-error .contact-radios,
.consent-field.has-error {
  outline: 2px solid #a42913;
  outline-offset: 3px;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: var(--ice);
  border-left: 5px solid var(--teal-700);
}

.consent-field .field-error {
  grid-column: 1 / -1;
}

.form-legal {
  margin: 0;
  color: #47595c;
  font-size: 0.86rem;
  line-height: 1.45;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-slot {
  min-height: 65px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid label > span:first-child,
.path-fieldset legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-grid label small,
.path-fieldset legend small {
  color: #546467;
  font-size: 0.86rem;
  font-weight: 400;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  background: var(--white);
  border: 2px solid #879796;
  border-radius: 0;
}

.form-grid input::placeholder {
  color: #526467;
  opacity: 1;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--teal-700);
  outline: 3px solid rgba(12, 90, 102, 0.23);
  outline-offset: 0;
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"] {
  border-color: #a42913;
}

.field-help,
.field-error {
  display: block;
  margin-top: 7px;
  font-size: 0.86rem;
  font-style: normal;
}

.field-help {
  color: #56676a;
}

.field-error {
  min-height: 1.2em;
  color: #8b1c09;
  font-weight: 700;
}

.unit-field {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr);
  margin: 0 !important;
}

.unit-field--suffix {
  grid-template-columns: minmax(0, 1fr) 48px;
}

.unit-field b {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--teal-800);
  font-weight: 700;
}

.unit-field input {
  min-width: 0;
}

.path-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.path-fieldset.has-error .path-radios--primary {
  outline: 2px solid #a42913;
  outline-offset: 4px;
}

.path-radios {
  display: grid;
  gap: 12px;
}

.path-radios--primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-radios--secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.path-radios label {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 92px;
  padding: 16px;
  background: var(--white);
  border: 2px solid #879796;
  cursor: pointer;
}

.path-radios input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.path-radios label > i {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--white);
  border: 2px solid var(--teal-800);
  border-radius: 50%;
}

.path-radios label > i::after {
  position: absolute;
  inset: 4px;
  content: "";
  background: transparent;
  border-radius: 50%;
}

.path-radios input:checked + i::after {
  background: var(--teal-800);
}

.path-radios label:has(input:checked) {
  background: #eff5d0;
  border-color: var(--teal-800);
  box-shadow: inset 0 -6px var(--chartreuse);
}

.path-radios label:has(input:focus-visible) {
  outline: 3px solid var(--teal-800);
  outline-offset: 3px;
}

.path-radios strong,
.path-radios em {
  display: block;
}

.path-radios strong {
  color: var(--teal-900);
}

.path-radios em {
  margin-top: 3px;
  color: #536467;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.25;
}

.review-data-notice {
  margin: 26px 0;
  padding: 14px 16px;
  color: #31474b;
  background: var(--ice);
  border-left: 6px solid var(--teal-700);
  font-size: 0.92rem;
  line-height: 1.45;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #b2bfbd;
}

.dialog-actions button,
.dialog-success button {
  min-height: 52px;
  padding: 0 24px;
  font-weight: 700;
}

.dialog-back,
.dialog-success button:first-child {
  color: var(--teal-900);
  background: transparent;
  border: 2px solid var(--teal-800);
}

.dialog-next,
.dialog-success button:last-child {
  color: var(--white);
  background: var(--teal-800);
  border: 2px solid var(--teal-800);
}

.dialog-success {
  min-height: 520px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 8px auto 28px;
  color: var(--ink);
  background: var(--chartreuse);
  border-radius: 50%;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
}

.dialog-success p {
  max-width: 650px;
  margin: 22px auto;
  color: #47595c;
}

.selected-path {
  display: grid;
  max-width: 360px !important;
  padding: 17px;
  background: var(--ice);
  border-top: 7px solid var(--teal-800);
}

.selected-path span {
  color: #546467;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-path strong {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

.dialog-success > div:last-child {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.confirmation-number {
  display: grid;
  max-width: 360px !important;
  padding: 17px;
  background: #eff5d0;
  border-top: 7px solid var(--chartreuse);
}

.confirmation-number span {
  color: #546467;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-number strong {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.review-summary,
.next-steps {
  max-width: 650px;
  margin: 26px auto;
  padding: 22px;
  text-align: left;
  background: var(--ice);
  border-left: 6px solid var(--teal-700);
}

.review-summary h3,
.next-steps h3 {
  margin: 0 0 14px;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.review-summary dl {
  margin: 0;
}

.review-summary dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #b8c5c3;
}

.review-summary dt { font-weight: 700; }
.review-summary dd { margin: 0; }
.review-summary p,
.next-steps p { margin: 16px 0 0; }
.next-steps ol { margin: 0; padding-left: 22px; }
.next-steps a { display: inline-block; margin-top: 16px; font-weight: 700; }

[hidden] {
  display: none !important;
}

/* Cabinet Guide — a compact case-file conversation surface. */
.chat-launcher {
  position: fixed;
  z-index: 900;
  right: clamp(14px, 2.2vw, 30px);
  bottom: clamp(14px, 2.2vw, 30px);
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 8px 18px 8px 12px;
  color: var(--ink);
  background: var(--persimmon);
  border: 2px solid var(--teal-950);
  box-shadow: 5px 5px 0 var(--teal-950), 0 14px 32px rgba(3, 28, 33, 0.28);
  font-family: var(--font-body);
  text-align: left;
  transition: transform 170ms var(--ease-casefile), box-shadow 170ms var(--ease-casefile);
}

.chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 5px 8px 0 var(--teal-950), 0 18px 36px rgba(3, 28, 33, 0.3);
}

.chat-launcher[aria-expanded="true"] {
  transform: translateY(2px);
  box-shadow: 3px 3px 0 var(--teal-950), 0 8px 20px rgba(3, 28, 33, 0.24);
}

.chat-launcher svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--paper);
  stroke: var(--teal-950);
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.chat-launcher span,
.chat-panel__header > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.chat-launcher strong {
  font-size: 1rem;
}

.chat-launcher small {
  margin-top: 4px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-panel {
  position: fixed;
  z-index: 950;
  right: clamp(14px, 2.2vw, 30px);
  bottom: 102px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(410px, calc(100vw - 28px));
  max-height: min(690px, calc(100dvh - 125px));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--teal-950);
  box-shadow: 10px 12px 0 rgba(4, 40, 47, 0.28), 0 28px 70px rgba(3, 28, 33, 0.38);
  animation: cabinet-guide-arrive 260ms var(--ease-casefile) both;
}

@keyframes cabinet-guide-arrive {
  from { opacity: 0.84; transform: translateY(16px) scale(0.985); filter: blur(1px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.chat-panel__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 76px;
  padding: 12px 12px 12px 15px;
  color: var(--white);
  background: var(--teal-900) var(--powdercoat-image) center / 520px auto;
  border-bottom: 6px solid var(--chartreuse);
}

.chat-panel__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--chartreuse);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.chat-panel__mark svg {
  width: 31px;
  height: 27px;
}

.chat-panel__header strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.chat-panel__header small {
  margin-top: 3px;
  color: #d6e7e5;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.chat-panel__close {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 1.8rem;
  line-height: 1;
}

.chat-panel__body {
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto auto auto auto;
  min-height: 0;
  padding: 14px;
  background:
    linear-gradient(rgba(247, 244, 234, 0.94), rgba(247, 244, 234, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(8, 74, 85, 0.06) 25px 26px);
}

.chat-log {
  min-height: 170px;
  max-height: 330px;
  overflow-y: auto;
  padding: 2px 4px 12px;
  scrollbar-color: var(--steel) transparent;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  margin: 0 0 12px;
  padding: 10px 12px 12px;
  border: 1px solid var(--line);
  box-shadow: 3px 3px 0 rgba(7, 63, 73, 0.12);
}

.chat-message--guide {
  margin-right: auto;
  background: var(--white);
  border-left: 5px solid var(--teal-700);
}

.chat-message--visitor {
  margin-left: auto;
  background: var(--ice);
  border-right: 5px solid var(--persimmon);
}

.chat-message__label {
  display: block;
  margin-bottom: 3px;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-message p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.42;
  white-space: pre-wrap;
}

.chat-prompts {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 4px 2px 10px;
}

.chat-prompts button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--teal-900);
  background: transparent;
  border: 1px solid var(--teal-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.chat-prompts button:hover {
  color: var(--white);
  background: var(--teal-700);
}

.chat-form label {
  display: block;
  margin: 0 0 5px;
  font-size: 0.78rem;
  font-weight: 700;
}

.chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 2px solid var(--teal-900);
  background: var(--white);
}

.chat-composer textarea {
  width: 100%;
  min-height: 58px;
  max-height: 130px;
  resize: vertical;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.35;
}

.chat-composer textarea::placeholder {
  color: #536467;
  opacity: 1;
}

.chat-composer textarea:focus {
  outline: 0;
}

.chat-composer:focus-within {
  outline: 3px solid var(--chartreuse);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--teal-900);
}

.chat-composer button {
  display: grid;
  width: 64px;
  place-items: center;
  padding: 7px;
  color: var(--white);
  background: var(--teal-900);
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.chat-composer button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.chat-composer button:disabled,
.chat-composer textarea:disabled {
  cursor: wait;
  opacity: 0.62;
}

.chat-status {
  min-height: 20px;
  margin: 6px 1px 0;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 700;
}

.chat-notice {
  margin: 2px 1px 0;
  color: #4f5f62;
  font-size: 0.72rem;
  line-height: 1.35;
}

.chat-notice a {
  font-weight: 700;
}

@media (max-width: 520px) {
  .chat-launcher {
    right: 10px;
    bottom: 10px;
    min-height: 54px;
  }

  .chat-launcher span {
    display: none;
  }

  .chat-panel {
    right: 8px;
    bottom: 74px;
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 86px);
  }

  .chat-panel__body {
    padding: 11px;
  }

  .chat-log {
    max-height: none;
  }
}

@media (max-width: 1230px) {
  .brand-lockup {
    min-width: 300px;
  }

  .site-nav {
    gap: 26px;
  }

  .header-action {
    min-width: 205px;
    padding: 0 25px;
  }

  .hero {
    grid-template-columns: minmax(360px, 39%) minmax(0, 61%);
  }

  .hero-copy {
    padding-right: 42px;
    padding-left: 42px;
  }

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

  .proof-sequence li {
    padding-right: 10px;
    padding-left: 10px;
  }

  .proof-sequence span {
    font-size: 0.83rem;
  }

  .cabinet-pulls {
    gap: 28px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (max-width: 1040px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-lockup {
    min-width: 0;
    min-height: 72px;
    padding-left: 24px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 73px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 28px;
    color: var(--white);
    background: var(--teal-950);
    border-bottom: 2px solid var(--chartreuse);
    box-shadow: 0 18px 30px rgba(0, 20, 24, 0.34);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .header-action {
    min-height: 58px;
    margin-top: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 42% minmax(0, 58%);
    min-height: 650px;
  }

  .hero-copy {
    padding: 50px 30px 32px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 8vw, 5.8rem);
  }

  .ticket-button {
    gap: 16px;
    min-height: 80px;
    padding-right: 25px;
    font-size: 1.28rem;
  }

  .proof-sequence {
    display: grid;
    gap: 8px;
  }

  .proof-sequence li {
    padding: 0;
  }

  .proof-sequence li + li {
    border-left: 0;
  }

  .folder-rack {
    right: 6%;
    left: 6%;
  }

  .record-folder__line {
    display: none;
  }

  .record-folder__label {
    left: 8%;
  }

  .cabinet-pulls {
    gap: 20px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .factors-layout,
  .options-shell,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .factors-intro,
  .options-copy p,
  .faq-heading p {
    max-width: 720px;
  }

  .review-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .compliance-file {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .compliance-file__heading p {
    max-width: 720px;
  }

  .review-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .tab-list button {
    min-width: 190px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 0;
  }

  .tab-list button[aria-selected="true"] {
    box-shadow: inset 0 7px var(--chartreuse);
  }

  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .process-rail li {
    border-top: 2px solid var(--teal-900);
  }

  .process-rail li:nth-child(3) {
    margin-top: 42px;
  }

  .process-rail li:nth-child(4) {
    margin-top: 42px;
  }

  .closing-cabinet__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 610px;
    border-right: 0;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 13vw, 7.2rem);
  }

  .proof-sequence {
    display: flex;
    gap: 0;
    margin-top: 38px;
  }

  .proof-sequence li {
    padding: 0 13px;
  }

  .proof-sequence li:first-child {
    padding-left: 0;
  }

  .proof-sequence li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.66);
  }

  .cabinet-window {
    min-height: 580px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-lockup {
    min-height: 66px;
    padding: 7px 22px 7px 16px;
  }

  .brand-lockup::after {
    display: none;
  }

  .indexed-t {
    width: 35px;
  }

  .brand-lockup__type strong {
    font-size: 1.22rem;
  }

  .brand-lockup__type small {
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    margin-right: 10px;
  }

  .site-nav {
    top: 67px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 560px;
    padding: 48px 24px 30px;
    border-right: 0;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 21vw, 7rem);
  }

  .hero-deck {
    margin-top: 35px;
  }

  .proof-sequence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 36px;
  }

  .proof-sequence li {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .proof-sequence span {
    font-size: 0.78rem;
  }

  .cabinet-window {
    min-height: 520px;
  }

  .cabinet-stage {
    border-width: 10px;
  }

  .folder-rack {
    inset: 38px 5% 156px;
  }

  .record-folder {
    height: 98px;
  }

  .record-folder--payment {
    top: 76px;
  }

  .record-folder--property {
    top: 152px;
  }

  .record-folder--docs {
    top: 228px;
  }

  .record-folder__label {
    top: 29px;
    gap: 12px;
    font-size: 1rem;
  }

  .record-folder__label svg {
    width: 28px;
    height: 28px;
  }

  .cabinet-vault {
    display: none;
  }

  .cabinet-drawer {
    height: 170px;
  }

  .cabinet-pulls {
    padding: 30px 24px 0;
  }

  .cabinet-pull {
    height: 105px;
  }

  .cabinet-pull__label {
    height: 47px;
    font-size: 1rem;
  }

  .cabinet-pull__handle {
    top: 41px;
    height: 61px;
    border-width: 8px;
  }

  .assurance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #b9c5c3;
  }

  .assurance-strip div:nth-child(4) {
    border-top: 1px solid #b9c5c3;
  }

  .indexed-heading {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .indexed-heading > span {
    width: 58px;
    height: 42px;
  }

  .indexed-heading h2 {
    margin: 43px 0 0 -58px;
  }

  .factor-file {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .factor-file svg {
    width: 38px;
    height: 38px;
  }

  .review-sheet {
    min-height: 0;
  }

  .review-sheet > section {
    grid-template-columns: 1fr;
  }

  .mini-drawers {
    grid-template-columns: 1fr;
  }

  .mini-drawers div {
    min-height: 100px;
  }

  .option-drawers article {
    grid-template-columns: 1fr;
    padding-right: 30px;
    padding-left: 30px;
  }

  .option-drawers button {
    justify-self: start;
  }

  .drawer-handle {
    right: 30px;
  }

  .prep-file {
    grid-template-columns: 1fr;
  }

  .compliance-ledger {
    grid-template-columns: 1fr;
  }

  .closing-cabinet {
    min-height: 600px;
  }

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

  .footer-main > button {
    justify-self: start;
  }

  .footer-main nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-contact {
    display: grid;
    grid-column: 1;
    gap: 4px;
  }

  .form-grid,
  .path-radios--primary,
  .path-radios--secondary {
    grid-template-columns: 1fr;
  }

  .path-radios label {
    min-height: 72px;
  }
}

@media (max-width: 520px) {
  .brand-lockup__type strong {
    font-size: 1rem;
  }

  .brand-lockup__type small {
    margin-top: 3px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .brand-lockup {
    gap: 7px;
    padding-right: 8px;
    padding-left: 10px;
  }

  .indexed-t {
    width: 32px;
  }

  .hero-copy {
    min-height: 590px;
  }

  .hero h1 {
    font-size: clamp(4.55rem, 22vw, 6.2rem);
  }

  .ticket-button {
    width: 100%;
    min-height: 82px;
    gap: 18px;
    padding-right: 20px;
    padding-left: 16px;
    font-size: 1.2rem;
  }

  .ticket-button::after {
    left: 58px;
  }

  .prototype-note {
    font-size: 0.88rem;
  }

  .proof-sequence {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .proof-sequence li {
    padding: 0;
  }

  .proof-sequence li + li {
    border-left: 0;
  }

  .proof-sequence svg {
    width: 24px;
    height: 24px;
  }

  .cabinet-window {
    min-height: 430px;
  }

  .cabinet-kicker {
    left: 10%;
  }

  .cabinet-kicker::after {
    width: 70px;
  }

  .folder-rack {
    inset: 36px 3% 120px;
  }

  .record-folder {
    height: 79px;
  }

  .record-folder--payment {
    top: 60px;
  }

  .record-folder--property {
    top: 120px;
  }

  .record-folder--docs {
    top: 180px;
  }

  .record-folder__label {
    top: 23px;
    left: 8%;
    gap: 8px;
    font-size: 0.88rem;
  }

  .record-folder__label svg {
    width: 23px;
    height: 23px;
  }

  .record-folder::after {
    top: 8px;
    height: 20px;
  }

  .cabinet-drawer {
    height: 130px;
  }

  .cabinet-pulls {
    display: none;
  }

  .drawer-lock {
    bottom: -3px;
    width: 72px;
  }

  .mobile-paths {
    display: grid;
    gap: 1px;
    color: var(--white);
    background: #345d62;
  }

  .mobile-paths button {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 68px;
    padding: 12px 24px;
    color: var(--white);
    text-align: left;
    background: var(--teal-900);
    border: 0;
  }

  .mobile-paths button:hover {
    color: var(--ink);
    background: var(--chartreuse);
  }

  .mobile-paths strong {
    font-size: 1.02rem;
  }

  .mobile-paths span {
    color: inherit;
    font-size: 0.86rem;
  }

  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .assurance-strip div + div,
  .assurance-strip div:nth-child(3) {
    border-top: 1px solid #b9c5c3;
    border-left: 0;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .indexed-heading h2,
  .review-heading h2,
  .options-copy h2,
  .process-heading h2,
  .faq-heading h2,
  .closing-cabinet h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .factor-file {
    grid-template-columns: 1fr;
  }

  .factor-file__tab {
    min-width: 70%;
  }

  .review-disclosure {
    align-items: flex-start;
  }

  .review-disclosure div {
    display: grid;
  }

  .compliance-file {
    padding: 38px 22px 44px;
  }

  .compliance-file__heading h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .compliance-ledger div {
    padding: 22px 18px;
  }

  .compliance-status {
    padding: 16px 18px;
  }

  .tab-list button {
    min-width: 176px;
  }

  .review-sheet {
    padding: 30px 22px;
  }

  .record-ledger div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .record-ledger dd {
    text-align: left;
  }

  .factor-ledger li {
    grid-template-columns: 15px minmax(0, 1fr);
  }

  .factor-ledger span {
    grid-column: 2;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail li,
  .process-rail li:nth-child(3),
  .process-rail li:nth-child(4) {
    margin-top: 36px;
  }

  .process-rail li + li {
    border-left: 0;
  }

  .dialog-flow,
  .dialog-success {
    padding: 24px 18px 30px;
  }

  .dialog-header {
    padding-right: 44px;
  }

  .dialog-close {
    width: 44px;
    height: 44px;
    margin-right: 10px;
  }

  .dialog-progress {
    grid-template-columns: repeat(4, 1fr);
  }

  .dialog-progress span {
    grid-column: 1 / -1;
  }

  .dialog-actions,
  .dialog-success > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dialog-actions button,
  .dialog-success button {
    width: 100%;
  }
}

@media (max-width: 899px) {
  .review-dialog.casefile-launching {
    filter: drop-shadow(-9px 11px 0 rgba(234, 230, 220, 0.9)) drop-shadow(0 0 0 rgba(169, 211, 216, 0));
  }

  .review-dialog.casefile-launching.casefile-open {
    transition-duration: 420ms, 400ms, 400ms, 200ms;
  }

  .review-dialog.casefile-launching.casefile-open .dialog-flow,
  .review-dialog.casefile-launching.casefile-open .dialog-success {
    transition-delay: 90ms;
  }
}

@media (max-width: 520px) {
  .review-dialog.casefile-compact.casefile-launching,
  .review-dialog.casefile-compact.casefile-closing,
  .review-dialog.casefile-compact.casefile-closing.casefile-return.casefile-origin-ticket,
  .review-dialog.casefile-compact.casefile-closing.casefile-return.casefile-origin-file {
    clip-path: none;
    filter: none;
  }

  .review-dialog.casefile-compact.casefile-launching.casefile-open {
    transition: transform 260ms var(--ease-casefile), opacity 150ms ease-out;
  }

  .review-dialog.casefile-compact.casefile-launching .dialog-flow,
  .review-dialog.casefile-compact.casefile-launching .dialog-success,
  .review-dialog.casefile-compact.casefile-closing .dialog-flow,
  .review-dialog.casefile-compact.casefile-closing .dialog-success {
    clip-path: none;
    filter: none;
  }

  .review-dialog.casefile-compact.casefile-launching.casefile-open .dialog-flow,
  .review-dialog.casefile-compact.casefile-launching.casefile-open .dialog-success {
    transition: transform 220ms 40ms var(--ease-casefile), opacity 150ms 40ms ease-out;
  }

  .review-dialog.casefile-compact.casefile-launching.casefile-open .dialog-topline {
    transition-delay: 40ms;
  }

  .review-dialog.casefile-compact.casefile-closing {
    transition: transform 220ms var(--ease-casefile), opacity 150ms ease-out;
  }
}

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

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

  .is-casefile-releasing,
  .cabinet-pull.is-casefile-releasing .cabinet-pull__label,
  .cabinet-pull.is-casefile-releasing .cabinet-pull__handle,
  .review-dialog.casefile-launching,
  .review-dialog.casefile-closing {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    will-change: auto !important;
  }

  .record-folder,
  .record-folder:hover {
    transform: none !important;
    filter: drop-shadow(0 9px 6px rgba(0, 0, 0, 0.28)) !important;
    transition: none !important;
  }
}

@media (forced-colors: active) {
  :root {
    --chartreuse: Highlight;
    --persimmon: Highlight;
  }

  .site-header,
  .hero-copy,
  .cabinet-window,
  .cabinet-drawer,
  .review-section,
  .closing-cabinet,
  .option-drawers article {
    background-image: none;
  }

  .path-radios input:checked + i::after {
    background: Highlight;
  }

  .path-radios label:has(input:checked) {
    outline: 4px solid Highlight;
    outline-offset: -4px;
  }

  .ticket-button,
  .header-action {
    clip-path: none;
  }

  .ticket-button:focus-visible,
  .header-action:focus-visible {
    outline: 3px solid Highlight !important;
    outline-offset: 3px;
    box-shadow: none !important;
  }

  .is-casefile-releasing,
  .cabinet-pull.is-casefile-releasing .cabinet-pull__label,
  .cabinet-pull.is-casefile-releasing .cabinet-pull__handle,
  .review-dialog.casefile-launching,
  .review-dialog.casefile-closing {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    will-change: auto !important;
  }

  .record-folder,
  .record-folder:hover {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
