/* ════════════════════════════════════════════
   ROOT VARIABLES
════════════════════════════════════════════ */
:root {
  --primary:        #0c195f;
  --primary-dark:   #070e3f;
  --primary-light:  #1a2d8a;
  --accent:         #0066cc;
  --cyan:           #00b4d8;
  --cyan-light:     #90e0ef;
  --gold:           #f0a500;
  --gold-light:     #ffd166;
  --aw-color:       #2E7D7A;
  --aw-light:       #4aadaa;
  --suzuken-color:  #D4641A;
  --suzuken-light:  #f08040;
  --bg-light:       #f0f4ff;
  --bg-white:       #ffffff;
  --bg-dark:        #070e3f;
  --text-dark:      #0c195f;
  --text-medium:    #2d3e6d;
  --text-light:     #6b7db3;
  --text-muted:     #94a3c4;
  --border:         #d4ddf7;
  --shadow-sm:      0 2px 8px rgba(12,25,95,.08);
  --shadow:         0 4px 24px rgba(12,25,95,.12);
  --shadow-lg:      0 8px 48px rgba(12,25,95,.18);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
body[lang="zh"] { font-family: 'Noto Sans SC', 'Noto Sans JP', sans-serif; }
body[lang="en"] { font-family: 'Inter', 'Noto Sans JP', sans-serif; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ════════════════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════════════ */
.lang-switcher {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  letter-spacing: .03em;
}
.nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
}
.nav-links a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dark);
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,14,63,.1) 0%,
    rgba(7,14,63,.4) 60%,
    rgba(7,14,63,.8) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.08);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-title-line { display: block; }
.hero-title-highlight {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-company-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.company-chip {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.company-chip.aw { background: var(--aw-color); color: #fff; }
.company-chip.sz { background: var(--suzuken-color); color: #fff; }
.hero-x {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
}
.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.hero-stat {}
.hero-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Inter', monospace;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .04em;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .06em;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce-arrow 2s infinite;
}
@keyframes bounce-arrow {
  0%,100% { transform:rotate(45deg) translateY(0); }
  50% { transform:rotate(45deg) translateY(6px); }
}
.hero-source {
  position: absolute;
  bottom: 24px; left: 32px;
  z-index: 2;
}

/* ════════════════════════════════════════════
   SOURCE CITATION
════════════════════════════════════════════ */
.source-citation {
  padding: 12px 20px;
  font-size: .68rem;
  color: var(--text-light);
  border-left: 2px solid var(--border);
  background: rgba(240,244,255,.6);
  border-radius: 0 6px 6px 0;
  margin-top: 40px;
  line-height: 1.5;
  max-width: 700px;
}
.light-source {
  color: rgba(255,255,255,.5);
  border-left-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}
.hero-source {
  color: rgba(255,255,255,.4);
  border-left-color: rgba(255,255,255,.15);
  background: rgba(0,0,0,.2);
  margin-top: 0;
  max-width: 100%;
}

/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section { padding: 96px 32px 80px; position: relative; }
.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }
.section-navy { background: var(--primary); }
.section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.container { max-width: 1200px; margin: 0 auto; }

.section-overline {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-overline.light { color: var(--cyan-light); }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 56px;
}
.section-desc.light { color: rgba(255,255,255,.8); }

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   EXECUTIVE SUMMARY
════════════════════════════════════════════ */
.exec-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.exec-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 20px;
}
.exec-body {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 28px;
}
.exec-thesis {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.thesis-icon {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.exec-thesis p {
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 500;
}
.exec-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kpi-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.kpi-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.kpi-card.kpi-aw { border-color: var(--aw-color); background: #f0faf9; }
.kpi-card.kpi-sz { border-color: var(--suzuken-color); background: #fff8f4; }
.kpi-card.kpi-gold { border-color: var(--gold); background: #fffbf0; }
.kpi-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', monospace;
  line-height: 1;
  margin-bottom: 6px;
}
.kpi-num small { font-size: .7em; font-weight: 600; }
.kpi-label { font-size: .78rem; font-weight: 700; color: var(--text-medium); margin-bottom: 4px; }
.kpi-sub { font-size: .68rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   STRATEGIC THESIS (Ventriloc-inspired editorial)
════════════════════════════════════════════ */
.thesis-section {
  background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 100%);
  padding: 140px 32px 120px;
  position: relative;
}
.thesis-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--border));
}
.thesis-container { max-width: 1200px; margin: 0 auto; }
.thesis-masthead {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}
.thesis-marker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: #fff;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.thesis-year {
  font-family: 'Inter', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
}
.thesis-marker-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text-light);
  text-transform: uppercase;
}
.thesis-headline {
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -.02em;
  margin: 24px 0 36px;
}
.thesis-h-line { display: block; }
.thesis-h-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--aw-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.thesis-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.95;
  color: var(--text-medium);
  max-width: 780px;
  margin: 0 auto;
  font-weight: 400;
}

/* Duo cards */
.thesis-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 88px;
}
.thesis-card {
  background: #fff;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.thesis-card-aw {
  border-top: 4px solid var(--aw-color);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.thesis-card-sz {
  border-top: 4px solid var(--suzuken-color);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.thesis-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.thesis-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}
.tc-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.thesis-card-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.thesis-card-kicker {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: .82rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: .01em;
}
.thesis-card-body {
  font-size: .98rem;
  line-height: 1.95;
  color: var(--text-medium);
  margin-bottom: 24px;
}
.thesis-card-bullets {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thesis-card-bullets li {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--text-medium);
  padding-left: 22px;
  position: relative;
}
.thesis-card-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Axis between cards */
.thesis-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 18px;
  gap: 0;
}
.axis-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  min-height: 40px;
}
.axis-node {
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* Pull quote */
.thesis-pullquote {
  max-width: 900px;
  margin: 0 auto 88px;
  padding: 56px 64px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.thesis-pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,180,216,.15), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(240,165,0,.12), transparent 40%);
  pointer-events: none;
}
.pq-mark {
  display: block;
  font-family: 'Inter', serif;
  font-size: 5rem;
  line-height: .5;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .8;
}
.thesis-pullquote blockquote {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pq-attribute {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Shift grid (from → to) */
.thesis-shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.shift-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.shift-col-to {
  background: linear-gradient(135deg, #fafbff, #eef2ff);
  border-color: var(--primary-light);
}
.shift-badge {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 18px;
}
.shift-badge-to {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.shift-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shift-list li {
  font-size: .9rem;
  color: var(--text-medium);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.shift-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.shift-col-to .shift-list li { color: var(--primary); font-weight: 500; }
.shift-col-to .shift-list li::before { color: var(--accent); }
.shift-arrow {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 300;
}

/* ════════════════════════════════════════════
   SYNTHESIS — DEPTH × BREADTH
════════════════════════════════════════════ */
.synthesis-section { padding: 120px 32px 100px; }
.synth-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 340px;
  gap: 32px;
  margin-top: 48px;
  align-items: center;
}
.synth-axis-v {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-muted);
  text-transform: uppercase;
  height: 100%;
  justify-content: center;
}
.synth-axis-h {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 16px;
}
.synth-axis-arrow.v {
  width: 1px; height: 200px;
  background: linear-gradient(180deg, var(--primary), var(--border));
  margin-top: 12px;
}
.synth-axis-arrow.h {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--primary));
}
.synth-pyramid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-layer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  font-size: .92rem;
  color: var(--text-dark);
}
.sp-layer:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.sp-l1 { width: 44%; background: linear-gradient(90deg, #fff, #f0faf9); border-left: 4px solid var(--aw-color); }
.sp-l2 { width: 56%; background: linear-gradient(90deg, #fff, #f0faf9); border-left: 4px solid var(--aw-color); }
.sp-l3 { width: 68%; background: linear-gradient(90deg, #fff, #fffbeb); border-left: 4px solid var(--gold); position: relative; }
.sp-layer-zone { box-shadow: 0 0 0 3px rgba(240,165,0,.2); animation: pulse-zone 3s infinite; }
@keyframes pulse-zone {
  0%,100% { box-shadow: 0 0 0 3px rgba(240,165,0,.15); }
  50% { box-shadow: 0 0 0 8px rgba(240,165,0,.05); }
}
.sp-l4 { width: 80%; background: linear-gradient(90deg, #fff, #fff8f4); border-left: 4px solid var(--suzuken-color); }
.sp-l5 { width: 92%; background: linear-gradient(90deg, #fff, #fff8f4); border-left: 4px solid var(--suzuken-color); }
.sp-l6 { width: 100%; background: linear-gradient(90deg, #fff, #fff8f4); border-left: 4px solid var(--suzuken-color); }
.sp-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  white-space: nowrap;
  min-width: 58px;
  text-align: center;
}
.sp-tag-aw { background: var(--aw-color); }
.sp-tag-sz { background: var(--suzuken-color); }
.sp-tag-both { background: var(--gold); color: var(--primary); }
.sp-name { font-weight: 500; }

.synth-insights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.synth-insight {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.synth-insight:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.si-num {
  font-family: 'Inter', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  min-width: 40px;
  opacity: .25;
}
.si-title { font-size: .92rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; letter-spacing: -.01em; }
.si-text p { font-size: .82rem; line-height: 1.7; color: var(--text-medium); }

/* ════════════════════════════════════════════
   THREE RIPPLE EFFECTS
════════════════════════════════════════════ */
.ripple-section { padding: 120px 32px 100px; }
.ripple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.ripple-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.ripple-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.ripple-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary-light);
}
.ripple-card:hover::before { transform: scaleX(1); }
.rp-index {
  font-family: 'Inter', monospace;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.rp-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.rp-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.rp-body {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--text-medium);
  margin-bottom: 24px;
}
.rp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.rp-tag {
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .02em;
}
.rp-tag-aw { background: rgba(46,125,122,.12); color: var(--aw-color); }
.rp-tag-sz { background: rgba(212,100,26,.12); color: var(--suzuken-color); }
.rp-tag-both { background: rgba(12,25,95,.08); color: var(--primary); }

.ripple-bottom {
  padding: 32px 40px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
}
.rp-bottom-label {
  font-family: 'Inter', monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 14px;
  border: 1px solid rgba(240,165,0,.4);
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rp-bottom-text {
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* ════════════════════════════════════════════
   THESIS/SYNTHESIS/RIPPLE — Responsive
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .thesis-duo { grid-template-columns: 1fr; }
  .thesis-card-aw { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .thesis-card-sz { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-top: none; border-bottom: 4px solid var(--suzuken-color); }
  .thesis-axis { flex-direction: row; padding: 20px 0; }
  .axis-line { width: auto; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--border), transparent); min-height: 1px; min-width: 40px; }
  .synth-canvas { grid-template-columns: 1fr; }
  .synth-axis-v { display: none; }
  .synth-axis-h { grid-column: 1; grid-row: auto; margin-top: 0; }
  .ripple-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .thesis-section { padding: 80px 20px 80px; }
  .thesis-shift-grid { grid-template-columns: 1fr; gap: 16px; }
  .shift-arrow { transform: rotate(90deg); text-align: center; }
  .thesis-pullquote { padding: 36px 28px; }
  .ripple-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 700px) {
  .thesis-card { padding: 32px 24px; }
  .thesis-headline { font-size: 2rem; }
  .sp-layer { font-size: .78rem; padding: 12px 14px; gap: 10px; }
  .sp-tag { font-size: .56rem; min-width: 44px; padding: 3px 6px; }
  .ripple-card { padding: 28px 24px; }
  .rp-index { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════
   PYRAMID
════════════════════════════════════════════ */
.pyramid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pyramid-chart {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ptier {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.ptier:hover .ptier-bar { filter: brightness(1.1); }
.ptier-bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 20px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ptier-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.ptier:hover .ptier-bar::after { opacity: 1; }
.ptier-inner { text-align: center; }
.ptier-name {
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  line-height: 1.3;
}
.ptier-bed { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* Colors & widths per tier */
.b1 { width: 20%; margin: auto; min-width: 160px; min-height: 52px; background: linear-gradient(135deg, #0a1245, #0c195f); }
.b2 { width: 32%; margin: auto; min-width: 200px; min-height: 52px; background: linear-gradient(135deg, #0c195f, #1a2d8a); }
.b3 { width: 46%; margin: auto; min-width: 260px; min-height: 52px; background: linear-gradient(135deg, #1a2d8a, #1e40c8); }
.b4 { width: 60%; margin: auto; min-height: 52px; background: linear-gradient(135deg, #1e40c8, #2554e0); }
.b5 { width: 70%; margin: auto; min-height: 50px; background: linear-gradient(135deg, #2554e0, #2e7d7a); }
.b6 { width: 80%; margin: auto; min-height: 50px; background: linear-gradient(135deg, #2E7D7A, #3a9e9a); }
.b7 { width: 90%; margin: auto; min-height: 50px; background: linear-gradient(135deg, #D4641A, #e07830); }
.b8 { width: 95%; margin: auto; min-height: 48px; background: linear-gradient(135deg, #b8541a, #c46020); }
.b9 { width: 100%; min-height: 48px; background: linear-gradient(135deg, #0c195f80, #2E7D7A80); border: 2px dashed rgba(255,255,255,.3); }

.ptier-left, .ptier-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
}
.ptier-right { align-items: flex-start; }
.ptier-count {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  font-family: 'Inter', monospace;
  white-space: nowrap;
}
.ptier-count em { font-style: normal; font-size: .65rem; margin-left: 2px; color: rgba(255,255,255,.6); }
.ptier-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.ptier-aw { background: var(--aw-color); color: #fff; }
.ptier-sz { background: var(--suzuken-color); color: #fff; }
.ptier-market {
  font-size: .62rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  margin-top: 2px;
}

.pyramid-legend {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.plegend-title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100%;
}
.plegend-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.plegend-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .82rem; }
.plegend-color { width: 14px; height: 14px; border-radius: 3px; }
.aw-color { background: var(--aw-color); }
.sz-color { background: var(--suzuken-color); }
.plegend-marks {
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}

/* ════════════════════════════════════════════
   COMPANY SECTIONS
════════════════════════════════════════════ */
.company-header {
  margin-bottom: 40px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--aw-color);
}
.aw-header { background: linear-gradient(135deg, #f0faf9, #e8f7f6); border-left-color: var(--aw-color); }
.sz-header { background: linear-gradient(135deg, #fff8f4, #ffeee4); border-left-color: var(--suzuken-color); }

.company-logo-area { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.company-logo-badge {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.aw-badge { background: var(--aw-color); }
.sz-badge { background: var(--suzuken-color); }

.company-subtitle { font-size: .85rem; color: var(--text-light); margin-top: 4px; }
.company-tagline { font-size: .9rem; font-weight: 600; color: var(--text-medium); font-style: italic; }

.company-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.company-desc { font-size: 1rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 20px; }

.data-table { margin: 24px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dt-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.dt-row:last-child { border-bottom: none; }
.dt-row:nth-child(even) { background: var(--bg-light); }
.dt-highlight { background: rgba(12,25,95,.04) !important; }
.dt-label { color: var(--text-light); font-weight: 600; }
.dt-value { color: var(--text-dark); }

.segments { margin: 20px 0; }
.seg-title { font-size: .8rem; font-weight: 700; color: var(--text-light); margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }
.seg-bar-wrap { display: flex; flex-direction: column; gap: 8px; }
.seg-bar-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items: center; }
.seg-name { font-size: .8rem; color: var(--text-medium); }
.seg-bar-track { background: var(--border); border-radius: 100px; height: 20px; overflow: hidden; }
.seg-bar {
  height: 100%;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  min-width: 32px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.company-charts-col { display: flex; flex-direction: column; gap: 24px; }
.chart-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.chart-card:hover { box-shadow: var(--shadow); }
.chart-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.wide-chart { max-width: 100%; }

.bases-section { margin-top: 40px; padding: 28px; background: var(--bg-light); border-radius: var(--radius-lg); }
.bases-title { font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; letter-spacing: .04em; }
.bases-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.base-chip {
  padding: 6px 14px;
  background: var(--aw-color);
  color: #fff;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.bases-note { font-size: .85rem; color: var(--text-medium); line-height: 1.7; }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.strength-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.strength-card:hover { box-shadow: var(--shadow); border-color: var(--aw-color); }
.strength-icon { font-size: 1.5rem; margin-bottom: 10px; }
.strength-text { font-size: .85rem; color: var(--text-medium); line-height: 1.65; }

/* Suzuken network stats */
.coverage-network {
  margin-top: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cn-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.cn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.cn-stat { text-align: center; }
.cn-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--suzuken-color);
  font-family: 'Inter', monospace;
  line-height: 1;
  margin-bottom: 6px;
}
.cn-label { font-size: .78rem; color: var(--text-medium); font-weight: 600; }
.cn-radar-wrap { max-width: 400px; margin: 0 auto; }

.scale-compare-card { border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; background: var(--bg-white); }
.scale-note { font-size: .82rem; color: var(--text-medium); margin-top: 12px; line-height: 1.6; }

/* ════════════════════════════════════════════
   COVERAGE SYNERGY
════════════════════════════════════════════ */
.synergy-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.syn-col {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid;
  transition: var(--transition);
}
.syn-col:hover { box-shadow: var(--shadow); }
.syn-aw { border-top-color: var(--aw-color); }
.syn-sz { border-top-color: var(--suzuken-color); }
.syn-company-name { font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.syn-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.syn-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.syn-list li {
  padding-left: 16px;
  position: relative;
  font-size: .88rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.syn-list li::before { content: '·'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.syn-target { font-size: .8rem; color: var(--text-medium); padding: 12px 14px; background: var(--bg-light); border-radius: var(--radius); }

.syn-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  min-width: 180px;
}
.syn-venn {
  position: relative;
  width: 160px; height: 120px;
  margin: 0 auto;
}
.venn-top {
  text-align: center;
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.venn-circle {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: .7;
}
.vc-aw { background: var(--aw-color); left: 10px; top: 0; }
.vc-sz { background: var(--suzuken-color); right: 10px; top: 0; }
.venn-label {
  position: absolute;
  bottom: 0;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
}
.vl-aw { left: 14px; }
.vl-sz { right: 14px; }
.venn-overlap-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-8px);
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  z-index: 2;
}
.syn-result-box {
  text-align: center;
  padding: 16px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  width: 100%;
}
.sr-label { font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.sr-num { font-size: 1.4rem; font-weight: 900; margin-bottom: 4px; color: var(--gold-light); }
.sr-desc { font-size: .72rem; color: rgba(255,255,255,.7); }

/* Matrix Table */
.matrix-section { margin-top: 24px; }
.matrix-title { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.matrix-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  font-size: .84rem;
}
.matrix-table thead tr { background: var(--primary); color: #fff; }
.matrix-table th { padding: 12px 16px; text-align: left; font-weight: 600; font-size: .78rem; letter-spacing: .04em; }
.matrix-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.matrix-table tr:nth-child(even) td { background: var(--bg-light); }
.matrix-table tr:hover td { background: rgba(12,25,95,.04); }
.badge-aw { background: var(--aw-color); color: #fff; padding: 3px 8px; border-radius: 100px; font-size: .7rem; font-weight: 700; white-space: nowrap; }
.badge-sz { background: var(--suzuken-color); color: #fff; padding: 3px 8px; border-radius: 100px; font-size: .7rem; font-weight: 700; white-space: nowrap; }
.badge-full { background: var(--primary); color: #fff; padding: 3px 8px; border-radius: 100px; font-size: .7rem; font-weight: 700; white-space: nowrap; }

/* ════════════════════════════════════════════
   DASHBOARD DIVIDER
════════════════════════════════════════════ */
.dashboard-divider {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dashboard-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.02) 0px,
    rgba(255,255,255,.02) 1px,
    transparent 1px,
    transparent 24px
  );
}
.dd-inner { position: relative; z-index: 1; }
.dd-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.dd-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.dd-sub { font-size: 1rem; color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════
   EQUIPMENT CARDS
════════════════════════════════════════════ */
.equip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.eq-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.eq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.eq-ct::before { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.eq-mri::before { background: linear-gradient(90deg, var(--aw-color), var(--cyan)); }
.eq-pet::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.eq-xray::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.eq-us::before { background: linear-gradient(90deg, var(--suzuken-color), var(--suzuken-light)); }
.eq-fundus::before { background: linear-gradient(90deg, #059669, #34d399); }
.eq-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.eq-icon { font-size: 2rem; margin-bottom: 8px; }
.eq-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', monospace;
  line-height: 1;
}
.eq-unit { font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 4px; }
.eq-label { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.eq-world { font-size: .72rem; color: var(--text-muted); line-height: 1.4; }

.compare-section { }

/* ════════════════════════════════════════════
   EXAM VOLUMES
════════════════════════════════════════════ */
.vol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.vol-chart-col {}
.vol-stats-col { display: flex; flex-direction: column; gap: 12px; }
.vol-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.vol-stat-card:hover { box-shadow: var(--shadow-sm); }
.vs-modality { font-size: .78rem; font-weight: 700; color: var(--text-medium); margin-bottom: 4px; }
.vs-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', monospace;
  line-height: 1;
}
.vs-unit { font-size: .72rem; color: var(--text-muted); margin-bottom: 8px; }
.vs-bar-track { height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; margin-bottom: 8px; }
.vs-bar { height: 100%; border-radius: 100px; }
.vs-note { font-size: .74rem; color: var(--text-muted); line-height: 1.5; }

.sample-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
}
.sample-title { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.sample-item { text-align: center; }
.si-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Inter', monospace;
}
.si-num small { font-size: .6em; }
.si-label { font-size: .75rem; color: var(--text-medium); margin-top: 4px; line-height: 1.4; }
.sample-note { font-size: .8rem; color: var(--text-medium); line-height: 1.7; background: var(--bg-white); padding: 12px 16px; border-radius: var(--radius); }

/* ════════════════════════════════════════════
   MARKET SIZE
════════════════════════════════════════════ */
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.market-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mf-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border-top: 3px solid var(--primary);
}
.mf-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Inter', monospace;
}
.mf-num small { font-size: .65em; font-weight: 600; }
.mf-label { font-size: .78rem; color: var(--text-medium); line-height: 1.5; }

/* ════════════════════════════════════════════
   DARK DATA SECTION
════════════════════════════════════════════ */
.dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dark-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.dark-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.dc-icon { font-size: 2rem; margin-bottom: 12px; }
.dc-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.dc-body { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 16px; }
.dc-stat {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 8px 12px;
  background: rgba(240,165,0,.1);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.dc-stat small { font-weight: 400; color: rgba(255,220,100,.7); }

/* ════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════ */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--border), var(--primary), var(--border));
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  width: 50%;
}
.tl-left { padding-right: 48px; flex-direction: row-reverse; }
.tl-right { padding-left: 48px; margin-left: auto; }

.tl-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  top: 16px;
  border: 2px solid var(--bg-white);
}
.tl-left .tl-dot { right: -7px; }
.tl-right .tl-dot { left: -7px; }
.tl-dot-aw { background: var(--aw-color); }
.tl-dot-sz { background: var(--suzuken-color); }

.tl-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: var(--transition);
}
.tl-card:hover { box-shadow: var(--shadow); }
.tl-card.tl-latest { border-color: var(--suzuken-color); }
.tl-date {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.tl-company { font-size: .72rem; font-weight: 700; margin-bottom: 6px; }
.tl-sz .tl-company { color: var(--suzuken-color); }
.tl-aw .tl-company { color: var(--aw-color); }
.tl-title-text { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.tl-desc { font-size: .8rem; color: var(--text-medium); line-height: 1.6; }

/* ════════════════════════════════════════════
   FUTURE OUTLOOK
════════════════════════════════════════════ */
.outlook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.out-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}
.out-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.out-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  font-family: 'Inter', monospace;
  line-height: 1;
  margin-bottom: 12px;
}
.out-title { font-size: .95rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.35; }
.out-body { font-size: .84rem; color: var(--text-medium); line-height: 1.75; margin-bottom: 16px; }
.out-impact { display: flex; flex-wrap: wrap; gap: 6px; }
.impact-aw {
  font-size: .7rem; font-weight: 700;
  background: var(--aw-color); color: #fff;
  padding: 3px 10px; border-radius: 100px;
}
.impact-sz {
  font-size: .7rem; font-weight: 700;
  background: var(--suzuken-color); color: #fff;
  padding: 3px 10px; border-radius: 100px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
  position: relative;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.footer-author { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 12px; letter-spacing: .04em; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); font-style: italic; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fn-group { display: flex; flex-direction: column; gap: 10px; }
.fn-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.fn-group a { font-size: .82rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.fn-group a:hover { color: #fff; }

.footer-sources {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.fs-title { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-bottom: 16px; }
.fs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.fs-item { font-size: .74rem; color: rgba(255,255,255,.35); line-height: 1.5; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  padding-bottom: 32px;
}
.fb-sep { opacity: .4; }

.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--accent); transform: translateY(-4px); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .company-grid { grid-template-columns: 1fr; }
  .company-charts-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .exec-grid { grid-template-columns: 1fr; }
  .exec-kpis { grid-template-columns: repeat(4,1fr); }
  .synergy-diagram { grid-template-columns: 1fr; }
  .syn-center { flex-direction: row; }
}
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .equip-cards { grid-template-columns: repeat(2,1fr); }
  .dark-cards { grid-template-columns: 1fr 1fr; }
  .outlook-grid { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .market-facts { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cn-stats { grid-template-columns: repeat(2,1fr); }
  .strengths-grid { grid-template-columns: 1fr 1fr; }
  .vol-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .section { padding: 64px 20px 60px; }
  .section-title { font-size: 1.5rem; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 16px; }
  .hero-stat-num { font-size: 1.4rem; }
  .ptier-left, .ptier-right { min-width: 60px; }
  .ptier-badge { display: none; }
  .ptier-market { display: none; }
  .equip-cards { grid-template-columns: 1fr 1fr; }
  .dark-cards { grid-template-columns: 1fr; }
  .outlook-grid { grid-template-columns: 1fr; }
  .exec-kpis { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: rgba(255,255,255,.98); padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .timeline-container::before { display: none; }
  .tl-item { width: 100%; padding: 0; flex-direction: column; }
  .tl-left { flex-direction: column; }
  .tl-dot { display: none; }
  .tl-right { margin-left: 0; }
  .footer-top { gap: 24px; }
  .footer-nav { grid-template-columns: 1fr; }
  .fs-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: 1fr 1fr; }
  .synergy-diagram { grid-template-columns: 1fr; }
  .matrix-table-wrap { font-size: .78rem; }
}

/* ════════════════════════════════════════════
   ANIMATION UTILITIES
════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .7s ease forwards; }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(12,25,95,.2); }
  50% { box-shadow: 0 0 0 12px rgba(12,25,95,0); }
}

/* ════════════════════════════════════════════
   PRINT
════════════════════════════════════════════ */
@media print {
  .lang-switcher, .navbar, .hero-canvas, .back-top, .nav-hamburger { display: none !important; }
  .hero { min-height: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
