@font-face { font-family:'Bricolage Grotesque'; src:url('/fonts/BricolageGrotesque-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('/fonts/BricolageGrotesque-SemiBold.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('/fonts/BricolageGrotesque-Bold.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'DM Sans'; src:url('/fonts/DMSans-Light.woff2') format('woff2'); font-weight:300; font-display:swap; }
@font-face { font-family:'DM Sans'; src:url('/fonts/DMSans-Regular.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'DM Sans'; src:url('/fonts/DMSans-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }

:root {
  --navy:        #0E1116;
  --navy-mid:    #1A202C;
  --copper:      #10B981;
  --copper-light:#34D399;
  --copper-pale: #D1FAE5;
  --paper:       #ffffff;
  --paper-dark:  #f5f5f7;
  --ink:         #1d1d1f;
  --ink-mid:     #3d3d3f;
  --ink-mute:    #6e6e73;
  --white:       #ffffff;
  --ff-display:  'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-cn:       'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --ff-mono:     'Courier New', Courier, monospace;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md:   0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg:   0 2px 6px rgba(0,0,0,0.05), 0 24px 60px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 22px; } }

/* ── LANGUAGE BAR ── */
.lang-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-size: 12px;
  padding: 9px 16px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.lang-bar a {
  color: var(--copper-light);
  font-weight: 500;
  transition: color .15s;
}
.lang-bar a:hover { color: var(--copper-pale); }

/* ── NAV ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .25s ease, background .25s ease;
}
nav.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 64px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mute);
  padding: 8px 14px;
  border-radius: 980px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.045); }
.nav-cta {
  background: rgba(14,17,22,0.85);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 4px 14px rgba(14,17,22,0.18);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background: rgba(26,32,44,0.92); color: var(--white) !important; transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 8px 22px rgba(14,17,22,0.28); }
@media (max-width: 860px) {
  .nav-inner { padding: 12px 22px; }
  .nav-logo svg { height: 52px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 18px !important; font-size: 13px !important; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/factory-cnc-worker.jpg');
  background-size: cover;
  background-position: center 35%;
  background-color: #0E1116;
  transform: scale(1.04);
  animation: heroIn 1.8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes heroIn {
  to { transform: scale(1); }
}
/* Strong but localised gradient: photo retains colour at top, text area at bottom is dark enough to read */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% 100%, rgba(5,12,24,0.65) 0%, rgba(5,12,24,0.35) 45%, rgba(5,12,24,0) 70%),
    linear-gradient(180deg, rgba(5,12,24,0.20) 0%, rgba(5,12,24,0.08) 35%, rgba(5,12,24,0.65) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  padding: 180px 32px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-pale);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(209,250,229,0.30);
  padding: 8px 18px;
  border-radius: 980px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}
h1.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 7.6vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 16ch;
  margin: 0 auto 22px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--copper-light);
  font-weight: 600;
}
.hero-subtitle-cn {
  font-family: var(--ff-cn);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 26px;
  letter-spacing: 0.08em;
}
.hero-body {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
  max-width: 50ch;
  margin: 0 auto 40px;
  font-weight: 300;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}
.btn-primary {
  background: rgba(16,185,129,0.55);
  color: var(--white) !important;
  padding: 15px 32px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(209,250,229,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 18px rgba(16,185,129,0.28);
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s;
}
.btn-primary:hover { background: rgba(52,211,153,0.68); border-color: rgba(209,250,229,0.65); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 10px 24px rgba(16,185,129,0.36); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.95) !important;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 400;
  transition: all .15s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-stat {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 24px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .2s, transform .2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.hero-stat-n {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--copper-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-n.small { font-size: 28px; line-height: 1.3; padding-top: 8px; }
.hero-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-inner { padding: 140px 22px 64px; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; max-width: 360px; }
  .hero-stat { padding: 18px 18px; display: flex; align-items: baseline; gap: 14px; text-align: left; }
  .hero-stat-n { font-size: 36px; }
  .hero-stat-l { margin-top: 0; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ── SECTION SHARED ── */
section { padding: 120px 0; }
@media (max-width: 860px) { section { padding: 80px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.eyebrow-pill {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  background: transparent;
  border: 1px solid rgba(16,185,129,0.4);
  padding: 7px 16px;
  border-radius: 980px;
  margin-bottom: 22px;
}
h2.section-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 18ch;
  text-wrap: balance;
}
h2.section-title em { font-style: normal; color: var(--copper); font-weight: 600; }
.section-lede {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-mute);
  max-width: 56ch;
  line-height: 1.6;
  font-weight: 400;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.section-head.center h2.section-title { margin-left: auto; margin-right: auto; }

/* ── FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── WHAT I DO (3 cards) ── */
.what { background: var(--paper); }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.what-card {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 40px 36px 44px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.what-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.what-title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.what-title-cn {
  font-family: var(--ff-cn);
  font-size: 16px;
  color: var(--copper);
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.what-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.what-desc strong { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .what-grid { grid-template-columns: 1fr; gap: 16px; } .what-card { padding: 34px 28px 36px; } .what-title { font-size: 34px; } }

/* ── HOW IT WORKS (4 steps) ── */
.process { background: var(--paper-dark); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-step {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.process-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.process-when {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--copper);
  font-style: italic;
  margin-bottom: 16px;
}
.process-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
}
@media (max-width: 1000px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-title { font-size: 26px; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-step { padding: 30px 24px 28px; }
}

/* ── PHOTO BAND (one only) ── */
.photo-band {
  position: relative;
  min-height: 64vh;
  overflow: hidden;
  background-color: #0E1116;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/factory-aerial-color.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
@media (max-width: 900px) { .photo-band-bg { background-attachment: scroll; } }
/* Centred dark vignette so photo keeps its colour around the edges but the quote is fully legible */
.photo-band-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 55% at 50% 50%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.25) 80%, rgba(0,0,0,0.20) 100%);
}
.photo-band-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 32px;
  text-align: center;
}
.photo-band-quote {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 30px rgba(0,0,0,0.35);
  margin-bottom: 22px;
  text-wrap: balance;
}
.photo-band-cite {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  font-weight: 500;
}

/* ── STATIONS (12 cards, glass, no descriptions) ── */
.stations { background: var(--paper-dark); }
.stations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.station-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.station-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}
.station-n {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.18em;
  flex-shrink: 0;
  min-width: 28px;
}
.station-name {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
@media (max-width: 900px) { .stations-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 480px) { .stations-grid { grid-template-columns: 1fr; gap: 10px; } .station-card { padding: 22px 22px; } }

/* ── REPORT (3 big-number cards) ── */
.report { background: var(--paper); }
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-card {
  background: var(--paper-dark);
  border-radius: 24px;
  padding: 56px 40px 50px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.report-n {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 600;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.report-n em { font-style: normal; color: var(--copper); font-weight: 600; }
.report-card-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.report-card-text {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .report-grid { grid-template-columns: 1fr; gap: 14px; }
  .report-card { padding: 40px 32px 36px; }
}

/* ── CHINESE SECTION ── */
.chinese-section { background: var(--paper); padding-top: 120px; padding-bottom: 120px; }
.chinese-section .container { max-width: 1180px; }
.cn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.cn-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0E1116;
  background-image: url('../images/factory-textile-worker.jpg');
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.cn-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(14,17,22,0.20) 100%);
  pointer-events: none;
}
.cn-head-split { text-align: left; margin: 0; max-width: none; }
.cn-head-split .cn-title { margin-left: 0; margin-right: 0; }
.cn-head-split .cn-lede { margin-top: 22px; }
@media (max-width: 900px) {
  .cn-split { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .cn-photo { aspect-ratio: 4 / 3; }
  .cn-head-split { text-align: center; }
}
.cn-head { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cn-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  display: block;
}
.cn-title {
  font-family: var(--ff-cn);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.cn-lede {
  font-family: var(--ff-cn);
  font-size: 17px;
  color: var(--ink-mute);
  margin-top: 18px;
  line-height: 1.75;
  font-weight: 400;
}
.cn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cn-card {
  background: var(--paper-dark);
  border-radius: 22px;
  padding: 40px 32px 42px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cn-card-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cn-card-en {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 18px;
  color: var(--copper);
  margin-bottom: 8px;
  font-weight: 500;
}
.cn-card-title {
  font-family: var(--ff-cn);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.cn-card-desc {
  font-family: var(--ff-cn);
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.85;
}
.cn-card-desc strong { color: var(--ink); font-weight: 500; }
.cn-cta-box {
  margin-top: 48px;
  background: var(--navy);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}
.cn-cta-title {
  font-family: var(--ff-cn);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.cn-cta-text {
  font-family: var(--ff-cn);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 46ch;
  margin: 0 auto 28px;
}
.cn-cta-box .btn-primary { background: rgba(16,185,129,0.55); border: 1px solid rgba(209,250,229,0.5); box-shadow: 0 1px 0 rgba(255,255,255,0.20) inset, 0 6px 18px rgba(0,0,0,0.25); }
.cn-cta-box .btn-primary:hover { background: rgba(52,211,153,0.7); border-color: rgba(209,250,229,0.7); }
@media (max-width: 900px) { .cn-grid { grid-template-columns: 1fr; gap: 14px; } .cn-cta-box { padding: 40px 28px; } }

/* ── CONTACT ── */
.contact { background: var(--paper-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-block {
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-block:first-child { padding-top: 0; border-top: none; }
.contact-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.contact-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.form-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 44px 40px 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 9px;
}
.field label .opt { color: var(--ink-mute); font-weight: 400; letter-spacing: 0.05em; text-transform: none; margin-left: 4px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper-dark);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
  outline: none;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #b6b6bb; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; cursor: pointer; }
.field.robot-check {
  margin-top: 8px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 12px;
}
.robot-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  margin-bottom: 0 !important;
  user-select: none;
}
.robot-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .15s, background-color .15s;
}
.robot-label input[type="checkbox"]:hover { border-color: var(--copper); }
.robot-label input[type="checkbox"]:checked {
  background: var(--copper);
  border-color: var(--copper);
}
.robot-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.robot-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}
.btn-submit {
  width: 100%;
  background: rgba(14,17,22,0.88);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 28px;
  border-radius: 980px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 6px 18px rgba(14,17,22,0.18);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { background: rgba(26,32,44,0.94); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 10px 24px rgba(14,17,22,0.28); }

/* Form success state (after Formspree redirect) */
.form-success {
  text-align: center;
  padding: 24px 8px 16px;
}
.form-success-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.form-success-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.form-success-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 38ch;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 24px; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.footer-brand-cn {
  font-family: var(--ff-cn);
  font-size: 14px;
  color: var(--copper-light);
  margin-top: 4px;
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 36ch;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── COOKIE BANNER ── */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 620px;
  background: rgba(14,17,22,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(209,250,229,0.18);
}
.cookie p { flex: 1; min-width: 220px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.cookie p strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cookie a { color: var(--copper-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie button {
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border: none;
}
.cookie .decline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.cookie .decline:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cookie .accept { background: rgba(16,185,129,0.55); color: var(--white); border: 1px solid rgba(209,250,229,0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset; }
.cookie .accept:hover { background: rgba(52,211,153,0.7); border-color: rgba(209,250,229,0.65); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-photo { animation: none; transform: none; }
  .photo-band-bg { background-attachment: scroll; }
  * { scroll-behavior: auto !important; }
}

/* ─────────────────────────────────────────────────────────────
   Multi-page additions
   ───────────────────────────────────────────────────────────── */

/* Active nav link */
.nav-links a.active { color: var(--ink); background: rgba(0,0,0,0.04); }

/* Breadcrumb */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--ink-mute);
}
.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-mute); transition: color .15s; font-weight: 400; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb .sep { color: rgba(0,0,0,0.18); font-size: 11px; }
.breadcrumb .here { color: var(--ink); font-weight: 500; }
@media (max-width: 640px) { .breadcrumb-inner { padding: 12px 22px; font-size: 12px; } }

/* Pre-footer CTA block */
.pre-cta { background: var(--paper-dark); }
.pre-cta-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 56px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pre-cta-card .eyebrow-pill { color: var(--copper-light); border-color: rgba(209,250,229,0.35); margin-bottom: 22px; }
.pre-cta-card h2 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.pre-cta-card h2 em { font-style: normal; color: var(--copper-light); font-weight: 600; }
.pre-cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.pre-cta-card .btn-primary { background: rgba(16,185,129,0.55); border: 1px solid rgba(209,250,229,0.45); }
.pre-cta-card .btn-primary:hover { background: rgba(52,211,153,0.7); }
@media (max-width: 720px) { .pre-cta-card { padding: 48px 28px; border-radius: 22px; } }

/* Compact FAQ teaser used on homepage */
.faq-teaser-list { display: flex; flex-direction: column; gap: 4px; max-width: 820px; margin: 0 auto; }
.faq-teaser-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 26px 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}
.faq-teaser-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-teaser-n { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--copper); padding-top: 4px; }
.faq-teaser-q { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.faq-teaser-a { font-size: 15px; color: var(--ink-mute); line-height: 1.65; }

/* Full FAQ page list */
.faq-full { max-width: 820px; margin: 0 auto; }
.faq-toc {
  background: var(--paper-dark);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.faq-toc-title { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.faq-toc ol { list-style: none; counter-reset: faq; display: grid; gap: 8px; }
.faq-toc li { counter-increment: faq; }
.faq-toc li::before { content: counter(faq, decimal-leading-zero) '  '; color: var(--copper); font-family: var(--ff-mono); font-size: 12px; }
.faq-toc a { font-size: 15px; color: var(--ink); transition: color .15s; }
.faq-toc a:hover { color: var(--copper); }
.faq-entry { padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.faq-entry:first-of-type { border-top: none; padding-top: 0; }
.faq-entry h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  scroll-margin-top: 88px;
}
.faq-entry p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 14px; }
.faq-entry p:last-child { margin-bottom: 0; }

/* Service page prose */
.lead-paragraph {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 38ch;
  margin-bottom: 48px;
  text-wrap: balance;
}
.lead-paragraph em { font-style: italic; color: var(--copper); }

.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  line-height: 1.15;
  text-wrap: balance;
}
.prose h2 em { font-style: normal; color: var(--copper); font-weight: 600; }
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 10px;
}
.prose p { font-size: 17px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 12px 0 24px 0; padding-left: 22px; color: var(--ink-mid); }
.prose ul li { font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.prose ul li::marker { color: var(--copper); }
.prose strong { color: var(--ink); font-weight: 500; }
.prose blockquote {
  border-left: 2px solid var(--copper);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}

/* Comparison strip on service page */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 8px; }
.compare-col { border-radius: 18px; padding: 28px 28px 32px; }
.compare-col.bad { background: var(--paper-dark); }
.compare-col.good { background: var(--navy); color: var(--white); }
.compare-col h3 {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  font-weight: 500;
}
.compare-col.bad h3 { color: var(--ink-mute); }
.compare-col.good h3 { color: var(--copper-light); }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { font-size: 15px; line-height: 1.55; padding: 10px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.compare-col.good li { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.compare-col.bad li:first-child, .compare-col.good li:first-child { border-top: none; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* Station deep entries */
.station-entry {
  padding: 44px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}
.station-entry:first-of-type { border-top: none; padding-top: 0; }
.station-entry-n {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--copper);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.station-entry h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
  scroll-margin-top: 88px;
}
.station-entry p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 14px; }
.station-entry p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .station-entry { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .station-entry-n { font-size: 44px; }
}

/* Generic page hero */
.page-hero { background: var(--paper); padding: 72px 0 56px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.page-hero .eyebrow-pill { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 20px;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.page-hero h1 em { font-style: normal; color: var(--copper); font-weight: 600; }
.page-hero p {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-mute);
  max-width: 56ch;
  line-height: 1.65;
}
.page-hero p[lang="zh"] { font-family: var(--ff-cn); margin-top: 8px; }
@media (max-width: 640px) { .page-hero { padding: 56px 0 40px; } }

/* Inline link in prose */
.prose a, .faq-entry a { color: var(--copper); border-bottom: 1px solid rgba(16,185,129,0.3); transition: border-color .15s, color .15s; }
.prose a:hover, .faq-entry a:hover { color: var(--copper-light); border-bottom-color: var(--copper-light); }

/* "See all" link */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--copper);
  font-size: 15px;
  font-weight: 500;
  transition: gap .2s, color .15s;
}
.see-all:hover { gap: 14px; color: var(--copper-light); }
.see-all::after { content: '→'; font-weight: 400; }
.see-all-wrap { text-align: center; margin-top: 36px; }

/* ── FOUNDER ── */
.founder { padding: 100px 0; background: var(--paper); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.founder-card { background: var(--paper-dark); border: 1px solid rgba(14,17,22,0.08); border-radius: 20px; padding: 40px 36px; text-align: center; }
.founder-portrait { width: 92px; height: 92px; border-radius: 50%; background: var(--copper); color: #fff; font-family: var(--ff-display); font-size: 38px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.founder-name { font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.founder-role { font-size: 14px; color: var(--ink-mute); margin-bottom: 24px; }
.founder-meta { list-style: none; text-align: left; border-top: 1px solid rgba(14,17,22,0.08); margin: 0; padding: 0; }
.founder-meta li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; font-size: 14px; color: var(--ink); border-bottom: 1px solid rgba(14,17,22,0.06); }
.founder-meta li span { color: var(--ink-mute); }
.founder-bio h2 { margin-bottom: 20px; }
.founder-bio h2 em { font-style: normal; color: var(--copper); }
.founder-bio p { color: var(--ink-mid); margin-bottom: 16px; line-height: 1.72; }
.founder-bio p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── NOTICE ── */
.notice { padding: 100px 0; background: var(--paper-dark); }
.notice .section-title { margin-bottom: 16px; }
.notice .section-title em { font-style: normal; color: var(--copper); }
.notice-lede { color: var(--ink-mid); max-width: 56ch; margin-bottom: 48px; line-height: 1.7; }
.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(14,17,22,0.08); border: 1px solid rgba(14,17,22,0.08); border-radius: 16px; overflow: hidden; }
.notice-item { background: var(--paper); padding: 28px 26px; }
.notice-item h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.notice-item p { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }
@media (max-width: 860px) { .notice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .notice-grid { grid-template-columns: 1fr; } }
