:root {
  --ink: #171916;
  --panel: #20251f;
  --paper: #f8f6ef;
  --mist: #e8e8de;
  --grid: #d3d3c6;
  --acid: #c8ff46;
  --clay: #be6e43;
  --blue: #355d70;
  --white: #ffffff;
  --line: rgba(23, 25, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(23, 25, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 22, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 246, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 248px;
  height: auto;
  max-height: 58px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(23, 25, 22, 0.62);
  font-size: 9px;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a,
.language {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  color: var(--ink);
  background: transparent;
  font: 800 12px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

nav a:hover,
.language:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.nav-cta {
  background: var(--acid);
  border-color: rgba(23, 25, 22, 0.22);
}

.menu-button {
  display: none;
}

.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.92) 0%, rgba(23, 25, 22, 0.72) 42%, rgba(23, 25, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(23, 25, 22, 0.72) 0%, rgba(23, 25, 22, 0.03) 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 160px) 0 150px;
}

.eyebrow,
.section-kicker p,
.address-strip span,
.facts span,
.system-grid span,
.board-row span,
.workflow-track span {
  margin: 0;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--acid);
}

h1,
h2,
h3,
p,
strong {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  font-size: clamp(48px, 8.5vw, 118px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 66px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button-light {
  align-self: start;
  background: var(--acid);
  color: var(--ink);
}

.address-strip {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(23, 25, 22, 0.78);
  backdrop-filter: blur(14px);
}

.address-strip div {
  min-height: 86px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  align-content: center;
  gap: 8px;
}

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

.address-strip span {
  color: var(--acid);
}

.address-strip strong {
  color: var(--white);
  font-size: 17px;
}

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

.facts p {
  min-height: 105px;
  margin: 0;
  padding: 24px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 8px;
}

.facts p:last-child {
  border-right: 0;
}

.facts span {
  color: var(--clay);
}

.facts strong {
  font-size: 18px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.section-kicker span {
  color: var(--clay);
  font-weight: 900;
}

.section-kicker p {
  color: rgba(23, 25, 22, 0.62);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.section-intro p,
.company-band p,
.console-copy > p,
.contact-copy > p {
  margin: 0;
  color: rgba(23, 25, 22, 0.68);
}

.system-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.system-grid article {
  min-height: 285px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  display: grid;
  align-content: start;
  gap: 20px;
}

.system-grid article:last-child {
  border-right: 0;
}

.system-grid span {
  color: var(--clay);
}

.system-grid p {
  margin: 0;
  color: rgba(23, 25, 22, 0.66);
  font-size: 14px;
}

.pm-console {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  background: var(--panel);
  color: var(--white);
}

.pm-console .section-kicker p,
.pm-console .section-kicker span {
  color: var(--acid);
}

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

.console-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 22px 22px;
}

.board-row {
  min-height: 104px;
  padding: 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row span {
  color: var(--acid);
}

.board-row strong {
  color: var(--white);
  font-size: 18px;
}

.board-row em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.workflow {
  background: var(--mist);
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}

.workflow-track article {
  min-height: 300px;
  padding: 26px 24px;
  border-right: 1px solid rgba(23, 25, 22, 0.18);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

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

.workflow-track span {
  color: var(--blue);
}

.workflow-track h3 {
  align-self: end;
  font-size: 26px;
}

.workflow-track p {
  margin: 0;
  color: rgba(23, 25, 22, 0.68);
  font-size: 14px;
}

.company-band {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.company-band .eyebrow {
  color: var(--clay);
}

.company-band p + p {
  margin-top: 18px;
}

.contact {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 84px);
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--acid);
}

.contact h2 {
  margin-top: 16px;
}

.contact-copy > p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.contact-details p {
  margin: 0 0 10px;
}

.contact-details strong {
  color: var(--white);
}

form {
  display: grid;
  gap: 14px;
  align-self: start;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: 16px inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--acid);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

footer {
  padding: 26px clamp(20px, 6vw, 88px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(23, 25, 22, 0.62);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1060px) {
  nav {
    gap: 4px;
  }

  nav a,
  .language {
    padding: 0 9px;
  }

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

  .system-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

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

  nav.open {
    display: flex;
  }

  nav a,
  .language {
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 10px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .language {
    align-self: flex-start;
    min-height: 38px;
    margin-top: 8px;
    border-color: var(--line);
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-top: 94px;
    padding-bottom: 230px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 25, 22, 0.9), rgba(23, 25, 22, 0.52)),
      linear-gradient(0deg, rgba(23, 25, 22, 0.92) 0%, rgba(23, 25, 22, 0.12) 62%);
  }

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

  .address-strip div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .address-strip div:last-child {
    border-bottom: 0;
  }

  .facts,
  .section-intro,
  .pm-console,
  .company-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .facts p {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-row {
    grid-template-columns: 38px 1fr;
  }

  .board-row em {
    grid-column: 2;
    text-align: left;
  }

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

  footer p {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 0 14px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand-logo {
    width: 190px;
    max-height: 48px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
  }

  .eyebrow {
    max-width: 320px;
    font-size: 10px;
    line-height: 1.35;
  }

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

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

  .system-grid article,
  .workflow-track article {
    min-height: 220px;
    border-right: 0;
  }

  .workflow-track article {
    grid-template-rows: auto auto auto;
  }
}
