:root {
  --ink: #17201b;
  --muted: #5b665f;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: rgba(23, 32, 27, 0.13);
  --green: #275b49;
  --green-strong: #173d31;
  --clay: #bd5b3f;
  --gold: #d2a84f;
  --sky: #e7f0f1;
  --shadow: 0 22px 60px rgba(23, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  height: 74px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand-logo {
  height: 38px;
  object-fit: contain;
  width: 92px;
}

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

.site-nav a {
  color: rgba(23, 32, 27, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 22px;
}

.hero {
  align-items: end;
  color: var(--white);
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 54px;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 20, 16, 0.88) 0%, rgba(11, 20, 16, 0.68) 37%, rgba(11, 20, 16, 0.16) 76%),
    linear-gradient(0deg, rgba(11, 20, 16, 0.68) 0%, rgba(11, 20, 16, 0) 42%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b26d;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 720px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 42px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.button-primary {
  background: var(--clay);
  color: var(--white);
}

.button-primary:hover {
  background: #a94e36;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

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

.hero-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  margin: 0;
  max-width: 680px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.hero-stats div:first-child {
  border-radius: 8px 0 0 8px;
}

.hero-stats div:last-child {
  border-radius: 0 8px 8px 0;
}

.hero-stats dt {
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 166px clamp(18px, 5vw, 72px) 86px;
}

.page-hero .eyebrow {
  color: #f3be72;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 980px;
}

.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin-bottom: 0;
  max-width: 760px;
}

.about-hero {
  background: #243f42;
}

.contact-hero {
  background: var(--ink);
}

.how-hero {
  background: #243f42;
}

.intro {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.intro p:last-child,
.quality-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}

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

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

.difference-grid article {
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.1);
  min-height: 300px;
  padding: 24px;
}

.difference-grid span {
  color: var(--clay);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 52px;
}

.difference-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
  max-width: 860px;
}

.role-builder-section {
  background: #e9ede4;
}

.role-builder {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.72fr);
}

.builder-controls,
.builder-result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.builder-controls {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.choice-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice {
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.16);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 46px;
  padding: 10px 12px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.choice:hover,
.choice.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.builder-result {
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 34px);
}

.result-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.builder-result h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 16px;
}

.builder-result p:not(.result-label) {
  color: var(--muted);
}

.result-meta {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.result-meta div {
  padding: 16px 0;
}

.result-meta span,
.result-meta strong {
  display: block;
}

.result-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.result-meta strong {
  font-size: 1rem;
}

.result-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 18px;
}

.builder-result .button {
  margin-top: auto;
  width: 100%;
}

.solution-tabs {
  display: grid;
  gap: 16px;
}

.solution-tab-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.solution-tab {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 54px;
  padding: 12px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.solution-tab:hover,
.solution-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.solution-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  min-height: 430px;
  padding: clamp(22px, 4vw, 34px);
}

.solution-panel-copy {
  display: flex;
  flex-direction: column;
}

.solution-panel h3 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.solution-panel-copy p:not(.result-label) {
  color: var(--muted);
  font-size: 1.08rem;
}

.solution-panel .button {
  margin-top: auto;
  width: max-content;
}

.solution-panel-details {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-panel-details div {
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: 8px;
  min-height: 170px;
  padding: 18px;
}

.solution-panel-details span {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.solution-panel-details ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.process-list p,
.quality-grid span,
.contact-note {
  color: var(--muted);
  margin-bottom: 0;
}

.process,
.hiring-timeline-section {
  background: #e9ede4;
}

.hiring-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 1fr);
}

.timeline-tabs {
  display: grid;
  gap: 10px;
}

.timeline-tab {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 800;
  gap: 14px;
  min-height: 72px;
  padding: 16px;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.timeline-tab:hover,
.timeline-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.timeline-tab span {
  align-items: center;
  background: rgba(23, 32, 27, 0.08);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.timeline-tab.is-active span,
.timeline-tab:hover span {
  background: rgba(255, 255, 255, 0.14);
}

.timeline-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1fr);
  min-height: 366px;
  padding: clamp(22px, 4vw, 34px);
}

.timeline-panel h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.timeline-panel p:not(.result-label) {
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline-detail-grid {
  display: grid;
  gap: 12px;
}

.timeline-detail-grid div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.timeline-detail-grid span {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.timeline-detail-grid ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.timeline-detail-grid strong {
  display: block;
  font-size: 1.05rem;
}

.timeline-slider-section {
  background: #e9ede4;
}

.workflow-board {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-column {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  min-height: 430px;
  padding: 16px;
}

.board-column-head {
  align-items: center;
  display: flex;
  gap: 10px;
}

.board-column-head span {
  align-items: center;
  background: #e9ede4;
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  flex: 0 0 38px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
}

.board-column-head h3 {
  margin-bottom: 0;
}

.board-column p {
  color: var(--muted);
  margin-bottom: 0;
}

.board-detail {
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.board-detail span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-detail ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.board-deliverable {
  border-left: 3px solid var(--gold);
  color: var(--green);
  display: block;
  margin-top: auto;
  padding-left: 12px;
}

.timeline-slider {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.6fr) minmax(300px, 1fr);
  padding: clamp(22px, 4vw, 34px);
}

.timeline-slider input[type="range"] {
  accent-color: var(--green);
  padding: 0;
}

.slider-output {
  border-left: 4px solid var(--gold);
  padding-left: 22px;
}

.slider-output span {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slider-output h3 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.slider-output p {
  color: var(--muted);
  margin-bottom: 0;
}

.launch-checklist {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-width: 880px;
  padding: clamp(22px, 4vw, 34px);
}

.launch-checklist label {
  align-items: center;
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: 8px;
  display: flex;
  font-size: 1rem;
  justify-content: flex-start;
  min-height: 54px;
  padding: 12px 14px;
}

.launch-checklist input {
  accent-color: var(--green);
  min-height: auto;
  width: auto;
}

.checklist-progress {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.checklist-progress > span {
  color: var(--green);
  font-weight: 800;
}

.checklist-progress div {
  background: #e9ede4;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.checklist-progress div span {
  background: var(--green);
  display: block;
  height: 100%;
  transition: width 160ms ease;
  width: 0;
}

.process-list {
  border-top: 1px solid rgba(23, 32, 27, 0.16);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-list article {
  border-right: 1px solid rgba(23, 32, 27, 0.16);
  min-height: 260px;
  padding: 28px 28px 0 0;
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--clay);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 46px;
}

.role-section {
  padding-top: clamp(58px, 8vw, 96px);
}

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

.role-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 80px minmax(0, 1fr);
  padding: 34px 0;
}

.role-list span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.role-list h2 {
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.role-list p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 760px;
}

.quality {
  align-items: start;
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
}

.quality .eyebrow {
  color: #f3be72;
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

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

.quality-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 172px;
  padding: 24px;
}

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid strong {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.quality-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.contact {
  align-items: start;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.75fr);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p {
  margin-top: 24px;
}

.contact-note {
  border-left: 4px solid var(--gold);
  margin-top: 34px;
  padding-left: 18px;
}

.contact-note strong {
  color: var(--ink);
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfaf7;
  border: 1px solid rgba(23, 32, 27, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(39, 91, 73, 0.12);
  outline: 0;
}

.lead-form .button {
  width: 100%;
}

.form-status {
  color: var(--green);
  font-weight: 700;
  margin: 0;
  min-height: 24px;
}

.cta-band {
  align-items: center;
  background: #e9ede4;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band .button {
  flex: 0 0 auto;
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  padding: 54px clamp(18px, 5vw, 72px) 26px;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.footer-main {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
}

.footer-main > div {
  align-content: start;
  display: grid;
  gap: 10px;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand p,
.site-footer p {
  margin-bottom: 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  margin-top: 18px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-trust {
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: 20px;
  padding-left: 14px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .role-builder,
  .solution-panel,
  .hiring-timeline,
  .timeline-panel,
  .workflow-board,
  .timeline-slider,
  .footer-main,
  .difference-grid,
  .process-list,
  .intro,
  .quality,
  .cta-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-tab-list,
  .choice-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list article {
    border-bottom: 1px solid rgba(23, 32, 27, 0.16);
    border-right: 0;
    min-height: auto;
    padding: 28px 0;
  }

  .timeline-panel {
    min-height: auto;
  }

  .process-list article:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 24px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 66px;
  }

  .brand-logo {
    height: 34px;
    width: 82px;
  }

  .section {
    padding: 46px 20px;
  }

  .page-hero {
    padding: 118px 20px 56px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 18px 20px;
    position: absolute;
    right: 0;
    top: 66px;
  }

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

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 28px;
    padding-top: 112px;
  }

  .hero img {
    object-position: 61% center;
  }

  .hero-stats,
  .solution-tab-list,
  .solution-panel,
  .solution-panel-details,
  .choice-grid,
  .choice-grid.three-up,
  .result-meta,
  .timeline-panel,
  .timeline-slider,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .timeline-tab {
    min-height: 64px;
  }

  .solution-panel .button {
    width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats div,
  .hero-stats div:first-child,
  .hero-stats div:last-child {
    border-radius: 8px;
  }

  .role-list article {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.85rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
