:root {
  --ink: #17222d;
  --ink-soft: #4b5d6b;
  --navy: #142433;
  --navy-deep: #0b151e;
  --green: #177b5b;
  --green-dark: #0f5c43;
  --green-pale: #eaf4ef;
  --blue: #2d6190;
  --blue-pale: #eaf1f7;
  --red: #bb3e39;
  --red-pale: #faeceb;
  --amber: #c47a0a;
  --amber-pale: #fff3d8;
  --paper: #ffffff;
  --surface: #f4f7f8;
  --line: #d3dde2;
  --shadow: 0 18px 52px rgba(12, 30, 42, 0.16);
  --radius: 6px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid #f2b74b;
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--paper);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 21, 30, 0.76);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(11, 21, 30, 0.94);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--paper);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 14px;
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--paper);
}

.button-dark {
  background: var(--navy);
  border-color: var(--navy);
}

.button-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.hero {
  position: relative;
  display: flex;
  min-height: 76svh;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
  padding: 112px 0 58px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 20%;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 24, 0.88);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content > * {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b9ead9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 62px;
  line-height: 1.03;
  font-weight: 780;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 760;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-line {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-facts {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  padding-right: 24px;
}

.hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts dt {
  font-size: 22px;
  font-weight: 780;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

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

.section-heading > p,
.split-heading > p,
.sticky-heading > p {
  color: var(--ink-soft);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 72px;
}

.split-heading > p {
  margin: 0;
  font-size: 18px;
}

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

.risk-item {
  min-width: 0;
  padding: 32px 30px 34px 0;
}

.risk-item + .risk-item {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.risk-number {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.risk-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.fit-band {
  padding: 62px 0;
  background: var(--green-pale);
  border-block: 1px solid #cce3d8;
}

.fit-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 82px;
}

.fit-layout h2 {
  font-size: 34px;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 650;
}

.fit-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.sample-section {
  color: var(--paper);
  background: var(--navy-deep);
}

.sample-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 64px;
}

.sample-heading p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  color: #aee6d2;
  font-weight: 760;
  text-underline-offset: 4px;
}

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

.sample-page {
  display: block;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.sample-page img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 297;
  object-fit: cover;
  object-position: top;
  background: var(--surface);
}

.sample-page span {
  display: block;
  min-height: 112px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.sample-page strong,
.sample-page small {
  display: block;
}

.sample-page small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.sample-page:hover {
  border-color: #aee6d2;
  transform: translateY(-2px);
}

.deliverables-layout,
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.sticky-heading {
  position: sticky;
  top: 112px;
  margin: 0;
}

.sticky-heading > p:last-child {
  margin: 22px 0 0;
  font-size: 18px;
}

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

.deliverable-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-list li > span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.deliverable-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.process-section {
  background: var(--blue-pale);
  border-block: 1px solid #cbdce9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 284px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid #cbdce9;
  border-radius: var(--radius);
}

.process-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.process-steps p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.pricing-section {
  background: var(--surface);
}

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

.price-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card-primary {
  border-top: 6px solid var(--green);
}

.price-card:not(.price-card-primary) {
  border-top: 6px solid var(--navy);
}

.price-label {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 0;
  font-size: 58px;
  font-weight: 790;
  line-height: 1;
}

.price span {
  font-size: 24px;
  vertical-align: top;
}

.price-range {
  font-size: 42px;
}

.price-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.price-card ul {
  margin: 26px 0 30px;
  padding-left: 20px;
}

.price-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.safe-band {
  padding: 78px 0;
  color: var(--paper);
  background: var(--green-dark);
}

.safe-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 86px;
}

.safe-layout > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.safe-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
}

.safe-columns > div {
  padding: 28px;
}

.safe-columns > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.safe-columns ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.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: 18px;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  content: "+";
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -6px 0 24px;
  color: var(--ink-soft);
}

.request-section {
  padding: 90px 0;
  color: var(--paper);
  background: var(--navy-deep);
}

.request-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 84px;
}

.request-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.direct-email {
  display: inline-block;
  margin-top: 20px;
  color: #aee6d2;
  font-weight: 760;
  text-underline-offset: 4px;
}

.request-form {
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

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

.request-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 760;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aebcc4;
  border-radius: 4px;
}

.request-form input,
.request-form select {
  min-height: 48px;
}

.request-form textarea {
  min-height: 138px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(23, 123, 91, 0.22);
  outline-offset: 1px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #070e14;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand {
  color: var(--paper);
}

.footer-inner p {
  margin: 10px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
}

.footer-links a {
  color: var(--paper);
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .split-heading,
  .sample-heading,
  .fit-layout,
  .deliverables-layout,
  .safe-layout,
  .faq-layout,
  .request-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sticky-heading {
    position: static;
  }

  .risk-grid,
  .sample-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .risk-item,
  .risk-item + .risk-item {
    padding: 28px 0;
    border-left: 0;
  }

  .risk-item + .risk-item {
    border-top: 1px solid var(--line);
  }

  .sample-grid {
    max-width: 640px;
    margin-inline: auto;
  }

  .sample-page span {
    min-height: auto;
  }

  .safe-columns {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

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

  .site-nav {
    top: 64px;
  }

  .hero {
    min-height: 0;
    padding: 82px 0 30px;
  }

  .hero-media img {
    object-position: 64% 10%;
    opacity: 0.18;
  }

  .hero-overlay {
    background: rgba(8, 16, 24, 0.9);
  }

  h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 20px;
  }

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

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .trust-line {
    margin-top: 10px;
  }

  .hero-facts {
    gap: 0;
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 0 10px;
  }

  .hero-facts div:first-child {
    padding-left: 0;
  }

  .hero-facts dt {
    font-size: 17px;
  }

  .hero-facts dd {
    font-size: 11px;
  }

  .section {
    padding: 72px 0;
  }

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

  .split-heading > p {
    font-size: 16px;
  }

  .fit-list,
  .pricing-grid,
  .safe-columns,
  .field-row {
    grid-template-columns: 1fr;
  }

  .safe-columns > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .price-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .price {
    font-size: 50px;
  }

  .price-range {
    font-size: 35px;
  }

  .price-card .button {
    align-self: stretch;
  }

  .request-form {
    padding: 22px 18px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 72px 0 20px;
  }

  .hero .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.06;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .trust-line {
    display: none;
  }

  .hero-facts {
    margin-top: 14px;
    padding-top: 10px;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding-inline: 7px;
  }

  .hero-facts dt {
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-facts dd {
    font-size: 9px;
    white-space: nowrap;
  }
}

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

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