:root {
  --yc-blue: #0648ff;
  --yc-blue-pure: #003cff;
  --yc-blue-700: #0736c8;
  --yc-blue-900: #061a51;
  --yc-ink: #07101f;
  --yc-black: #05070c;
  --yc-white: #ffffff;
  --yc-silver: #e8ebf0;
  --yc-gray-050: #f7f8fb;
  --yc-gray-100: #eef1f5;
  --yc-gray-300: #c5ccd6;
  --yc-gray-600: #657083;
  --yc-line: #d9dee8;
  --yc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --yc-max: 1180px;
  --yc-radius: 6px;
  --yc-shadow: 0 24px 80px rgba(7, 16, 31, 0.14);
  --space-section: clamp(72px, 9vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--yc-white);
  color: var(--yc-ink);
  font-family: var(--yc-font);
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--yc-line);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: var(--yc-white);
}

.header--overlay.header--scrolled {
  background: rgba(7, 14, 24, 0.64);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.header--overlay .header-inner {
  width: calc(100% - clamp(48px, 7.85vw, 132px));
  max-width: none;
  min-height: 98px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.logo-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 32px;
  background: transparent;
  color: var(--yc-blue);
  overflow: hidden;
}

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

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--yc-gray-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header--overlay .brand-name span,
.header--overlay .nav a {
  color: rgba(255, 255, 255, 0.74);
}

.header--overlay .brand-name strong {
  color: var(--yc-white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header--overlay .brand-name span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.header--overlay .brand-mark {
  gap: 12px;
}

.header--overlay .logo-box {
  width: 52px;
  min-width: 52px;
  height: 32px;
}

.header--overlay .logo-box img {
  display: block;
}

.header--overlay .nav {
  gap: clamp(18px, 2.3vw, 38px);
}

.header--overlay .nav a {
  padding: 10px 0;
  border-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.header--overlay .nav a:hover,
.header--overlay .nav a.active {
  color: var(--yc-white);
}

.header--overlay .mobile-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--yc-white);
}

.header--overlay .header-actions .button {
  box-shadow: 0 14px 34px rgba(0, 60, 255, 0.28);
}

.header--overlay .header-actions {
  gap: 26px;
}

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

.nav a {
  padding: 12px 13px;
  color: var(--yc-gray-600);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--yc-ink);
  border-color: var(--yc-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  position: relative;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yc-gray-600);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.language-switch svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.language-switch .language-chevron {
  width: 14px;
  height: 14px;
}

.header--overlay .language-switch {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.header--overlay .header-actions > .button {
  min-width: 150px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 800;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 178px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 16, 31, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(5, 7, 12, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-control.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--yc-ink);
  cursor: pointer;
  text-align: left;
}

.language-option strong {
  font-size: 13px;
}

.language-option span {
  color: var(--yc-gray-600);
  font-size: 13px;
  font-weight: 700;
}

.language-option:hover,
.language-option.active {
  background: var(--yc-gray-100);
}

.header--overlay .language-menu {
  background: rgba(10, 17, 28, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.header--overlay .language-option {
  color: var(--yc-white);
}

.header--overlay .language-option span {
  color: rgba(255, 255, 255, 0.66);
}

.header--overlay .language-option:hover,
.header--overlay .language-option.active {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--yc-line);
  background: var(--yc-white);
  color: var(--yc-ink);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--yc-radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yc-blue);
  color: var(--yc-white);
}

.button-primary:hover {
  background: var(--yc-blue-700);
}

.button-secondary {
  background: var(--yc-white);
  color: var(--yc-ink);
  border-color: var(--yc-line);
}

.button-dark {
  background: var(--yc-ink);
  color: var(--yc-white);
}

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--yc-black);
  color: var(--yc-white);
}

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

.hero-bg {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: brightness(1.16) contrast(1.02);
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 31, 45, 0.58) 0%, rgba(18, 31, 45, 0.36) 44%, rgba(8, 16, 28, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 12, 22, 0.3) 0%, rgba(7, 16, 31, 0.06) 44%, rgba(3, 8, 15, 0.28) 100%);
}

.hero-fullscreen-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  width: calc(100% - clamp(48px, 7.85vw, 132px));
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(238px, 34vh, 330px);
  padding-bottom: 56px;
}

.hero-content {
  width: min(820px, 100%);
  margin-left: clamp(18px, 2vw, 34px);
  padding-top: 0;
}

.hero-content h1 {
  max-width: 800px;
  margin: 0;
  color: var(--yc-white);
  font-size: clamp(56px, 5.3vw, 86px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
  white-space: nowrap;
}

.hero-content p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions-light {
  gap: 16px;
  margin-top: clamp(46px, 5.8vw, 62px);
}

.hero-button-primary,
.hero-button-secondary {
  min-width: 206px;
  min-height: 52px;
  padding-inline: 30px;
}

.hero-button-primary {
  box-shadow: 0 18px 42px rgba(0, 60, 255, 0.32);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--yc-white);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--yc-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.98fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 102px) 0 clamp(32px, 5vw, 64px);
  gap: clamp(34px, 5vw, 68px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yc-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 24px 0 20px;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--yc-gray-600);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--yc-line);
  border-left: 1px solid var(--yc-line);
}

.metric {
  min-height: 118px;
  padding: 24px 18px;
  border-right: 1px solid var(--yc-line);
  border-bottom: 1px solid var(--yc-line);
}

.metric strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--yc-gray-600);
  font-size: 12px;
  line-height: 1.5;
}

.brand-hero-media {
  position: relative;
  min-height: 650px;
  background: var(--yc-gray-100);
  overflow: hidden;
  box-shadow: none;
}

.brand-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.section {
  padding: var(--space-section) 0;
}

.brand-divider {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: var(--yc-white);
  color: var(--yc-blue-pure);
}

.brand-divider-inner {
  display: grid;
  justify-items: center;
  min-height: 78vh;
  grid-template-rows: auto 1fr auto;
}

.brand-divider h2 {
  margin: 0;
  color: var(--yc-blue-pure);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 1;
}

.brand-divider img {
  align-self: center;
  width: min(360px, 56vw);
}

.brand-divider span {
  color: var(--yc-blue-pure);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 700;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  min-height: 720px;
  background: var(--yc-white);
}

.image-feature.reverse {
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
}

.image-feature.reverse .image-feature-media {
  order: 2;
}

.image-feature.reverse .image-feature-copy {
  order: 1;
}

.image-feature-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--yc-gray-100);
}

.image-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 7vw, 96px);
  background: var(--yc-blue-pure);
  color: var(--yc-white);
}

.image-feature-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.image-feature-copy h2 {
  max-width: 620px;
  margin: 24px 0 18px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
}

.image-feature-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.media-poster {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--yc-black);
}

.media-poster img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  display: block;
}

.media-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 12, 0.58), rgba(5, 7, 12, 0.08) 48%, rgba(5, 7, 12, 0));
  content: "";
}

.media-poster-copy {
  position: absolute;
  z-index: 1;
  left: max(20px, calc((100vw - var(--yc-max)) / 2));
  bottom: clamp(38px, 8vw, 96px);
  max-width: 580px;
  color: var(--yc-white);
}

.media-poster-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
}

.media-poster-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.application-image-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--yc-silver);
}

.application-image-grid figure.wide {
  grid-column: span 2;
  min-height: 560px;
}

.application-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.application-image-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: var(--yc-white);
  color: var(--yc-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-gray {
  background: var(--yc-gray-050);
}

.section-blue {
  background: var(--yc-blue);
  color: var(--yc-white);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.section-title p {
  margin: 0;
  color: var(--yc-gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.section-blue .section-title p,
.section-blue .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.application-card,
.capability-card,
.value-card {
  min-height: 250px;
  padding: 28px;
  background: var(--yc-white);
  border: 1px solid var(--yc-line);
  border-radius: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.application-card:hover,
.capability-card:hover,
.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 72, 255, 0.34);
  box-shadow: 0 18px 44px rgba(7, 16, 31, 0.1);
}

.card-index {
  color: var(--yc-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-card h3,
.application-card h3,
.capability-card h3,
.value-card h3 {
  margin: 20px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.product-card p,
.application-card p,
.capability-card p,
.value-card p {
  margin: 0;
  color: var(--yc-gray-600);
  font-size: 14px;
  line-height: 1.68;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  padding: 7px 10px;
  background: var(--yc-gray-100);
  color: var(--yc-ink);
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--yc-blue);
  font-size: 13px;
  font-weight: 900;
}

.factory-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.factory-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 76px);
  background: var(--yc-ink);
  color: var(--yc-white);
}

.factory-copy h2 {
  margin: 20px 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
}

.factory-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.factory-graphic {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 72, 255, 0.8), rgba(6, 26, 81, 0.86)),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.11) 42px 43px);
}

.factory-graphic::before {
  position: absolute;
  inset: 14% 10% 18% 16%;
  border: 18px solid rgba(255, 255, 255, 0.72);
  content: "";
  transform: skewX(-14deg);
}

.factory-graphic::after {
  position: absolute;
  right: -20px;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  content: "YICHENG";
  font-size: clamp(46px, 9vw, 132px);
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.process-item {
  min-height: 220px;
  padding: 28px;
  background: rgba(5, 7, 12, 0.18);
}

.process-item strong {
  display: block;
  margin-top: 32px;
  font-size: 21px;
}

.process-item span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.supply-workflow-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #020c1a;
}

.supply-workflow-section .container {
  width: 100%;
  max-width: none;
}

.supply-workflow-card {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(72px, 7vw, 112px) clamp(28px, 6vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 46%, rgba(26, 137, 255, 0.36), transparent 28%),
    radial-gradient(circle at 80% 32%, rgba(73, 199, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #031329 0%, #061f44 48%, #031225 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--yc-white);
}

.supply-workflow-card::before,
.supply-workflow-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.supply-workflow-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16), transparent);
}

.supply-workflow-card::after {
  background:
    linear-gradient(90deg, rgba(2, 10, 22, 0.94) 0%, rgba(2, 10, 22, 0.68) 28%, rgba(2, 10, 22, 0.12) 58%, rgba(2, 10, 22, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 10, 22, 0.08), rgba(2, 10, 22, 0.36));
}

.supply-workflow-copy {
  position: relative;
  z-index: 1;
}

.supply-workflow-copy {
  display: grid;
  align-content: center;
  width: min(430px, 34vw);
  min-height: calc(100svh - clamp(144px, 14vw, 224px));
}

.supply-workflow-copy .eyebrow {
  color: rgba(177, 219, 255, 0.86);
}

.supply-workflow-copy h2 {
  max-width: 420px;
  margin: 18px 0 34px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.supply-workflow-steps {
  display: grid;
  gap: 18px;
}

.supply-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.supply-step:not(:last-child)::after {
  position: absolute;
  top: 40px;
  bottom: -16px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(73, 199, 255, 0.52), rgba(73, 199, 255, 0.08));
  content: "";
}

.supply-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(9, 36, 76, 0.78);
  border: 1px solid rgba(137, 205, 255, 0.42);
  border-radius: 50%;
  color: #8fd8ff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(27, 151, 255, 0.24);
}

.supply-step h3 {
  margin: 0 0 6px;
  color: var(--yc-white);
  font-size: 15px;
  line-height: 1.3;
}

.supply-step p {
  margin: 0;
  color: rgba(226, 241, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.supply-map-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
}

.supply-map-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.supply-map-reference {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.supply-map-reference::before,
.supply-map-reference::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.supply-map-reference::before {
  background:
    linear-gradient(90deg, rgba(2, 10, 22, 0.95) 0%, rgba(2, 10, 22, 0.7) 24%, rgba(2, 10, 22, 0.14) 54%, rgba(2, 10, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(2, 10, 22, 0.04), rgba(2, 10, 22, 0.32));
}

.supply-map-reference::after {
  background:
    radial-gradient(circle at 72% 42%, rgba(75, 197, 255, 0.24), transparent 16%),
    radial-gradient(circle at 47% 22%, rgba(75, 197, 255, 0.14), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.supply-map-reference img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.05) brightness(1.02);
  transform-origin: 75% 42%;
  animation: supplyReferenceZoom 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.supply-map-caption {
  position: absolute;
  right: min(360px, 25vw);
  bottom: clamp(24px, 4vw, 48px);
  left: 40%;
  margin: 0;
  color: rgba(226, 241, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.supply-map-caption::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid rgba(226, 241, 255, 0.46);
  border-radius: 50%;
  color: #bfe7ff;
  content: ">";
  font-size: 11px;
  font-weight: 900;
}

.supply-storyboard {
  position: absolute;
  top: clamp(34px, 5vw, 64px);
  right: clamp(26px, 3.8vw, 54px);
  bottom: clamp(34px, 5vw, 64px);
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 14px;
  width: min(270px, 22%);
}

.supply-story-card {
  padding: 13px;
  background: rgba(5, 24, 52, 0.58);
  border: 1px solid rgba(137, 205, 255, 0.18);
  border-radius: 8px;
  opacity: 0.58;
  transform: translateY(0);
  animation-duration: 3.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.supply-story-card:nth-child(1) {
  animation-name: supplyStoryOne;
}

.supply-story-card:nth-child(2) {
  animation-name: supplyStoryTwo;
}

.supply-story-card:nth-child(3) {
  animation-name: supplyStoryThree;
}

.supply-story-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.supply-story-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(22, 92, 181, 0.84);
  border-radius: 50%;
  color: var(--yc-white);
  font-size: 11px;
  font-weight: 900;
}

.supply-story-heading strong {
  color: rgba(238, 248, 255, 0.9);
  font-size: 13px;
  line-height: 1.25;
}

.supply-story-preview {
  display: block;
  width: 100%;
  height: auto;
  min-height: 86px;
  background: rgba(3, 18, 39, 0.82);
  border-radius: 6px;
}

.supply-story-card p {
  margin: 10px 0 0;
  color: rgba(226, 241, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

@keyframes supplyReferenceZoom {
  0%,
  30% {
    transform: translate(18%, 10%) scale(2.45);
  }

  64% {
    transform: translate(7%, 4%) scale(1.55);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes supplyStoryOne {
  0%,
  32% {
    background: rgba(11, 59, 116, 0.86);
    border-color: rgba(132, 214, 255, 0.68);
    opacity: 1;
    transform: translateY(-2px);
  }

  44%,
  100% {
    opacity: 0.58;
    transform: translateY(0);
  }
}

@keyframes supplyStoryTwo {
  0%,
  32% {
    opacity: 0.58;
  }

  42%,
  66% {
    background: rgba(11, 59, 116, 0.86);
    border-color: rgba(132, 214, 255, 0.68);
    opacity: 1;
    transform: translateY(-2px);
  }

  78%,
  100% {
    opacity: 0.58;
    transform: translateY(0);
  }
}

@keyframes supplyStoryThree {
  0%,
  64% {
    opacity: 0.58;
  }

  76%,
  100% {
    background: rgba(11, 59, 116, 0.86);
    border-color: rgba(132, 214, 255, 0.68);
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .supply-map-reference img,
  .supply-story-card {
    animation: none;
  }

  .supply-map-reference img {
    transform: none;
  }

  .supply-story-card {
    opacity: 0.78;
  }

  .supply-story-card:nth-child(3) {
    background: rgba(11, 59, 116, 0.86);
    border-color: rgba(132, 214, 255, 0.68);
    opacity: 1;
  }
}

.page-hero {
  padding: clamp(72px, 10vw, 130px) 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(7, 16, 31, 0.055) 94px 95px);
  border-bottom: 1px solid var(--yc-line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.body-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.body-copy p {
  color: var(--yc-gray-600);
  line-height: 1.78;
}

.spec-panel {
  padding: 28px;
  background: var(--yc-gray-050);
  border: 1px solid var(--yc-line);
  border-radius: var(--yc-radius);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--yc-line);
  color: var(--yc-gray-600);
  font-size: 14px;
}

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

.spec-row strong {
  color: var(--yc-ink);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.56fr);
  gap: 40px;
  padding: clamp(34px, 6vw, 64px);
  background: var(--yc-ink);
  color: var(--yc-white);
  border-radius: var(--yc-radius);
  overflow: hidden;
}

.inquiry h2 {
  margin: 16px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.inquiry p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.form {
  display: grid;
  gap: 12px;
}

.form-honeypot {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--yc-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yc-white);
  outline: 0;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form select option {
  color: var(--yc-ink);
}

.form textarea {
  min-height: 128px;
  resize: vertical;
}

.form button[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status[data-status="success"] {
  color: #86efac;
}

.form-status[data-status="error"] {
  color: #fca5a5;
}

.footer {
  padding: 54px 0 34px;
  background: var(--yc-black);
  color: var(--yc-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.5fr);
  gap: 36px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

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

  .header--overlay .header-inner {
    width: min(100% - 40px, var(--yc-max));
    min-height: 76px;
  }

  .mobile-toggle {
    display: block;
  }

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

  .header--overlay .nav {
    top: 76px;
    gap: 0;
    background: rgba(5, 10, 18, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 15px 0;
  }

  .header-actions .button {
    display: none;
  }

  .header--overlay .brand-name strong {
    font-size: 18px;
  }

  .hero-grid,
  .section-title,
  .split-layout,
  .inquiry,
  .supply-workflow-card,
  .factory-band,
  .image-feature,
  .image-feature.reverse {
    grid-template-columns: 1fr;
  }

  .image-feature.reverse .image-feature-media,
  .image-feature.reverse .image-feature-copy {
    order: initial;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-fullscreen-inner {
    align-items: flex-end;
    width: min(100% - 40px, var(--yc-max));
    padding-top: 120px;
    padding-bottom: clamp(56px, 12vw, 92px);
  }

  .hero-content {
    width: min(640px, 100%);
    margin-left: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 31, 45, 0.62) 0%, rgba(18, 31, 45, 0.38) 58%, rgba(8, 16, 28, 0.12) 100%),
      linear-gradient(180deg, rgba(5, 12, 22, 0.32) 0%, rgba(7, 16, 31, 0.08) 34%, rgba(3, 8, 15, 0.34) 100%);
  }

  .brand-hero-media {
    min-height: 520px;
  }

  .metric-strip,
  .card-grid,
  .card-grid.four,
  .card-grid.two,
  .process-grid,
  .footer-grid,
  .application-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-image-grid figure.wide {
    grid-column: span 2;
  }

  .supply-workflow-card {
    min-height: 100vh;
    min-height: 100svh;
    padding: 72px 32px;
  }

  .supply-workflow-copy {
    align-content: center;
    width: min(460px, 48vw);
    min-height: calc(100svh - 144px);
  }

  .supply-workflow-copy h2 {
    max-width: 680px;
  }

  .supply-map-viewport {
    min-height: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--yc-max));
  }

  .brand-name span {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-fullscreen-inner {
    width: min(100% - 28px, var(--yc-max));
    padding-top: 86px;
    padding-bottom: 44px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10.6vw, 48px);
    line-height: 1.04;
  }

  .hero-content h1 span {
    white-space: normal;
  }

  .hero-content p {
    max-width: 36rem;
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions-light {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
    width: min(100%, 320px);
  }

  .hero-button-primary,
  .hero-button-secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .metric-strip,
  .card-grid,
  .card-grid.four,
  .card-grid.two,
  .process-grid,
  .footer-grid,
  .field-grid,
  .application-image-grid {
    grid-template-columns: 1fr;
  }

  .brand-hero-media {
    min-height: 380px;
  }

  .brand-divider {
    min-height: 72vh;
  }

  .brand-divider-inner {
    min-height: 58vh;
  }

  .image-feature,
  .image-feature-media,
  .media-poster,
  .media-poster img {
    min-height: 520px;
  }

  .image-feature-copy {
    padding: 38px 20px;
  }

  .application-image-grid figure,
  .application-image-grid figure.wide {
    grid-column: auto;
    min-height: 320px;
  }

  .supply-workflow-section .container {
    width: 100%;
  }

  .supply-workflow-card {
    min-height: 100vh;
    min-height: 100svh;
    padding: 56px 20px;
  }

  .supply-workflow-card::after {
    background:
      linear-gradient(90deg, rgba(2, 10, 22, 0.9), rgba(2, 10, 22, 0.46)),
      linear-gradient(180deg, rgba(2, 10, 22, 0.18), rgba(2, 10, 22, 0.5));
  }

  .supply-workflow-copy {
    width: min(100%, 420px);
    min-height: calc(100svh - 112px);
  }

  .supply-workflow-copy h2 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .supply-step {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .supply-step-number {
    width: 38px;
    height: 38px;
  }

  .supply-step:not(:last-child)::after {
    left: 18px;
  }

  .supply-map-viewport {
    min-height: 100%;
  }

  .media-poster-copy {
    left: 20px;
    right: 20px;
  }

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

.supply-workflow-section {
  --supply-map-opacity: 1;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: clip;
  background: #001e96;
  color: var(--yc-white);
  isolation: isolate;
}

.supply-workflow-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(132px, 16vh, 188px) clamp(28px, 4.5vw, 76px) clamp(36px, 6vh, 64px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 16, 71, 0.12), rgba(0, 18, 105, 0.26)),
    var(--yc-blue-pure);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.supply-workflow-card::before,
.supply-workflow-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.supply-workflow-card::before {
  background:
    linear-gradient(90deg, rgba(0, 31, 145, 0.88) 0%, rgba(0, 42, 182, 0.58) 30%, rgba(0, 60, 255, 0.06) 62%, rgba(0, 45, 190, 0.08) 100%),
    linear-gradient(180deg, rgba(1, 14, 62, 0.58) 0%, rgba(0, 45, 190, 0.04) 42%, rgba(0, 17, 86, 0.38) 100%);
}

.supply-workflow-card::after {
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  mix-blend-mode: screen;
  opacity: 0.48;
}

.supply-map-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
  opacity: var(--supply-map-opacity);
  transition: opacity 420ms linear;
}

.supply-map-viewport,
.supply-map-reference {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.supply-map-reference::before,
.supply-map-reference::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.supply-map-reference::before {
  background:
    linear-gradient(0deg, rgba(0, 60, 255, 0.08), rgba(0, 60, 255, 0.08)),
    radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.18), transparent 19%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.supply-map-reference::after {
  background:
    linear-gradient(90deg, rgba(0, 23, 113, 0.74) 0%, rgba(0, 34, 154, 0.36) 31%, rgba(0, 60, 255, 0.03) 64%, rgba(0, 31, 145, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 14, 82, 0.34), rgba(0, 21, 106, 0.2) 44%, rgba(0, 11, 62, 0.42));
}

.supply-map-reference img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.03) brightness(0.98);
  transform: none;
  animation: none;
}

.supply-workflow-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(700px, 45vw);
  min-height: 0;
  padding-bottom: clamp(28px, 7vh, 72px);
}

.supply-workflow-copy .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.supply-workflow-copy .eyebrow::before {
  width: 34px;
  height: 2px;
}

.supply-workflow-copy h2 {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--yc-white);
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.supply-workflow-support {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  width: min(470px, 100%);
  margin-top: clamp(26px, 4.8vh, 42px);
  color: rgba(255, 255, 255, 0.82);
}

.supply-workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.supply-workflow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.supply-workflow-support strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.supply-workflow-support p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.supply-workflow-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1184px, calc(100vw - 80px));
  margin: 0 auto;
  gap: 0;
  background: rgba(59, 93, 200, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 58px rgba(0, 24, 130, 0.32);
  backdrop-filter: blur(6px);
}

.supply-step {
  position: relative;
  display: block;
  min-height: 256px;
  padding: 30px 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.supply-step:last-child {
  border-right: 0;
}

.supply-step:not(:last-child)::after {
  display: none;
}

.supply-step-number {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.supply-step h3 {
  margin: 0 0 14px;
  color: var(--yc-white);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 800;
  line-height: 1.15;
}

.supply-step p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.48;
}

@media (prefers-reduced-motion: reduce) {
  .supply-map-panel {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .supply-workflow-card {
    padding-inline: 32px;
  }

  .supply-workflow-copy {
    width: min(560px, 52vw);
  }

  .supply-workflow-steps {
    width: calc(100vw - 64px);
  }

  .supply-step {
    min-height: 236px;
    padding: 26px 24px;
  }

  .supply-step p {
    font-size: 15px;
  }
}

@media (max-width: 820px) {
  .supply-workflow-card {
    grid-template-rows: auto auto;
    min-height: auto;
    padding: 112px 20px 34px;
  }

  .supply-map-reference img {
    object-position: 88% 36%;
  }

  .supply-workflow-copy {
    width: min(100%, 560px);
    padding-bottom: 38px;
  }

  .supply-workflow-copy h2 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .supply-workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .supply-step {
    min-height: 210px;
  }

  .supply-step:nth-child(2n) {
    border-right: 0;
  }

  .supply-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 540px) {
  .supply-workflow-card {
    padding: 98px 16px 24px;
  }

  .supply-workflow-card::before {
    background:
      linear-gradient(90deg, rgba(0, 23, 113, 0.9), rgba(0, 42, 182, 0.58)),
      linear-gradient(180deg, rgba(1, 14, 62, 0.72), rgba(0, 34, 154, 0.24) 52%, rgba(0, 11, 62, 0.5));
  }

  .supply-workflow-copy h2 {
    font-size: 37px;
  }

  .supply-workflow-support {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .supply-workflow-icon {
    width: 34px;
    height: 34px;
  }

  .supply-workflow-support p {
    font-size: 14px;
  }

  .supply-workflow-steps {
    grid-template-columns: 1fr;
  }

  .supply-step,
  .supply-step:nth-child(2n) {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .supply-step:last-child {
    border-bottom: 0;
  }

  .supply-step-number {
    margin-bottom: 16px;
  }

  .supply-step p {
    max-width: none;
    font-size: 15px;
  }
}
