:root {
  --bg: oklch(97% 0.025 65);
  --bg-alt: oklch(93% 0.03 55);
  --ink: oklch(27% 0.03 40);
  --ink-strong: oklch(24% 0.03 40);
  --ink-soft: oklch(48% 0.02 40);
  --ink-softer: oklch(40% 0.02 40);
  --border: oklch(90% 0.02 60);
  --border-soft: oklch(92% 0.02 60);

  --brand: oklch(66% 0.18 35);
  --brand-strong: oklch(56% 0.19 30);
  --brand-strong-hover: oklch(48% 0.19 30);
  --brand-tint: oklch(90% 0.06 40);

  --nav-bg: #8c162c;
  --nav-border: rgba(255, 255, 255, 0.18);
  --nav-text: #ffffff;
  --nav-text-soft: rgba(255, 255, 255, 0.78);
  --panel-scrim: oklch(20% 0.02 40 / 0.45);

  --footer-bg: oklch(24% 0.03 40);
  --footer-text: oklch(80% 0.02 40);
  --footer-border: oklch(60% 0.02 40);
  --footer-caption: oklch(65% 0.02 40);

  --pass-stub-bg: oklch(98% 0.012 70);
  --dash: oklch(88% 0.02 60);
  --dash2: oklch(75% 0.02 40);
  --sap-desc-bg: oklch(93% 0.03 55);

  --placeholder-mono: oklch(45% 0.05 40);

  --font-serif: 'Noto Serif TC', serif;
  --font-sans: 'Noto Sans TC', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--brand-strong); text-decoration: none; }
a:hover { color: var(--brand-strong-hover); }

button { font-family: inherit; }

.fcu-num { font-family: 'Baloo 2', sans-serif; }

.fcu-page { width: 100%; overflow-x: hidden; }

.fcu-mobile-only { display: none !important; }
.fcu-desktop-only { display: block; }

/* ---------- Nav ---------- */
.fcu-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}
.fcu-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fcu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: var(--nav-text);
  white-space: nowrap;
}
.fcu-logo {
  height: 55px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.fcu-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.fcu-nav-links a { font-weight: 700; color: var(--nav-text); }
.fcu-btn-pill {
  background: var(--brand);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.fcu-btn-pill:hover { color: white; }
.fcu-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--nav-border);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.fcu-hamburger-bars { width: 18px; }
.fcu-hamburger-bars div { height: 2px; background: var(--nav-text); margin-bottom: 4px; }
.fcu-hamburger-bars div:last-child { margin-bottom: 0; }

.fcu-mobile-menu {
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--nav-border);
}
.fcu-mobile-menu a { font-weight: 700; color: var(--nav-text); }
.fcu-mobile-menu .fcu-btn-pill { text-align: center; }

/* ---------- Hero (merged with world map) ---------- */
.fcu-hero {
  padding: 64px 32px 96px;
  max-width: 1180px;
  margin: 0 auto;
}
.fcu-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px 64px;
  align-items: start;
}
.fcu-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.fcu-hero-globe {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}
.fcu-eyebrow {
  background: var(--brand-tint);
  color: var(--brand-strong-hover);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 100px;
}
.fcu-hero-title {
  font-family: var(--font-serif);
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 900;
  margin: 0;
  max-width: 640px;
  color: var(--ink-strong);
}
.fcu-hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}
.fcu-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.fcu-btn-primary {
  background: var(--brand);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
}
.fcu-btn-primary:hover { color: white; }
.fcu-btn-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
}
.fcu-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
.fcu-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-strong);
}
.fcu-stat-label {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Section shells ---------- */
.fcu-section {
  padding: 104px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.fcu-section-alt {
  padding: 104px 32px;
  background: var(--bg-alt);
}

/* ---------- Editorial section head (kicker + big index number) ---------- */
.ed-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 32px;
  align-items: start;
  margin-bottom: 40px;
  max-width: 720px;
}
.ed-head-index {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.8;
  color: var(--brand-tint);
  -webkit-text-stroke: 1.5px var(--border);
}
.ed-head-index--inline {
  font-size: 40px;
  color: var(--brand-tint);
  -webkit-text-stroke: 1px var(--border);
  margin-bottom: 6px;
}
.ed-head-kicker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 10px;
}
.ed-head-title {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--ink-strong);
}
.ed-head-desc {
  color: var(--ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- World map / globe ---------- */
.fcu-globe-kicker {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.fcu-globe-kicker-index {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 40px;
  color: var(--brand-tint);
  -webkit-text-stroke: 1px var(--border);
  line-height: 0.8;
}
.fcu-globe-kicker-label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink-strong);
}
.fcu-globe-kicker-en {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}
.fcu-globe-hint {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin: 16px 0 0;
}
.fcu-globe-stage {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.fcu-globe-canvas {
  width: 100%;
  height: auto;
  display: block;
  cursor: grab;
  touch-action: none;
}
.fcu-globe-canvas.dragging { cursor: grabbing; }

.fcu-pin {
  position: absolute;
  left: -999px;
  top: -999px;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Noto Sans TC', sans-serif;
  z-index: 2;
}
.fcu-pin-badge {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}
.fcu-pin-label {
  background: var(--ink-strong);
  color: white;
  border-radius: 100px;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.fcu-home-pin {
  position: absolute;
  left: -999px;
  top: -999px;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 3;
}
.fcu-home-pulse-wrap { position: relative; width: 18px; height: 18px; }
.fcu-home-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100%;
  background: var(--brand);
  animation: fcuPulse 1.8s ease-out infinite;
}
.fcu-home-dot {
  position: absolute;
  inset: 3px;
  border-radius: 100%;
  background: var(--brand);
  border: 2px solid white;
  box-shadow: 0 2px 8px oklch(30% 0.05 40 / 0.5);
}
.fcu-home-label {
  background: var(--brand);
  color: white;
  border-radius: 100px;
  padding: 3px 12px;
  font-weight: 900;
  font-size: 12.5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px var(--brand);
}

.fcu-lon-readout {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: oklch(55% 0.02 40);
}

@keyframes fcuPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.fcu-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.fcu-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.fcu-legend-swatch { width: 12px; height: 12px; border-radius: 4px; }

/* ---------- Country slide-over panel ---------- */
.fcu-panel-overlay {
  position: fixed;
  inset: 0;
  background: var(--panel-scrim);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.fcu-panel-overlay.open { display: flex; }
.fcu-panel {
  width: min(480px, 92vw);
  height: 100%;
  background: white;
  box-shadow: -20px 0 50px -20px oklch(20% 0.02 40 / 0.4);
  padding: 32px 28px;
  overflow-y: auto;
}
.fcu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.fcu-panel-title { font-weight: 900; font-size: 24px; }
.fcu-panel-close {
  border: none;
  background: oklch(95% 0.01 60);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 16px;
}
.fcu-panel-meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}
.fcu-panel-country { margin-bottom: 22px; }
.fcu-panel-country-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-strong);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-soft);
}
.fcu-panel-school-list { display: flex; flex-direction: column; gap: 6px; }
.fcu-panel-school {
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.fcu-panel-school-mark { color: var(--brand-strong); font-weight: 700; width: 14px; flex-shrink: 0; }
.fcu-panel-school-name { color: oklch(30% 0.02 40); }

/* ---------- Mobile accordion ---------- */
.fcu-accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fcu-accordion-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fcu-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
}
.fcu-accordion-toggle-left { display: flex; align-items: center; gap: 10px; }
.fcu-accordion-swatch { width: 14px; height: 14px; border-radius: 5px; }
.fcu-accordion-title { font-weight: 800; font-size: 16px; color: var(--ink-strong); }
.fcu-accordion-toggle-right { display: flex; align-items: center; gap: 10px; }
.fcu-accordion-count { font-size: 13px; color: var(--ink-soft); }
.fcu-accordion-chevron { font-size: 14px; color: var(--ink-soft); }
.fcu-accordion-body { padding: 6px 18px 18px; background: oklch(98% 0.01 70); }
.fcu-accordion-country { margin-bottom: 14px; }
.fcu-accordion-country-name { font-weight: 700; font-size: 13px; color: var(--ink-softer); margin-bottom: 6px; }
.fcu-accordion-school-list { display: flex; flex-direction: column; gap: 5px; }
.fcu-accordion-school { font-size: 13.5px; display: flex; gap: 6px; }

/* ---------- SAP boarding-pass section ---------- */
.fcu-sap-sub { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.fcu-sap-chips {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.fcu-chip {
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  transition: transform .15s;
}
.fcu-chip:hover { transform: scale(1.05); }

.fcu-pass-list { display: flex; flex-direction: column; max-width: 920px; }
.fcu-pass-row {
  display: grid;
  grid-template-columns: 56px 1fr;
}
.fcu-pass-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fcu-pass-spine-line { width: 2px; flex: 1; }
.fcu-pass-spine-dot {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  border: 3px solid white;
  flex-shrink: 0;
}
.fcu-pass-cell { padding: 10px 0; }
.fcu-pass {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans TC', sans-serif;
  background: white;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 10px 1fr 220px;
  box-shadow: 0 10px 30px -18px oklch(30% 0.05 40 / 0.5);
  transition: transform .15s;
}
.fcu-pass:hover { transform: translateX(6px); }
.fcu-pass-stripe { }
.fcu-pass-body { padding: 18px 24px; }
.fcu-pass-track { font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 4px; }
.fcu-pass-name { font-family: var(--font-serif); font-weight: 900; font-size: 20px; color: var(--ink-strong); margin-bottom: 6px; }
.fcu-pass-route { display: flex; align-items: center; gap: 14px; }
.fcu-pass-year { font-weight: 800; font-size: 22px; color: var(--ink); }
.fcu-pass-flight { flex: 0 0 90px; display: flex; align-items: center; gap: 4px; }
.fcu-pass-flight-line { flex: 1; border-top: 2px dashed var(--dash2); }
.fcu-pass-plane { font-size: 15px; }
.fcu-pass-stub {
  border-left: 2px dashed var(--dash);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: var(--pass-stub-bg);
}
.fcu-pass-stub-label { font-size: 11px; letter-spacing: 2px; color: oklch(55% 0.02 40); font-weight: 700; }
.fcu-pass-stub-window { font-weight: 800; font-size: 15px; color: var(--ink); }
.fcu-pass-stub-hint { font-size: 12px; font-weight: 700; }
.fcu-pass-desc {
  background: var(--sap-desc-bg);
  border-radius: 0 0 18px 18px;
  margin: 0 12px;
  padding: 14px 24px;
  font-size: 14.5px;
  color: oklch(38% 0.02 40);
}
.fcu-sap-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.fcu-sap-foot-note { font-size: 13px; color: oklch(55% 0.02 40); }
.fcu-sap-foot-tag { font-size: 13px; color: oklch(55% 0.02 40); letter-spacing: 2px; }

/* ---------- Exchange / 2+2 ---------- */
.fcu-exchange-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.fcu-exchange-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.fcu-exchange-title { font-family: var(--font-serif); font-size: 34px; line-height: 1.2; letter-spacing: -0.01em; font-weight: 900; margin: 0 0 16px; color: var(--ink-strong); }
.fcu-exchange-body { color: var(--ink-softer); font-size: 16px; margin: 0 0 20px; }
.fcu-exchange-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.fcu-exchange-stat-num { font-size: 28px; font-weight: 800; color: var(--brand-strong); }
.fcu-exchange-stat-label { font-size: 13px; color: var(--ink-soft); }
.fcu-exchange-callout {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.fcu-exchange-callout-title { font-weight: 800; margin-bottom: 4px; color: var(--ink-strong); }
.fcu-exchange-callout-body { font-size: 14px; color: var(--ink-soft); }
.fcu-exchange-link { font-weight: 700; }

.fcu-placeholder {
  aspect-ratio: 4/3;
  border-radius: 24px;
  background: repeating-linear-gradient(135deg, oklch(90% 0.05 40), oklch(90% 0.05 40) 12px, oklch(94% 0.03 45) 12px, oklch(94% 0.03 45) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.fcu-placeholder-img { background-size: cover; background-position: center 35%; padding: 0; }
.fcu-placeholder-text {
  font-family: monospace;
  color: var(--placeholder-mono);
  font-size: 14px;
}

/* ---------- Partner schools (2+2) ---------- */
.fcu-partner-schools {
  max-width: 1180px;
  margin: 72px auto 0;
}
.fcu-section-head-row--tight { margin-bottom: 20px; }
.fcu-partner-schools-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-strong);
}
.fcu-partner-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.fcu-partner-grid::-webkit-scrollbar { display: none; }
.fcu-partner-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  color: inherit;
  transition: box-shadow .15s, border-color .15s;
}
.fcu-partner-card:hover {
  color: inherit;
  border-color: var(--brand);
  box-shadow: 0 16px 32px -20px oklch(30% 0.05 40 / 0.5);
}
.fcu-partner-name { font-weight: 800; font-size: 15px; color: var(--ink-strong); }
.fcu-partner-en { font-size: 12px; color: var(--ink-soft); margin-top: 2px; margin-bottom: 10px; }
.fcu-partner-desc {
  font-size: 13px;
  color: var(--ink-softer);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}
.fcu-partner-link { font-size: 13px; font-weight: 700; color: var(--brand-strong); margin-top: auto; }

/* ---------- News ---------- */
.fcu-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.fcu-section-head-row .ed-head { margin-bottom: 0; }
.fcu-section-head-row .fcu-partner-schools-label { margin-bottom: 0; }
.fcu-carousel-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.fcu-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid var(--border);
  background: white;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.fcu-carousel-arrow:hover:not(:disabled) { background: var(--brand); color: white; border-color: var(--brand); }
.fcu-carousel-arrow:disabled { opacity: .35; cursor: default; }

.fcu-news-scroll {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
}
.fcu-news-scroll::-webkit-scrollbar { display: none; }
.fcu-news-scroll .fcu-news-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.fcu-news-card {
  display: block;
  color: inherit;
}
.fcu-news-card:hover { color: inherit; }
.fcu-news-card:hover .fcu-news-title { color: var(--brand-strong); }
.fcu-news-card:hover .fcu-news-photo-img { filter: saturate(1.08); }
.fcu-news-photo {
  aspect-ratio: 3/4;
  border-radius: 6px;
  background: repeating-linear-gradient(135deg, oklch(92% 0.04 40), oklch(92% 0.04 40) 10px, oklch(96% 0.02 45) 10px, oklch(96% 0.02 45) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  margin-bottom: 20px;
}
.fcu-news-photo-text { font-family: monospace; font-size: 11px; color: var(--placeholder-mono); }
.fcu-news-photo-img { background-size: cover; background-position: center; padding: 0; transition: filter .2s; }
.fcu-news-body { display: flex; flex-direction: column; }
.fcu-news-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 10px;
}
.fcu-news-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.42;
  color: var(--ink-strong);
  margin-bottom: 12px;
  transition: color .15s;
}
.fcu-news-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fcu-news-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--ink-strong);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink-strong);
  display: inline-block;
  align-self: flex-start;
  transition: color .15s, border-color .15s;
}
.fcu-news-card:hover .fcu-news-link { color: var(--brand-strong); border-color: var(--brand-strong); }

/* ---------- Stories ---------- */
.fcu-stories-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.fcu-stories-head-main { display: flex; flex-direction: column; }
.fcu-stories-head-kicker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 6px;
}
.fcu-stories-head h2 { font-family: var(--font-serif); font-size: 34px; font-weight: 900; margin: 0; color: var(--ink-strong); }
.fcu-stories-more { font-weight: 700; }
.fcu-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  gap: 20px 48px;
}
.fcu-story-card {
  display: block;
  color: inherit;
}
.fcu-story-card:hover { color: inherit; }
.fcu-story-card:hover .fcu-story-name { color: var(--brand-strong); }
.fcu-story-card:hover .fcu-story-photo-img { filter: saturate(1.08); }
.fcu-story-photo {
  aspect-ratio: 3/4;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, oklch(92% 0.04 40), oklch(92% 0.04 40) 10px, oklch(96% 0.02 45) 10px, oklch(96% 0.02 45) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  margin-bottom: 20px;
}
.fcu-story-photo-text { font-family: monospace; font-size: 12px; color: var(--placeholder-mono); }
.fcu-story-photo-img { background-size: cover; background-position: center; padding: 0; transition: filter .2s; }
.fcu-story-body { display: block; }
.fcu-story-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-strong); margin-bottom: 10px; }
.fcu-story-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-strong);
  margin-bottom: 10px;
  transition: color .15s;
}
.fcu-story-blurb {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
}
.fcu-story-blurb::before { content: '「'; }
.fcu-story-blurb::after { content: '」'; }

/* ---------- Quick links ---------- */
.fcu-quicklinks-label { font-weight: 800; font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.fcu-quicklinks { display: flex; gap: 12px; flex-wrap: wrap; }
.fcu-quicklink {
  background: white;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: oklch(30% 0.02 40);
}

/* ---------- Footer ---------- */
.fcu-footer {
  padding: 96px 24px 64px;
  background: var(--footer-bg);
  color: white;
}
.fcu-footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.fcu-footer-inner h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 900; margin: 0 0 12px; }
.fcu-footer-inner p { color: var(--footer-text); margin: 0 0 28px; }
.fcu-footer-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fcu-btn-outline {
  background: transparent;
  border: 1px solid var(--footer-border);
  color: white;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
}
.fcu-btn-outline:hover { color: white; }
.fcu-footer-copy { margin-top: 40px; font-size: 13px; color: var(--footer-caption); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .fcu-desktop-only { display: none !important; }
  .fcu-mobile-only { display: block !important; }
  .fcu-nav-links { display: none; }
  .fcu-hamburger { display: flex !important; }
  .fcu-logo { height: 43px; }
  .fcu-mobile-menu.fcu-mobile-only[hidden] { display: none !important; }
  .fcu-mobile-menu.fcu-mobile-only:not([hidden]) { display: flex !important; }
  .fcu-hero { padding: 40px 20px 56px !important; }
  .fcu-section, .fcu-section-alt { padding: 56px 20px !important; }
  .fcu-hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .fcu-hero-globe { margin-top: 0 !important; }
  .fcu-hero-title { font-size: 36px !important; }
  .fcu-stats-row { flex-wrap: wrap !important; gap: 20px !important; }
  .ed-head { grid-template-columns: 1fr !important; gap: 8px !important; }
  .ed-head-index { display: none; }
  .ed-head-title { font-size: 30px !important; }
  .fcu-news-scroll { margin: 0 -20px !important; padding-left: 20px !important; padding-right: 20px !important; }
  .fcu-news-scroll .fcu-news-card { flex-basis: 78vw !important; }
  .fcu-partner-grid { margin: 0 -20px !important; padding-left: 20px !important; padding-right: 20px !important; }
  .fcu-partner-card { flex-basis: 78vw !important; }
  .fcu-exchange-grid { grid-template-columns: 1fr; }
  .fcu-pass-row { grid-template-columns: 22px 1fr !important; }
  .fcu-pass { grid-template-columns: 10px 1fr !important; }
  .fcu-pass-stub {
    border-left: none !important;
    border-top: 2px dashed var(--dash);
    grid-column: 2;
  }
}
