:root {
  --ink: #171a1f;
  --blue: #164cdd;
  --line: #d2d6dc;
  --gray: #f0f2f5;
  --muted: #5d6672;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: white;
  color: var(--ink);
  font:
    16px/1.5 Arial,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.shell {
  max-width: 1390px;
  margin: auto;
  padding-left: 55px;
  padding-right: 55px;
}
nav {
  display: flex;
  align-items: center;
  height: 105px;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 43px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  text-decoration: none;
}
.brand span {
  display: block;
  font: 7px/1.5 var(--mono);
  letter-spacing: 1.1px;
  margin-top: 8px;
}
nav > div {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
nav > div > a {
  font-size: 12px;
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--ink);
  padding: 15px 18px;
  min-height: 48px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.button:hover {
  background: var(--gray);
}
.button.blue {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.button.blue:hover {
  background: #0e38a8;
}
.button.nav-button {
  font-size: 11px;
  min-height: 42px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 55px;
  padding-bottom: 60px;
}
.kicker,
.case-number {
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.5px;
}
.hero h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-stretch: condensed;
  font-size: clamp(67px, 6.8vw, 96px);
  line-height: 0.96;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 24px 0 27px;
}
.hero h1 span {
  color: var(--blue);
}
.lead {
  font-size: 20px;
  line-height: 1.3;
  max-width: 380px;
  margin: 0 0 14px;
}
.sublead {
  font-size: 14px;
  color: var(--muted);
  max-width: 395px;
  margin: 0 0 25px;
}
.tiny {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-evidence {
  align-self: center;
  border: 1px solid #afb7c3;
  background: var(--gray);
  position: relative;
  box-shadow: 10px 10px 0 #e3e7ed;
  transform: rotate(-1deg);
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #afb7c3;
  background: white;
  font: 8px var(--mono);
}
.incident {
  display: flex;
  gap: 22px;
  align-items: start;
  background: #1b4dc5;
  color: white;
  padding: 32px 25px;
}
.incident > span {
  font: 14px var(--mono);
  padding-top: 5px;
}
.incident strong {
  font-size: 25px;
  letter-spacing: -0.7px;
}
.incident p {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0 0;
  color: #e0e8ff;
}
.revision-head {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 10px;
  font: 8px var(--mono);
  letter-spacing: 0.6px;
}
.schedule-proof {
  padding: 0 20px;
}
.schedule-proof > div {
  display: grid;
  grid-template-columns: 40px 43px 1fr 16px;
  gap: 11px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #c7ced8;
}
.old-time {
  text-decoration: line-through;
  color: #778293;
  font: 10px var(--mono);
}
.schedule-proof b {
  font: 12px var(--mono);
  color: var(--blue);
}
.schedule-proof p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.schedule-proof small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 5px;
}
.move {
  font-size: 22px;
  color: var(--blue);
}
.review-stamp {
  padding: 28px 20px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.review-stamp > span {
  font: 9px var(--mono);
  padding: 8px 12px;
  border: 1px solid var(--blue);
  color: var(--blue);
  transform: rotate(-5deg);
}
.review-stamp p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.evidence-link {
  display: block;
  border-top: 1px solid #afb7c3;
  padding: 17px 20px;
  background: white;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
}
.scope-strip {
  background: var(--ink);
  color: white;
  padding: 22px 0;
}
.scope-strip .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 9px var(--mono);
  letter-spacing: 1px;
}
.cases,
.service {
  padding-top: 75px;
  padding-bottom: 75px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: end;
  margin-bottom: 35px;
}
h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.08;
  margin: 0;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
  margin: 0;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}
.case {
  display: flex;
  flex-direction: column;
  padding: 27px;
  text-decoration: none;
  min-height: 300px;
}
.case + .case {
  border-left: 1px solid var(--ink);
}
.case:hover {
  background: #edf2ff;
}
.case h3 {
  font-size: 26px;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 27px 0 15px;
}
.case > p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 30px;
}
.case-cta {
  margin-top: auto;
  font-size: 12px;
  text-decoration: underline;
}
.product-section {
  background: #e9edf2;
  padding: 70px 0;
}
.product-image {
  display: block;
  overflow: hidden;
  border: 1px solid #b5becb;
  max-height: 810px;
}
.product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.product-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 9px var(--mono);
  padding: 15px 0 30px;
  color: #465368;
}
.product-caption a {
  font-family: Arial;
  font-size: 12px;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  padding-top: 25px;
  border-top: 1px solid #b9c2cf;
}
.workflow b {
  font-size: 16px;
}
.workflow p {
  font-size: 13px;
  color: #556171;
  max-width: 320px;
}
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offers article {
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.offers article.live-offer {
  border: 2px solid var(--blue);
  padding: 25px;
}
.offers h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  margin: 22px 0;
}
.price {
  font-size: 43px;
  letter-spacing: -2px;
  margin: 5px 0 20px;
  line-height: 1.1;
}
.price small {
  display: block;
  font: 10px var(--mono);
  letter-spacing: 0;
  margin-bottom: 8px;
}
.offers ul {
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.9;
  margin: 0 0 28px;
}
.offers .button {
  margin-top: auto;
  font-size: 11px;
}
.support-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--gray);
  padding: 35px;
  margin-top: 25px;
  border-left: 4px solid var(--ink);
}
.support-offer h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin: 15px 0 0;
}
.support-offer > div > p:not(.tiny):not(.case-number) {
  font-size: 14px;
  margin: 0 0 15px;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
}
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 20px;
  padding-bottom: 70px;
}
.details-section h2 {
  font-size: 30px;
  max-width: 360px;
}
.faqs details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-size: 13px;
  padding: 17px 0;
}
details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}
.contact {
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 60px;
  padding-bottom: 35px;
}
.contact h2 {
  font-size: 65px;
  line-height: 0.97;
  letter-spacing: -2px;
  margin: 24px 0;
}
.contact > div > p:not(.tiny):not(.case-number) {
  font-size: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: block;
  font-size: 11px;
  margin-bottom: 17px;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #b9c1cc;
  background: white;
  padding: 12px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink);
  border-radius: 0;
}
textarea {
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.consent input {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 1px 0;
}
.contact form > .button {
  width: 100%;
  background: var(--ink);
  color: white;
}
.contact form > .button:disabled {
  opacity: 0.5;
}
.contact #form-status {
  font-size: 11px;
  color: var(--muted);
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.privacy {
  padding-bottom: 30px;
}
.privacy summary {
  font-size: 10px;
}
.privacy p {
  max-width: 800px;
}
footer {
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}
footer > span {
  font: 9px/1.7 var(--mono);
  letter-spacing: 0.5px;
}
footer > a:last-child {
  font-size: 12px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 15px;
  z-index: 10;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
@media (max-width: 1100px) {
  .shell {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero {
    gap: 40px;
  }
  .hero h1 {
    font-size: 78px;
  }
  nav {
    gap: 25px;
  }
  nav > div {
    gap: 20px;
  }
  .incident strong {
    font-size: 21px;
  }
  .incident {
    padding: 28px 20px;
    gap: 15px;
  }
  .schedule-proof > div {
    gap: 8px;
    grid-template-columns: 35px 40px 1fr 12px;
  }
  .schedule-proof p {
    font-size: 11px;
  }
  .offers {
    gap: 12px;
  }
  .offers article {
    padding: 20px;
  }
  .offers article.live-offer {
    padding: 19px;
  }
  .offers h3 {
    font-size: 23px;
  }
  .case {
    padding: 23px;
  }
  .case h3 {
    font-size: 23px;
  }
  .contact,
  .details-section {
    gap: 45px;
  }
}
@media (max-width: 760px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav {
    height: 85px;
    gap: 15px;
    justify-content: space-between;
  }
  .brand {
    font-size: 37px;
  }
  .brand span {
    font-size: 6px;
    letter-spacing: 0.7px;
  }
  nav > div {
    display: none;
  }
  .button.nav-button {
    font-size: 10px;
    padding: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 45px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(64px, 15vw, 97px);
    margin: 22px 0;
  }
  .kicker {
    font-size: 8px;
  }
  .lead {
    font-size: 19px;
    max-width: 340px;
  }
  .sublead {
    font-size: 14px;
  }
  .hero-copy > .button {
    width: 100%;
  }
  .hero-copy > .tiny {
    text-align: center;
    font-size: 10px;
  }
  .hero-evidence {
    margin-right: 6px;
  }
  .sheet-top {
    font-size: 7px;
    padding: 13px;
  }
  .incident {
    padding: 25px 17px;
  }
  .incident strong {
    font-size: 21px;
  }
  .incident p {
    font-size: 11px;
  }
  .revision-head {
    font-size: 7px;
    padding: 17px 14px 7px;
  }
  .schedule-proof {
    padding: 0 14px;
  }
  .schedule-proof > div {
    padding: 16px 0;
    gap: 7px;
    grid-template-columns: 34px 39px 1fr 12px;
  }
  .schedule-proof p {
    font-size: 11px;
  }
  .schedule-proof small {
    font-size: 8px;
  }
  .review-stamp {
    padding: 23px 15px;
    gap: 20px;
  }
  .scope-strip .shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 20px;
    max-width: none;
  }
  .cases,
  .service {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case + .case {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }
  .case {
    min-height: 0;
    padding: 24px;
  }
  .case h3 {
    font-size: 26px;
    margin: 20px 0 15px;
  }
  .case > p {
    margin-bottom: 25px;
  }
  .product-section {
    padding: 45px 0;
  }
  .product-image {
    width: 100%;
    overflow: auto;
    max-height: none;
  }
  .product-image img {
    min-width: 700px;
    width: 700px;
  }
  .product-caption {
    font-size: 7px;
    gap: 15px;
  }
  .product-caption a {
    font-size: 10px;
    white-space: nowrap;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 20px;
  }
  .workflow p {
    max-width: none;
  }
  .offers {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .offers article,
  .offers article.live-offer {
    padding: 26px;
  }
  .offers h3 {
    font-size: 27px;
  }
  .price {
    font-size: 47px;
  }
  .offers ul {
    font-size: 13px;
  }
  .offers .button {
    font-size: 12px;
  }
  .support-offer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
    margin-top: 20px;
  }
  .support-offer h3 {
    font-size: 26px;
  }
  .details-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 45px;
  }
  .details-section h2 {
    font-size: 28px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 35px;
  }
  .contact h2 {
    font-size: 56px;
  }
  .contact > div > p br {
    display: none;
  }
  input,
  textarea {
    font-size: 16px;
  }
  .form-row {
    gap: 12px;
  }
  select {
    font-size: 12px;
    padding: 12px 7px;
  }
  label {
    font-size: 10px;
  }
  .contact #form-status {
    font-size: 10px;
  }
  footer {
    gap: 20px;
    flex-wrap: wrap;
  }
  footer > span {
    font-size: 8px;
  }
  footer > a:last-child {
    font-size: 11px;
  }
  .privacy {
    padding-bottom: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
