:root {
  --paper: #eef3f4;
  --paper-deep: #d9e4e7;
  --ink: #102b35;
  --muted: #52707a;
  --blue: #17627d;
  --blue-dark: #0c3b4d;
  --orange: #e7683a;
  --steel: #8ba5af;
  --line: rgba(16,43,53,.2);
  --grid: rgba(23,98,125,.075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background-color: var(--paper); background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 32px 32px; font-family: "Segoe UI Variable", "Bahnschrift", sans-serif; }
a { color: var(--blue); }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 20; left: 12px; top: -80px; padding: 10px 14px; color: white; background: var(--ink); }
.skip-link:focus { top: 12px; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { width: min(1180px, calc(100% - 40px)); min-height: 92px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--blue); color: var(--paper); background: var(--blue-dark); font-family: Georgia, serif; font-size: 1.1rem; transform: rotate(-2deg); }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-family: Georgia, serif; font-size: 1.2rem; }
.brand small { color: var(--muted); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: .87rem; font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--orange); }

.hero { min-height: 720px; padding: 86px 0 104px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .73rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 26px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 6.7vw, 6.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .93; }
h1 em { color: var(--orange); font-weight: 400; }
h2 { margin-bottom: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 4.8vw, 4.5rem); font-weight: 400; letter-spacing: -.052em; line-height: 1; }
h3 { font-size: 1.28rem; line-height: 1.18; }
.lede { max-width: 720px; color: var(--muted); font-family: Georgia, serif; font-size: 1.2rem; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--blue-dark); color: white; background: var(--blue-dark); font-weight: 800; text-decoration: none; box-shadow: 5px 6px 0 var(--steel); transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translate(2px,2px); box-shadow: 3px 4px 0 var(--steel); }
.button-secondary { color: var(--ink); background: transparent; box-shadow: none; }
.microcopy { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.drawing-board { position: relative; margin: 0; padding: 17px; border: 2px solid var(--blue-dark); background: #d5d5d5; box-shadow: 16px 18px 0 rgba(16,43,53,.14); transform: rotate(1deg); }
.drawing-board::before, .drawing-board::after { content: ""; position: absolute; z-index: 2; pointer-events: none; }
.drawing-board::before { inset: 52px 30px 72px; border: 1px dashed rgba(16,43,53,.35); }
.drawing-board::after { width: 70px; height: 70px; right: -24px; top: -24px; border-top: 3px solid var(--orange); border-right: 3px solid var(--orange); }
.drawing-title { display: flex; justify-content: space-between; padding-bottom: 12px; font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.drawing-board img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(16,43,53,.35); }
.drawing-board figcaption { padding-top: 14px; display: flex; justify-content: space-between; gap: 18px; font-size: .78rem; }
.drawing-board figcaption span { color: #4e5d62; text-align: right; }
.dimension { position: absolute; z-index: 3; padding: 4px 7px; color: white; background: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .08em; }
.dimension-x { right: 29px; top: 77px; }
.dimension-y { left: 28px; bottom: 76px; }

.status-strip { color: white; background: var(--blue-dark); }
.status-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.status-strip .wrap > div { min-height: 118px; padding: 32px 25px; display: flex; align-items: baseline; gap: 12px; border-left: 1px solid rgba(255,255,255,.18); }
.status-strip .wrap > div:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.status-strip strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.status-strip span { color: #acc4cc; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.workflow { padding: 110px 0 118px; }
.section-heading { display: grid; grid-template-columns: 230px 1fr; gap: 50px; align-items: start; }
.steps { list-style: none; margin: 58px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.steps li { min-height: 248px; padding: 26px; border-left: 1px solid var(--line); background: rgba(238,243,244,.88); }
.steps li:first-child { border-left: 0; }
.steps span { color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .15em; }
.steps h3 { margin-top: 52px; }
.steps p { color: var(--muted); line-height: 1.55; }

.capabilities { padding: 108px 0 118px; color: white; background: var(--ink); }
.capabilities .eyebrow { color: #7ed1ed; }
.capability-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.capability-grid article { min-height: 270px; padding: 28px; background: #14343f; }
.capability-grid article > span { color: #7ed1ed; font-size: .68rem; font-weight: 850; letter-spacing: .15em; }
.capability-grid h3 { margin-top: 48px; }
.capability-grid p { color: #aac1c8; line-height: 1.58; }
.capability-grid .wide { grid-column: span 4; min-height: 230px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: end; }
.capability-grid .wide > span { grid-column: span 2; align-self: start; }
.capability-grid .wide h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 400; }

.requirements { padding: 112px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.requirements > div > p:last-child { color: var(--muted); line-height: 1.7; }
.requirements ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.requirements li { padding: 19px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.requirements li span { color: var(--muted); }

.support { padding: 104px 0; color: white; background: var(--blue-dark); }
.support .eyebrow { color: #7ed1ed; }
.support-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; }
.support-grid > div > p:last-child { color: #afc9d0; line-height: 1.7; }
.support-actions { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 19px; }
.support-actions .button { width: 100%; color: var(--ink); border-color: white; background: white; box-shadow: 5px 6px 0 var(--orange); }
.support-actions > a:not(.button) { color: #8fd7ef; font-weight: 700; }
.legal-note { padding: 36px 0; display: grid; grid-template-columns: 180px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.legal-note p { margin: 0; color: var(--muted); line-height: 1.6; }
footer { min-height: 105px; padding: 31px 0; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .84rem; }
footer p { margin: 0; }
footer div { display: flex; flex-wrap: wrap; gap: 20px; }
footer a { color: var(--muted); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }
@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 58px; padding-top: 66px; }
  .drawing-board { max-width: 640px; }
  .status-strip .wrap { grid-template-columns: 1fr 1fr; }
  .status-strip .wrap > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.18); }
  .status-strip .wrap > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .steps, .capability-grid { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .steps li:nth-child(4) { border-top: 1px solid var(--line); }
  .capability-grid .wide { grid-column: span 2; }
  .requirements, .support-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .wrap, .site-header { width: min(100% - 26px, 1180px); }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-actions, footer { flex-direction: column; }
  .button { width: 100%; }
  .drawing-board { transform: none; }
  .drawing-board figcaption { flex-direction: column; }
  .drawing-board figcaption span { text-align: left; }
  .status-strip .wrap, .steps, .capability-grid { grid-template-columns: 1fr; }
  .status-strip .wrap > div { border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .steps li, .steps li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .steps li:first-child { border-top: 0; }
  .capability-grid .wide { grid-column: auto; grid-template-columns: 1fr; }
  .capability-grid .wide > span { grid-column: auto; }
  .requirements li, .legal-note { grid-template-columns: 1fr; }
  footer div { flex-direction: column; }
}
