/* ─── ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --black:   #080808;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --dark3:   #242424;
  --border:  #2e2e2e;
  --mid:     #555;
  --text:    #d4d0c8;
  --light:   #e8e4dc;
  --white:   #f5f2ec;
  --amber:   #E8A020;
  --amber2:  #F5BC50;
  --red:     #C0392B;
  --green:   #2ECC71;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'IBM Plex Mono', 'Courier New', monospace;

  --max: 1180px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber2); }

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex; align-items: center; gap: 2rem;
}
.nav-brand {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--mid); text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-toggle { display: none; background: none; border: none; color: var(--amber); font-size: 1.4rem; cursor: pointer; }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,160,32,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(232,160,32,0.04) 0%, transparent 60%),
    linear-gradient(170deg, #080808 0%, #0f0f0f 50%, #0a0a0a 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A020' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 4rem var(--pad);
  display: grid; grid-template-columns: 1fr;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero-title .line1 { display: block; animation: fadeUp 0.8s 0.1s ease both; }
.hero-title .line2 { display: block; animation: fadeUp 0.8s 0.2s ease both; }
.hero-title .line3 { display: block; color: var(--amber); animation: fadeUp 0.8s 0.3s ease both; }
.hero-title em { font-style: italic; }

.hero-subtitle {
  font-size: 1.15rem; font-weight: 300; color: var(--text);
  max-width: 600px; line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hstat {}
.hstat-num {
  font-family: var(--mono); font-size: 2.8rem; font-weight: 600;
  color: var(--amber); line-height: 1;
}
.hstat-label {
  font-size: 0.8rem; color: var(--mid); line-height: 1.4; margin-top: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hstat-label span { color: var(--text); display: block; margin-top: 0.2rem; }

.hero-cta {
  display: inline-block;
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em;
  color: var(--black); background: var(--amber);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-weight: 600; text-transform: uppercase;
  transition: all 0.2s;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-cta:hover { background: var(--amber2); color: var(--black); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); animation: scrollBounce 2s infinite;
}

/* ─── BAND ───────────────────────────────────────────────── */
.band { padding: 1.4rem var(--pad); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-amber { background: var(--amber); }
.band-inner { max-width: var(--max); margin: 0 auto; }
.band-amber span {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--black); font-weight: 700;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 7rem var(--pad); }
.section-dark { background: var(--black); }
.container { max-width: var(--max); margin: 0 auto; }

.section-header { margin-bottom: 5rem; }
.section-number {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.25em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.0;
  color: var(--white); margin-bottom: 1.5rem;
}
.section-lead {
  font-size: 1.1rem; font-weight: 300;
  color: var(--text); max-width: 640px; line-height: 1.8;
}

/* ─── TFR CHART ──────────────────────────────────────────── */
.tfr-table-wrap {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 4px; padding: 2.5rem; margin-bottom: 4rem;
}
.table-title {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 2rem;
}
.table-note {
  font-size: 0.75rem; color: var(--mid); margin-top: 1.5rem; font-style: italic;
}

/* TFR bar chart */
.tfr-country-row {
  display: grid; grid-template-columns: 120px 1fr 80px;
  align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.tfr-country-name { font-size: 0.85rem; color: var(--light); font-weight: 500; }
.tfr-bar-container { background: var(--dark3); height: 28px; border-radius: 2px; overflow: hidden; position: relative; }
.tfr-bar {
  height: 100%; border-radius: 2px; position: absolute; left: 0; top: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; align-items: center; padding-left: 8px;
}
.tfr-bar-label { font-family: var(--mono); font-size: 0.7rem; color: rgba(255,255,255,0.9); font-weight: 600; white-space: nowrap; }
.tfr-replacement {
  position: absolute; left: 0; top: 0; height: 100%;
  border-right: 2px dashed rgba(232,160,32,0.5);
  pointer-events: none;
}
.tfr-val { font-family: var(--mono); font-size: 0.85rem; color: var(--amber); text-align: right; }

/* ─── COUNTRY CARDS ──────────────────────────────────────── */
.cards-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-bottom: 5rem;
}
.country-card {
  padding: 2rem; border-radius: 4px; border: 1px solid var(--border);
  background: var(--dark2);
}
.card-tw { border-top: 3px solid #0070C0; }
.card-jp { border-top: 3px solid #D62828; }
.card-kr { border-top: 3px solid #003087; }

.cc-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.cc-name { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--mid); text-transform: uppercase; margin-bottom: 0.5rem; }
.cc-tfr {
  font-family: var(--serif); font-size: 4rem; font-weight: 900;
  color: var(--amber); line-height: 1; margin-bottom: 0.75rem;
}
.cc-label { font-size: 0.8rem; color: var(--text); line-height: 1.5; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.cc-fact { display: flex; justify-content: space-between; align-items: baseline; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.8rem; color: var(--mid); }
.cc-fact .mono { color: var(--light); font-family: var(--mono); font-size: 0.8rem; }

/* ─── DEPENDENCY BARS ────────────────────────────────────── */
.dependency-section { margin-bottom: 5rem; }
.subsection-title {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}
.subsection-body { font-size: 1rem; color: var(--text); line-height: 1.8; max-width: 720px; margin-bottom: 2rem; }
.dep-bars { display: flex; flex-direction: column; gap: 1rem; }
.dep-row { display: grid; grid-template-columns: 100px 1fr 50px; align-items: center; gap: 1rem; }
.dep-name { font-size: 0.85rem; color: var(--light); }
.dep-bar-wrap { background: var(--dark2); height: 32px; border-radius: 2px; position: relative; overflow: hidden; }
.dep-bar {
  height: 100%; border-radius: 2px; position: absolute; left: 0; top: 0;
  display: flex; align-items: center; gap: 0.5rem; padding: 0 0.75rem;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dep-bar-inner { font-family: var(--mono); font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.dep-threshold {
  position: absolute; top: 0; height: 100%;
  border-right: 2px dashed rgba(192,57,43,0.6);
  pointer-events: none;
}
.dep-val { font-family: var(--mono); font-size: 0.8rem; color: var(--amber); text-align: right; }

/* ─── PULL QUOTE ─────────────────────────────────────────── */
.pull-quote {
  padding: 3rem 3rem 3rem 4rem;
  border-left: 4px solid var(--amber);
  margin: 5rem 0; background: var(--dark2);
  border-radius: 0 4px 4px 0;
}
.pull-quote blockquote {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: var(--white); line-height: 1.6; margin-bottom: 1rem;
}
.pull-quote cite { font-size: 0.8rem; color: var(--mid); font-family: var(--mono); }

/* ─── CONTEXT GRID ───────────────────────────────────────── */
.context-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.context-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.75rem; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px;
}
.context-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 0.15rem; }
.context-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.context-text strong { color: var(--white); display: block; margin-bottom: 0.4rem; }

/* ─── IMMIGRATION ────────────────────────────────────────── */
.imm-comparison { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.imm-card {
  padding: 2rem; background: var(--dark2); border: 1px solid var(--border);
  border-radius: 4px; border-top: 3px solid var(--amber);
}
.imm-country { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.imm-program { font-size: 0.78rem; color: var(--mid); font-family: var(--mono); margin-bottom: 1.5rem; }
.imm-data { margin-bottom: 1.5rem; }
.imm-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; color: var(--mid); }
.imm-row .mono { font-family: var(--mono); color: var(--light); }
.imm-row .amber { color: var(--amber); }
.imm-verdict { font-size: 0.83rem; color: var(--text); line-height: 1.6; font-style: italic; padding-top: 1rem; border-top: 1px solid var(--border); }

.math-box {
  background: rgba(232,160,32,0.06); border: 1px solid rgba(232,160,32,0.25);
  border-radius: 4px; padding: 2.5rem;
}
.math-title { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--amber); text-transform: uppercase; margin-bottom: 1.25rem; }
.math-content p { font-size: 1rem; color: var(--text); line-height: 1.8; }
.math-content p + p { margin-top: 1rem; }
.math-content strong { color: var(--white); }

/* ─── ROBOT CARDS ────────────────────────────────────────── */
.maturity-legend { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ml-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--mid); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-deployed { background: var(--green); }
.dot-commercial { background: var(--amber); }
.dot-pilot { background: #E67E22; }
.dot-research { background: var(--mid); }

.robot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 5rem; }
.robot-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.robot-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.robot-card-highlight { border-color: rgba(232,160,32,0.3); }

.robot-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.robot-icon { font-size: 2rem; flex-shrink: 0; }
.robot-name { font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.robot-maturity { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--mid); }
.robot-body p { font-size: 0.88rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; }
.robot-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tech-tag { font-family: var(--mono); font-size: 0.65rem; padding: 0.25rem 0.6rem; background: var(--dark3); border: 1px solid var(--border); border-radius: 2px; color: var(--mid); letter-spacing: 0.05em; }
.robot-relevance { font-size: 0.82rem; color: var(--amber); line-height: 1.55; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ─── HOME DIAGRAM ───────────────────────────────────────── */
.converge-block { margin-top: 1rem; }
.home-diagram {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2.5rem;
  padding: 3rem; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px;
  margin-top: 2rem;
}
.home-center {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem 2.5rem; background: rgba(232,160,32,0.1);
  border: 2px solid var(--amber); border-radius: 4px;
}
.home-icon { font-size: 2.5rem; }
.home-label { font-size: 0.85rem; font-weight: 600; color: var(--amber); text-align: center; line-height: 1.4; }
.home-spokes { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.spoke {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1rem 1.25rem; background: var(--dark3); border: 1px solid var(--border);
  border-radius: 4px; min-width: 110px;
  transition: border-color 0.2s;
}
.spoke:hover { border-color: var(--amber); }
.spoke-icon { font-size: 1.5rem; }
.spoke-label { font-size: 0.75rem; color: var(--mid); text-align: center; line-height: 1.3; }

/* ─── DAY IN LIFE ────────────────────────────────────────── */
.day-in-life { margin-bottom: 5rem; }
.dil-header { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--amber); text-transform: uppercase; margin-bottom: 0.5rem; }
.dil-subtitle { font-size: 0.9rem; color: var(--mid); margin-bottom: 2.5rem; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-time { font-family: var(--mono); font-size: 1.1rem; font-weight: 600; color: var(--amber); padding-top: 0.25rem; }
.tl-title { font-weight: 600; color: var(--white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.tl-body { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 0.75rem; }
.tl-tech { font-family: var(--mono); font-size: 0.7rem; color: var(--mid); }

/* ─── DEPLOYMENT TIMELINE ────────────────────────────────── */
.deployment-timeline { margin-bottom: 5rem; }
.dt-phases { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.dt-phase {
  padding: 2rem; border: 1px solid var(--border); border-radius: 4px;
  background: var(--dark2); position: relative;
}
.dt-phase-frontier { border-color: rgba(232,160,32,0.35); background: rgba(232,160,32,0.04); }
.dt-range { font-family: var(--mono); font-size: 1.4rem; font-weight: 600; color: var(--amber); margin-bottom: 0.5rem; }
.dt-name { font-weight: 600; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.dt-desc { font-size: 0.88rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; }
.dt-price { font-family: var(--mono); font-size: 0.78rem; color: var(--amber); margin-bottom: 0.5rem; }
.dt-who { font-size: 0.78rem; color: var(--mid); }

/* ─── CONSTRAINT TABLE ───────────────────────────────────── */
.constraint-block { margin-bottom: 3rem; }
.constraint-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 2rem 0; }
.ct-header, .ct-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  padding: 0.9rem 1.25rem; gap: 1rem; align-items: center;
}
.ct-header { background: var(--dark3); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--mid); text-transform: uppercase; }
.ct-row { border-top: 1px solid var(--border); font-size: 0.88rem; color: var(--text); }
.ct-row:nth-child(odd) { background: var(--dark2); }
.amber-text { color: var(--amber); font-weight: 500; font-size: 0.82rem; }
.green-text { color: var(--green); font-weight: 500; font-size: 0.82rem; }

/* ─── MARKET ─────────────────────────────────────────────── */
.market-chart-wrap {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 4px;
  padding: 2.5rem; margin-bottom: 4rem;
}
.mc-title { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--amber); text-transform: uppercase; margin-bottom: 2rem; }
.market-group { margin-bottom: 1.5rem; }
.market-year { font-family: var(--mono); font-size: 0.8rem; color: var(--mid); margin-bottom: 0.75rem; letter-spacing: 0.08em; }
.market-seg-row { display: grid; grid-template-columns: 200px 1fr 60px; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.market-seg-name { font-size: 0.8rem; color: var(--text); }
.market-bar-wrap { background: var(--dark3); height: 22px; border-radius: 2px; overflow: hidden; }
.market-bar-fill { height: 100%; border-radius: 2px; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }
.market-val { font-family: var(--mono); font-size: 0.78rem; color: var(--amber); text-align: right; }

/* ─── PLAYERS ────────────────────────────────────────────── */
.players-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.player-card { padding: 1.75rem; border: 1px solid var(--border); border-radius: 4px; background: var(--dark2); }
.player-japan { border-top: 3px solid #D62828; }
.player-korea { border-top: 3px solid #003087; }
.player-global { border-top: 3px solid var(--amber); }
.player-country { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--mid); text-transform: uppercase; margin-bottom: 1.25rem; }
.player-item { font-size: 0.85rem; color: var(--text); padding: 0.55rem 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.player-item:last-child { border-bottom: none; }
.player-item strong { color: var(--white); }

/* ─── CHINA BLOCK ────────────────────────────────────────── */
.china-block { background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.25); border-radius: 4px; padding: 2.5rem; margin-bottom: 4rem; }
.china-title { font-weight: 600; color: var(--white); font-size: 1.05rem; margin-bottom: 2rem; }
.china-content { display: grid; grid-template-columns: auto auto 1fr; gap: 3rem; align-items: start; }
.china-stat { text-align: center; }
.china-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: #E74C3C; line-height: 1; }
.china-label { font-size: 0.8rem; color: var(--mid); margin-top: 0.5rem; }
.china-text p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.china-text p + p { margin-top: 1rem; }

/* ─── BARRIERS ───────────────────────────────────────────── */
.barriers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.barrier { padding: 1.75rem; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; }
.barrier-name { font-weight: 700; color: var(--white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.barrier-current { font-size: 0.85rem; color: var(--amber); margin-bottom: 0.75rem; font-family: var(--mono); }
.barrier-path { font-size: 0.88rem; color: var(--text); line-height: 1.65; }

/* ─── ACTION SPLIT ───────────────────────────────────────── */
.action-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
.action-tag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; margin-bottom: 2rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.action-items { display: flex; flex-direction: column; gap: 1.5rem; }
.action-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.action-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: rgba(232,160,32,0.3); line-height: 1; flex-shrink: 0; width: 2rem; }
.action-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.action-text strong { color: var(--white); display: block; margin-bottom: 0.4rem; font-size: 0.95rem; }

.final-quote { padding: 4rem; border: 1px solid var(--border); border-radius: 4px; text-align: center; }
.final-bq { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--white); line-height: 1.7; max-width: 820px; margin: 0 auto; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 3rem var(--pad); }
.footer-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--amber); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-sub { font-size: 0.78rem; color: var(--mid); line-height: 1.7; max-width: 700px; margin: 0 auto 1rem; }
.footer-note { font-size: 0.75rem; color: rgba(85,85,85,0.7); margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.footer-meta { font-size: 0.75rem; color: var(--mid); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITIES ──────────────────────────────────────────── */
.mono { font-family: var(--mono); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .robot-grid { grid-template-columns: 1fr 1fr; }
  .context-grid { grid-template-columns: 1fr; }
  .imm-comparison { grid-template-columns: 1fr; }
  .dt-phases { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: 1fr; }
  .action-split { grid-template-columns: 1fr; }
  .china-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .barriers-grid { grid-template-columns: 1fr; }
  .ct-header, .ct-row { grid-template-columns: 1fr 1fr; }
  .ct-header div:nth-child(3), .ct-row div:nth-child(3),
  .ct-header div:nth-child(4), .ct-row div:nth-child(4) { display: none; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 3.5rem; }
  .cards-3 { grid-template-columns: 1fr; }
  .robot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); padding: 1rem var(--pad); border-bottom: 1px solid var(--border); }
  .tl-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .pull-quote { padding: 2rem; }
  .dep-row { grid-template-columns: 80px 1fr 50px; }
  .tfr-country-row { grid-template-columns: 80px 1fr 60px; }
  .market-seg-row { grid-template-columns: 140px 1fr 55px; }
}
