:root {
  --black: #0b0b0d;
  --ink: #141417;
  --panel: #1f1f23;
  --line: rgba(255, 255, 255, 0.14);
  --soft-line: rgba(11, 11, 13, 0.12);
  --paper: #f5f5f7;
  --white: #ffffff;
  --muted: #59616d;
  --blue: #285ec7;
  --blue-on-dark: #8fb2ff;
  --orange: #ff9a32;
  --magenta: #d20d73;
  --turquoise: #65c8e8;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; background: var(--paper); }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--white);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}
.icon-sprite { display: none; }
.icon, .icon-card {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-card {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--blue);
  border: 1px solid rgba(92, 142, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(92, 142, 242, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(11, 11, 13, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong { font-weight: 800; }
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  gap: 3px;
}
.brand-mark span { width: 13px; height: 13px; border-radius: 3px; background: var(--white); }
.brand-mark span:nth-child(1) { background: var(--blue); }
.brand-mark span:nth-child(2) { background: var(--orange); }
.brand-mark span:nth-child(3) { background: var(--magenta); }
.brand-mark span:nth-child(4) { background: var(--turquoise); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.main-nav .nav-cta { color: var(--black); background: var(--white); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--white); }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(92, 142, 242, 0.24), transparent 34%),
    linear-gradient(135deg, #0b0b0d 0%, #17171b 54%, #0b0b0d 100%);
}
.hero .eyebrow,
.dark-band .eyebrow,
.about-band .eyebrow,
.legal-hero .eyebrow,
.reference-hero .eyebrow {
  color: var(--blue-on-dark);
}

.hero-copy, .hero-media { min-width: 0; }
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Manrope, "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}
h1 {
  max-width: 820px;
  font-size: clamp(36px, 5.8vw, 78px);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
}
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions, .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}
.button.primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--magenta)); }
.button.secondary { color: var(--white); border-color: var(--line); background: rgba(255, 255, 255, 0.08); }
.button.on-light { color: var(--ink); border-color: var(--soft-line); background: var(--white); }

.hero-facts { margin-top: 34px; padding: 0; }
.hero-facts div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  min-width: 132px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.hero-facts .icon {
  grid-row: span 2;
  margin-top: 2px;
  color: var(--turquoise);
}
.hero-facts dt { font-size: 22px; font-weight: 900; }
.hero-facts dd { margin: 4px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 13px; }

.hero-media img, .image-panel, .industry-grid article, .cards article {
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.hero-media img {
  position: relative;
  aspect-ratio: 3 / 2;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section, .reference-strip {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}
.reference-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--soft-line);
}
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 0; }
.section-heading h2, .split h2, .about-copy h2, .inquiry-copy h2 { color: var(--ink); }
.logo-row, .reference-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.logo-row span {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #fafafa;
  font-weight: 850;
  text-align: center;
}
.reference-link {
  width: fit-content;
  grid-column: 2;
  margin-top: 4px;
}
.reference-teasers a {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #fafafa;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.reference-teasers a:hover,
.reference-teasers a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(92, 142, 242, 0.32);
  box-shadow: 0 16px 42px rgba(11, 11, 13, 0.12);
}
.reference-teasers img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.reference-teasers span {
  padding: 16px 16px 4px;
  color: var(--ink);
  font-weight: 900;
}
.reference-teasers small {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr); }
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  color: #33343a;
  font-weight: 750;
  font-size: 14px;
}
.feature-list .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.idea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
}
.idea-list span {
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #47484e;
  background: #eceff6;
  font-size: 13px;
  font-weight: 760;
}
.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards {
  display: grid;
  gap: 14px;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--soft-line);
  background: var(--white);
}
.cards article .icon-card {
  margin-bottom: 24px;
}
.cards article:nth-child(2) { border-top: 4px solid var(--orange); }
.cards article:nth-child(3) { border-top: 4px solid var(--magenta); }
.cards article:nth-child(4) { border-top: 4px solid var(--turquoise); }
.cards article:nth-child(2) .icon-card { color: var(--orange); border-color: rgba(255, 154, 50, 0.26); background: rgba(255, 154, 50, 0.09); }
.cards article:nth-child(3) .icon-card { color: var(--magenta); border-color: rgba(210, 13, 115, 0.24); background: rgba(210, 13, 115, 0.08); }
.cards article:nth-child(4) .icon-card { color: var(--turquoise); border-color: rgba(101, 200, 232, 0.28); background: rgba(101, 200, 232, 0.1); }

.dark-band {
  color: var(--white);
  background: var(--black);
}
.dark-band .section-heading h2 { color: var(--white); }
.dark-band p { color: rgba(255, 255, 255, 0.78); }
.production-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.production-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.production-card figure {
  margin: 0;
  overflow: hidden;
}
.production-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.production-card div {
  padding: clamp(20px, 3vw, 30px);
}
.production-card h3 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}
.production-card p:last-child {
  max-width: 620px;
}
.materials-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.materials-feature figure {
  margin: 0;
  height: 100%;
}
.materials-feature img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.materials-feature div {
  padding: clamp(24px, 4vw, 46px);
}
.materials-feature h3 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.04;
}
.materials-feature p:last-child {
  max-width: 660px;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quality-grid article {
  padding: 26px;
  background: var(--black);
}
.quality-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--turquoise);
  font-weight: 900;
}
.quality-grid .icon {
  width: 20px;
  height: 20px;
}
.quality-grid h3 { color: var(--white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.industry-grid article {
  border: 1px solid var(--soft-line);
  background: var(--white);
}
.industry-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.industry-grid h3, .industry-grid p { padding-inline: 20px; }
.industry-grid .icon-card {
  margin: -17px 20px 14px;
  position: relative;
  color: var(--magenta);
  border-color: rgba(210, 13, 115, 0.22);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.industry-grid h3 { margin-top: 20px; }
.industry-grid .icon-card + h3 { margin-top: 0; }
.industry-grid p { margin-bottom: 22px; font-size: 15px; }

.process {
  background: var(--white);
}
.process .section-heading {
  max-width: none;
}
.process .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(34px, 4.2vw, 54px);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 236px;
  padding: 26px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11, 11, 13, 0.06);
  counter-increment: step;
}
.process-list li::before {
  content: "0" counter(step);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(11, 11, 13, 0.18);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.process-list li::after {
  content: "";
  position: absolute;
  left: 54px;
  top: 96px;
  bottom: 26px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, currentColor, transparent);
  opacity: 0.18;
}
.process-list .icon-card {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  padding: 12px;
  margin: 0;
  grid-row: span 2;
  color: var(--blue);
  background: rgba(40, 94, 199, 0.09);
  border-color: rgba(40, 94, 199, 0.22);
}
.process-list li:nth-child(2) .icon-card { color: var(--orange); border-color: rgba(255, 154, 50, 0.26); background: rgba(255, 154, 50, 0.09); }
.process-list li:nth-child(3) .icon-card { color: var(--turquoise); border-color: rgba(101, 200, 232, 0.28); background: rgba(101, 200, 232, 0.1); }
.process-list li:nth-child(4) .icon-card { color: var(--magenta); border-color: rgba(210, 13, 115, 0.24); background: rgba(210, 13, 115, 0.08); }
.process-list li:nth-child(5) .icon-card { color: #3d7668; border-color: rgba(61, 118, 104, 0.24); background: rgba(61, 118, 104, 0.09); }
.process-list li:nth-child(6) .icon-card { color: #6c5ce7; border-color: rgba(108, 92, 231, 0.24); background: rgba(108, 92, 231, 0.08); }
.process-list span {
  max-width: 240px;
  align-self: end;
  color: var(--ink);
  font-size: 18px;
  font-weight: 880;
  line-height: 1.25;
}
.process-list small {
  grid-column: 2;
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.build-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #f0f2f5;
}
.build-experience figure {
  order: 2;
}
.build-experience > div {
  order: 1;
}
.build-experience figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 11, 13, 0.18);
}
.build-experience img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.build-experience h2 {
  color: var(--ink);
}
.build-experience .feature-list {
  margin-top: 26px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 38px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #101014, #242429);
}
.about-copy h2, .about-copy p { color: var(--white); }
.about-copy p { color: rgba(255, 255, 255, 0.82); }
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-metrics div {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.about-metrics .icon-card {
  color: var(--turquoise);
  border-color: rgba(101, 200, 232, 0.24);
  background: rgba(101, 200, 232, 0.08);
}
.about-metrics strong { font-size: 32px; }
.about-metrics span { color: rgba(255, 255, 255, 0.78); font-size: 13px; }

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}
.inquiry-copy { position: sticky; top: 110px; }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #fbfbfc;
}
label {
  display: grid;
  gap: 8px;
  color: #313238;
  font-size: 13px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(11, 11, 13, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
.wide, .wide-button, .form-note { grid-column: 1 / -1; }
.wide-button { border: 0; cursor: pointer; }
.form-note { margin: 0; font-size: 13px; line-height: 1.5; }
.form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  padding: 4px 0;
  color: #3f4046;
  font-weight: 650;
  line-height: 1.5;
}
.consent-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}
.consent-label a, .legal-content a {
  color: #285ec7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, #0b0b0d 0%, #1c1c21 70%, #0b0b0d 100%);
}
.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 6vw, 76px);
}
.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}
.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--soft-line);
}
.legal-content section:first-child { padding-top: 0; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}
.legal-content p {
  margin: 0 0 14px;
}
.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.legal-content li + li { margin-top: 4px; }

ai-disclosure-badge,
.ai-disclosure-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(92, 142, 242, 0.24);
  border-radius: var(--radius);
  color: #285ec7;
  background: rgba(92, 142, 242, 0.09);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
}
ai-disclosure-badge {
  cursor: help;
}
ai-disclosure-badge:focus-visible,
.ai-disclosure-badge:focus-visible {
  outline: 2px solid rgba(92, 142, 242, 0.5);
  outline-offset: 3px;
}
.has-ai-badge {
  position: relative;
}
.has-ai-badge ai-disclosure-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.has-ai-badge > .ai-disclosure-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.has-ai-badge > .ai-disclosure-badge:hover {
  color: #ffffff;
  background: rgba(11, 11, 13, 0.84);
}
.has-ai-badge ai-disclosure-badge .ai-disclosure-badge {
  color: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  box-shadow: none;
}

.reference-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(101, 200, 232, 0.2), transparent 32%),
    linear-gradient(135deg, #0b0b0d 0%, #1b1b20 64%, #0b0b0d 100%);
}
.reference-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 6vw, 82px);
}
.reference-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 22px);
}
.reference-hero-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.reference-hero-panel span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 780;
}
.reference-overview {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 56px);
}
.reference-overview .section-heading {
  max-width: 760px;
}
.reference-projects {
  display: grid;
  gap: 26px;
}
.reference-project {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(11, 11, 13, 0.07);
}
.reference-project > header {
  max-width: 980px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3.4vw, 40px);
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
}
.reference-project > header .eyebrow {
  margin-bottom: 10px;
}
.reference-project h3 {
  max-width: 860px;
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.12;
}
.reference-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: 400px;
}
.reference-side, .model-side {
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3.4vw, 40px);
}
.reference-side {
  background: #fbfbfc;
  border-right: 1px solid var(--soft-line);
}
.model-side {
  display: grid;
  align-content: start;
  gap: 18px;
}
.compare-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #285ec7;
  background: rgba(92, 142, 242, 0.11);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.reference-side h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}
.reference-side p, .model-side p {
  margin: 0;
  font-size: 16px;
}
.reference-side ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.reference-side li + li { margin-top: 5px; }
.reference-source-image {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}
.reference-source-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}
.model-side figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}
.model-side img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.model-data {
  min-height: 360px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(92, 142, 242, 0.08), rgba(101, 200, 232, 0.09)),
    var(--white);
}
.architecture-mark {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  grid-template-rows: 54px 96px 48px;
  gap: 8px;
  max-width: 360px;
  margin: 4px 0 18px;
}
.architecture-mark span {
  border-radius: 6px;
  background: var(--ink);
}
.architecture-mark span:nth-child(1) {
  grid-column: 1 / 4;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--magenta);
}
.architecture-mark span:nth-child(2) {
  grid-row: 2 / 4;
  background: var(--blue);
}
.architecture-mark span:nth-child(3) {
  grid-row: 2 / 4;
  background: var(--orange);
}
.architecture-mark span:nth-child(4) {
  grid-row: 2 / 4;
  background: var(--turquoise);
}
.architecture-mark span:nth-child(5) {
  grid-column: 1 / 4;
  background: #25252b;
}
.reference-next {
  max-width: 1040px;
  margin-top: 32px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #101014, #242429);
}
.reference-next h2 {
  max-width: 900px;
  color: var(--white);
}
.reference-next p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}
.reference-next .button {
  margin-top: 12px;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 7vw, 84px);
  color: var(--white);
  background: linear-gradient(135deg, #0b0b0d 0%, #1c1c21 70%, #0b0b0d 100%);
}
.form-result section {
  max-width: 760px;
}
.form-result h1 {
  margin-bottom: 18px;
}
.form-result p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}
.form-result .button {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--black);
}
.site-footer strong { color: var(--white); }
.site-footer p { max-width: 540px; margin: 8px 0 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.site-footer nav { display: flex; gap: 16px; align-items: center; font-size: 14px; }

@media (max-width: 1100px) {
  .hero, .reference-strip, .split, .split.reverse, .inquiry, .about-band, .reference-hero {
    grid-template-columns: 1fr;
  }
  .reference-link { grid-column: auto; }
  .hero { min-height: auto; }
  .cards.four, .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .production-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .materials-feature { grid-template-columns: 1fr; }
  .materials-feature img { min-height: 280px; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .build-experience { grid-template-columns: 1fr; }
  .build-experience figure, .build-experience > div { order: initial; }
  .reference-compare { grid-template-columns: 1fr; }
  .reference-side { border-right: 0; border-bottom: 1px solid var(--soft-line); }
  .inquiry-copy { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 11, 13, 0.97);
  }
  .main-nav.open { display: flex; }
  .logo-row, .about-metrics, .inquiry-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 16px; }
  .hero, .section, .reference-strip { padding-inline: 16px; }
  .reference-hero, .reference-overview { padding-inline: 16px; }
  h1 { font-size: 34px; }
  h2 { font-size: 32px; }
  .process .section-heading h2 {
    white-space: normal;
    font-size: 32px;
  }
  .cards.four, .industry-grid, .quality-grid, .production-showcase, .process-list { grid-template-columns: 1fr; }
  .process-list li {
    min-height: 0;
  }
  .reference-project > header { display: block; }
  .architecture-mark { max-width: 100%; }
  .hero-facts div { width: 100%; }
  .site-footer { flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
}
