:root {
  --paper: #f1eee6;
  --ink: #17231f;
  --muted: #6c766e;
  --line: rgba(23, 35, 31, 0.16);
  --orange: #db5f3f;
  --blue: #27546b;
  --soft-blue: #dbe6e6;
  --white: #fbfaf6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(rgba(23, 35, 31, 0.28) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  letter-spacing: -0.1em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(219, 95, 63, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 9vw, 120px);
  align-items: end;
  padding: clamp(72px, 12vw, 150px) 0 128px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.91;
}

.hero-text {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary span {
  color: #f6a48f;
  font-size: 1.1rem;
  line-height: 0;
}

.micro-note {
  max-width: 175px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  line-height: 1.45;
}

.status-card {
  position: relative;
  padding: 24px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 16px 16px 0 rgba(39, 84, 107, 0.17);
}

.status-card::before {
  position: absolute;
  top: -12px;
  right: 22px;
  width: 48px;
  height: 24px;
  content: "";
  background: var(--orange);
  transform: rotate(4deg);
}

.card-heading,
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.24);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-code {
  color: #a6c5c8;
}

.status-list {
  padding: 8px 0;
}

.status-row {
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 250, 246, 0.13);
  color: #d0dedc;
  font-size: 0.86rem;
}

.status-row strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.status-footnote {
  margin: 22px 0 0;
  color: #a6c5c8;
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  line-height: 1.5;
}

.workflow {
  padding: 0 0 110px;
}

.section-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

h2 {
  max-width: 450px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
  text-align: right;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.workflow-card {
  min-height: 230px;
  padding: 26px 22px 28px 0;
  border-right: 1px solid var(--line);
}

.workflow-card + .workflow-card {
  padding-left: 22px;
}

.workflow-card:last-child {
  border-right: 0;
}

.workflow-card-accent {
  background: var(--soft-blue);
}

.step-number {
  display: block;
  margin-bottom: 50px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.workflow-card p {
  max-width: 210px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .status-card {
    max-width: 420px;
  }

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

  .workflow-card:nth-child(2) {
    border-right: 0;
  }

  .workflow-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 20px 0;
  }

  .status-pill {
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .section-intro {
    display: block;
  }

  h2 {
    margin-top: 24px;
    text-align: left;
  }

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

  .workflow-card,
  .workflow-card + .workflow-card {
    min-height: 0;
    padding: 22px 0 26px;
    border-right: 0;
  }

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

  .step-number {
    margin-bottom: 28px;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
  }

  .site-footer span + span {
    margin-top: 8px;
  }
}
