:root {
  --ink: #171918;
  --ink-soft: #222624;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #d7d9d5;
  --muted: #606661;
  --red: #e6432f;
  --red-dark: #c93524;
  --green: #2e715a;
  --focus: #ffd34f;
  --shell: 1180px;
  --radius: 6px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 680;
}

h2 {
  margin-bottom: 24px;
  font-size: 46px;
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 650;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

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

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

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff7968;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(23, 25, 24, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 850;
}

.brand-name {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 740;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(230, 67, 47, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

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

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

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88svh;
  overflow: hidden;
  align-items: stretch;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-incident-workflow.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 15, 14, 0.97) 0%, rgba(13, 15, 14, 0.9) 34%, rgba(13, 15, 14, 0.38) 64%, rgba(13, 15, 14, 0.14) 100%),
    linear-gradient(0deg, rgba(13, 15, 14, 0.55) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 72px;
}

.hero-copy {
  width: min(720px, 66%);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.55;
}

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

.text-link {
  font-size: 14px;
  font-weight: 700;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  gap: 12px 26px;
  font-size: 13px;
  list-style: none;
}

.hero-facts li {
  position: relative;
}

.hero-facts li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  content: "";
  background: #ff7968;
  border-radius: 50%;
}

.deadline-band {
  padding: 38px 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.deadline-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  align-items: start;
  gap: 34px;
}

.deadline-intro h2 {
  max-width: 300px;
  margin: 0;
  font-size: 28px;
}

.deadline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
}

.deadline-number {
  color: var(--red);
  font-size: 34px;
  font-weight: 760;
  line-height: 1;
}

.deadline-item h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.deadline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.source-note {
  margin-top: 24px;
  padding-top: 15px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.source-note p {
  margin: 0;
}

.section {
  padding: 108px 0;
}

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

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

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

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

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
}

.split-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
}

.section-ink .split-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.compact-heading {
  max-width: 760px;
}

.compact-heading h2 {
  margin-bottom: 0;
}

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

.deliverable {
  min-height: 252px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.item-index {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.deliverable p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-line {
  display: flex;
  align-items: center;
  margin-top: 22px;
  padding: 20px 2px 0;
  border-top: 1px solid var(--line);
  gap: 13px;
}

.review-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--green);
  border-radius: 50%;
}

.sample-section {
  padding: 110px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.sample-preview {
  display: block;
  width: min(100%, 360px);
  justify-self: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(23, 25, 24, 0.18);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.sample-preview:hover {
  box-shadow: 0 28px 70px rgba(23, 25, 24, 0.24);
  transform: translateY(-3px);
}

.sample-preview img {
  display: block;
  width: 100%;
  height: auto;
}

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

.sample-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
}

.sample-lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.sample-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 620;
}

.sample-list li::before {
  position: absolute;
  top: 1.25em;
  left: 2px;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--red);
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.sample-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sample-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.fit-column {
  padding: 38px 44px 42px 0;
}

.fit-column + .fit-column {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fit-label {
  margin-bottom: 22px;
  color: #ff7968;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.fit-positive .fit-label {
  color: #75c2a7;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 17px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.76);
}

.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: #ff7968;
}

.fit-positive .check-list li::before {
  background: #75c2a7;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  gap: 42px;
}

.process-time {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.process-list p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
}

.terms-section {
  padding: 100px 0;
  color: var(--white);
  background: #2a302d;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 100px;
}

.terms-copy h2 {
  max-width: 640px;
}

.terms-copy > p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.price-block {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price {
  display: block;
  font-size: 58px;
  font-weight: 720;
  line-height: 1;
}

.currency {
  color: var(--red);
  font-size: 30px;
  vertical-align: 16px;
}

.tax-note {
  display: block;
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.price-block ul {
  display: grid;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro h2 {
  font-size: 38px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  content: "+";
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 42px 24px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.contact-inner {
  max-width: 780px;
}

.contact-inner h2 {
  margin-bottom: 20px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.copy-status {
  display: block;
  min-height: 22px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  gap: 36px;
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-copy {
    width: min(710px, 82%);
  }

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

  .deadline-intro {
    grid-column: 1 / -1;
  }

  .deadline-intro h2 {
    max-width: none;
  }

  .split-heading,
  .terms-grid,
  .faq-layout,
  .sample-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sample-preview {
    width: min(100%, 330px);
  }

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

  .terms-grid {
    align-items: start;
  }

  .price-block {
    max-width: 500px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .header-inner > .button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 15, 14, 0.97) 0%, rgba(13, 15, 14, 0.82) 74%, rgba(13, 15, 14, 0.54) 100%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 46px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-facts {
    display: grid;
    margin-top: 32px;
    gap: 6px;
  }

  .hero-facts li::after {
    display: none;
  }

  .deadline-band {
    padding-top: 30px;
  }

  .deadline-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .deadline-intro {
    grid-column: auto;
  }

  .deadline-item {
    grid-template-columns: 70px 1fr;
  }

  .section,
  .contact-section,
  .sample-section {
    padding: 76px 0;
  }

  .sample-layout {
    gap: 44px;
  }

  .sample-preview {
    width: min(88%, 300px);
  }

  .sample-lede {
    font-size: 16px;
  }

  .sample-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

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

  .split-heading > p,
  .terms-copy > p:last-child,
  .contact-inner > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .deliverable-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .deliverable {
    min-height: 0;
  }

  .item-index {
    margin-bottom: 32px;
  }

  .fit-column {
    padding: 30px 0;
  }

  .fit-column + .fit-column {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

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

  .terms-section {
    padding: 76px 0;
  }

  .price-block {
    padding: 26px;
  }

  .price {
    font-size: 50px;
  }

  .footer-grid,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-legal {
    gap: 8px;
  }
}

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

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