@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");

:root {
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e2ea;
  --paper: #f5f7fa;
  --white: #ffffff;
  --navy: #061625;
  --blue: #12324f;
  --teal: #00a7a0;
  --red: #c41f2b;
  --lime: #d4ef5a;
  --silver: #a9b8c5;
  --shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  font-feature-settings: "palt";
}

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

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

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.cta-section h2,
.selector h1 {
  font-weight: 900;
  letter-spacing: 0;
}

.stats strong,
.matrix b,
.flow b,
.selector-card span {
  font-family: "IBM Plex Sans Condensed", "Noto Sans JP", sans-serif;
}

.eyebrow,
.en-inline-accent,
.hero-en-backdrop,
.section-en-title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.selector-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 27, 51, 0.92), rgba(7, 27, 51, 0.55)),
    url("./assets/factory-floor.jpg") center / cover;
}

.selector {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.selector h1 {
  max-width: 850px;
  margin: 12px 0 36px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.98;
}

.selector-lead {
  max-width: 680px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.selector-card {
  min-height: 330px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.selector-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.selector-card span,
.selector-card strong,
.selector-card small {
  display: block;
  margin-inline: 24px;
}

.selector-card span {
  margin-top: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.selector-card strong {
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.25;
}

.selector-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.dark {
  color: var(--white);
  background: rgba(9, 16, 24, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 180px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.global-nav {
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.global-nav::-webkit-scrollbar {
  display: none;
}

.design-switch {
  padding: 4px;
  border: 1px solid rgba(100, 116, 139, 0.22);
  background: rgba(248, 250, 252, 0.72);
}

.site-header.dark .design-switch {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-header nav a {
  padding: 8px 7px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.78;
  white-space: nowrap;
}

.site-header nav a:hover {
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 900;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, #d92835, #a91420);
  box-shadow: 0 14px 28px rgba(196, 31, 43, 0.22);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark-text {
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, gap 180ms ease;
}

.section-link:hover {
  gap: 14px;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.section-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.dark-band .section-link,
.page-quality .quality-split .section-link {
  color: var(--white);
}

.page-quality .audit-grid > .section-link,
.page-quality .matrix-section > .section-link,
.page-quality .case-timeline > .section-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: #0f1b2d;
}

.dark-band .section-link:hover,
.page-quality .quality-split .section-link:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.page-quality .audit-grid > .section-link:hover,
.page-quality .matrix-section > .section-link:hover,
.page-quality .case-timeline > .section-link:hover {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.audit-grid > .section-link,
.category-large > .section-link,
.proof-gallery > .section-link {
  grid-column: 1 / -1;
  margin: 22px auto 8px;
}

.magazine-band > .section-link {
  width: fit-content;
  margin: 30px auto 0;
}

.flow-section > .section-link {
  margin-inline: auto;
}

.company-section > .section-link {
  grid-column: 1 / -1;
  margin-top: -22px;
}

.page-quality .section-link {
  font-weight: 500;
}

.page-challenge .section-link {
  border-radius: 999px;
}

.page-challenge .section-link:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

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

.hero-en-backdrop {
  position: absolute;
  left: clamp(20px, 3vw, 52px);
  top: clamp(24px, 4vw, 64px);
  z-index: 0;
  width: calc(100% - clamp(40px, 6vw, 104px));
  color: rgba(255, 255, 255, 0.075);
  font-size: clamp(46px, 8vw, 128px);
  font-weight: 900;
  line-height: 0.88;
  pointer-events: none;
  white-space: normal;
  -webkit-text-stroke: 0;
}

.hero-en-backdrop span {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 14px 0 24px;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.98;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}

.hero-copy h1 span {
  white-space: nowrap;
}

.hero-precision .hero-copy h1 {
  font-size: clamp(48px, 5.6vw, 94px);
  line-height: 1.02;
}

.hero-quality-page .hero-copy h1 {
  font-size: clamp(36px, 4.9vw, 78px);
  line-height: 1.04;
}

.hero-challenge-page .hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 88px);
  line-height: 1.04;
}

.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.9;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-precision {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  column-gap: clamp(24px, 5vw, 70px);
  row-gap: 28px;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 76px) clamp(42px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 166, 166, 0.26), transparent 30%),
    linear-gradient(120deg, #07182e 0%, #0d213d 46%, #243447 100%);
}

.hero-precision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-image {
  position: relative;
  z-index: 2;
  height: min(68vh, 720px);
  min-height: 520px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid var(--teal);
}

.image-note b,
.image-note span {
  display: block;
}

.image-note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.stats div {
  padding: 20px 22px;
  background: rgba(4, 14, 27, 0.78);
}

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

.stats strong {
  color: var(--lime);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.section h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}

.section h2 span,
.cta-section h2 span,
.quality-footer-head h2 span {
  white-space: nowrap;
}

.fixed-title {
  text-wrap: nowrap !important;
}

.fixed-line {
  display: inline-block;
  white-space: nowrap;
}

.fixed-copy {
  white-space: nowrap;
}

.section-en-title {
  position: relative;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(34px, 5.4vw, 82px);
  font-weight: 900;
  line-height: 0.98;
  overflow-wrap: anywhere;
  white-space: normal;
}

.en-inline-accent {
  width: fit-content;
  margin: 24px 0 20px !important;
  padding: 10px 14px;
  border-left: 3px solid var(--red);
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1.3 !important;
}

.light-accent {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.problem-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 78px;
}

.problem-section::before {
  content: none;
}

.problem-process {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 0;
  display: grid;
  grid-template-columns: auto auto minmax(44px, 1fr) auto minmax(44px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  color: var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.problem-process > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.problem-process > b {
  color: var(--teal);
  font-weight: 800;
}

.problem-process > i {
  position: relative;
  height: 1px;
  background: var(--silver);
}

.problem-process > i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.problem-process > em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.problem-backdrop {
  position: absolute;
  z-index: -1;
  top: 112px;
  right: 0;
  margin: 0;
  color: rgba(18, 50, 79, 0.035);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 900;
  line-height: 0.88;
  text-align: right;
  white-space: nowrap;
}

.problem-section .section-head {
  position: relative;
  padding-top: 168px;
}

.problem-section .section-head h2 {
  max-width: none;
  font-size: clamp(34px, 3.8vw, 58px);
  white-space: nowrap;
}

.problem-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.problem-list span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border-left: 5px solid var(--red);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.split > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split p:not(.eyebrow),
.proof-strip p,
.cta-section p,
.visual-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mini-grid article {
  position: relative;
  padding: 18px 20px;
  background: var(--white);
  border-left: 4px solid var(--teal);
}

.card-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 22px;
  color: var(--teal);
  stroke-width: 1.85;
}

.mini-grid b,
.mini-grid span {
  display: block;
}

.mini-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--navy);
}

.dark-band .section-head,
.dark-band .work-grid,
.dark-band .section-en-title {
  width: min(1280px, 100%);
  margin-inline: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-grid article {
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.work-media {
  position: relative;
}

.work-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.work-grid h3,
.work-grid p {
  margin-inline: 24px;
}

.work-icon {
  position: absolute;
  top: auto;
  right: 22px;
  bottom: -21px;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--teal);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  stroke-width: 1.7;
  z-index: 2;
}

.work-grid h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 25px);
}

.work-grid h3 span {
  white-space: nowrap;
}

.work-grid p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.proof-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.proof-strip .fixed-title {
  font-size: clamp(32px, 2.7vw, 36px);
  line-height: 1.12;
}

.proof-strip .fixed-copy {
  font-size: 16px;
}

.doc-mini,
.doc-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: center;
}

.doc-mini img,
.doc-row img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: transparent;
}

.flow div {
  position: relative;
  min-height: 258px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.flow div:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -19px;
  width: 26px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.flow b {
  display: block;
  color: var(--red);
  font-size: 13px;
}

.flow span {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.flow-icon,
.audit-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-top: 20px;
  color: var(--teal);
  stroke-width: 1.75;
}

.flow-photo {
  display: block;
  width: 100%;
  height: 62px;
  margin-top: 14px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.88) contrast(1.04);
}

.page-challenge .flow div {
  border-radius: 20px;
}

.page-challenge .flow div:not(:last-child)::after {
  border-radius: 99px;
  background: var(--red);
}

.page-challenge .flow-icon {
  color: var(--red);
}

.cta-section {
  margin: 0;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.94), rgba(7, 27, 51, 0.68)),
    url("./assets/product-tall.jpg") center / cover;
}

.cta-section h2,
.cta-section p,
.cta-section .eyebrow {
  max-width: 900px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.drawing-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  background:
    linear-gradient(105deg, rgba(4, 22, 35, 0.98), rgba(10, 41, 57, 0.9)),
    url("./assets/machining-close.jpg") center / cover;
}

.drawing-contact-copy {
  position: relative;
  z-index: 1;
}

.drawing-contact-copy h2 {
  margin-top: 26px;
  font-size: clamp(44px, 5vw, 72px);
}

.drawing-contact-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 30px;
  font-size: 18px;
}

.one-piece-count {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.44);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.one-piece-count b {
  color: var(--teal);
  font-size: 30px;
}

.contact-facts {
  display: grid;
  gap: 16px;
  margin-top: 42px;
  font-weight: 700;
}

.contact-facts span {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-facts svg {
  width: 20px;
  color: var(--teal);
}

.drawing-form {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 4vw, 52px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.drawing-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.drawing-form legend,
.form-label,
.drawing-form label > span {
  margin-bottom: 9px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.inquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 13px;
}

.inquiry-types label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 13px;
  color: #475569;
  background: #f3f6f8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.drawing-form input[type="radio"],
.drawing-form input[type="checkbox"] {
  accent-color: var(--teal);
}

.file-drop {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  margin-top: -10px;
  padding: 20px;
  border: 1.5px dashed var(--teal);
  border-radius: 10px;
  cursor: pointer;
}

.file-drop > svg {
  width: 28px;
  color: var(--teal);
}

.file-drop span,
.file-drop small {
  display: block;
}

.file-drop small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.file-drop em {
  padding: 8px 14px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label,
.form-field {
  display: grid;
}

.drawing-form input[type="text"],
.drawing-form input[type="email"],
.drawing-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.drawing-form textarea {
  min-height: 88px;
}

.privacy-check {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.drawing-form button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(196, 31, 43, 0.2);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.drawing-form button svg {
  width: 18px;
}

.one-piece-en {
  margin: 0 0 26px;
  color: var(--teal) !important;
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 4vw, 54px) !important;
  font-weight: 900;
  line-height: 1;
}

.quality-cta h2,
.challenge-cta h2 {
  font-size: clamp(38px, 4.6vw, 66px);
}

.page-quality {
  background: #101820;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

.page-quality h1,
.page-quality h2,
.page-quality h3,
.page-quality b,
.page-quality strong {
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
}

.page-quality p,
.page-quality li,
.page-quality dd,
.page-quality address {
  font-weight: 400;
}

.page-quality .eyebrow,
.page-quality .en-inline-accent,
.page-quality .hero-en-backdrop,
.page-quality .section-en-title,
.page-quality .one-piece-en,
.page-quality .global-nav a,
.page-quality .header-cta,
.page-quality .btn,
.page-quality .footer-main a,
.page-quality .footer-bottom,
.page-quality .audit-grid > article > span,
.page-quality .matrix b,
.page-quality .quality-mark strong {
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
}

.page-quality .check-list li {
  font-weight: 400;
}

.figma-capture-wide .page-quality {
  width: 1512px;
  min-width: 1512px;
}

.page-quality .quality-split h2 span {
  white-space: nowrap;
}

.hero-quality-page {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 94px) clamp(20px, 5vw, 76px);
  color: var(--white);
  background: #101820 url("./assets/hero-quality-machining-poster.png") center / cover;
}

.hero-quality-page > .hero-background-video,
.hero-quality-page > .hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-quality-page > .hero-background-video {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  z-index: 0;
  object-fit: cover !important;
  object-position: center;
  filter: contrast(1.08) saturate(0.82);
}

.hero-quality-page > .hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 17, 26, 0.94) 0%, rgba(8, 17, 26, 0.8) 42%, rgba(8, 17, 26, 0.42) 74%, rgba(8, 17, 26, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 13, 22, 0.2), rgba(4, 13, 22, 0.5));
  pointer-events: none;
}

.hero-quality-page .hero-copy,
.hero-quality-page .document-stage {
  z-index: 3;
}

.document-stage {
  position: relative;
  z-index: 1;
  min-height: 660px;
}

.quality-backdrop {
  left: auto;
  right: 2vw;
  top: 5%;
  z-index: 2;
  width: min(68vw, 860px);
  text-align: right;
  color: rgba(255, 255, 255, 0.06);
}

.doc-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.doc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(7, 27, 51, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.main-doc {
  top: 0;
  right: 0;
  width: 58%;
  height: 94%;
  transform: rotate(2deg);
}

.sub-doc {
  left: 0;
  bottom: 32px;
  width: 57%;
  height: 54%;
  transform: rotate(-4deg);
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.audit-grid article {
  position: relative;
  padding: clamp(32px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.06);
}

.audit-icon {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: clamp(30px, 4vw, 54px);
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--teal);
}

.audit-photo {
  display: block;
  width: 100%;
  height: 108px;
  margin-top: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  opacity: 0.78;
}

.audit-grid span,
.category-large article > span,
.magazine-grid b {
  color: var(--red);
  font-weight: 900;
}

.audit-grid h3 {
  margin: 16px 0 12px;
  font-size: 28px;
}

.audit-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.quality-split {
  color: var(--white);
}

.quality-split p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--teal);
  font-weight: 800;
}

.matrix-section,
.case-timeline {
  color: var(--white);
}

.quality-en-title {
  color: rgba(255, 255, 255, 0.065);
  font-size: clamp(34px, 5vw, 76px);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.matrix div {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.matrix-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 32px;
  color: var(--teal);
  stroke-width: 1.65;
}

.matrix b,
.matrix span {
  display: block;
}

.matrix b {
  font-size: 23px;
}

.matrix span {
  margin-top: 74px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

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

.timeline article {
  position: relative;
  padding: 26px;
  background: var(--white);
  color: var(--ink);
}

.timeline-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--teal);
  stroke-width: 1.65;
}

.timeline b {
  color: var(--teal);
}

.timeline p {
  color: var(--muted);
  line-height: 1.75;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 16px;
}

.proof-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.company-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.page-precision .company-section {
  grid-template-columns: 1.05fr 0.95fr;
}

.page-precision .company-section h2 {
  font-size: clamp(38px, 3.4vw, 50px);
  line-height: 1.15;
}

.page-precision .company-section h2 span {
  white-space: nowrap;
}

.company-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.company-section dl {
  margin: 0;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.company-section dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  color: #d9e5ee;
  background:
    linear-gradient(135deg, rgba(6, 22, 37, 0.98), rgba(10, 35, 56, 0.96)),
    url("./assets/factory-floor.jpg") center / cover;
}

.dark-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.35fr) minmax(240px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) 0 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 220px;
}

.footer-main p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px 22px;
}

.footer-main nav a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-main address {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-contact {
  align-self: start;
}

.footer-contact > span,
.precision-footer-title > span,
.quality-footer-head > div > span,
.challenge-footer-cta > div > span {
  display: block;
  margin-bottom: 13px;
  color: var(--teal);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.footer-contact > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.55;
}

.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.footer-contact > a b {
  font-size: 20px;
}

/* Proposal 01: a strong industrial signature. */
.footer-precision {
  position: relative;
  overflow: hidden;
  background: #061829;
}

.precision-footer-title {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(62px, 7vw, 92px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.precision-footer-title strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(72px, 15vw, 210px);
  line-height: 0.73;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.footer-precision .footer-main {
  padding-top: 48px;
}

.footer-precision .footer-contact {
  padding-left: 25px;
  border-left: 4px solid var(--red);
}

/* Proposal 02: formal quality-assurance information architecture. */
.footer-quality {
  background: #0a1118;
}

.quality-footer-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 8vw, 108px) 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quality-footer-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.12;
  text-wrap: balance;
}

.quality-mark {
  display: grid;
  grid-template-columns: auto 126px;
  gap: 16px;
  align-items: center;
  min-width: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.quality-mark strong {
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.quality-mark span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.quality-cta > p:not(.eyebrow):not(.one-piece-en) span,
.quality-mark span {
  white-space: nowrap;
}

.footer-quality .footer-main {
  padding-top: 48px;
}

.footer-quality .footer-main nav a {
  position: relative;
  padding-left: 18px;
}

.footer-quality .footer-main nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--teal);
}

.quality-contact {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.footer-quality .footer-bottom span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
}

/* Proposal 03: a softer, open invitation for development projects. */
.footer-challenge {
  padding: 24px;
  color: #dce7e4;
  background: #e8ef69;
}

.challenge-footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  width: min(1280px, 100%);
  margin: 0 auto 24px;
  padding: clamp(42px, 6vw, 76px);
  color: var(--ink);
  background: var(--white);
  border-radius: 30px;
}

.challenge-footer-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.16;
}

.challenge-footer-cta h2 span,
.category-large h2 span {
  white-space: nowrap;
}

.challenge-footer-cta > a {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(196, 31, 43, 0.2);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.challenge-footer-cta > a b {
  font-size: 22px;
}

.footer-challenge .footer-main,
.footer-challenge .footer-bottom {
  width: min(1280px, 100%);
  padding-inline: clamp(24px, 4vw, 54px);
  color: inherit;
  background: var(--navy);
}

.footer-challenge .footer-main {
  border-radius: 30px 30px 0 0;
}

.footer-challenge .footer-bottom {
  border-radius: 0 0 30px 30px;
}

.footer-challenge .footer-main nav {
  gap: 8px;
}

.footer-challenge .footer-main nav a {
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.challenge-contact > span {
  color: var(--lime);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-tags i {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.company-section dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.company-section dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.7;
}

.quality-company {
  color: var(--white);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.quality-company p {
  color: rgba(255, 255, 255, 0.72);
}

.quality-company h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.14;
}

.quality-company dl {
  color: var(--ink);
}

.quality-cta {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.72)),
    url("./assets/inspection-anonymized.jpg") center / cover;
}

.page-challenge {
  background: #f4f7f2;
}

.page-challenge .site-header {
  top: 12px;
  width: calc(100% - 24px);
  margin: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
}

.page-challenge .design-switch,
.page-challenge .header-cta,
.page-challenge .btn {
  border-radius: 999px;
}

.hero-challenge-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 84px) clamp(20px, 5vw, 76px);
  background: #eef3e9;
}

.collage-xl {
  position: relative;
  z-index: 1;
  min-height: 690px;
}

.challenge-backdrop {
  left: 2vw;
  top: auto;
  bottom: 2%;
  width: min(86vw, 1120px);
  z-index: 1;
  color: rgba(8, 23, 35, 0.12);
  font-size: clamp(44px, 7.8vw, 124px);
  -webkit-text-stroke: 0;
}

.collage-xl img {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.c1 {
  left: 4%;
  top: 4%;
  width: 67%;
  height: 42%;
}

.c2 {
  right: 0;
  top: 20%;
  width: 43%;
  height: 44%;
}

.c3 {
  left: 0;
  bottom: 5%;
  width: 48%;
  height: 36%;
}

.c4 {
  right: 10%;
  bottom: 0;
  width: 45%;
  height: 29%;
}

.hero-challenge-page .hero-copy p:not(.eyebrow) {
  color: #475569;
}

.category-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-large article {
  position: relative;
  min-height: 410px;
  padding: 34px;
  background: var(--white);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
}

.category-icon {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 34px;
  height: 34px;
  color: var(--teal);
  stroke-width: 1.65;
}

.page-challenge .category-icon {
  color: var(--red);
}

.challenge-en-title {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 8px;
  color: rgba(196, 31, 43, 0.13);
  font-size: clamp(34px, 5.4vw, 82px);
}

.category-large h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.14;
}

.magazine-grid article {
  position: relative;
}

.magazine-icon {
  position: absolute;
  top: 27px;
  right: 28px;
  width: 27px;
  height: 27px;
  color: var(--red);
  stroke-width: 1.7;
}

.category-large p,
.magazine-grid p {
  color: var(--muted);
  line-height: 1.85;
}

.fresh-split {
  grid-template-columns: 1.2fr 0.8fr;
}

.fresh-split .fixed-title {
  font-size: clamp(28px, 2.2vw, 32px);
  line-height: 1.12;
}

.fresh-split > img {
  height: 700px;
  border-radius: 30px;
}

.magazine-band {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 76px);
  background: var(--white);
}

.magazine-band .section-head,
.magazine-grid,
.magazine-en-title {
  width: min(1280px, 100%);
  margin-inline: auto;
}

.magazine-en-title {
  margin-bottom: 46px;
  color: rgba(0, 167, 160, 0.12);
  font-size: clamp(32px, 4.8vw, 74px);
}

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

.magazine-grid article {
  min-height: 300px;
  padding: 26px;
  background: #f1f5f9;
  border-radius: 8px;
}

.page-challenge .doc-row img,
.page-challenge .flow,
.page-challenge .company-section dl {
  overflow: hidden;
  border-radius: 20px;
}

.page-challenge .company-section {
  border-top: 0;
}

.page-challenge .company-section h2 {
  font-size: clamp(34px, 3.2vw, 42px);
  line-height: 1.14;
}

.magazine-grid h3 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.3;
}

.visual-quality {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.visual-quality .fixed-title {
  font-size: clamp(28px, 2.2vw, 32px);
  line-height: 1.12;
}

.challenge-cta {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.9), rgba(7, 27, 51, 0.56)),
    url("./assets/product-wide.jpg") center / cover;
}

@media (max-width: 980px) {
  .problem-section .section-head h2 {
    white-space: normal;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .global-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
  }

  .design-switch {
    grid-column: 1 / 2;
    grid-row: 3;
    width: fit-content;
  }

  .hero-precision,
  .hero-quality-page,
  .hero-challenge-page,
  .section-head,
  .split,
  .proof-strip,
  .visual-quality,
  .company-section {
    grid-template-columns: 1fr;
  }

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

  .page-precision .company-section {
    grid-template-columns: 1fr;
  }

  .problem-backdrop {
    top: 118px;
    right: 0;
    font-size: clamp(34px, 6.8vw, 60px);
  }

  .problem-process > em {
    display: none;
  }

  .selector-grid,
  .problem-list,
  .work-grid,
  .audit-grid,
  .category-large,
  .magazine-grid {
    grid-template-columns: 1fr;
  }

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

  .flow div:nth-child(2n)::after {
    display: none;
  }

  .hero-image,
  .collage-xl,
  .document-stage {
    min-height: 560px;
  }

  .stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .quality-footer-head,
  .challenge-footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .quality-mark {
    width: fit-content;
  }

  .challenge-footer-cta > a {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .selector {
    width: min(100% - 28px, 1180px);
    padding: 48px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .site-header .brand-logo {
    width: 150px;
  }

  .fixed-title {
    text-wrap: balance !important;
  }

  .fixed-copy {
    white-space: normal;
  }

  .page-challenge .site-header {
    top: 8px;
    width: calc(100% - 16px);
    margin: 8px;
    border-radius: 14px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-precision,
  .hero-quality-page,
  .hero-challenge-page {
    padding-inline: 16px;
  }

  .stats,
  .matrix,
  .timeline,
  .flow,
  .doc-mini,
  .doc-row,
  .company-section dl > div {
    grid-template-columns: 1fr;
  }

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

  .drawing-contact-copy h2 span,
  .page-precision .company-section h2 span,
  .page-quality .quality-split h2 span,
  .quality-cta h2 span,
  .challenge-cta h2 span {
    white-space: normal;
  }

  .problem-section .section-head {
    padding-top: 126px;
  }

  .problem-process {
    grid-template-columns: auto auto 1fr auto 1fr auto;
    gap: 8px;
    font-size: 8px;
  }

  .problem-process > span {
    width: 24px;
    height: 24px;
  }

  .problem-backdrop {
    top: 104px;
    right: 0;
    font-size: 36px;
  }

  .drawing-form {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .file-drop {
    grid-template-columns: auto 1fr;
  }

  .file-drop em {
    grid-column: 2;
    width: fit-content;
  }

  .flow div::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

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

  .precision-footer-title {
    padding-top: 54px;
  }

  .quality-footer-head {
    padding-top: 58px;
  }

  .quality-mark {
    width: 100%;
    min-width: 0;
  }

  .footer-challenge {
    padding: 10px;
  }

  .challenge-footer-cta {
    margin-bottom: 10px;
    padding: 34px 22px;
    border-radius: 20px;
  }

  .challenge-footer-cta h2 br {
    display: block;
  }

  .challenge-footer-cta h2 span,
  .category-large h2 span,
  .challenge-cta h2 span {
    white-space: normal;
  }

  .challenge-footer-cta > a {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .footer-challenge .footer-main {
    border-radius: 20px 20px 0 0;
  }

  .footer-challenge .footer-bottom {
    border-radius: 0 0 20px 20px;
  }

  .section {
    width: min(100% - 28px, 1280px);
  }

  .hero-image,
  .collage-xl,
  .document-stage {
    min-height: 440px;
  }

  .split > img,
  .fresh-split > img,
  .proof-gallery img,
  .doc-mini img,
  .doc-row img {
    height: 360px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .actions .btn {
    width: 100%;
  }
}
