:root {
  --ink: #0d1826;
  --ink-soft: #172638;
  --steel: #5e7288;
  --line: #d6dde4;
  --paper: #f4f6f7;
  --white: #ffffff;
  --signal: #f0a128;
  --signal-dark: #c97800;
  --blue: #173957;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

::selection {
  background: var(--signal);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(13, 24, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 84px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: var(--signal);
  color: var(--ink);
  display: inline-flex;
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 50px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-copy span {
  color: #aab6c2;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: #cbd3db;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}

.desktop-nav a::after {
  background: var(--signal);
  bottom: -9px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--signal);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 750;
  gap: 9px;
  justify-self: end;
  padding: 11px 17px;
}

.header-cta svg {
  height: 16px;
  width: 16px;
}

.hero {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  min-height: calc(100vh - 84px);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 68%);
  position: absolute;
}

.hero-copy {
  align-self: center;
  max-width: none;
  padding: 90px clamp(40px, 4vw, 90px) 165px max(6vw, 64px);
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  color: var(--signal-dark);
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  color: #d0d8df;
  display: flex;
  gap: 12px;
}

.eyebrow span {
  background: var(--signal);
  height: 2px;
  width: 35px;
}

h1,
h2,
h3 {
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  line-height: 1.03;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 4.6vw, 6rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  max-width: 1050px;
  text-wrap: balance;
}

h1 em {
  color: var(--signal);
  display: block;
  font-style: normal;
  font-weight: 420;
}

.hero-lede {
  color: #cbd3db;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.62;
  margin: 34px 0 0;
  max-width: 665px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  height: 18px;
  width: 18px;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffb13b;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-note {
  align-items: center;
  color: #9fadb9;
  display: flex;
  font-size: 0.84rem;
  gap: 9px;
  margin: 22px 0 0;
}

.hero-note svg {
  color: var(--signal);
  height: 16px;
  width: 16px;
}

.machine-figure {
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.machine-figure img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
}

.image-shade {
  background: linear-gradient(90deg, var(--ink) 0%, rgba(13, 24, 38, 0.18) 37%, rgba(13, 24, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 24, 38, 0.72) 0%, transparent 42%);
  inset: 0;
  position: absolute;
}

.machine-label {
  background: rgba(13, 24, 38, 0.86);
  border-left: 3px solid var(--signal);
  display: flex;
  flex-direction: column;
  padding: 14px 17px;
  position: absolute;
}

.machine-label span,
.panel-head span {
  color: #9fadb9;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.machine-label strong {
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 550;
}

.label-top {
  right: 5vw;
  top: 13%;
}

.label-bottom {
  bottom: 16%;
  left: 5%;
}

.machine-figure figcaption {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  position: absolute;
  right: 24px;
}

.experience-strip {
  align-items: stretch;
  background: rgba(8, 16, 25, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  bottom: 0;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.experience-strip div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 17px;
  min-height: 112px;
  padding: 22px 3vw;
}

.experience-strip div:last-child {
  border-right: 0;
}

.experience-strip strong {
  color: var(--signal);
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  line-height: 1;
  white-space: nowrap;
}

.experience-strip span {
  color: #aeb9c3;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 145px;
}

.section {
  padding: 120px 6vw;
}

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

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

.section-heading h2,
.calculation-copy h2,
.about-identity h2,
.contact-section h2 {
  font-size: clamp(2.65rem, 5vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

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

.split-heading > p {
  border-left: 2px solid var(--signal);
  color: var(--steel);
  margin: 0 0 5px;
  max-width: 485px;
  padding-left: 22px;
}

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

.problem-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: 30px;
  position: relative;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.problem-card:hover {
  background: var(--ink-soft);
  color: var(--white);
  transform: translateY(-4px);
}

.problem-card > span {
  color: var(--signal-dark);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.problem-card h3 {
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin-top: 55px;
}

.problem-card p {
  color: var(--steel);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 18px 0 0;
}

.problem-card:hover p {
  color: #bdc8d1;
}

.problem-card svg,
.problem-card > b {
  bottom: 27px;
  color: var(--signal-dark);
  height: 22px;
  position: absolute;
  right: 27px;
  text-decoration: none;
  width: 22px;
}

.calculation-section {
  background: var(--ink-soft);
  color: var(--white);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.76fr) minmax(480px, 1.24fr);
  padding: 120px 6vw;
}

.kicker-dark {
  color: var(--signal);
}

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

.calculation-copy > p:not(.kicker) {
  color: #bbc5ce;
  max-width: 570px;
}

.calculation-copy > p:nth-of-type(2) {
  font-size: 1.05rem;
  margin-top: 34px;
}

.calculation-panel {
  align-self: center;
  background: #0a1420;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 16px 16px 0 rgba(240, 161, 40, 0.12);
  padding: 35px;
}

.calculator-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.calculator-grid label {
  background: #111f2e;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}

.calculator-grid label:focus-within {
  background: #15273a;
  border-color: var(--signal);
}

.calculator-grid label > span {
  color: #a7b4c0;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.calculator-grid input {
  appearance: textfield;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #526477;
  border-radius: 0;
  color: var(--white);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: 650;
  min-width: 0;
  outline: 0;
  padding: 3px 0 7px;
  width: 100%;
}

.calculator-grid input:focus {
  border-bottom-color: var(--signal);
}

.calculator-grid input::-webkit-outer-spin-button,
.calculator-grid input::-webkit-inner-spin-button {
  margin: 0;
}

.rate-field {
  grid-column: 2 / 3;
}

.capacity-result {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 28px;
  padding: 29px 0 25px;
}

.capacity-result > span {
  color: var(--signal);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.capacity-result > strong {
  color: var(--white);
  display: block;
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 6.3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-top: 8px;
}

.capacity-result p {
  color: #a9b7c4;
  margin: 13px 0 0;
}

.capacity-result p b {
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
}

.result-breakdown {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1px;
}

.result-breakdown div {
  background: #111f2e;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
}

.result-breakdown span {
  color: #8798a8;
  font-size: 0.72rem;
}

.result-breakdown strong {
  color: #dce4eb;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.9rem;
}

.calculation-panel > .capacity-caveat {
  color: #9aabba;
  font-size: 0.76rem;
  line-height: 1.55;
  margin-top: 20px;
}

.capacity-caveat strong {
  color: var(--white);
}

.panel-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.panel-head span:last-child {
  color: var(--signal);
}

.time-row {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  padding: 42px 0 30px;
}

.time-row div:not(.time-line) {
  display: flex;
  flex-direction: column;
}

.time-row span,
.result-row span,
.formula span {
  color: #94a3b2;
  font-size: 0.78rem;
}

.time-row strong {
  font-family: Consolas, 'Courier New', monospace;
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  font-weight: 500;
}

.time-line {
  height: 33px;
  position: relative;
}

.time-line::after {
  background: var(--signal);
  content: '';
  height: 8px;
  position: absolute;
  right: 0;
  top: 17px;
  transform: rotate(45deg);
  width: 8px;
}

.time-line-old,
.time-line-new {
  left: 0;
  position: absolute;
}

.time-line-old {
  border-top: 1px solid #536579;
  right: 0;
  top: 20px;
}

.time-line-new {
  background: var(--signal);
  height: 3px;
  right: 0;
  top: 19px;
}

.result-row,
.formula {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.result-row strong {
  color: var(--signal);
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.45rem;
}

.formula {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.formula strong {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 500;
}

.calculation-panel > p {
  color: #7f91a2;
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 12px 0 0;
}

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

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

.method-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 70px minmax(0, 1fr) 150px;
  padding: 34px 8px;
}

.step-number {
  color: var(--signal-dark);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.82rem;
  padding-top: 7px;
}

.method-row h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.method-row p {
  color: var(--steel);
  margin: 12px 0 0;
  max-width: 720px;
}

.method-row > strong {
  background: var(--paper);
  color: var(--ink-soft);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.82rem;
  font-weight: 650;
  justify-self: end;
  padding: 9px 12px;
}

.method-featured {
  background: #f5ead7;
  border-left: 4px solid var(--signal);
  padding-left: 22px;
}

.offer-section {
  background: var(--signal);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  padding: 105px 6vw;
}

.offer-section .kicker {
  color: #684100;
}

.offer-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.offer-copy h2 span {
  border-bottom: 5px solid var(--ink);
}

.offer-terms {
  align-self: end;
}

.challenge-rule {
  align-items: center;
  border-top: 1px solid rgba(13, 24, 38, 0.34);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 17px 0;
}

.challenge-rule span {
  font-size: 0.9rem;
}

.challenge-rule strong {
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  text-align: right;
}

.offer-terms .challenge-purpose {
  border-bottom: 1px solid rgba(13, 24, 38, 0.34);
  font-weight: 650;
}

.offer-terms p {
  border-top: 1px solid rgba(13, 24, 38, 0.34);
  font-size: 1.02rem;
  margin: 0;
  padding: 18px 0;
}

.offer-terms p strong {
  font-size: 1.28rem;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  margin-top: 19px;
}

.text-link svg {
  height: 19px;
  transition: transform 180ms ease;
  width: 19px;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.offer-terms small {
  display: block;
  font-size: 0.73rem;
  line-height: 1.5;
  margin-top: 25px;
  max-width: 480px;
  opacity: 0.67;
}

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

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

.scope-grid div {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 175px;
  padding: 24px;
}

.scope-grid span {
  color: var(--signal-dark);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.73rem;
}

.scope-grid strong {
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 620;
}

.about-section {
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  padding: 120px 6vw;
}

.about-identity {
  align-items: center;
  display: flex;
  gap: 28px;
}

.initials {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--signal);
  display: flex;
  flex: 0 0 105px;
  font-family: Bahnschrift, 'Arial Narrow', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  height: 130px;
  justify-content: center;
  position: relative;
}

.initials::before,
.initials::after {
  background: var(--signal);
  content: '';
  height: 8px;
  position: absolute;
  width: 8px;
}

.initials::before {
  left: -4px;
  top: -4px;
}

.initials::after {
  bottom: -4px;
  right: -4px;
}

.about-identity h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.about-identity > div:last-child > p:last-child {
  color: #a9b8c6;
  margin: 10px 0 0;
}

.about-lede {
  color: var(--white) !important;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.4;
  margin-top: 0 !important;
}

.about-copy > p {
  color: #bdc9d4;
  max-width: 760px;
}

.country-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.025em;
  margin: 27px 0;
  padding: 14px 0;
}

.confidentiality-note {
  border-left: 3px solid var(--signal);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 34px;
  padding: 8px 0 8px 20px;
}

.confidentiality-note span {
  color: #9fb0bf;
  font-size: 0.88rem;
}

.contact-section {
  align-items: start;
  background: #09121d;
  color: var(--white);
  display: grid;
  gap: clamp(55px, 6vw, 100px);
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  padding: 120px 6vw;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-copy > p:not(.kicker) {
  color: #aebbc6;
  font-size: 1.06rem;
  max-width: 660px;
}

.contact-actions {
  margin-top: 34px;
}

.contact-direct {
  font-size: 0.88rem !important;
  margin-top: 20px;
}

.contact-direct a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-underline-offset: 4px;
}

.contact-form {
  background: #0f2031;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 14px 14px 0 rgba(244, 160, 28, 0.12);
  max-width: 650px;
  padding: clamp(28px, 4vw, 46px);
  width: 100%;
}

.contact-form-heading h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  margin: 8px 0 10px;
}

.contact-form-heading > p:last-child {
  color: #9fb0bf;
  margin: 0 0 30px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: #d7e0e7;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form label small {
  color: #8296a7;
  font-size: 0.75rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background: #091522;
  border: 1px solid #526576;
  border-radius: 0;
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(244, 160, 28, 0.18);
  outline: 0;
}

.contact-form textarea::placeholder {
  color: #708496;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-honeypot {
  left: -10000px;
  position: absolute;
  top: auto;
}

.contact-form-footer {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.contact-form-footer .button {
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.contact-form-footer .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form-footer p {
  color: #8296a7;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}

.contact-form-status {
  font-size: 0.88rem;
  margin: 18px 0 0;
  min-height: 1.4em;
}

.contact-form-status[data-state='success'] {
  color: #8dd6aa;
}

.contact-form-status[data-state='error'] {
  color: #ffb2a7;
}

.contact-form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button-secondary-light {
  border: 1px solid #667787;
  color: var(--white);
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  border-color: var(--white);
}

footer {
  align-items: center;
  background: #050c13;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--white);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 38px 6vw;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 15px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 0.85rem;
}

.footer-brand span:not(.brand-mark) {
  color: #81919f;
  font-size: 0.76rem;
}

.legal-copy {
  color: #82919f;
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  text-align: right;
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 85px;
  }

  .machine-figure {
    min-height: 520px;
  }

  .experience-strip {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }

  .experience-strip div:nth-child(2) {
    border-right: 0;
  }

  .experience-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .calculation-section,
  .offer-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .calculation-panel {
    max-width: 780px;
  }

  .about-identity {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    height: 36px;
    width: 46px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero-copy,
  .section,
  .calculation-section,
  .offer-section,
  .about-section,
  .contact-section {
    padding-left: 21px;
    padding-right: 21px;
  }

  .hero-copy {
    padding-bottom: 65px;
    padding-top: 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-message-field {
    grid-column: auto;
  }

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

  .machine-figure {
    min-height: 430px;
  }

  .machine-figure figcaption {
    left: 16px;
    right: auto;
  }

  .machine-label {
    padding: 10px 12px;
  }

  .label-top {
    right: 15px;
  }

  .label-bottom {
    bottom: 75px;
    left: 15px;
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .experience-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    min-height: 90px;
    padding: 18px 21px;
  }

  .section,
  .calculation-section,
  .offer-section,
  .about-section,
  .contact-section {
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .split-heading {
    align-items: start;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 285px;
  }

  .time-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .rate-field {
    grid-column: auto;
  }

  .result-breakdown {
    grid-template-columns: 1fr;
  }

  .capacity-result > strong {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .challenge-rule {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .challenge-rule strong {
    text-align: left;
  }

  .time-line {
    display: none;
  }

  .result-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .method-row {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .method-row > strong {
    grid-column: 2;
    justify-self: start;
  }

  .about-identity {
    flex-direction: column;
  }

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

  .legal-copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculation-panel {
    padding: 22px 18px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .capacity-result > strong {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .contact-section .button {
    overflow-wrap: anywhere;
  }
}

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

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