:root {
  --ink: #071525;
  --ink-soft: #394552;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --line: #d7dfe5;
  --blue: #087fca;
  --blue-dark: #043d78;
  --cyan: #19b9e7;
  --yellow: #ffd400;
  --green: #19a463;
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms);
}

.reveal-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: 142px;
  height: 52px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 3px;
}

.wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  border-bottom: 2px solid transparent;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  border-color: var(--yellow);
}

.language-link {
  padding-left: 20px;
  border-left: 1px solid currentColor;
}

.nav-cta {
  padding: 9px 15px;
  color: var(--paper);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #118153;
  border-color: #118153;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  color: var(--paper);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("/assets/images/hero-factory-02.jpg");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-settle 1400ms cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes hero-settle {
  from { opacity: .65; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 15, 29, 0.96) 0%, rgba(4, 18, 34, 0.78) 51%, rgba(4, 18, 34, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 18, 34, 0.5), transparent 44%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-top: 160px;
  padding-bottom: 104px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow.light {
  color: var(--yellow);
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 900;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: #e4e9ec;
  font-size: 19px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .13em;
}

.hero .eyebrow::before {
  width: 36px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: #111820;
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e8bf00;
  border-color: #e8bf00;
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-trust span::before {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.proof-bar {
  color: var(--paper);
  background: var(--blue);
}

.factory-proof {
  padding: 110px 0 118px;
  color: var(--paper);
  background: #071525;
  overflow: hidden;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.proof-heading h2 {
  margin-bottom: 0;
}

.proof-heading > p {
  margin-bottom: 5px;
  color: #aebdca;
  font-size: 17px;
}

.proof-reel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(calc(100% - 40px), 1500px);
  margin-inline: auto;
}

.proof-shot {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #12283c;
}

.proof-video-button {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--paper);
  background: #12283c;
  border: 0;
  cursor: pointer;
}

.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
  transition: transform 500ms ease, filter 500ms ease;
}

.proof-shot:hover img,
.proof-video-button:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  padding-left: 4px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .32);
  font-size: 22px;
  opacity: .94;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.proof-video-button:hover .play-mark,
.proof-video-button:focus-visible .play-mark {
  background: var(--paper);
  transform: translate(-50%, -50%) scale(1.08);
}

.proof-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 42px 18px 17px;
  background: linear-gradient(transparent, rgba(3, 12, 22, .92));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  pointer-events: none;
}

.proof-shot figcaption span {
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.video-dialog {
  width: min(calc(100% - 32px), 760px);
  padding: 0;
  color: var(--paper);
  background: #050d15;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.video-dialog::backdrop {
  background: rgba(2, 8, 14, .86);
  backdrop-filter: blur(5px);
}

.video-dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 10px 12px 10px 20px;
}

.video-dialog-bar strong {
  font-size: 15px;
}

.video-dialog-bar button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid #53606b;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  place-items: center;
}

.video-dialog video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  background: #000;
}

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

.proof-grid > div {
  min-height: 138px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

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

.proof-grid strong {
  font-size: 32px;
  line-height: 1.2;
}

.proof-grid span {
  margin-top: 5px;
  color: #dcecff;
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

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

.split-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-name {
  margin-bottom: 0;
  color: #64717c;
  font-size: 13px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability {
  position: relative;
  min-height: 280px;
  padding: 34px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.capability::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.capability:hover {
  z-index: 1;
  box-shadow: 0 22px 54px rgba(7, 21, 37, .12);
  transform: translateY(-5px);
}

.capability:hover::before {
  transform: scaleX(1);
}

.build-showcase {
  padding-top: 32px;
  background: var(--paper);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: 72px;
  align-items: center;
}

.showcase-copy {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-top: 40px;
}

.showcase-copy h2 {
  font-size: clamp(38px, 4.8vw, 60px);
}

.showcase-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.showcase-item {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: #dfe8ed;
  border-radius: 6px;
}

.showcase-item-main {
  grid-row: 1 / 3;
  min-height: 540px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.showcase-item-main img {
  object-position: 52% center;
}

.showcase-item:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.showcase-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 48px 18px 16px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(3, 14, 25, .9));
  font-size: 13px;
  font-weight: 800;
}

.showcase-item figcaption span {
  color: var(--yellow);
}

.capability-number {
  display: inline-block;
  margin-bottom: 62px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.capability p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process-section {
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 55px rgba(7, 21, 37, .07);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.process-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: filter 500ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.process-card:hover {
  box-shadow: 0 28px 70px rgba(7, 21, 37, .14);
  transform: translateY(-6px);
}

.process-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.process-copy {
  padding: 28px 30px 32px;
}

.process-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.custom-section {
  border-bottom: 1px solid var(--line);
}

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

.custom-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.custom-list span {
  color: var(--blue);
  font-weight: 900;
}

.custom-list p {
  margin: 0;
  color: var(--ink-soft);
}

.factory-section {
  color: var(--paper);
  background: var(--ink);
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 76px;
  align-items: center;
}

.factory-copy h2 {
  max-width: 600px;
}

.steps {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: production-step;
}

.steps li {
  position: relative;
  padding: 0 0 22px 52px;
  counter-increment: production-step;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  content: counter(production-step);
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.steps li::after {
  position: absolute;
  top: 36px;
  bottom: 3px;
  left: 15px;
  width: 1px;
  background: #4a535d;
  content: "";
}

.steps li:last-child::after {
  display: none;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 3px;
  color: #b9c1c8;
  font-size: 14px;
}

.factory-media {
  position: relative;
  padding: 0 0 46px 46px;
}

.factory-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.capacity-note {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 230px;
  padding: 24px 28px;
  color: var(--ink);
  background: var(--yellow);
}

.capacity-note strong,
.capacity-note span {
  display: block;
}

.capacity-note strong {
  font-size: 36px;
  line-height: 1.1;
}

.capacity-note span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.sample-section {
  padding: 88px 0;
  text-align: center;
  background: var(--yellow);
}

.sample-inner {
  max-width: 850px;
}

.sample-inner .eyebrow {
  color: #745f00;
}

.sample-inner h2 {
  font-size: clamp(32px, 4.2vw, 52px);
}

.sample-inner p:not(.eyebrow) {
  color: #3d3a2b;
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--blue);
  content: "+";
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 680px;
  margin: 14px 45px 0 0;
  color: var(--ink-soft);
}

.contact-section {
  padding: 112px 0;
  color: var(--paper);
  background: var(--blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1fr);
  gap: 80px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-copy > p:not(.eyebrow):not(.email-note) {
  max-width: 530px;
  color: #dcecff;
  font-size: 18px;
}

.whatsapp-box {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin-top: 32px;
  padding: 20px 22px;
  color: var(--paper);
  background: var(--green);
  border-radius: 4px;
}

.whatsapp-box span {
  font-size: 12px;
  font-weight: 800;
}

.whatsapp-box strong {
  margin-top: 2px;
  font-size: 22px;
}

.email-note {
  margin-top: 25px;
  color: #dcecff;
  font-size: 13px;
}

.inquiry-form {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #2e3943;
  font-size: 13px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb9c2;
  border-radius: 3px;
  outline: none;
}

.form-grid .consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 500;
  line-height: 1.45;
}

.form-grid .consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.consent-field a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 800;
}

.form-grid input,
.form-grid select {
  height: 46px;
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 130px;
  padding: 11px 12px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 90, 199, 0.15);
}

.full-field {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-status.success {
  color: #09673f;
}

.form-status.error {
  color: #a32020;
}

.form-status a {
  text-decoration: underline;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 64px 0 28px;
  color: #c6cdd3;
  background: #0b1117;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-wordmark {
  width: 150px;
}

.footer-top p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  justify-content: flex-end;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #2d353d;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  background: var(--mist);
  place-items: center;
}

.error-panel {
  width: min(calc(100% - 40px), 640px);
  padding: 55px;
  background: var(--paper);
  border-top: 8px solid var(--yellow);
}

.error-panel h1 {
  color: var(--ink);
  font-size: 46px;
}

.error-panel p:not(.eyebrow) {
  color: var(--ink-soft);
}

.policy-header {
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.policy-main {
  padding: 140px 0 90px;
  background: var(--mist);
}

.policy-content {
  max-width: 820px;
  padding: 50px;
  background: var(--paper);
  border-top: 7px solid var(--yellow);
}

.policy-content h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
}

.policy-content h2 {
  margin-top: 42px;
  font-size: 24px;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    color: var(--ink);
    background: var(--paper);
    overflow-y: auto;
  }

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

  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line) !important;
  }

  .site-nav .language-link {
    padding-left: 4px;
    border-left: 0;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    padding: 14px 18px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .split-heading,
  .proof-heading,
  .showcase-layout,
  .factory-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .proof-shot {
    min-height: 420px;
  }

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

  .capability {
    min-height: 0;
  }

  .capability-number {
    margin-bottom: 35px;
  }

  .showcase-copy {
    position: static;
    padding-top: 0;
  }

  .faq-heading {
    position: static;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 15, 29, .96) 10%, rgba(4, 18, 34, .72) 66%, rgba(4, 18, 34, .44));
  }

  .hero-content {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .hero-trust {
    gap: 8px 16px;
    margin-top: 24px;
    font-size: 10px;
  }

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

  .proof-grid > div {
    min-height: 118px;
    padding: 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .proof-grid strong {
    font-size: 26px;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .factory-proof {
    padding: 78px 0;
  }

  .proof-heading {
    gap: 24px;
    margin-bottom: 36px;
  }

  .proof-reel {
    display: flex;
    width: 100%;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proof-shot,
  .proof-shot-wide {
    flex: 0 0 78vw;
    min-height: 440px;
    scroll-snap-align: center;
  }

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

  .build-showcase {
    padding-top: 12px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-item,
  .showcase-item-main {
    grid-row: auto;
    min-height: 300px;
  }

  .showcase-item-main {
    min-height: 410px;
  }

  .custom-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .factory-media {
    padding: 0 0 34px 18px;
  }

  .capacity-note {
    min-width: 195px;
    padding: 18px 20px;
  }

  .capacity-note strong {
    font-size: 30px;
  }

  .sample-section {
    padding: 70px 0;
  }

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

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

  .inquiry-form {
    padding: 24px 18px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .hero-image {
    animation: none;
  }
}
