:root {
  --bg: #edf3ef;
  --surface: rgba(249, 252, 250, 0.78);
  --surface-strong: rgba(252, 255, 253, 0.9);
  --surface-alt: rgba(236, 245, 240, 0.76);
  --ink: #233142;
  --ink-soft: #5f6d7f;
  --line: rgba(58, 84, 74, 0.18);
  --brand: #c9a86a;
  --brand-dark: #1f2a3a;
  --brand-light: #7a6640;
  --gold-dark: #8f6a31;
  --gold-bright: #f2e3bf;
  --gold-mid: #dec18c;
  --gold-deep: #b89052;
  --health: #5bc27f;
  --trade: #d4b25f;
  --danger: #b3261e;
  --ok: #1b7f44;
  --radius: 14px;
  --container: 1200px;
  --glass-shadow: 0 16px 34px rgba(22, 25, 33, 0.1);
  --font-body: "Noto Sans SC", "Noto Sans JP", "Segoe UI", sans-serif;
  --font-display: "Noto Serif SC", "Noto Serif JP", "Times New Roman", serif;
  --fs-body: 16px;
  --fs-nav: 0.96rem;
  --fs-eyebrow: 0.9rem;
  --fs-h1: clamp(2.68rem, 4.9vw, 4.3rem);
  --fs-h2: clamp(1.56rem, 2.55vw, 2.08rem);
  --fs-h3: clamp(1.1rem, 1.52vw, 1.34rem);
  --fs-lead: 1.08rem;
  --fs-lead-hero: 1.03rem;
  --fs-pill: 0.95rem;
  --fs-footer-title: 1.02rem;
  --fs-footer-text: 0.95rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background:
    radial-gradient(980px 560px at -8% -12%, rgba(96, 160, 128, 0.16), transparent 62%),
    radial-gradient(920px 520px at 108% -8%, rgba(118, 183, 148, 0.14), transparent 60%),
    radial-gradient(900px 560px at 50% 118%, rgba(214, 178, 102, 0.1), transparent 60%),
    linear-gradient(180deg, #f3f8f4 0%, var(--bg) 52%, #e8f0eb 100%);
  line-height: 1.65;
}

main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 8% 18%, rgba(209, 173, 100, 0.1), transparent 68%),
    radial-gradient(860px 420px at 92% 36%, rgba(118, 186, 152, 0.08), transparent 68%),
    radial-gradient(960px 460px at 50% 82%, rgba(142, 198, 167, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-sub .page-shell > .container {
  padding-top: 8px;
}

.section-compact {
  padding-top: 18px;
  padding-bottom: 18px;
}
.section-no-top {
  padding-top: 0;
}
.section-no-bottom {
  padding-bottom: 0;
}
.stack-gap {
  margin-bottom: 14px;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 46px)); margin: 0 auto; }
.page-sub .container {
  width: min(1120px, calc(100% - 46px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(243, 249, 245, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  width: min(1380px, calc(100% - 20px));
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand { display: grid; line-height: 1; min-width: 200px; flex: 0 0 auto; }
.brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-mid) 50%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.brand-sub {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-nav);
  font-weight: 700;
  color: #5f6d7f;
  margin-left: 18px;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 9px;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--gold-dark);
  background: rgba(184, 144, 82, 0.2);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: rgba(248, 253, 250, 0.8);
  backdrop-filter: blur(8px);
}

.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  min-width: 42px;
  min-height: 36px;
  font-weight: 800;
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(120deg, var(--gold-mid) 0%, var(--gold-bright) 100%);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  padding: 8px 10px;
  min-height: 40px;
  min-width: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(248, 253, 250, 0.82);
  color: var(--ink);
  border-radius: 9px;
  border: 1px solid rgba(38, 45, 58, 0.24);
  padding: 11px 16px;
  min-height: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 8px 18px rgba(22, 25, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-gold {
  background: linear-gradient(120deg, #b89156 0%, var(--gold-deep) 35%, var(--gold-mid) 66%, var(--gold-bright) 100%);
  color: var(--brand-dark);
  border: 1px solid rgba(201, 168, 106, 0.72);
  box-shadow:
    0 10px 20px rgba(143, 106, 49, 0.28),
    inset 0 1px 0 rgba(255, 252, 240, 0.78);
}

.btn-gold:hover {
  background: linear-gradient(120deg, #c6a06a 0%, #ecd7a8 52%, #f8f0d8 100%);
}
.btn-ghost {
  color: #8f6a31;
  background: rgba(248, 253, 250, 0.75);
  border: 1px solid rgba(201, 168, 106, 0.5);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.9); }

.hero {
  position: relative;
  padding: 72px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(800px 520px at 10% 8%, rgba(217, 177, 91, 0.46), transparent 64%),
    radial-gradient(780px 560px at 50% -8%, rgba(75, 47, 122, 0.58), transparent 62%),
    radial-gradient(860px 560px at 88% 96%, rgba(91, 194, 127, 0.42), transparent 62%),
    linear-gradient(130deg, #7a5f86 0%, #6b62b3 45%, #5c7aa6 72%, #6e9a89 100%);
  border-bottom-left-radius: 42% 9%;
  border-bottom-right-radius: 42% 9%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.16;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 18% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(242, 227, 191, 0.2);
  box-shadow:
    0 0 0 24px rgba(242, 227, 191, 0.05),
    0 0 0 56px rgba(242, 227, 191, 0.03);
  pointer-events: none;
}

#facts {
  margin-top: -22px;
  padding-top: 54px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
  max-width: 980px;
  text-align: center;
}
.hero .eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--fs-eyebrow); font-weight: 800; color: #f2db9f; margin: 0 0 14px; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 14px;
}
h1 {
  font-size: var(--fs-h1);
  letter-spacing: 0.01em;
}
h2 {
  font-size: var(--fs-h2);
  letter-spacing: 0.01em;
}
h3 {
  font-size: var(--fs-h3);
  letter-spacing: 0.008em;
}
.lead { color: var(--ink-soft); font-size: var(--fs-lead); margin-bottom: 24px; }
.page-sub h1,
.page-sub h2,
.page-sub h3 {
  letter-spacing: 0.01em;
}
.page-sub p,
.page-sub li {
  max-width: 68ch;
}
.page-sub .lead {
  max-width: 72ch;
}
.page-sub .section-head .lead {
  margin-bottom: 18px;
}
:lang(ja) .page-sub p,
:lang(ja) .page-sub li {
  line-height: 1.78;
}
:lang(zh-CN) .page-sub p,
:lang(zh-CN) .page-sub li {
  line-height: 1.7;
}
.hero .lead {
  color: rgba(247, 250, 255, 0.94);
  font-size: var(--fs-lead-hero);
  margin: 0 auto 24px;
  max-width: 740px;
}
.hero h1 {
  color: #f8f8fb;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-pill {
  border: 1px solid rgba(247, 250, 255, 0.45);
  color: rgba(247, 250, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: var(--fs-pill);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(248, 248, 251, 0.92);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-text-link:hover {
  color: #ffffff;
}
.hero .btn {
  box-shadow: 0 8px 18px rgba(14, 18, 25, 0.24);
  min-width: 160px;
}
.hero .btn-gold {
  border: 1px solid rgba(251, 236, 196, 0.86);
  box-shadow:
    0 8px 18px rgba(14, 18, 25, 0.22),
    inset 0 1px 0 rgba(255, 252, 240, 0.82);
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f3ead8;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.rd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rd-card {
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(91, 194, 127, 0.28);
  background:
    linear-gradient(180deg, rgba(251, 255, 253, 0.86), rgba(241, 249, 245, 0.82));
  box-shadow: var(--glass-shadow);
}
.rd-card h3 {
  margin-bottom: 8px;
  color: #214635;
}
.rd-card p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-panel,
.trust-grid article,
.site-nav.open {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: var(--glass-shadow);
}

.hero-panel {
  border-top: 4px solid var(--gold-mid);
  border-radius: var(--radius);
  padding: 22px;
}

.hero-panel ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.hero-panel li { margin: 8px 0; }

.hero-facts {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px solid rgba(224, 189, 113, 0.72);
}
.hero-facts-block {
  border-top: 4px solid var(--gold-mid);
}
.facts-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
}
.facts-list li {
  margin: 0;
}

.hero-facts h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.hero-facts ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
}

.hero-facts li {
  margin: 0;
}

.trust-strip { padding: 8px 0 38px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust-grid article { border-radius: 11px; padding: 16px; }
.trust-grid h3 { margin-bottom: 8px; font-size: 1.02rem; }
.trust-grid p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.section { padding: 56px 0; }
.section-tight { padding: 36px 0 32px; }
.section,
.section-tight {
  position: relative;
  z-index: 1;
  animation: sectionFadeIn 520ms ease-out both;
}
.section + .section,
.section-tight + .section,
.section + .section-tight,
.section-tight + .section-tight {
  margin-top: -10px;
}
.section + .section::before,
.section-tight + .section::before,
.section + .section-tight::before,
.section-tight + .section-tight::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 68px;
  background:
    radial-gradient(120% 52px at 50% 100%, rgba(237, 243, 239, 0.9) 42%, rgba(237, 243, 239, 0.25) 63%, transparent 72%),
    linear-gradient(180deg, rgba(237, 243, 239, 0) 0%, rgba(237, 243, 239, 0.72) 100%);
  pointer-events: none;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0.72;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-alt {
  background: linear-gradient(180deg, rgba(247, 252, 249, 0.52) 0%, rgba(226, 241, 234, 0.5) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { margin-bottom: 24px; }
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.target-chip-card {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(47, 33, 89, 0.1);
  background: rgba(251, 255, 253, 0.45);
  box-shadow: none;
}
.target-chip-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.target-chip-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.lane-card {
  position: relative;
  padding-top: 20px;
}
.lane-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  max-width: 150px;
  white-space: nowrap;
}
.lane-card h3 {
  padding-right: 160px;
  line-height: 1.35;
  text-wrap: balance;
}
.lane-card-a::before {
  content: "CN -> JP";
  border: 1px solid rgba(141, 163, 123, 0.55);
  color: #4a5f3c;
  background: rgba(141, 163, 123, 0.16);
}
.lane-card-b::before {
  content: "JP -> CN/Global";
  border: 1px solid rgba(124, 150, 173, 0.48);
  color: #3f5870;
  background: rgba(124, 150, 173, 0.12);
}
.entry-card {
  background: rgba(251, 255, 253, 0.45);
  border: 1px solid rgba(47, 33, 89, 0.1);
  border-radius: 8px;
  padding: 18px;
  box-shadow: none;
}
.entry-card p { margin: 0; color: var(--ink-soft); }
.entry-card:nth-child(1) { border-top: 3px solid rgba(184, 144, 82, 0.72); }
.entry-card:nth-child(2) { border-top: 3px solid rgba(123, 142, 167, 0.62); }
.entry-card:nth-child(3) { border-top: 3px solid rgba(126, 118, 103, 0.62); }
.entry-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.95rem;
}
.entry-link:hover { color: var(--gold-deep); }
.card-grid { display: grid; gap: 16px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  border-radius: 8px;
  padding: 22px;
  background: rgba(251, 255, 253, 0.5);
  border: 1px solid rgba(47, 33, 89, 0.1);
  box-shadow: none;
}
.card p { margin: 0; color: var(--ink-soft); }
.page-sub .card p + p {
  margin-top: 8px;
}
.proof-note {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.proof-note p {
  margin: 0;
  color: var(--ink-soft);
}
.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 32px;
}
.flow-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 177, 91, 0.65) 0%, rgba(114, 156, 185, 0.55) 100%);
}
.flow-step {
  position: relative;
  padding: 0 14px 10px;
  text-align: center;
}
.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.84rem;
  color: #2e240f;
  border: 1px solid rgba(217, 177, 91, 0.55);
  box-shadow: 0 0 0 6px rgba(251, 255, 253, 0.85);
  background: linear-gradient(120deg, var(--gold-mid) 0%, var(--gold-bright) 100%);
}
.flow-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.trial-card {
  border-top: 4px solid var(--gold-mid);
}
.trial-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}
.trial-risk {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px dashed rgba(47, 33, 89, 0.35);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.faq-item {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(47, 33, 89, 0.1);
  background: rgba(251, 255, 253, 0.45);
  box-shadow: none;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

#capabilities .entry-grid,
#trade-lanes .entry-grid {
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
#capabilities .entry-card,
#trade-lanes .entry-card {
  border: 0;
  border-right: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 20px 18px;
}
#capabilities .entry-card:nth-child(3n),
#trade-lanes .entry-card:last-child {
  border-right: 0;
}

#trade-lanes .entry-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 0;
  row-gap: 0;
  width: 100%;
  border: 0;
  align-items: stretch;
}
#trade-lanes .entry-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(217, 177, 91, 0.62) 0%, rgba(111, 163, 132, 0.62) 50%, rgba(75, 47, 122, 0.52) 100%);
  box-shadow: 0 0 0 10px rgba(237, 243, 239, 0.52);
}
#trade-lanes .entry-card {
  border: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251, 255, 253, 0.7), rgba(244, 251, 247, 0.66));
  box-shadow: none;
  padding: 24px 26px;
  min-height: 220px;
  width: 100%;
  max-width: none;
}
#trade-lanes .entry-card:nth-child(1),
#trade-lanes .entry-card:nth-child(2) {
  border-top: 1px solid rgba(47, 33, 89, 0.14);
}
#trade-lanes .entry-card:nth-child(1) {
  border-radius: 28px 14px 24px 22px;
  transform: none;
}
#trade-lanes .entry-card:nth-child(2) {
  border-radius: 14px 28px 22px 24px;
  transform: none;
}
#trade-lanes .lane-card h3 {
  padding-right: 132px;
  min-height: 2.8em;
}

.target-grid {
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
.target-chip-card {
  border: 0;
  border-right: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 18px 16px;
}
.target-chip-card:nth-child(4n) {
  border-right: 0;
}

.faq-grid {
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
.faq-item {
  border: 0;
  border-right: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.faq-item:nth-child(2n) {
  border-right: 0;
}

.fact-card {
  position: relative;
}
.fact-card::before {
  content: "FACT";
  position: absolute;
  top: 10px;
  right: 12px;
  border-radius: 999px;
  background: rgba(46, 108, 150, 0.14);
  color: #2e6c96;
  border: 1px solid rgba(46, 108, 150, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
}

.markets-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
.markets-grid p { color: var(--ink-soft); }
.timeline { display: grid; gap: 12px; }
.timeline div { grid-template-columns: 52px 1fr; align-items: center; gap: 12px; border-radius: 12px; padding: 12px; display: grid; }
.timeline span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(47, 33, 89, 0.16);
  color: var(--brand-dark);
}

.contact-box {
  border-radius: 10px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  border: 1px solid rgba(47, 33, 89, 0.12);
  background: rgba(251, 255, 253, 0.56);
  box-shadow: none;
}

.contact-box p,
.contact-meta p { color: var(--ink-soft); }
.contact-sla {
  margin: 0 0 12px;
  font-weight: 700;
}

.contact-social {
  margin-top: 14px;
}

.contact-social-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--ink);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px) scale(1.06);
  opacity: 0.86;
}

.social-link img {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-social-note {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: #556a80;
}

.contact-form { display: grid; gap: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 33, 89, 0.28);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(248, 253, 250, 0.86);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(75, 47, 122, 0.22);
  border-color: var(--brand);
}

.form-message { margin: 0; min-height: 22px; font-weight: 700; }
.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.opinion-note {
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(47, 33, 89, 0.28);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  color: #625b73;
}
.form-message.ok { color: var(--ok); }
.form-message.err { color: var(--danger); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.filter-bar {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  border-radius: 16px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(47, 33, 89, 0.14);
  background:
    linear-gradient(180deg, rgba(249, 253, 251, 0.72) 0%, rgba(239, 247, 242, 0.58) 100%);
}

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  border: 1px solid rgba(44, 55, 68, 0.26);
  background: linear-gradient(180deg, rgba(252, 255, 253, 0.9), rgba(242, 249, 245, 0.88));
  color: #445466;
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 14px;
  min-height: 38px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.chip.active {
  border-color: var(--gold-deep);
  color: #fff;
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-mid) 55%, var(--gold-bright) 100%);
}

.filter-bar > div > p {
  margin: 2px 0 10px;
}
.filter-bar > div > p strong {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #243244;
}

[data-filter-group="application"] .chip[data-filter="all"] {
  border-color: rgba(150, 122, 67, 0.54);
  color: #7a6030;
  background: linear-gradient(140deg, rgba(244, 233, 201, 0.7), rgba(226, 205, 154, 0.5));
}

/* Category Colors: application filters */
[data-filter-group="application"] .chip[data-filter="health"] {
  border-color: rgba(71, 130, 101, 0.52);
  color: #2f5d4b;
  background: linear-gradient(140deg, rgba(208, 233, 217, 0.72), rgba(183, 215, 196, 0.54));
}
[data-filter-group="application"] .chip[data-filter="functional"] {
  border-color: rgba(96, 79, 129, 0.52);
  color: #4f3f74;
  background: linear-gradient(140deg, rgba(224, 214, 242, 0.66), rgba(198, 183, 224, 0.5));
}
[data-filter-group="application"] .chip[data-filter="beverage"] {
  border-color: rgba(78, 122, 150, 0.54);
  color: #315974;
  background: linear-gradient(140deg, rgba(210, 226, 236, 0.72), rgba(184, 208, 224, 0.56));
}
[data-filter-group="application"] .chip[data-filter="personal"] {
  border-color: rgba(158, 125, 66, 0.54);
  color: #84602a;
  background: linear-gradient(140deg, rgba(238, 224, 193, 0.72), rgba(224, 201, 155, 0.56));
}

[data-filter-group="application"] .chip:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 12px rgba(34, 45, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

/* Category Colors: form filters */
[data-filter-group="form"] .chip[data-filter="oil"] {
  border-color: rgba(90, 140, 92, 0.52);
  color: #3f6f47;
  background: rgba(90, 140, 92, 0.12);
}
[data-filter-group="form"] .chip[data-filter="powder"] {
  border-color: rgba(140, 110, 70, 0.48);
  color: #8f6b31;
  background: rgba(217, 177, 91, 0.12);
}
[data-filter-group="form"] .chip[data-filter="liquid"] {
  border-color: rgba(69, 120, 170, 0.5);
  color: #35618d;
  background: rgba(69, 120, 170, 0.1);
}
[data-filter-group="form"] .chip[data-filter="softgel"] {
  border-color: rgba(75, 47, 122, 0.45);
  color: #4b2f7a;
  background: rgba(75, 47, 122, 0.1);
}

/* Category Colors: B2B latest/news filters */
#news-filter .chip[data-news-filter="company"] {
  border-color: rgba(217, 177, 91, 0.58);
  color: #9d7424;
  background: rgba(217, 177, 91, 0.14);
}
#news-filter .chip[data-news-filter="supply"] {
  border-color: rgba(91, 194, 127, 0.58);
  color: #2d6645;
  background: rgba(91, 194, 127, 0.14);
}
#news-filter .chip[data-news-filter="reg"] {
  border-color: rgba(75, 47, 122, 0.5);
  color: #4b2f7a;
  background: rgba(75, 47, 122, 0.1);
}
#news-filter .chip[data-news-filter="research"] {
  border-color: rgba(62, 122, 170, 0.56);
  color: #2d628f;
  background: rgba(62, 122, 170, 0.12);
}

/* Category Colors: knowledge filters */
#knowledge-filter .chip[data-kn-filter="vitamin-e"] {
  border-color: rgba(217, 177, 91, 0.58);
  color: #9d7424;
  background: rgba(217, 177, 91, 0.14);
}
#knowledge-filter .chip[data-kn-filter="antioxidant"] {
  border-color: rgba(91, 194, 127, 0.58);
  color: #2d6645;
  background: rgba(91, 194, 127, 0.14);
}
#knowledge-filter .chip[data-kn-filter="safety"] {
  border-color: rgba(75, 47, 122, 0.5);
  color: #4b2f7a;
  background: rgba(75, 47, 122, 0.1);
}
#knowledge-filter .chip[data-kn-filter="paper"] {
  border-color: rgba(62, 122, 170, 0.56);
  color: #2d628f;
  background: rgba(62, 122, 170, 0.12);
}

/* Active state keeps category color identity */
[data-filter-group="application"] .chip[data-filter="health"].active,
[data-filter-group="form"] .chip[data-filter="oil"].active,
#news-filter .chip[data-news-filter="supply"].active,
#knowledge-filter .chip[data-kn-filter="antioxidant"].active {
  border-color: rgba(53, 116, 86, 0.9);
  background: linear-gradient(125deg, #2f6a4e 0%, #4c8a69 56%, #75b08f 100%);
  color: #fff;
}

[data-filter-group="application"] .chip[data-filter="functional"].active,
[data-filter-group="form"] .chip[data-filter="softgel"].active,
#news-filter .chip[data-news-filter="reg"].active,
#knowledge-filter .chip[data-kn-filter="safety"].active {
  border-color: rgba(80, 61, 116, 0.9);
  background: linear-gradient(125deg, #453067 0%, #5f487f 56%, #7d67a2 100%);
  color: #fff;
}

[data-filter-group="application"] .chip[data-filter="beverage"].active,
[data-filter-group="form"] .chip[data-filter="liquid"].active,
#news-filter .chip[data-news-filter="research"].active,
#knowledge-filter .chip[data-kn-filter="paper"].active {
  border-color: rgba(56, 94, 122, 0.9);
  background: linear-gradient(125deg, #315a74 0%, #467291 56%, #6d96b2 100%);
  color: #fff;
}

[data-filter-group="application"] .chip[data-filter="personal"].active,
[data-filter-group="form"] .chip[data-filter="powder"].active,
#news-filter .chip[data-news-filter="company"].active,
#knowledge-filter .chip[data-kn-filter="vitamin-e"].active {
  border-color: rgba(146, 111, 52, 0.9);
  background: linear-gradient(125deg, #8f6a31 0%, #b38b4d 52%, #d8bb85 100%);
  color: #fff8ea;
}

.search-input {
  width: min(520px, 100%);
  border: 1px solid rgba(47, 33, 89, 0.28);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}
.docs-matrix-wrap .lead {
  margin-bottom: 12px;
}
.docs-matrix-scroll {
  overflow: auto;
}
.docs-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}
.docs-matrix th,
.docs-matrix td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.docs-matrix th {
  color: #2f3d51;
  font-weight: 800;
  background: rgba(214, 227, 219, 0.46);
}

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-card { border-radius: 8px; padding: 16px; }
.page-sub .product-grid {
  margin-top: 8px;
}

/* Flat catalog layout: grouped by major category with click-to-open detail */
#product-grid.product-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  border: 0 !important;
  margin-top: 10px;
}
.catalog-group {
  border-top: 1px solid rgba(47, 33, 89, 0.16);
  padding-top: 10px;
}
.catalog-group-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 10px;
  width: 100%;
  border: 1px solid rgba(50, 67, 89, 0.24);
  border-radius: 30px 14px 14px 30px;
  padding: 12px 14px 12px 10px;
  background: linear-gradient(100deg, rgba(225, 237, 232, 0.78) 0%, rgba(211, 225, 219, 0.64) 100%);
  cursor: pointer;
}
.catalog-group-head h2 {
  margin: 0;
  font-size: 1.06rem;
  color: #213247;
  letter-spacing: 0.02em;
  text-align: left;
}
.catalog-group-head span {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60, 78, 101, 0.28);
  color: #33495f;
  font-weight: 700;
  font-size: 0.86rem;
  background: rgba(236, 244, 240, 0.72);
}
.catalog-group-head .catalog-group-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(50, 67, 89, 0.42);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f4863;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 300;
  background: rgba(244, 249, 246, 0.74);
}
.catalog-group-head h2 + span {
  margin-left: auto;
}
.catalog-group-list {
  display: grid;
  gap: 10px;
}
.catalog-group-list[hidden],
.catalog-sub-panel[hidden] {
  display: none !important;
}
.catalog-sub {
  border-top: 1px solid rgba(47, 33, 89, 0.12);
  padding-top: 10px;
}
.catalog-sub-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.catalog-sub-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(50, 67, 89, 0.42);
  color: #2f4863;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  background: rgba(244, 249, 246, 0.74);
}
.catalog-sub-title {
  font-size: 1.16rem;
  color: #1f2e40;
  font-weight: 760;
}
.catalog-sub-meta {
  color: #47586d;
  font-size: 0.9rem;
  line-height: 1.4;
  display: none;
}
.catalog-sub-panel {
  margin-left: 44px;
  margin-top: 6px;
  padding: 10px 0 6px;
}
.catalog-product-list {
  margin: 0;
  padding-left: 18px;
  column-count: 2;
  column-gap: 26px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #23364d;
}
.catalog-product-list li {
  break-inside: avoid;
  margin: 6px 0;
}
.page-sub .product-grid > .product-card {
  display: grid;
  grid-template-rows: auto auto minmax(56px, auto) auto;
  gap: 10px;
  min-height: 270px;
}
.product-card-clickable { cursor: pointer; }
.product-card-clickable:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.product-card-clickable:focus {
  outline: 2px solid rgba(75, 47, 122, 0.55);
  outline-offset: 2px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 750;
}

/* Product catalog emphasis: stronger title hierarchy + clearer item boundaries */
#product-grid > .product-card {
  position: relative;
  padding: 18px 18px 20px;
}
#product-grid > .product-card::after {
  content: "";
  position: absolute;
  inset: 6px 8px;
  border: 1px solid rgba(47, 33, 89, 0.2);
  pointer-events: none;
}
#product-grid > .product-card h3 {
  font-size: 1.22rem;
  font-weight: 820;
  letter-spacing: 0.01em;
  color: #1e2b3a;
  margin-bottom: 10px;
}
.product-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.product-meta span {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(47, 33, 89, 0.12);
  color: var(--brand-dark);
}
.product-card p { margin: 0; color: #3f4e61; font-size: 0.95rem; line-height: 1.6; }
.page-sub .product-card h3,
.page-sub .knowledge-card h3,
.page-sub .news-card h3 {
  min-height: 2.8em;
  line-height: 1.35;
  text-wrap: balance;
}
.product-kv {
  margin-top: 10px;
  display: grid;
  gap: 4px;
}
.product-kv p {
  margin: 0;
  font-size: 0.88rem;
  color: #42546a;
}
.product-kv strong {
  color: #2f3d51;
}

/* Products page visual upgrade: larger rhythm, stronger contrast, premium depth */
.products-page .page-shell > .container > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 56, 84, 0.22);
  background: linear-gradient(120deg, rgba(234, 243, 240, 0.88), rgba(215, 228, 222, 0.72));
}

.products-page .page-shell > .container > h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #11253a;
  max-width: 16ch;
}

.products-page .page-shell > .container > .lead {
  max-width: 68ch;
  color: #2c4157;
  font-size: 1.07rem;
  line-height: 1.75;
}

.products-page .filter-bar {
  margin-top: 22px;
  margin-bottom: 14px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(22, 47, 74, 0.16);
  background:
    radial-gradient(1200px 220px at -10% -40%, rgba(62, 109, 158, 0.14), transparent 62%),
    linear-gradient(135deg, rgba(249, 252, 251, 0.96), rgba(235, 243, 240, 0.92));
  box-shadow: 0 14px 32px rgba(25, 44, 68, 0.1);
}

.products-page .search-input {
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(23, 48, 74, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.products-page .chip {
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}

.products-page #product-grid.product-grid {
  gap: 20px;
  margin-top: 14px;
}

.products-page .catalog-group {
  border: 1px solid rgba(18, 45, 71, 0.14);
  border-top: 0;
  border-radius: 22px;
  padding: 14px 16px 12px;
  background:
    linear-gradient(180deg, rgba(246, 250, 248, 0.96), rgba(237, 244, 241, 0.84));
  box-shadow: 0 12px 30px rgba(18, 37, 58, 0.08);
}

.products-page .catalog-group-head {
  border-radius: 16px;
  border: 1px solid rgba(16, 41, 66, 0.2);
  padding: 14px 16px 14px 12px;
  background:
    linear-gradient(110deg, rgba(238, 247, 243, 0.96), rgba(219, 232, 226, 0.9));
  box-shadow: 0 8px 18px rgba(25, 44, 68, 0.1);
}

.products-page .catalog-group-head h2 {
  font-size: clamp(1.12rem, 2.2vw, 1.34rem);
  color: #162d44;
  font-weight: 820;
}

.products-page .catalog-group-head .catalog-group-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-color: rgba(18, 45, 71, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 238, 234, 0.9));
}

.products-page .catalog-sub {
  border-top: 1px solid rgba(18, 45, 71, 0.12);
  padding-top: 12px;
}

.products-page .catalog-sub-toggle {
  grid-template-columns: 48px minmax(0, 320px) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 4px;
}

.products-page .catalog-sub-title {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: #18314a;
  font-weight: 800;
}

.products-page .catalog-sub-icon {
  width: 36px;
  height: 36px;
  border-color: rgba(18, 45, 71, 0.32);
}

.products-page .catalog-sub-panel {
  margin-left: 50px;
  padding: 12px 0 8px;
}

.products-page .catalog-product-list {
  column-gap: 36px;
  font-size: 1.04rem;
  color: #17324c;
}

.products-page .catalog-product-list li {
  margin: 7px 0;
}

.products-page .docs-matrix-wrap {
  border: 1px solid rgba(18, 45, 71, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(800px 280px at 110% -20%, rgba(69, 113, 160, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(250, 252, 251, 0.98), rgba(238, 244, 242, 0.9));
  box-shadow: 0 14px 32px rgba(20, 40, 62, 0.08);
}

.products-page .docs-matrix th {
  background: linear-gradient(120deg, rgba(227, 238, 233, 0.95), rgba(210, 225, 219, 0.8));
}

@media (max-width: 860px) {
  .products-page .page-shell > .container > h1 {
    max-width: none;
  }

  .products-page .catalog-group {
    border-radius: 18px;
    padding: 12px;
  }

  .products-page .catalog-group-head {
    border-radius: 14px;
  }

  .products-page .catalog-sub-toggle {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .products-page .catalog-sub-meta {
    grid-column: 1 / -1;
    margin-left: 42px;
  }

  .products-page .catalog-sub-panel {
    margin-left: 0;
  }

  .products-page .catalog-product-list {
    column-count: 1;
  }
}
.no-result {
  display: none;
  color: var(--ink-soft);
  padding: 18px;
  border: 1px dashed rgba(47, 33, 89, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 39, 61, 0.42);
  z-index: 60;
}

.product-modal.open {
  display: flex;
}

.product-modal-panel {
  width: min(760px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: var(--glass-shadow);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.product-detail-item {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
}
.product-detail-item h4 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: #2f3d51;
}
.product-detail-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.product-detail-item-wide {
  grid-column: 1 / -1;
}

.product-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.modal-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  margin-top: 44px;
  background: rgba(28, 51, 44, 0.94);
  color: #edf2f8;
  border-top: 1px solid rgba(201, 168, 106, 0.56);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 40px 0 24px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col h3 {
  margin: 0;
  font-size: var(--fs-footer-title);
  letter-spacing: 0.02em;
  color: rgba(251, 244, 226, 0.96);
}
.footer-col p,
.footer-col a {
  color: rgba(237, 242, 248, 0.84);
  font-size: var(--fs-footer-text);
  line-height: 1.72;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-col li {
  margin: 0;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}
.footer-col a:hover { color: #fff; }

.copyright {
  padding: 12px 0 20px;
  border-top: 1px solid rgba(201, 168, 106, 0.42);
  color: rgba(237, 242, 248, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .markets-grid,
  .contact-box { grid-template-columns: 1fr; }

  .hero {
    padding: 58px 0 66px;
  }
  .hero::after {
    width: 220px;
    height: 220px;
    inset: auto 6% 18% auto;
  }

  .hero-content {
    padding-top: 0;
  }

  .trust-grid,
  .rd-grid,
  .entry-grid,
  .target-grid,
  .flow-grid,
  .card-grid.three,
  .product-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: 1fr;
    padding-top: 6px;
    padding-left: 28px;
    gap: 10px;
  }
  .flow-grid::before {
    left: 20px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(217, 177, 91, 0.65) 0%, rgba(114, 156, 185, 0.55) 100%);
  }
  .flow-step {
    text-align: left;
    padding: 0 0 0 4px;
  }
  .flow-step span {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
    box-shadow: 0 0 0 5px rgba(251, 255, 253, 0.85);
    margin-left: -20px;
  }
  .flow-step p {
    margin: 8px 0 0 22px;
  }
  .lane-card h3 {
    padding-right: 120px;
  }
  #capabilities .entry-grid,
  #trade-lanes .entry-grid,
  .target-grid,
  .faq-grid {
    border-top: 1px solid rgba(47, 33, 89, 0.14);
    border-bottom: 0;
  }
  #capabilities .entry-card,
  #trade-lanes .entry-card,
  .target-chip-card,
  .faq-item {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  }
  #trade-lanes .entry-grid {
    gap: 0;
  }
  #trade-lanes .entry-grid::before {
    left: 20px;
    transform: none;
    top: 12px;
    bottom: 12px;
  }
  #trade-lanes .entry-card {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(47, 33, 89, 0.14);
    padding-left: 34px;
  }
  #trade-lanes .entry-card:nth-child(1),
  #trade-lanes .entry-card:nth-child(2) {
    transform: none;
  }
  .page-sub .product-grid > .product-card,
  .page-sub .knowledge-grid:not(.stream-list) > .card,
  .page-sub .news-grid:not(.stream-list) > .news-card {
    border-right: 1px solid rgba(47, 33, 89, 0.14);
  }
  .page-sub .product-grid > .product-card:nth-child(2n),
  .page-sub .knowledge-grid:not(.stream-list) > .card:nth-child(2n),
  .page-sub .news-grid:not(.stream-list) > .news-card:nth-child(2n) {
    border-right: 0;
  }
  .page-sub .card-grid.three .card {
    border-right: 1px solid rgba(47, 33, 89, 0.14);
    border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  }
  .page-sub .card-grid.three .card:nth-child(2n) {
    border-right: 0;
  }
  .page-sub .product-grid > .product-card {
    min-height: 240px;
  }
  .knowledge-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --fs-body: 15px;
    --fs-nav: 0.92rem;
    --fs-eyebrow: 0.78rem;
    --fs-h1: clamp(2rem, 11vw, 3rem);
    --fs-h2: clamp(1.34rem, 6vw, 1.72rem);
    --fs-h3: clamp(1.04rem, 4.8vw, 1.22rem);
    --fs-lead: 1rem;
    --fs-lead-hero: 0.98rem;
    --fs-pill: 0.84rem;
    --fs-footer-title: 1rem;
    --fs-footer-text: 0.94rem;
  }
  .container { width: min(var(--container), calc(100% - 30px)); }
  .menu-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 15px;
    left: 15px;
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 10px;
  }
  .site-nav.open { display: flex; }
  .lang-btn {
    min-width: 44px;
    min-height: 44px;
    font-size: 0.92rem;
  }
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 12px;
  }
  .btn {
    min-height: 44px;
    padding: 12px 16px;
  }
  .chip {
    min-height: 42px;
    padding: 9px 14px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .hero {
    padding: 44px 0 54px;
    border-bottom-left-radius: 38% 7%;
    border-bottom-right-radius: 38% 7%;
  }
  .hero::after {
    display: none;
  }
  .hero .eyebrow {
    font-size: var(--fs-eyebrow);
  }
  .hero h1 {
    font-size: var(--fs-h1);
  }
  .hero-pill-row {
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-pill {
    font-size: var(--fs-pill);
    padding: 7px 12px;
  }
  .hero-content {
    padding-top: 0;
  }
  .trust-grid,
  .rd-grid,
  .entry-grid,
  .target-grid,
  .flow-grid,
  .card-grid.three,
  .product-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .lane-card {
    padding-top: 16px;
  }
  .lane-card::before {
    position: static;
    display: inline-flex;
    margin-bottom: 8px;
    max-width: 100%;
  }
  .lane-card h3 {
    padding-right: 0;
  }
  #facts {
    margin-top: -12px;
    padding-top: 40px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .page-sub .product-grid,
  .page-sub .knowledge-grid:not(.stream-list),
  .page-sub .news-grid:not(.stream-list) {
    border-bottom: 0;
  }
  .page-sub .product-grid > .product-card,
  .page-sub .knowledge-grid:not(.stream-list) > .card,
  .page-sub .news-grid:not(.stream-list) > .news-card {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  }
  .page-sub .card-grid.three {
    border-bottom: 0;
  }
  .page-sub .card-grid.three .card {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  }
  .page-sub .product-grid > .product-card,
  .knowledge-card {
    min-height: 0;
    grid-template-rows: auto;
    gap: 8px;
  }
  .footer-grid {
    gap: 20px;
    padding: 30px 0 16px;
  }
  .footer-col {
    gap: 8px;
  }
  .footer-col h3 {
    font-size: var(--fs-footer-title);
  }
  .footer-col p,
  .footer-col a {
    font-size: var(--fs-footer-text);
    line-height: 1.66;
  }
  .footer-col ul {
    gap: 6px;
  }
  .footer-col a {
    min-height: 40px;
  }
}

.placeholder-box {
  border: 1px dashed rgba(47, 33, 89, 0.45);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 16px 18px;
}
.b2b-note { margin-top: 14px; }

.placeholder-box h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.placeholder-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.placeholder-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.placeholder-list li {
  margin: 8px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.news-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.news-cta-row {
  margin-top: 16px;
}
.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.page-sub .latest-feed {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  margin-top: 4px;
}
.page-sub .latest-feed > .news-card {
  border: 0;
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  padding: 18px 0;
}
.page-sub .latest-feed > .news-card:last-child {
  border-bottom: 0;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.page-sub .knowledge-grid {
  margin-top: 8px;
}

.page-sub .stream-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 0;
  padding-left: 32px;
}
.page-sub .stream-list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(217, 177, 91, 0.64) 0%, rgba(117, 163, 189, 0.52) 100%);
}
.page-sub .stream-list > .card,
.page-sub .stream-list > .news-card {
  position: relative;
  border: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(251, 255, 253, 0.72), rgba(246, 252, 248, 0.66));
  box-shadow: none;
}
.page-sub .stream-list > .card::before,
.page-sub .stream-list > .news-card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-mid), var(--gold-bright));
  border: 1px solid rgba(176, 132, 47, 0.58);
  box-shadow: 0 0 0 5px rgba(237, 243, 239, 0.9);
}

.page-sub .stream-section {
  position: relative;
  margin-left: 32px;
  padding-left: 0;
}
.page-sub .stream-section::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(117, 163, 189, 0.42) 0%, rgba(217, 177, 91, 0.54) 100%);
}
.page-sub .stream-section::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #76a3bd 0%, #d6bb7a 100%);
  border: 1px solid rgba(69, 120, 170, 0.42);
  box-shadow: 0 0 0 5px rgba(237, 243, 239, 0.9);
}
.page-sub .stream-section + .stream-section {
  margin-top: -6px;
}

.page-sub .product-grid,
.page-sub .knowledge-grid:not(.stream-list),
.page-sub .news-grid:not(.stream-list) {
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
.page-sub .product-grid > .product-card,
.page-sub .knowledge-grid:not(.stream-list) > .card,
.page-sub .news-grid:not(.stream-list) > .news-card {
  border: 0;
  border-right: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-sub .product-grid > .product-card:nth-child(3n),
.page-sub .knowledge-grid:not(.stream-list) > .card:nth-child(3n),
.page-sub .news-grid:not(.stream-list) > .news-card:nth-child(3n) {
  border-right: 0;
}

/* Latest page uses a chronological vertical news flow, not timeline/cards */
.page-sub .news-grid.latest-feed {
  grid-template-columns: 1fr;
  gap: 0;
}
.page-sub .news-grid.latest-feed > .news-card {
  border-right: 0;
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  padding: 18px 0;
}
.page-sub .news-grid.latest-feed > .news-card:last-child {
  border-bottom: 0;
}

.page-sub .filter-bar,
.page-sub .subscribe-box {
  border-radius: 10px;
  border: 1px solid rgba(47, 33, 89, 0.12);
  background: rgba(251, 255, 253, 0.5);
  box-shadow: none;
}
.page-sub .source-card {
  border: 1px dashed rgba(47, 33, 89, 0.26);
  background: rgba(255, 255, 255, 0.56);
}
.page-sub .docs-matrix-wrap {
  border-radius: 10px;
  border: 1px solid rgba(47, 33, 89, 0.12);
  box-shadow: none;
}

.page-sub .card-grid:not(.three) {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
.page-sub .card-grid:not(.three) .card {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  background: transparent;
}
.page-sub .card-grid:not(.three) .card:last-child {
  border-bottom: 0;
}

.page-sub .card-grid.three {
  gap: 0;
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}
.page-sub .card-grid.three .card {
  border: 0;
  border-right: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 0;
  background: transparent;
}
.page-sub .card-grid.three .card:nth-child(3n) {
  border-right: 0;
}

.knowledge-card {
  display: grid;
  align-content: start;
  gap: 8px;
  grid-template-rows: auto auto minmax(72px, auto) auto auto 1fr auto;
  min-height: 420px;
}

.knowledge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.knowledge-paper {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 70ch;
}
.source-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.source-list li {
  margin: 4px 0;
}
.source-list a {
  color: #2a5f8c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.source-card {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(47, 33, 89, 0.2);
  background: rgba(255, 255, 255, 0.74);
}
.knowledge-card .source-card {
  margin-top: auto;
}
.knowledge-card .entry-link {
  margin-top: 10px;
}
.source-card p {
  margin: 0 0 4px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.source-card p:last-child {
  margin-bottom: 0;
}
.source-card a {
  color: #2a5f8c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.news-log {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #6a6478;
}
.subscribe-box {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--glass-shadow);
  padding: 18px;
}
.subscribe-box h2 {
  margin-bottom: 8px;
}
.subscribe-box p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.subscribe-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 8px;
}
.subscribe-form input,
.subscribe-form select {
  width: 100%;
  border: 1px solid rgba(47, 33, 89, 0.28);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(248, 253, 250, 0.86);
}
.detail-article {
  display: grid;
  gap: 12px;
}
.facts-list-single {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}
.facts-list-single li {
  margin: 6px 0;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: var(--glass-shadow);
}
.page-sub .news-card p {
  max-width: 70ch;
}

.news-meta {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tag-new {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  color: #4a3a14;
  font-weight: 800;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  padding: 3px 9px;
  margin-right: 6px;
}

.news-card[data-news-type="supply"] .tag-new {
  background: linear-gradient(120deg, #8da37b, #c5d1b7);
  color: #243020;
}
.news-card[data-news-type="reg"] .tag-new {
  background: linear-gradient(120deg, #6d7384, #a4adbf);
  color: #1d2532;
}
.news-card[data-news-type="research"] .tag-new {
  background: linear-gradient(120deg, #7c96ad, #b8c8d7);
  color: #1a2a3a;
}

/* De-cardify: keep layout structure but remove card boxes */
.card,
.entry-card,
.target-chip-card,
.faq-item,
.product-card,
.news-card,
.filter-bar,
.subscribe-box,
.contact-box,
.source-card,
.docs-matrix-wrap,
.product-detail-item,
.page-sub .stream-list > .card,
.page-sub .stream-list > .news-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

@media (max-width: 980px) {
  .news-filter-bar {
    margin-bottom: 12px;
  }
  .knowledge-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-grid.latest-feed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .knowledge-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .catalog-group-head {
    border-radius: 22px 10px 10px 22px;
    padding: 10px 10px 10px 8px;
  }
  .catalog-group-head .catalog-group-icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
  .catalog-sub-toggle {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 10px;
  }
  .catalog-sub-meta {
    grid-column: 2 / -1;
    font-size: 0.84rem;
  }
  .catalog-sub-panel {
    margin-left: 14px;
  }
  .catalog-product-list {
    column-count: 1;
  }
  .facts-list {
    grid-template-columns: 1fr;
  }
  .subscribe-form {
    grid-template-columns: 1fr;
  }
  .page-sub .stream-list {
    padding-left: 24px;
    gap: 10px;
  }
  .page-sub .stream-list::before {
    left: 8px;
  }
  .page-sub .stream-list > .card::before,
  .page-sub .stream-list > .news-card::before {
    left: -18px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(237, 243, 239, 0.9);
  }
  .page-sub .stream-section {
    margin-left: 24px;
  }
  .page-sub .stream-section::before {
    left: -16px;
  }
  .page-sub .stream-section::after {
    left: -14px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(237, 243, 239, 0.9);
  }
}

.about-table-wrap {
  overflow: auto;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}

.about-table td:first-child {
  width: 148px;
  font-weight: 800;
  color: var(--ink);
}

.about-table tr:last-child td {
  border-bottom: 0;
}

.products-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 20px;
}

.products-summary:empty {
  display: none;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 33, 89, 0.14);
  color: #445466;
  background: linear-gradient(180deg, rgba(252, 255, 253, 0.9), rgba(242, 249, 245, 0.88));
  font-size: 0.9rem;
  font-weight: 700;
}

.products-page .catalog-group {
  padding: 26px 0 30px;
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
}

.products-page .catalog-group:first-child {
  padding-top: 6px;
}

.products-page .catalog-group:last-child {
  border-bottom: 0;
}

.products-page .catalog-group-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 18px 24px;
}

.products-page .catalog-group-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(216, 177, 91, 0.72), rgba(112, 153, 181, 0.48));
}

.products-page .catalog-group-head::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-mid), #7aa0ba);
}

.catalog-group-copy p {
  margin: 0 0 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d7884;
}

.catalog-group-copy h2 {
  margin: 0;
  font-size: 1.35rem;
}

.catalog-group-count {
  white-space: nowrap;
  align-self: flex-start;
  color: #5e6774;
  font-weight: 800;
}

.catalog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-left: 24px;
}

.catalog-card {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(47, 33, 89, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(252, 255, 253, 0.92), rgba(242, 248, 244, 0.9));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 132, 47, 0.42);
}

.catalog-card-static {
  cursor: default;
}

.catalog-card-static:hover {
  transform: none;
  border-color: rgba(47, 33, 89, 0.14);
}

.catalog-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.catalog-card-kicker {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8692;
}

.catalog-card-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.catalog-card-count {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(217, 177, 91, 0.18);
  color: #7b5a14;
  font-weight: 800;
}

.catalog-card-desc {
  margin: 0;
  color: var(--ink-soft);
}

.catalog-card-preview {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.catalog-card-preview-full {
  gap: 8px;
}

.catalog-card-preview-full li {
  line-height: 1.45;
}

.catalog-card-preview li {
  position: relative;
  padding-left: 14px;
  color: #3f4e60;
}

.catalog-card-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-mid), #8fa9bc);
}

.catalog-card-more {
  color: #7a8692;
  font-weight: 700;
}

.catalog-card-link {
  margin-top: auto;
  color: #2e5e83;
  font-weight: 800;
}

.product-modal-items {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
}

.knowledge-tree-shell {
  display: grid;
  gap: 20px;
}

.knowledge-tree {
  display: grid;
  gap: 20px;
}

.knowledge-root {
  display: flex;
  justify-content: center;
}

.knowledge-node-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(47, 33, 89, 0.16);
  background: linear-gradient(180deg, rgba(252, 255, 253, 0.94), rgba(244, 248, 245, 0.92));
  font-weight: 800;
}

.knowledge-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-branch {
  position: relative;
  padding: 18px 18px 18px 20px;
  border-left: 2px solid rgba(217, 177, 91, 0.42);
  border-top: 1px solid rgba(47, 33, 89, 0.14);
  border-bottom: 1px solid rgba(47, 33, 89, 0.14);
  background: rgba(251, 255, 253, 0.46);
}

.knowledge-branch::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-mid), #8fa9bc);
}

.knowledge-branch h3 {
  margin: 0 0 12px;
}

.knowledge-branch-body {
  min-height: 108px;
  border-top: 1px solid rgba(47, 33, 89, 0.12);
}

.latest-empty-shell {
  display: grid;
  gap: 16px;
}

.latest-empty-box {
  padding-bottom: 16px;
}

.latest-lanes {
  margin-top: 0;
}

.latest-lanes .card {
  padding: 18px 0;
}

.latest-lane-body {
  min-height: 96px;
  border-top: 1px solid rgba(47, 33, 89, 0.12);
}

.latest-lane-body:not(:empty) {
  min-height: 0;
  padding-top: 16px;
}

@media (max-width: 980px) {
  .catalog-card-grid,
  .knowledge-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .knowledge-branches,
  .catalog-card-grid {
    grid-template-columns: 1fr;
  }

  .products-page .catalog-group-head {
    padding-left: 18px;
    flex-direction: column;
  }

  .catalog-card-grid {
    padding-left: 18px;
  }

  .about-table td:first-child {
    width: 112px;
  }
}

/* ============================================
   TSUKUYO V3 REDESIGN - 品牌感升级
   ============================================ */

/* Hero区域 - 原有紫色渐变背景 */
.hero-v3 {
  position: relative;
  padding: 92px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(9, 23, 37, 0.78) 0%, rgba(18, 48, 68, 0.58) 42%, rgba(22, 55, 69, 0.74) 100%),
    radial-gradient(880px 520px at 0% 0%, rgba(106, 177, 160, 0.18), transparent 65%),
    radial-gradient(760px 520px at 100% 100%, rgba(242, 214, 153, 0.12), transparent 62%),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Mount%20Tsukuba%20seen%20from%20the%20WSW%20%282006%29.jpg");
  background-size: cover, auto, auto, cover;
  background-position: center center, 0% 0%, 100% 100%, center 45%;
  background-repeat: no-repeat;
  border-bottom-left-radius: 28% 8%;
  border-bottom-right-radius: 28% 8%;
}

.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.05) 48%, transparent 49%),
    linear-gradient(65deg, transparent 0 46%, rgba(255, 255, 255, 0.03) 47%, transparent 48%);
  background-size: 52px 52px, 52px 52px, 100% 100%, 100% 100%;
  opacity: 0.22;
  pointer-events: none;
}

.hero-v3::after {
  content: "";
  position: absolute;
  inset: auto auto -110px -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(242, 227, 191, 0.12) 0%, rgba(242, 227, 191, 0.03) 42%, transparent 70%);
  box-shadow:
    0 0 0 26px rgba(242, 227, 191, 0.04),
    0 0 0 66px rgba(242, 227, 191, 0.02);
  pointer-events: none;
}

.hero-v3 .container {
  position: relative;
  z-index: 1;
}

.hero-v3-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.hero-v3-content {
  max-width: 720px;
}

.hero-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2db9f;
  margin-bottom: 16px;
}

.hero-v3-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #f2db9f;
}

.hero-v3 h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f8f8fb;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-v3 h1 .highlight {
  color: #f2db9f;
}

.hero-v3-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(247, 250, 255, 0.94);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-v3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-v3-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(247, 250, 255, 0.45);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(247, 250, 255, 0.95);
  backdrop-filter: blur(8px);
}

.hero-v3-tag svg {
  width: 16px;
  height: 16px;
  color: #f2db9f;
}

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

.hero-v3 .btn-gold {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-v3 .btn-ghost {
  padding: 14px 24px;
  font-size: 1rem;
}

.hero-v3-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(242, 227, 191, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    0 18px 44px rgba(8, 15, 24, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-panel-kicker {
  margin: 0 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(242, 219, 159, 0.9);
}

.hero-bridge-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-bridge-grid::before,
.hero-bridge-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
}

.hero-bridge-grid::before {
  left: 50%;
  top: 22%;
  width: 1px;
  height: 52%;
  background: linear-gradient(180deg, rgba(242, 227, 191, 0.1), rgba(242, 227, 191, 0.65), rgba(242, 227, 191, 0.08));
}

.hero-bridge-grid::after {
  top: 26%;
  left: 24%;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 227, 191, 0.08), rgba(242, 227, 191, 0.65), rgba(242, 227, 191, 0.08));
}

.hero-node {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 16, 27, 0.28);
  color: rgba(247, 250, 255, 0.92);
}

.hero-node h2 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #f7fafc;
}

.hero-node p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(232, 241, 247, 0.8);
}

.hero-node-label {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2db9f;
}

.hero-node-core {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(196, 159, 94, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(242, 219, 159, 0.28);
}

.hero-node-market {
  grid-column: 1 / -1;
}

.hero-role-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hero-role-item {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-role-item strong,
.hero-role-item span {
  display: block;
}

.hero-role-item strong {
  margin-bottom: 4px;
  font-size: 0.84rem;
  color: #f8f8fb;
}

.hero-role-item span {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(232, 241, 247, 0.76);
}

/* 品牌故事区 */
.story-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201, 168, 106, 0.04) 50%, var(--bg) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-image-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8efe8 0%, #dce6dc 100%);
}

.story-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold-mid);
  border-radius: 4px;
  transform: translate(12px, 12px);
  z-index: -1;
}

.story-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  gap: 12px;
}

.story-image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.story-image-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-content {
  padding-right: 20px;
}

.story-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.story-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}

.story-title span {
  color: var(--gold-deep);
}

.story-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.story-features {
  display: grid;
  gap: 14px;
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 106, 0.12);
  border-radius: 8px;
  color: var(--gold-deep);
}

.story-feature-icon svg {
  width: 18px;
  height: 18px;
}

.story-feature-text {
  flex: 1;
}

.story-feature-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.story-feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* 核心能力区 */
.capabilities-v3 {
  padding: 70px 0;
}

.capabilities-v3 .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.capabilities-v3 .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.capabilities-v3 h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.capabilities-v3 .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.capability-card {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 25, 33, 0.08);
  border-color: var(--gold-mid);
}

.capability-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.12) 0%, rgba(201, 168, 106, 0.05) 100%);
  border-radius: 12px;
  margin-bottom: 20px;
}

.capability-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-deep);
}

.capability-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.capability-card > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.capability-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(201, 168, 106, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* 供应链实力区 */
.strength-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(91, 194, 127, 0.03) 100%);
}

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

.strength-card {
  padding: 28px 32px;
  background: #fff;
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 3px 3px 0;
}

.strength-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.strength-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.strength-card > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.strength-detail {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

/* 信任指标 */
.trust-bar {
  padding: 50px 0;
  background: var(--ink);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  padding: 0 16px;
}

.trust-item-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* 合作伙伴入口 */
.entry-v3 {
  padding: 80px 0;
}

.entry-v3 .section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.entry-v3 .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.entry-v3 h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

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

.entry-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  transition: all 0.25s ease;
}

.entry-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 24px rgba(22, 25, 33, 0.06);
}

.entry-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-deep);
  background: rgba(201, 168, 106, 0.12);
  border-radius: 50%;
}

.entry-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.entry-card > p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}

.entry-card .entry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: none;
}

.entry-card .entry-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.entry-card:hover .entry-link svg {
  transform: translateX(3px);
}

/* CTA联系区 */
.cta-section {
  padding: 80px 0;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201, 168, 106, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #f0f4f1 100%);
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.cta-box > p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-box .btn-gold {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* 响应式调整 */
@media (max-width: 980px) {
  .hero-v3-grid {
    grid-template-columns: 1fr;
  }

  .hero-v3-panel {
    max-width: 720px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-content {
    padding-right: 0;
  }
  
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .strength-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  
  .entry-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-v3 {
    padding: 60px 0 70px;
  }
  
  .hero-v3 h1 {
    font-size: 2rem;
  }
  
  .hero-v3-lead {
    font-size: 1rem;
  }
  
  .hero-v3-cta {
    flex-direction: column;
  }

  .hero-v3-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-bridge-grid {
    grid-template-columns: 1fr;
  }

  .hero-bridge-grid::before,
  .hero-bridge-grid::after {
    display: none;
  }

  .hero-node-core,
  .hero-node-market {
    grid-column: auto;
  }

  .hero-role-list {
    grid-template-columns: 1fr;
  }

  .hero-v3 .btn-gold,
  .hero-v3 .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  
  .story-section,
  .capabilities-v3,
  .strength-section,
  .entry-v3,
  .cta-section {
    padding: 56px 0;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  .trust-item-value {
    font-size: 1.8rem;
  }
}
