:root {
  --ink: #102532;
  --ink-soft: #314754;
  --muted: #667780;
  --line: #dce5e5;
  --line-strong: #cbd8d8;
  --paper: #f4f7f6;
  --paper-green: #edf4f2;
  --white: #ffffff;
  --teal: #0d7777;
  --teal-dark: #063e43;
  --teal-deep: #062c35;
  --lime: #a7cf2f;
  --lime-soft: #eaf4c9;
  --coral: #ef704f;
  --navy: #173449;
  --shadow-sm: 0 12px 30px rgba(7, 43, 50, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 43, 50, 0.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --wrap: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font-family: inherit;
}

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

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

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

h1,
h2,
h3,
p {
  word-break: keep-all;
}

.wrap,
.nav,
.footer-inner {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(203, 216, 216, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 224px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2b404b;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding-block: 27px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transition: right 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.lang,
.icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang:hover,
.icon-link:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(13, 119, 119, 0.12);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main > section[id] {
  scroll-margin-top: 76px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 12%, rgba(167, 207, 47, 0.19), transparent 25%),
    linear-gradient(116deg, #052a33 0%, #073e43 52%, #14384a 100%);
}

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

.hero::before {
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48.2% 48.5%, transparent 48.7%),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.06) 73px 74px);
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.hero-inner {
  width: var(--wrap);
  min-height: 650px;
  margin-inline: auto;
  padding: 92px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.72fr);
  gap: 70px;
  align-items: center;
}

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

.hero .eyebrow,
.section-dark .kicker,
.contact-band .kicker {
  color: var(--lime);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.025em;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: #bfe65b;
  white-space: nowrap;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bfe65b, rgba(191, 230, 91, 0.08));
  transform-origin: left center;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.82;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #132d37;
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(167, 207, 47, 0.2);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--teal-deep);
}

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

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 65px rgba(0, 18, 27, 0.24);
}

.hero-card.main {
  width: calc(100% - 28px);
  padding: 26px;
}

.hero-card.small {
  margin-right: -14px;
  width: 210px;
  padding: 19px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.93);
}

.flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.flow-head span:first-child {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.status-pill,
.mini-label,
.tag,
.country-chip,
.state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.status-pill {
  gap: 7px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(167, 207, 47, 0.12);
}

.flow-route {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.route-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(5, 34, 42, 0.35);
}

.route-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--lime);
  background: rgba(167, 207, 47, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.route-row strong,
.route-row small {
  display: block;
}

.route-row strong {
  font-size: 14px;
}

.route-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.route-row > span:last-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 18px;
}

.hero-card.small small,
.hero-card.small strong {
  display: block;
}

.hero-card.small small {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-card.small strong {
  margin-top: 6px;
  font-size: 26px;
}

.hero-card.small p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.metrics {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.metric {
  min-height: 132px;
  padding: 28px 30px;
  display: grid;
  align-content: center;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong,
.metric small {
  display: block;
}

.metric strong {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.035em;
}

.metric small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--paper);
}

.section-tint {
  background: var(--paper-green);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(167, 207, 47, 0.11), transparent 23%),
    linear-gradient(135deg, var(--teal-deep), #102f43);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head.compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.section-head h2,
.sourcing-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-head > p,
.lead,
.company-copy > p,
.sourcing-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.section-dark .section-head > p,
.section-dark .lead,
.section-dark .sourcing-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px 56px;
  align-items: stretch;
}

.company-heading {
  grid-column: 1 / -1;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.company-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.company-heading h2 span {
  display: block;
}

.company-copy {
  min-width: 0;
  align-self: center;
}

.company-copy > p {
  margin: 0;
  line-height: 1.9;
}

.company-copy > p:first-child {
  color: var(--ink-soft);
}

.company-copy > p + p {
  margin-top: 22px;
  font-size: 14px;
}

.company-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--lime);
  border-radius: 0 12px 12px 0;
  background: var(--paper-green);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.fact {
  min-width: 0;
  min-height: 128px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.fact:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fact:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.fact small {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.fact strong {
  font-size: 17px;
  line-height: 1.45;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.business-card {
  min-height: 298px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:focus-within {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal);
  background: #e7f2f0;
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-card h3 {
  margin: 25px 0 0;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.business-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.card-more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.business-card .card-icon {
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.business-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 15px;
  border: 1px solid #c9dedb;
  border-radius: 12px;
  background: var(--paper-green);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
}

.business-cta svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.business-cta:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.business-cta:active {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .business-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
  }

  .business-card:hover .card-icon {
    color: var(--white);
    background: var(--teal);
    transform: translateY(-2px);
  }

  .business-cta:hover {
    color: var(--white);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
  }

  .business-cta:hover svg {
    transform: translateX(3px);
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card::before,
.category-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.category-card::before {
  width: 180px;
  height: 180px;
  top: 36px;
  right: -44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025), 0 0 0 58px rgba(255, 255, 255, 0.018);
  transition: transform 600ms ease, border-color 300ms ease;
}

.category-card::after {
  top: 54px;
  left: 28px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--lime);
  transform-origin: left center;
  transition: transform 400ms ease;
}

.category-card .state {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--lime);
  background: rgba(167, 207, 47, 0.12);
}

.category-card h3 {
  margin: 0;
  font-size: 27px;
}

.category-card p {
  min-height: 70px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.68;
}

.category-card .tag-row {
  margin-top: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 207, 47, 0.62);
    background: rgba(255, 255, 255, 0.1);
  }

  .category-card:hover::before {
    transform: translate(-12px, 8px) scale(1.08);
    border-color: rgba(167, 207, 47, 0.35);
  }

  .category-card:hover::after {
    transform: scaleX(1.55);
  }
}

/* Run once when each item enters view. With no JS, all content stays visible. */
@media (prefers-reduced-motion: no-preference) {
  #categories .is-category-visible {
    animation: category-rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--category-delay, 0ms) backwards;
  }

  .category-card.is-category-visible::before {
    animation: category-orbit-in 2.2s ease-out var(--category-delay, 0ms) backwards;
  }

  .category-card.is-category-visible::after {
    animation: category-line-in 1.25s cubic-bezier(0.22, 1, 0.36, 1) var(--category-delay, 0ms) backwards;
  }
}

@keyframes category-rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes category-orbit-in {
  0% { opacity: 0.25; transform: translate(24px, -12px) scale(0.8); }
  55% { opacity: 1; transform: translate(-10px, 6px) scale(1.07); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes category-line-in {
  0% { opacity: 0; transform: scaleX(0); }
  65% { opacity: 1; transform: scaleX(1.65); }
  100% { opacity: 1; transform: scaleX(1); }
}

.tag-row,
.country-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  min-height: 28px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand-showcase {
  display: grid;
  gap: 22px;
}

.brand-feature {
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(167, 207, 47, 0.18), transparent 25%),
    linear-gradient(145deg, #062e37, #12364b);
}

.brand-feature .mini-label {
  width: fit-content;
  padding: 8px 11px;
  color: var(--lime);
  background: rgba(167, 207, 47, 0.12);
}

.brand-feature h3 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.brand-feature p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.brand-feature .button {
  width: fit-content;
  gap: 16px;
  white-space: nowrap;
}

.brand-countries {
  display: grid;
  gap: 14px;
}

.brand-country {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.brand-country-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.brand-country-heading img {
  flex: 0 0 32px;
  width: 32px;
  height: 23px;
  object-fit: cover;
  border-radius: 4px;
}

.brand-country-heading span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.brand-country-heading h3 {
  margin: 5px 0 0;
  font-size: 17px;
  line-height: 1.4;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-country--usa .brand-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-list > li {
  min-width: 0;
}

.brand-tile {
  min-height: 76px;
  height: 100%;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.brand-tile:hover,
.brand-tile:focus-visible {
  border-color: var(--teal);
  background: var(--paper-green);
  color: var(--teal-dark);
}

.brand-tile:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.brand-tile strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}

.brand-tile > span {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 18px;
}

.sourcing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.sourcing-copy > p {
  margin-top: 24px;
}

.sourcing-actions {
  margin-top: 26px;
}

.sourcing-actions .button {
  gap: 18px;
}

.country-row {
  margin-top: 28px;
}

.country-chip {
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.country-chip img {
  width: 21px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

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

.pipeline-hint {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.6;
}

.pipeline-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.065);
  transition: border-color 200ms ease, background 200ms ease;
}

.pipeline-item > summary {
  min-height: 90px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  gap: 16px;
  align-items: center;
  border-radius: inherit;
  cursor: pointer;
  list-style: none;
}

.pipeline-item > summary::-webkit-details-marker {
  display: none;
}

.pipeline-item > summary::marker {
  content: "";
}

.pipeline-item > summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.pipeline-item[open] {
  border-color: rgba(167, 207, 47, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.pipeline-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-deep);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.pipeline-label strong,
.pipeline-label small {
  display: block;
}

.pipeline-label strong {
  font-size: 16px;
}

.pipeline-label small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.pipeline-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--lime);
}

.pipeline-toggle::before,
.pipeline-toggle::after {
  content: "";
  position: absolute;
  inset: 13px 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.pipeline-toggle::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.pipeline-item[open] .pipeline-toggle::after {
  transform: rotate(0deg);
}

.pipeline-detail {
  padding: 0 20px 22px 78px;
}

.pipeline-detail > p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.pipeline-detail ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.pipeline-detail li::marker {
  color: var(--lime);
}

.pipeline-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(167, 207, 47, 0.4);
  border-radius: 10px;
  color: var(--lime);
  background: rgba(167, 207, 47, 0.06);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.pipeline-inquiry:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.pipeline-inquiry:active {
  color: var(--teal-deep);
  background: var(--lime);
}

@media (hover: hover) and (pointer: fine) {
  .pipeline-item:hover {
    border-color: rgba(167, 207, 47, 0.55);
  }

  .pipeline-inquiry:hover {
    color: var(--teal-deep);
    background: var(--lime);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pipeline-item[open] .pipeline-detail {
    animation: sourcing-detail-in 180ms ease-out;
  }
}

@keyframes sourcing-detail-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.partner-heading {
  gap: 40px;
  margin-bottom: 34px;
}

.partner-heading h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.25;
}

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

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.partner-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.partner-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--teal);
  background: var(--paper-green);
  font-size: 12px;
  font-weight: 900;
}

.partner-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.partner-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.partner-prep {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--paper);
}

.partner-prep > span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.partner-prep p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.partner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid #c9dedb;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--paper-green);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 150ms ease;
}

.partner-cta svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.partner-card:focus-within {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.partner-cta:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.partner-cta:active {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .partner-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
  }

  .partner-cta:hover {
    color: var(--white);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
  }

  .partner-cta:hover svg {
    transform: translateX(3px);
  }
}

.process-shell {
  display: grid;
  gap: 36px;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 48px;
}

.process-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.process-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

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

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 38px;
  right: -12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--teal);
  background: var(--paper);
  font-size: 18px;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.step-num {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--lime-soft);
  font-size: 13px;
  font-weight: 900;
}

.step:first-child .step-num {
  background: var(--lime);
}

.step-phase {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-body {
  margin-bottom: 24px;
}

.step h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.step-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid #c9dedb;
  border-radius: 11px;
  color: var(--teal-dark);
  background: var(--white);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 150ms ease;
}

.step-action.is-primary {
  color: var(--white);
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.step-action svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.step-action:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.step-action:active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .step-action:hover {
    color: var(--white);
    background: var(--teal);
    border-color: var(--teal);
  }

  .step-action:hover svg {
    transform: translateX(3px);
  }
}

.systems-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.systems-head {
  position: relative;
  overflow: hidden;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: linear-gradient(125deg, var(--teal-deep), #135759);
}

.systems-head::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% 0;
  width: 55%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.systems-head > * {
  position: relative;
  z-index: 1;
}

.systems-head > div {
  min-width: 0;
}

.systems-head .kicker {
  margin-bottom: 7px;
  color: var(--lime);
}

.systems-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
}

.systems-year {
  color: var(--lime);
  font-size: 18px;
  font-weight: 900;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: background 240ms ease;
}

.system-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
}

.system-card + .system-card {
  border-left: 1px solid var(--line);
}

.system-card small {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.system-card h3 {
  margin: 30px 0 0;
  font-size: 24px;
}

.system-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.system-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.system-link-arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.system-card .text-link:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}

.system-card:focus-within::after {
  transform: scaleX(1);
}

.system-card.is-soon {
  background: var(--paper-green);
}

.system-card.is-soon .text-link {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  color: #55731a;
  background: var(--lime-soft);
  text-decoration: none;
  transform-origin: left center;
  transition: background 200ms ease, color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .system-card:not(.is-soon):hover {
    background: #f7fbf9;
  }

  .system-card:hover::after {
    transform: scaleX(1);
  }

  .system-card .text-link:hover .system-link-arrow {
    transform: translateX(4px);
  }

  .system-card.is-soon .text-link:hover {
    color: var(--teal-deep);
    background: var(--lime);
  }
}

/* A single viewport-triggered sequence; all content is visible without JS. */
@media (prefers-reduced-motion: no-preference) {
  .systems-head.is-system-visible > div {
    animation: system-rise-in 750ms cubic-bezier(0.22, 1, 0.36, 1) var(--system-delay, 0ms) backwards;
  }

  .systems-head.is-system-visible .systems-year {
    animation: system-rise-in 750ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--system-delay, 0ms) + 160ms) backwards;
  }

  .systems-head.is-system-visible::before {
    animation: system-light-sweep 2.5s ease-in-out var(--system-delay, 0ms) backwards;
  }

  .system-card.is-system-visible {
    animation: system-rise-in 850ms cubic-bezier(0.22, 1, 0.36, 1) var(--system-delay, 0ms) backwards;
  }

  .system-card.is-system-visible::after {
    animation: system-line-sweep 1.6s ease-in-out var(--system-delay, 0ms) backwards;
  }

  .system-card.is-soon.is-system-visible .text-link {
    animation: system-badge-in 1.3s ease-out calc(var(--system-delay, 0ms) + 200ms) backwards;
  }
}

@keyframes system-rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes system-light-sweep {
  0% { opacity: 0; transform: translateX(-140%) skewX(-18deg); }
  15%, 75% { opacity: 1; }
  100% { opacity: 0; transform: translateX(220%) skewX(-18deg); }
}

@keyframes system-line-sweep {
  0% { opacity: 0; transform: scaleX(0); }
  55% { opacity: 0.8; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes system-badge-in {
  0% { opacity: 0; transform: scale(0.94); }
  55% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item summary {
  position: relative;
  min-height: 66px;
  padding: 22px 56px 22px 22px;
  border-radius: 15px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.5;
  transition: color 200ms ease, background 200ms ease;
}

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

.faq-item summary::marker {
  content: "";
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -4px;
}

.faq-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--paper-green);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 260ms ease, color 200ms ease, background 200ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 260ms ease;
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] summary {
  color: var(--teal-dark);
  border-radius: 15px 15px 0 0;
}

.faq-item[open] .faq-toggle {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: var(--teal);
  }

  .faq-item summary:hover {
    color: var(--teal-dark);
    background: var(--paper-green);
  }
}

@media (prefers-reduced-motion: no-preference) {
  #faq .is-faq-visible {
    animation: faq-rise-in 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--faq-delay, 0ms) backwards;
  }

  .faq-item.is-faq-expanding > p {
    animation: faq-answer-in 240ms ease-out;
  }
}

@keyframes faq-rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faq-answer-in {
  from { opacity: 0.25; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-band {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 110%, rgba(167, 207, 47, 0.16), transparent 32%),
    linear-gradient(120deg, #063239, #0d6868);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 80px;
  align-items: center;
}

.contact-copy > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  padding: 16px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.contact-item {
  padding: 19px 20px;
  display: grid;
  gap: 6px;
  border-radius: 12px;
  background: rgba(3, 36, 43, 0.3);
}

.contact-item small {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contact-item strong {
  font-size: 15px;
  line-height: 1.55;
}

.site-footer {
  padding: 42px 0;
  color: #60717a;
  background: #e9efed;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-logo {
  width: 168px;
  height: auto;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.company-info {
  max-width: 900px;
  margin: 0;
  color: #60717a;
  font-size: 12px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  color: #8b999e;
  font-size: 12px;
}

.footer-policy-links a,
.footer-policy-links button {
  padding: 0;
  color: #31434f;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-policy-links a:hover,
.footer-policy-links button:hover {
  color: var(--teal);
}

.footer-admin-link {
  min-height: 28px;
  padding: 0 10px !important;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--lime) !important;
}

.policy-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 25, 31, 0.76);
  backdrop-filter: blur(5px);
}

.policy-panel[hidden] {
  display: none;
}

.policy-card {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.policy-card h2 {
  margin: 0 48px 22px 0;
  font-size: 30px;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.policy-card li + li {
  margin-top: 12px;
}

.policy-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 25px;
  cursor: pointer;
}

.policy-close:hover,
.policy-close:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

@media (max-width: 1060px) {
  :root {
    --wrap: min(100% - 36px, 900px);
  }

  .nav-links {
    gap: 15px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    gap: 36px;
  }

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

  .brand-country {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-country-heading {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .step:nth-child(n + 3) {
    border-bottom: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 188px;
    height: 34px;
  }

  .nav-links {
    display: none;
  }

  main > section[id] {
    scroll-margin-top: 66px;
  }

  .hero-inner {
    min-height: auto;
    padding: 76px 0 92px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    align-items: flex-end;
  }

  .hero-card.main {
    width: 100%;
  }

  .hero-card.small {
    margin-right: 0;
  }

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

  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 86px 0;
  }

  .section-head,
  .section-head.compact,
  .sourcing-grid,
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-feature {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brand-list,
  .brand-country--usa .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-list > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .partner-heading {
    gap: 18px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .system-card + .system-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

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

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 28px);
  }

  .site-header {
    position: sticky;
  }

  .nav {
    gap: 12px;
  }

  .brand img {
    width: 164px;
    height: 30px;
  }

  .lang,
  .icon-link {
    width: 39px;
    height: 39px;
    border-radius: 11px;
  }

  .hero-inner {
    padding: 62px 0 78px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.5vw, 54px);
    line-height: 1.15;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions,
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-card.main {
    padding: 19px;
  }

  .hero-card.small {
    width: 174px;
    padding: 15px;
  }

  .route-row {
    grid-template-columns: 38px 1fr auto;
    gap: 11px;
  }

  .route-icon {
    width: 38px;
    height: 38px;
  }

  .metrics {
    margin-top: -26px;
  }

  .metric {
    min-height: 110px;
    padding: 20px;
  }

  .metric strong {
    font-size: 25px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2,
  .sourcing-copy h2,
  .contact h2,
  .process-intro h2 {
    font-size: 33px;
  }

  .section-head > p,
  .lead,
  .company-copy > p,
  .sourcing-copy > p,
  .contact-copy > p {
    font-size: 14px;
  }

  .business-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .company-heading {
    padding-bottom: 22px;
  }

  .company-heading h2 {
    font-size: clamp(27px, 6.8vw, 32px);
  }

  .company-facts {
    padding: 6px;
  }

  .fact {
    min-height: 128px;
    padding: 18px 14px;
    gap: 12px;
  }

  .fact strong {
    font-size: 15px;
  }

  .company-note {
    padding: 16px 18px;
    font-size: 13px;
  }

  .business-card {
    min-height: 250px;
  }

  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -14px;
    padding-right: 14px;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 84%;
    min-height: 340px;
    scroll-snap-align: start;
  }

  .brand-feature {
    padding: 24px 22px;
  }

  .brand-feature h3 {
    font-size: 24px;
  }

  .brand-feature .button {
    width: 100%;
    justify-content: space-between;
  }

  .brand-country {
    padding: 18px 16px;
  }

  .brand-list {
    gap: 8px;
  }

  .brand-tile {
    min-height: 64px;
    padding: 12px;
    gap: 8px;
  }

  .brand-tile strong {
    font-size: 14px;
  }

  .sourcing-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .pipeline-item > summary {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 16px;
  }

  .pipeline-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .pipeline-label strong {
    font-size: 15px;
  }

  .pipeline-detail {
    padding: 0 16px 20px;
  }

  .pipeline-inquiry {
    width: 100%;
    justify-content: space-between;
  }

  .partner-card {
    padding: 22px;
    gap: 14px;
  }

  .partner-card-head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .partner-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .partner-card h3 {
    font-size: 21px;
  }

  .partner-prep {
    padding: 12px 14px;
  }

  .systems-head {
    padding: 28px 24px;
  }

  .systems-year {
    font-size: 15px;
  }

  .system-card {
    min-height: 225px;
    padding: 24px;
  }

  .process-shell {
    gap: 26px;
  }

  .steps {
    grid-template-columns: 1fr;
    padding: 4px 16px;
  }

  .step:nth-child(n) {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .step-head {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
  }

  .step-phase {
    display: none;
  }

  .step-body {
    grid-column: 2;
    margin: 0;
  }

  .step-action {
    grid-column: 2;
    margin: 0;
  }

  .step-num {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .contact-card {
    padding: 10px;
  }

  .contact-item {
    padding: 17px;
  }

  .policy-panel {
    align-items: end;
    padding: 0;
  }

  .policy-card {
    max-height: 92vh;
    padding: 28px 20px;
    border-radius: 22px 22px 0 0;
  }
}

/* A single opening sequence settles in under five seconds. Text remains
   visible without scripts; motion preferences are handled entirely in CSS. */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > .eyebrow {
    animation: hero-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms backwards;
  }

  .hero-title-line {
    animation: hero-rise-in 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .hero-title-line:nth-child(1) { animation-delay: 180ms; }
  .hero-title-line:nth-child(2) { animation-delay: 320ms; }
  .hero-title-line:nth-child(3) { animation-delay: 460ms; }
  .hero-title-line:nth-child(4) { animation-delay: 600ms; }

  .hero-title-accent::after {
    animation: hero-underline-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 1s backwards;
  }

  .hero-copy {
    animation: hero-rise-in 850ms cubic-bezier(0.22, 1, 0.36, 1) 760ms backwards;
  }

  .hero-actions {
    animation: hero-rise-in 850ms cubic-bezier(0.22, 1, 0.36, 1) 900ms backwards;
  }

  .hero-card.main {
    animation: hero-rise-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 380ms backwards;
  }

  .hero-card.small {
    animation: hero-rise-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1s backwards;
  }

  .hero::before {
    animation: hero-light-drift 4.6s ease-out backwards;
  }

  .hero::after {
    animation: hero-orbit-in 4.6s ease-out backwards;
  }

  .hero .route-row {
    --step-delay: 1.3s;
    animation: hero-route-focus 1s ease-in-out var(--step-delay);
  }

  .hero .route-row:nth-child(2) { --step-delay: 2.3s; }
  .hero .route-row:nth-child(3) { --step-delay: 3.3s; }

  .hero .route-icon {
    animation: hero-icon-focus 1s ease-in-out var(--step-delay);
  }

  .hero .route-row > span:last-child {
    animation: hero-route-arrow 1s ease-in-out var(--step-delay);
  }

  .hero .status-pill::before {
    animation: hero-status-pulse 1.4s ease-out 400ms 3;
  }

  .hero-actions .button svg {
    transition: transform 200ms ease;
  }

  .hero-actions .button:hover svg,
  .hero-actions .button:focus-visible svg {
    transform: translateX(4px);
  }
}

@keyframes hero-rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-underline-in {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes hero-light-drift {
  from { opacity: 0.12; transform: translateX(-26px); }
  to { opacity: 0.34; transform: translateX(0); }
}

@keyframes hero-orbit-in {
  from { opacity: 0; transform: translate(24px, 18px) scale(0.9); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes hero-route-focus {
  0%, 100% { border-color: rgba(255, 255, 255, 0.12); background: rgba(5, 34, 42, 0.35); }
  35%, 65% { border-color: rgba(191, 230, 91, 0.65); background: rgba(167, 207, 47, 0.12); }
}

@keyframes hero-icon-focus {
  0%, 100% { color: var(--lime); background: rgba(167, 207, 47, 0.12); }
  35%, 65% { color: var(--teal-deep); background: #bfe65b; }
}

@keyframes hero-route-arrow {
  0%, 100% { color: rgba(255, 255, 255, 0.54); transform: translateX(0); }
  45% { color: #bfe65b; transform: translateX(4px); }
}

@keyframes hero-status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(167, 207, 47, 0.12); }
  50% { box-shadow: 0 0 0 7px rgba(167, 207, 47, 0); }
}

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

  .business-card,
  .business-card .card-icon,
  .business-cta,
  .business-cta svg,
  .category-card,
  .category-card::before,
  .category-card::after,
  .partner-card,
  .partner-cta,
  .partner-cta svg,
  .step-action,
  .step-action svg,
  .system-link-arrow {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
