@font-face {
  font-family: "PP Model Sans";
  src: url("assets/fonts/PPModelSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --ink: #1a1a1a;
  --warm: #f2f1e5;
  --green: #405c5f;
  --yellow: #f0ff6f;
  --white: #ffffff;
  --muted: rgba(242, 241, 229, 0.72);
  --title: "PP Model Sans", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--warm);
  font-family: var(--body);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.concept {
  display: none;
  min-height: 100vh;
  background: var(--black);
}

.concept.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: scale(1.02);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 28px clamp(20px, 4vw, 64px);
}

.logo {
  display: inline-flex;
  width: clamp(118px, 12vw, 184px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-link,
.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  font-weight: 650;
}

.nav-link {
  padding: 0 18px;
  color: var(--warm);
  border: 1px solid rgba(242, 241, 229, 0.32);
  background: rgba(0, 0, 0, 0.22);
}

.nav-link-dark {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.3);
  background: rgba(242, 241, 229, 0.28);
}

.menu-button {
  position: relative;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(242, 241, 229, 0.32);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--warm);
}

.menu-button span:nth-child(1) {
  top: 13px;
}

.menu-button span:nth-child(2) {
  top: 20px;
}

.menu-button span:nth-child(3) {
  top: 27px;
}

.menu-dark {
  border-color: rgba(26, 26, 26, 0.34);
  background: rgba(242, 241, 229, 0.28);
}

.menu-dark span {
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--warm);
  font-family: var(--title);
}

.hero-copy p {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(44px, 7.2vw, 118px);
  line-height: 0.98;
}

.hero-copy-minimal {
  display: flex;
  align-items: flex-end;
  min-height: calc(88vh - 160px);
  padding: 0 clamp(22px, 5vw, 80px) 9vh;
  color: var(--ink);
}

.hero-copy-minimal p {
  min-width: 0;
  width: 100%;
  max-width: 860px;
  font-size: clamp(38px, 5vw, 76px);
}

.hero-minimal {
  min-height: 88vh;
}

.hero-minimal::after {
  background: rgba(242, 241, 229, 0.52);
}

.product-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-panel {
  min-height: 440px;
  padding: clamp(38px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.split-panel h2,
.trust-section h2,
.contact-section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--title);
  font-weight: 500;
}

.split-panel h2 {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
}

.split-panel p {
  margin: 0;
  max-width: 650px;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.26;
}

.eyebrow {
  margin: 0 0 16px;
  color: currentColor;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-button {
  width: fit-content;
  min-width: 92px;
  padding: 0 18px;
  border: 1px solid currentColor;
}

.split-minimal {
  padding: clamp(20px, 4vw, 56px);
  gap: 18px;
  background: var(--warm);
  color: var(--ink);
}

.split-minimal .split-panel {
  min-height: 360px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--green);
}

.trust-section {
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 76px);
}

.trust-section h2 {
  margin-bottom: clamp(28px, 4vw, 54px);
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.96;
}

.trust-list {
  display: grid;
  gap: 18px;
}

.trust-list p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  color: rgba(242, 241, 229, 0.78);
  line-height: 1.45;
}

.trust-list strong {
  display: block;
  margin: 0 0 16px;
  font-family: var(--title);
  font-size: 24px;
  font-weight: 500;
}

.trust-minimal {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  background: var(--warm);
  color: var(--ink);
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}

.trust-minimal .trust-list p {
  color: rgba(26, 26, 26, 0.78);
}

.primary-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
}

.jobs-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 54px) clamp(20px, 5vw, 76px);
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}

.jobs-section h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.jobs-section p {
  margin: 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: clamp(15px, 1.2vw, 18px);
}

.jobs-minimal {
  background: var(--warm);
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 76px);
  background: var(--black);
  color: var(--warm);
}

.contact-section h2 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
}

.contact-section p {
  max-width: 420px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.32;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(242, 241, 229, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.lead-form label:nth-child(5),
.lead-form .primary-button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form .form-honeypot {
  display: none;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 241, 229, 0.24);
  border-radius: 4px;
  background: rgba(242, 241, 229, 0.08);
  color: var(--warm);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--yellow);
  font-size: 14px;
}

.contact-minimal {
  background: var(--warm);
  color: var(--ink);
}

.contact-minimal .lead-form label {
  color: rgba(26, 26, 26, 0.72);
}

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

.contact-minimal input,
.contact-minimal textarea {
  border-color: rgba(26, 26, 26, 0.24);
  background: rgba(26, 26, 26, 0.04);
  color: var(--ink);
}

.trust-minimal h2,
.contact-minimal h2 {
  font-size: clamp(36px, 4.6vw, 70px);
}

@media (max-width: 900px) {
  .site-nav {
    min-height: 78px;
    padding: 20px;
  }

  .logo {
    width: 126px;
  }

  .nav-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-button {
    width: 40px;
    height: 38px;
  }

  .menu-button span {
    left: 10px;
  }

  .menu-button span:nth-child(1) {
    top: 11px;
  }

  .menu-button span:nth-child(2) {
    top: 18px;
  }

  .menu-button span:nth-child(3) {
    top: 25px;
  }

  .hero,
  .hero-minimal {
    min-height: 82vh;
  }

  .hero-copy-minimal {
    min-height: calc(82vh - 78px);
    padding: 0 20px 42px;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: left;
  }

  .hero-copy-minimal p {
    flex: 0 1 calc(100vw - 40px);
    width: calc(100vw - 40px);
  }

  .hero-copy p,
  .hero-copy-minimal p {
    font-size: clamp(36px, 11vw, 58px);
    line-height: 0.98;
  }

  .product-split,
  .trust-minimal,
  .contact-section,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .jobs-section {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .split-panel {
    min-height: 360px;
    padding: 34px 20px;
  }

  .contact-section,
  .trust-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .nav-actions {
    gap: 6px;
  }

  .hero-copy p,
  .hero-copy-minimal p {
    font-size: 36px;
  }

  .split-panel h2,
  .trust-section h2,
  .contact-section h2 {
    font-size: 40px;
  }
}
